Version Description
- Tweak: Added responsive controls for Layout Type option in Bullet List widget.
- Tweak: Added responsive controls for Rotate option in Lottie Animations widget.
- Fixed: Rollback button is not working after v4.0.0.
- Fixed: Categories style tab showing with all Skins in Blog widget.
- Fixed: Support URL is not working in dashobar General tab.
- Fixed: Elements switchers are not saving after v4.0.0.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 4.0.4 |
Comparing to | |
See all releases |
Code changes from version 4.0.3 to 4.0.4
- admin/assets/css/notice-rtl.css +2 -2
- admin/assets/css/notice.css +2 -2
- admin/includes/admin-helper.php +10 -6
- admin/includes/admin-notices.php +14 -0
- admin/includes/dep/rollback.php +2 -2
- admin/includes/templates/general.php +9 -0
- admin/includes/templates/info.php +25 -1
- admin/includes/templates/integrations.php +3 -1
- admin/includes/templates/version-control.php +2 -2
- assets/frontend/js/premium-woocommerce.js +0 -438
- assets/frontend/min-js/premium-woocommerce.min.js +0 -1
- includes/addons-integration.php +14 -6
- includes/class-pa-core.php +11 -0
- includes/templates/scripts/template-modal-header-logo.php +4 -1
- languages/premium-addons-for-elementor.pot +3539 -1850
- premium-addons-for-elementor.php +2 -2
- readme.txt +11 -2
- widgets/premium-blog.php +6 -2
- widgets/premium-icon-list.php +17 -17
- widgets/premium-lottie.php +1 -1
admin/assets/css/notice-rtl.css
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
padding: 0 0.7em;
|
21 |
} */
|
22 |
|
23 |
-
.pa-new-feature-notice .pa-text-wrap {
|
24 |
display: -ms-flexbox;
|
25 |
display: -webkit-flex;
|
26 |
display: -moz-flex;
|
@@ -28,7 +28,7 @@
|
|
28 |
display: flex;
|
29 |
align-items: center;
|
30 |
padding: 10px 0 10px 10px;
|
31 |
-
}
|
32 |
|
33 |
.pa-new-feature-notice .pa-text-wrap .pa-notice-logo {
|
34 |
width: 40px;
|
20 |
padding: 0 0.7em;
|
21 |
} */
|
22 |
|
23 |
+
/* .pa-new-feature-notice .pa-text-wrap {
|
24 |
display: -ms-flexbox;
|
25 |
display: -webkit-flex;
|
26 |
display: -moz-flex;
|
28 |
display: flex;
|
29 |
align-items: center;
|
30 |
padding: 10px 0 10px 10px;
|
31 |
+
} */
|
32 |
|
33 |
.pa-new-feature-notice .pa-text-wrap .pa-notice-logo {
|
34 |
width: 40px;
|
admin/assets/css/notice.css
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
padding: 0 0.7em;
|
21 |
} */
|
22 |
|
23 |
-
.pa-new-feature-notice .pa-text-wrap {
|
24 |
display: -ms-flexbox;
|
25 |
display: -webkit-flex;
|
26 |
display: -moz-flex;
|
@@ -28,7 +28,7 @@
|
|
28 |
display: flex;
|
29 |
align-items: center;
|
30 |
padding: 10px 10px 10px 0;
|
31 |
-
}
|
32 |
|
33 |
.pa-new-feature-notice .pa-text-wrap .pa-notice-logo {
|
34 |
width: 40px;
|
20 |
padding: 0 0.7em;
|
21 |
} */
|
22 |
|
23 |
+
/* .pa-new-feature-notice .pa-text-wrap {
|
24 |
display: -ms-flexbox;
|
25 |
display: -webkit-flex;
|
26 |
display: -moz-flex;
|
28 |
display: flex;
|
29 |
align-items: center;
|
30 |
padding: 10px 10px 10px 0;
|
31 |
+
} */
|
32 |
|
33 |
.pa-new-feature-notice .pa-text-wrap .pa-notice-logo {
|
34 |
width: 40px;
|
admin/includes/admin-helper.php
CHANGED
@@ -401,7 +401,7 @@ class Admin_Helper {
|
|
401 |
*/
|
402 |
public function add_menu_tabs() {
|
403 |
|
404 |
-
$plugin_name =
|
405 |
|
406 |
call_user_func(
|
407 |
'add_menu_page',
|
@@ -414,7 +414,6 @@ class Admin_Helper {
|
|
414 |
100
|
415 |
);
|
416 |
|
417 |
-
|
418 |
foreach( self::$tabs as $index => $tab ) {
|
419 |
call_user_func(
|
420 |
'add_submenu_page',
|
@@ -535,7 +534,9 @@ class Admin_Helper {
|
|
535 |
|
536 |
$defaults = self::get_default_elements();
|
537 |
|
538 |
-
$elements =
|
|
|
|
|
539 |
|
540 |
update_option( 'pa_save_settings', $elements );
|
541 |
|
@@ -624,7 +625,10 @@ class Admin_Helper {
|
|
624 |
}
|
625 |
}
|
626 |
|
627 |
-
|
|
|
|
|
|
|
628 |
|
629 |
return $default_keys;
|
630 |
|
@@ -662,8 +666,8 @@ class Admin_Helper {
|
|
662 |
|
663 |
$enabled_keys = get_option( 'pa_save_settings', $defaults );
|
664 |
|
665 |
-
$enabled_keys = array_merge($defaults, $enabled_keys);
|
666 |
-
|
667 |
return $enabled_keys;
|
668 |
|
669 |
}
|
401 |
*/
|
402 |
public function add_menu_tabs() {
|
403 |
|
404 |
+
$plugin_name = Helper_Functions::name();
|
405 |
|
406 |
call_user_func(
|
407 |
'add_menu_page',
|
414 |
100
|
415 |
);
|
416 |
|
|
|
417 |
foreach( self::$tabs as $index => $tab ) {
|
418 |
call_user_func(
|
419 |
'add_submenu_page',
|
534 |
|
535 |
$defaults = self::get_default_elements();
|
536 |
|
537 |
+
$elements = array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true );
|
538 |
+
|
539 |
+
$elements['is-updated'] = true;
|
540 |
|
541 |
update_option( 'pa_save_settings', $elements );
|
542 |
|
625 |
}
|
626 |
}
|
627 |
|
628 |
+
//Check if settings were saved before
|
629 |
+
$check_option = empty( get_option( 'pa_save_settings' ) ) ? true : false;
|
630 |
+
|
631 |
+
$default_keys = array_fill_keys( $keys, $check_option );
|
632 |
|
633 |
return $default_keys;
|
634 |
|
666 |
|
667 |
$enabled_keys = get_option( 'pa_save_settings', $defaults );
|
668 |
|
669 |
+
$enabled_keys = array_merge( $defaults, $enabled_keys );
|
670 |
+
|
671 |
return $enabled_keys;
|
672 |
|
673 |
}
|
admin/includes/admin-notices.php
CHANGED
@@ -260,6 +260,20 @@ class Admin_Notices {
|
|
260 |
<strong><?php echo __('Premium Addons Free and PRO', 'premium-addons-for-elemetor'); ?></strong>
|
261 |
<?php echo sprintf(__('Plugins. Click <a href="%s" target="_blank">Here</a> for Details.','premium-addons-for-elementor'), $notice_url ); ?>
|
262 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
</div>
|
264 |
<div class="pa-notice-close" data-notice="major-update">
|
265 |
<span class="dashicons dashicons-dismiss"></span>
|
260 |
<strong><?php echo __('Premium Addons Free and PRO', 'premium-addons-for-elemetor'); ?></strong>
|
261 |
<?php echo sprintf(__('Plugins. Click <a href="%s" target="_blank">Here</a> for Details.','premium-addons-for-elementor'), $notice_url ); ?>
|
262 |
</p>
|
263 |
+
<p>
|
264 |
+
<?php
|
265 |
+
if( defined('PREMIUM_PRO_ADDONS_VERSION') ) {
|
266 |
+
if( version_compare( PREMIUM_PRO_ADDONS_VERSION, '2.2.0', '<' ) ) {
|
267 |
+
$download_link = PAPRO_STORE_URL . '/my-account';
|
268 |
+
?>
|
269 |
+
<b>IMPORTANT:</b>
|
270 |
+
<span>If you’re not getting the update notification for Premium Addons PRO v2.2.0 in your WP Dashboard -> Plugins tab, you can download it from your account settings <a href="<?php echo esc_url( $download_link ); ?>" target="_blank">page</a> and upload it manually on your website. For more clarification, please check this doc<a href="https://premiumaddons.com/docs/how-to-update-premium-addons-pro-manually/" target="_blank">article</a>.</span>
|
271 |
+
<?php
|
272 |
+
}
|
273 |
+
|
274 |
+
}
|
275 |
+
?>
|
276 |
+
</p>
|
277 |
</div>
|
278 |
<div class="pa-notice-close" data-notice="major-update">
|
279 |
<span class="dashicons dashicons-dismiss"></span>
|
admin/includes/dep/rollback.php
CHANGED
@@ -120,9 +120,9 @@ class PA_Rollback {
|
|
120 |
|
121 |
public function run() {
|
122 |
|
123 |
-
|
124 |
|
125 |
-
|
126 |
|
127 |
}
|
128 |
}
|
120 |
|
121 |
public function run() {
|
122 |
|
123 |
+
$this->apply_package();
|
124 |
|
125 |
+
$this->upgrade();
|
126 |
|
127 |
}
|
128 |
}
|
admin/includes/templates/general.php
CHANGED
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
<div class="pa-section-content">
|
3 |
<div class="row">
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) exit;
|
4 |
+
|
5 |
+
use PremiumAddons\Includes\Helper_Functions;
|
6 |
+
|
7 |
+
$support_url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/support/', 'about-page', 'wp-dash', 'dashboard' );
|
8 |
+
|
9 |
+
?>
|
10 |
|
11 |
<div class="pa-section-content">
|
12 |
<div class="row">
|
admin/includes/templates/info.php
CHANGED
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<table class="widefat" cellspacing="0">
|
2 |
<thead>
|
3 |
<tr>
|
@@ -164,6 +173,7 @@
|
|
164 |
</thead>
|
165 |
<tbody>
|
166 |
<?php
|
|
|
167 |
$active_plugins = (array) get_option( 'active_plugins', array() );
|
168 |
|
169 |
if ( is_multisite() ) {
|
@@ -178,10 +188,24 @@
|
|
178 |
$version_string = '';
|
179 |
$network_string = '';
|
180 |
|
181 |
-
if ( !empty( $plugin_data[ 'Name' ] ) ) {
|
182 |
|
183 |
// link the plugin name to the plugin url if available
|
184 |
$plugin_name = esc_html( $plugin_data[ 'Name' ] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
|
186 |
if ( !empty( $plugin_data[ 'PluginURI' ] ) ) {
|
187 |
$plugin_name = '<a href="' . esc_url( $plugin_data[ 'PluginURI' ] ) . '" title="' . esc_attr__( 'Visit plugin homepage', 'premium-addons-for-elementor' ) . '" target="_blank">' . $plugin_name . '</a>';
|
1 |
+
<?php
|
2 |
+
|
3 |
+
use PremiumAddons\Includes\Helper_Functions;
|
4 |
+
|
5 |
+
//Premium Addons Pro Classes
|
6 |
+
use PremiumAddonsPro\Includes\White_Label\Helper;
|
7 |
+
|
8 |
+
?>
|
9 |
+
|
10 |
<table class="widefat" cellspacing="0">
|
11 |
<thead>
|
12 |
<tr>
|
173 |
</thead>
|
174 |
<tbody>
|
175 |
<?php
|
176 |
+
|
177 |
$active_plugins = (array) get_option( 'active_plugins', array() );
|
178 |
|
179 |
if ( is_multisite() ) {
|
188 |
$version_string = '';
|
189 |
$network_string = '';
|
190 |
|
191 |
+
if ( ! empty( $plugin_data[ 'Name' ] ) ) {
|
192 |
|
193 |
// link the plugin name to the plugin url if available
|
194 |
$plugin_name = esc_html( $plugin_data[ 'Name' ] );
|
195 |
+
|
196 |
+
if( 'Premium Addons for Elementor' === $plugin_name ) {
|
197 |
+
$plugin_name = Helper_Functions::name();
|
198 |
+
$author = Helper_Functions::author();
|
199 |
+
if( 'Leap13' !== $author ) {
|
200 |
+
$plugin_data[ 'Author' ] = Helper_Functions::author();
|
201 |
+
}
|
202 |
+
} elseif( 'Premium Addons PRO' === $plugin_name ) {
|
203 |
+
$plugin_name = Helper::name_pro();
|
204 |
+
$author = Helper::author_pro();
|
205 |
+
if( 'Leap13' !== $author ) {
|
206 |
+
$plugin_data[ 'Author' ] = Helper::author_pro();
|
207 |
+
}
|
208 |
+
}
|
209 |
|
210 |
if ( !empty( $plugin_data[ 'PluginURI' ] ) ) {
|
211 |
$plugin_name = '<a href="' . esc_url( $plugin_data[ 'PluginURI' ] ) . '" title="' . esc_attr__( 'Visit plugin homepage', 'premium-addons-for-elementor' ) . '" target="_blank">' . $plugin_name . '</a>';
|
admin/includes/templates/integrations.php
CHANGED
@@ -9,6 +9,8 @@ $settings = self::get_integrations_settings();
|
|
9 |
|
10 |
$locales = Helper_Functions::get_google_maps_prefixes();
|
11 |
|
|
|
|
|
12 |
?>
|
13 |
|
14 |
<div class="pa-section-content">
|
@@ -20,7 +22,7 @@ $locales = Helper_Functions::get_google_maps_prefixes();
|
|
20 |
<div class="pa-section-info-wrap">
|
21 |
<div class="pa-section-info">
|
22 |
<h4><?php echo __('Google API Keys', 'premium-addons-for-elementor'); ?></h4>
|
23 |
-
<p><?php echo sprintf( __('Google APIs are used in
|
24 |
</div>
|
25 |
</div>
|
26 |
|
9 |
|
10 |
$locales = Helper_Functions::get_google_maps_prefixes();
|
11 |
|
12 |
+
$prefix = Helper_Functions::get_prefix();
|
13 |
+
|
14 |
?>
|
15 |
|
16 |
<div class="pa-section-content">
|
22 |
<div class="pa-section-info-wrap">
|
23 |
<div class="pa-section-info">
|
24 |
<h4><?php echo __('Google API Keys', 'premium-addons-for-elementor'); ?></h4>
|
25 |
+
<p><?php echo sprintf( __('Google APIs are used in %1$s Google Maps and %1$s Video Box widgets. If you don\'t have one, click %2$shere%3$s to get your key. Click %4$shere%3$s to enable Youtube Data for your API key', 'premium-addons-for-elementor'), $prefix , '<a href="https://premiumaddons.com/docs/getting-your-api-key-for-google-reviews/" target="_blank">', '</a>', '<a href="https://premiumaddons.com/docs/how-to-enable-youtube-data-api-for-premium-video-box-widget" target="_blank">' ); ?></p>
|
26 |
</div>
|
27 |
</div>
|
28 |
|
admin/includes/templates/version-control.php
CHANGED
@@ -15,10 +15,10 @@ $settings = self::get_integrations_settings();
|
|
15 |
<form action="" method="POST" id="pa-ver-control" name="pa-ver-control" class="pa-settings-form">
|
16 |
<div id="pa-ver-control-settings" class="pa-settings-tab">
|
17 |
|
18 |
-
|
19 |
<div class="pa-section-info">
|
20 |
<h4><?php echo __('Rollback to Previous Version', 'premium-addons-for-elementor'); ?></h4>
|
21 |
-
<p><?php echo __('Experiencing an issue with Premium Addons for Elementor version
|
22 |
</div>
|
23 |
|
24 |
<div class="pa-section-info-cta">
|
15 |
<form action="" method="POST" id="pa-ver-control" name="pa-ver-control" class="pa-settings-form">
|
16 |
<div id="pa-ver-control-settings" class="pa-settings-tab">
|
17 |
|
18 |
+
<div class="pa-section-info-wrap">
|
19 |
<div class="pa-section-info">
|
20 |
<h4><?php echo __('Rollback to Previous Version', 'premium-addons-for-elementor'); ?></h4>
|
21 |
+
<p><?php echo sprintf( __( 'Experiencing an issue with Premium Addons for Elementor version %s? Rollback to a previous version before the issue appeared.', 'premium-addons-for-elementor'), PREMIUM_ADDONS_VERSION ); ?></p>
|
22 |
</div>
|
23 |
|
24 |
<div class="pa-section-info-cta">
|
assets/frontend/js/premium-woocommerce.js
DELETED
@@ -1,438 +0,0 @@
|
|
1 |
-
(function ($) {
|
2 |
-
|
3 |
-
var PremiumWooProductsHandler = function ($scope, $) {
|
4 |
-
|
5 |
-
var instance = null;
|
6 |
-
|
7 |
-
instance = new premiumWooProducts($scope);
|
8 |
-
instance.init();
|
9 |
-
|
10 |
-
};
|
11 |
-
|
12 |
-
window.premiumWooProducts = function ($scope) {
|
13 |
-
|
14 |
-
var self = this,
|
15 |
-
$elem = $scope.find(".premium-woocommerce");
|
16 |
-
|
17 |
-
//Check Quick View
|
18 |
-
var isQuickView = $elem.data("quick-view");
|
19 |
-
|
20 |
-
if ("yes" === isQuickView) {
|
21 |
-
|
22 |
-
var widgetID = $scope.data("id"),
|
23 |
-
$modal = $elem.siblings(".premium-woo-quick-view-" + widgetID),
|
24 |
-
$qvModal = $modal.find('#premium-woo-quick-view-modal'),
|
25 |
-
contentWrap = $qvModal.find('#premium-woo-quick-view-content'),
|
26 |
-
wrapper = $qvModal.find('.premium-woo-content-main-wrapper'),
|
27 |
-
$backWrap = $modal.find('.premium-woo-quick-view-back');
|
28 |
-
|
29 |
-
}
|
30 |
-
|
31 |
-
self.init = function () {
|
32 |
-
|
33 |
-
self.handleProductsCarousel();
|
34 |
-
|
35 |
-
if ("yes" === isQuickView)
|
36 |
-
self.handleProductQuickView();
|
37 |
-
|
38 |
-
self.handleProductPagination();
|
39 |
-
|
40 |
-
var skin = $scope.data("widget_type");
|
41 |
-
|
42 |
-
if ("premium-woo-products.grid-1" === skin || "premium-woo-products.grid-4" === skin)
|
43 |
-
self.handleAddToCart();
|
44 |
-
|
45 |
-
if ("premium-woo-products.grid-6" === skin)
|
46 |
-
self.handleGalleryImages();
|
47 |
-
|
48 |
-
if ($elem.hasClass("premium-woo-products-metro")) {
|
49 |
-
|
50 |
-
self.handleGridMetro();
|
51 |
-
|
52 |
-
$(window).on("resize", self.handleGridMetro);
|
53 |
-
|
54 |
-
}
|
55 |
-
|
56 |
-
|
57 |
-
};
|
58 |
-
|
59 |
-
self.handleProductsCarousel = function () {
|
60 |
-
|
61 |
-
var carousel = $elem.data("woo_carousel");
|
62 |
-
|
63 |
-
if (!carousel)
|
64 |
-
return;
|
65 |
-
|
66 |
-
var $products = $elem.find('ul.products');
|
67 |
-
|
68 |
-
carousel['customPaging'] = function () {
|
69 |
-
return '<i class="fas fa-circle"></i>';
|
70 |
-
};
|
71 |
-
|
72 |
-
$products.slick(carousel);
|
73 |
-
|
74 |
-
};
|
75 |
-
|
76 |
-
self.handleGridMetro = function () {
|
77 |
-
|
78 |
-
var $products = $elem.find("ul.products"),
|
79 |
-
currentDevice = elementorFrontend.getCurrentDeviceMode(),
|
80 |
-
suffix = "";
|
81 |
-
|
82 |
-
//Grid Parameters
|
83 |
-
var gridWidth = $products.width(),
|
84 |
-
cellSize = Math.floor(gridWidth / 12);
|
85 |
-
|
86 |
-
|
87 |
-
var metroStyle = $elem.data("metro-style");
|
88 |
-
|
89 |
-
if ("tablet" === currentDevice) {
|
90 |
-
suffix = "_tablet";
|
91 |
-
} else if ("mobile" === currentDevice) {
|
92 |
-
suffix = "_mobile";
|
93 |
-
}
|
94 |
-
|
95 |
-
if ('custom' === metroStyle) {
|
96 |
-
|
97 |
-
var wPatternLength = 0,
|
98 |
-
hPatternLength = 0;
|
99 |
-
|
100 |
-
var settings = $elem.data("metro");
|
101 |
-
|
102 |
-
//Get Products Width/Height Pattern
|
103 |
-
var wPattern = settings['wPattern' + suffix],
|
104 |
-
hPattern = settings['hPattern' + suffix];
|
105 |
-
|
106 |
-
if ("" === wPattern)
|
107 |
-
wPattern = "12";
|
108 |
-
|
109 |
-
if ("" === hPattern)
|
110 |
-
hPattern = "12";
|
111 |
-
|
112 |
-
wPattern = wPattern.split(',');
|
113 |
-
hPattern = hPattern.split(',');
|
114 |
-
|
115 |
-
wPatternLength = wPatternLength + wPattern.length;
|
116 |
-
hPatternLength = hPatternLength + hPattern.length;
|
117 |
-
|
118 |
-
$products.find("li.product").each(function (index, product) {
|
119 |
-
|
120 |
-
var wIndex = index % wPatternLength,
|
121 |
-
hIndex = index % hPatternLength;
|
122 |
-
|
123 |
-
var wCell = (parseInt(wPattern[wIndex])),
|
124 |
-
hCell = (parseInt(hPattern[hIndex]));
|
125 |
-
|
126 |
-
$(product).css({
|
127 |
-
width: Math.floor(wCell) * cellSize,
|
128 |
-
height: Math.floor(hCell) * cellSize
|
129 |
-
});
|
130 |
-
});
|
131 |
-
|
132 |
-
}
|
133 |
-
|
134 |
-
$products
|
135 |
-
.imagesLoaded(function () { })
|
136 |
-
.done(
|
137 |
-
function () {
|
138 |
-
$products.isotope({
|
139 |
-
itemSelector: "li.product",
|
140 |
-
percentPosition: true,
|
141 |
-
animationOptions: {
|
142 |
-
duration: 750,
|
143 |
-
easing: "linear"
|
144 |
-
},
|
145 |
-
layoutMode: "masonry",
|
146 |
-
masonry: {
|
147 |
-
columnWidth: cellSize
|
148 |
-
}
|
149 |
-
});
|
150 |
-
});
|
151 |
-
};
|
152 |
-
|
153 |
-
self.handleProductQuickView = function () {
|
154 |
-
|
155 |
-
$modal.appendTo(document.body);
|
156 |
-
|
157 |
-
$elem.on('click', '.premium-woo-qv-btn', self.triggerQuickViewModal);
|
158 |
-
|
159 |
-
window.addEventListener("resize", function () {
|
160 |
-
self.updateQuickViewHeight();
|
161 |
-
});
|
162 |
-
|
163 |
-
};
|
164 |
-
|
165 |
-
self.triggerQuickViewModal = function (event) {
|
166 |
-
|
167 |
-
event.preventDefault();
|
168 |
-
|
169 |
-
var $this = $(this),
|
170 |
-
productID = $this.data('product-id');
|
171 |
-
|
172 |
-
if (!$qvModal.hasClass('loading'))
|
173 |
-
$qvModal.addClass('loading');
|
174 |
-
|
175 |
-
if (!$backWrap.hasClass('premium-woo-quick-view-active'))
|
176 |
-
$backWrap.addClass('premium-woo-quick-view-active');
|
177 |
-
|
178 |
-
|
179 |
-
$(document).trigger('uael_quick_view_loading');
|
180 |
-
|
181 |
-
self.getProductByAjax(productID);
|
182 |
-
|
183 |
-
self.addCloseEvents();
|
184 |
-
};
|
185 |
-
|
186 |
-
self.getProductByAjax = function (itemID) {
|
187 |
-
|
188 |
-
$.ajax({
|
189 |
-
url: PremiumWooSettings.ajaxurl,
|
190 |
-
data: {
|
191 |
-
action: 'get_woo_product_qv',
|
192 |
-
product_id: itemID,
|
193 |
-
nonce: PremiumWooSettings.qv_nonce,
|
194 |
-
},
|
195 |
-
dataType: 'html',
|
196 |
-
type: 'POST',
|
197 |
-
success: function (data) {
|
198 |
-
|
199 |
-
contentWrap.html(data);
|
200 |
-
self.handleQuickViewModal();
|
201 |
-
}
|
202 |
-
});
|
203 |
-
|
204 |
-
};
|
205 |
-
|
206 |
-
self.addCloseEvents = function () {
|
207 |
-
|
208 |
-
var $closeBtn = $qvModal.find('#premium-woo-quick-view-close');
|
209 |
-
|
210 |
-
$(document).keyup(function (e) {
|
211 |
-
if (e.keyCode === 27)
|
212 |
-
self.closeModal();
|
213 |
-
});
|
214 |
-
|
215 |
-
$closeBtn.on('click', function (e) {
|
216 |
-
e.preventDefault();
|
217 |
-
self.closeModal();
|
218 |
-
});
|
219 |
-
|
220 |
-
wrapper.on('click', function (e) {
|
221 |
-
|
222 |
-
if (this === e.target)
|
223 |
-
self.closeModal();
|
224 |
-
|
225 |
-
});
|
226 |
-
};
|
227 |
-
|
228 |
-
self.handleQuickViewModal = function () {
|
229 |
-
|
230 |
-
if (!$qvModal.hasClass('active')) {
|
231 |
-
|
232 |
-
$qvModal.removeClass('loading').addClass('active');
|
233 |
-
|
234 |
-
var barWidth = self.getBarWidth();
|
235 |
-
|
236 |
-
$("html").css('margin-right', barWidth);
|
237 |
-
$("html").addClass('premium-woo-qv-opened');
|
238 |
-
}
|
239 |
-
|
240 |
-
contentWrap.imagesLoaded(function () {
|
241 |
-
self.handleQuickViewSlider();
|
242 |
-
});
|
243 |
-
|
244 |
-
};
|
245 |
-
|
246 |
-
self.getBarWidth = function () {
|
247 |
-
|
248 |
-
var div = $('<div style="width:50px;height:50px;overflow:hidden;position:absolute;top:-200px;left:-200px;"><div style="height:100px;"></div>');
|
249 |
-
// Append our div, do our calculation and then remove it
|
250 |
-
$('body').append(div);
|
251 |
-
var w1 = $('div', div).innerWidth();
|
252 |
-
div.css('overflow-y', 'scroll');
|
253 |
-
var w2 = $('div', div).innerWidth();
|
254 |
-
$(div).remove();
|
255 |
-
|
256 |
-
return (w1 - w2);
|
257 |
-
};
|
258 |
-
|
259 |
-
self.handleQuickViewSlider = function () {
|
260 |
-
|
261 |
-
var $productSlider = $qvModal.find('.premium-woo-qv-image-slider');
|
262 |
-
|
263 |
-
if ($productSlider.find('li').length) {
|
264 |
-
$productSlider.flexslider({
|
265 |
-
animation: "slide",
|
266 |
-
start: function () {
|
267 |
-
setTimeout(function () {
|
268 |
-
self.updateQuickViewHeight(true);
|
269 |
-
}, 300);
|
270 |
-
}
|
271 |
-
});
|
272 |
-
} else {
|
273 |
-
setTimeout(function () {
|
274 |
-
self.updateQuickViewHeight(true);
|
275 |
-
}, 300);
|
276 |
-
}
|
277 |
-
|
278 |
-
};
|
279 |
-
|
280 |
-
self.updateQuickViewHeight = function (update_css) {
|
281 |
-
var $quickView = contentWrap,
|
282 |
-
imgHeight = $quickView.find('.product .uael-qv-image-slider').first().height(),
|
283 |
-
summary = $quickView.find('.product .summary.entry-summary'),
|
284 |
-
content = summary.css('content');
|
285 |
-
|
286 |
-
if ('undefined' != typeof content && 544 == content.replace(/[^0-9]/g, '') && 0 != imgHeight && null !== imgHeight) {
|
287 |
-
summary.css('height', imgHeight);
|
288 |
-
} else {
|
289 |
-
summary.css('height', '');
|
290 |
-
}
|
291 |
-
|
292 |
-
if (true === update_css)
|
293 |
-
$qvModal.css('opacity', 1);
|
294 |
-
|
295 |
-
};
|
296 |
-
|
297 |
-
self.closeModal = function () {
|
298 |
-
|
299 |
-
$backWrap.removeClass('premium-woo-quick-view-active');
|
300 |
-
|
301 |
-
$qvModal.removeClass('active').removeClass('loading');
|
302 |
-
|
303 |
-
$('html').removeClass('premium-woo-qv-opened');
|
304 |
-
|
305 |
-
$('html').css('margin-right', '');
|
306 |
-
|
307 |
-
setTimeout(function () {
|
308 |
-
contentWrap.html('');
|
309 |
-
}, 600);
|
310 |
-
|
311 |
-
};
|
312 |
-
|
313 |
-
self.handleAddToCart = function () {
|
314 |
-
|
315 |
-
$elem.on('click', '.premium-woo-cart-btn.product_type_simple', self.onBtnClick).on('premium_product_add_to_cart', self.handleBtnClick);
|
316 |
-
|
317 |
-
};
|
318 |
-
|
319 |
-
self.onBtnClick = function (event) {
|
320 |
-
|
321 |
-
event.preventDefault();
|
322 |
-
|
323 |
-
var $this = $(this),
|
324 |
-
productID = $this.data('product_id'),
|
325 |
-
quantity = 1;
|
326 |
-
|
327 |
-
$this.removeClass('added').addClass('adding');
|
328 |
-
|
329 |
-
$.ajax({
|
330 |
-
url: PremiumWooSettings.ajaxurl,
|
331 |
-
type: 'POST',
|
332 |
-
data: 'action=premium_woo_add_cart_product&product_id=' + productID + '&quantity=' + quantity,
|
333 |
-
success: function () {
|
334 |
-
$(document.body).trigger('wc_fragment_refresh');
|
335 |
-
$elem.trigger('premium_product_add_to_cart', [$this]);
|
336 |
-
}
|
337 |
-
});
|
338 |
-
|
339 |
-
};
|
340 |
-
|
341 |
-
self.handleBtnClick = function (event, $btn) {
|
342 |
-
|
343 |
-
if (!$btn)
|
344 |
-
return;
|
345 |
-
|
346 |
-
$btn.removeClass('adding').addClass('added');
|
347 |
-
|
348 |
-
};
|
349 |
-
|
350 |
-
self.handleGalleryImages = function () {
|
351 |
-
|
352 |
-
$elem.on('click', '.premium-woo-product__gallery_image', function () {
|
353 |
-
var $thisImg = $(this);
|
354 |
-
|
355 |
-
$thisImg.closest(".premium-woo-product-thumbnail").find(".woocommerce-loop-product__link img").replaceWith($thisImg.clone(true));
|
356 |
-
});
|
357 |
-
|
358 |
-
};
|
359 |
-
|
360 |
-
self.handleProductPagination = function () {
|
361 |
-
|
362 |
-
$elem.on('click', '.premium-woo-products-pagination a.page-numbers', function (e) {
|
363 |
-
|
364 |
-
var $targetPage = $(this);
|
365 |
-
|
366 |
-
if ($elem.hasClass('premium-woo-query-main'))
|
367 |
-
return;
|
368 |
-
|
369 |
-
e.preventDefault();
|
370 |
-
|
371 |
-
$elem.find('ul.products').after('<div class="premium-loading-feed"><div class="premium-loader"></div></div>');
|
372 |
-
|
373 |
-
var pageID = $elem.data('page-id'),
|
374 |
-
currentPage = $elem.find('.page-numbers.current').index(),
|
375 |
-
skin = $elem.data('skin'),
|
376 |
-
page_number = 1;
|
377 |
-
|
378 |
-
if ($targetPage.hasClass('next')) {
|
379 |
-
page_number = currentPage + 1;
|
380 |
-
} else if ($targetPage.hasClass('prev')) {
|
381 |
-
page_number = currentPage - 1;
|
382 |
-
} else {
|
383 |
-
page_number = $targetPage.html();
|
384 |
-
}
|
385 |
-
|
386 |
-
$.ajax({
|
387 |
-
url: PremiumWooSettings.ajaxurl,
|
388 |
-
data: {
|
389 |
-
action: 'get_woo_products',
|
390 |
-
pageID: pageID,
|
391 |
-
elemID: $scope.data('id'),
|
392 |
-
category: '',
|
393 |
-
skin: skin,
|
394 |
-
page_number: page_number,
|
395 |
-
nonce: PremiumWooSettings.products_nonce,
|
396 |
-
},
|
397 |
-
dataType: 'json',
|
398 |
-
type: 'POST',
|
399 |
-
success: function (data) {
|
400 |
-
|
401 |
-
$elem.find('.premium-loading-feed').remove();
|
402 |
-
|
403 |
-
$('html, body').animate({
|
404 |
-
scrollTop: (($scope.find('.premium-woocommerce').offset().top) - 100)
|
405 |
-
}, 'slow');
|
406 |
-
|
407 |
-
var $currentProducts = $elem.find('ul.products');
|
408 |
-
|
409 |
-
$currentProducts.replaceWith(data.data.html);
|
410 |
-
|
411 |
-
$elem.find('.premium-woo-products-pagination').replaceWith(data.data.pagination);
|
412 |
-
|
413 |
-
if ($elem.hasClass("premium-woo-products-metro"))
|
414 |
-
self.handleGridMetro();
|
415 |
-
|
416 |
-
},
|
417 |
-
error: function (err) {
|
418 |
-
console.log(err);
|
419 |
-
}
|
420 |
-
});
|
421 |
-
|
422 |
-
});
|
423 |
-
|
424 |
-
};
|
425 |
-
|
426 |
-
|
427 |
-
};
|
428 |
-
|
429 |
-
//Elementor JS Hooks
|
430 |
-
$(window).on("elementor/frontend/init", function () {
|
431 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-1", PremiumWooProductsHandler);
|
432 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-2", PremiumWooProductsHandler);
|
433 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-3", PremiumWooProductsHandler);
|
434 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-4", PremiumWooProductsHandler);
|
435 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-5", PremiumWooProductsHandler);
|
436 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-6", PremiumWooProductsHandler);
|
437 |
-
});
|
438 |
-
})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/frontend/min-js/premium-woocommerce.min.js
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
!function(l){function e(e,o){new premiumWooProducts(e).init()}window.premiumWooProducts=function(r){var d=this,s=r.find(".premium-woocommerce"),o=s.data("quick-view");if("yes"===o)var e=r.data("id"),i=s.siblings(".premium-woo-quick-view-"+e),a=i.find("#premium-woo-quick-view-modal"),c=a.find("#premium-woo-quick-view-content"),t=a.find(".premium-woo-content-main-wrapper"),n=i.find(".premium-woo-quick-view-back");d.init=function(){d.handleProductsCarousel(),"yes"===o&&d.handleProductQuickView(),d.handleProductPagination();var e=r.data("widget_type");"premium-woo-products.grid-1"!==e&&"premium-woo-products.grid-4"!==e||d.handleAddToCart(),"premium-woo-products.grid-6"===e&&d.handleGalleryImages(),s.hasClass("premium-woo-products-metro")&&(d.handleGridMetro(),l(window).on("resize",d.handleGridMetro))},d.handleProductsCarousel=function(){var e=s.data("woo_carousel");if(e){var o=s.find("ul.products");e.customPaging=function(){return'<i class="fas fa-circle"></i>'},o.slick(e)}},d.handleGridMetro=function(){var e=s.find("ul.products"),o=elementorFrontend.getCurrentDeviceMode(),i="",t=e.width(),a=Math.floor(t/12);if("tablet"===o?i="_tablet":"mobile"===o&&(i="_mobile"),"custom"===s.data("metro-style")){var r=0,d=0,n=s.data("metro"),c=n["wPattern"+i],u=n["hPattern"+i];""===c&&(c="12"),""===u&&(u="12"),c=c.split(","),u=u.split(","),r+=c.length,d+=u.length,e.find("li.product").each(function(e,o){var i=e%d,t=parseInt(c[e%r]),n=parseInt(u[i]);l(o).css({width:Math.floor(t)*a,height:Math.floor(n)*a})})}e.imagesLoaded(function(){}).done(function(){e.isotope({itemSelector:"li.product",percentPosition:!0,animationOptions:{duration:750,easing:"linear"},layoutMode:"masonry",masonry:{columnWidth:a}})})},d.handleProductQuickView=function(){i.appendTo(document.body),s.on("click",".premium-woo-qv-btn",d.triggerQuickViewModal),window.addEventListener("resize",function(){d.updateQuickViewHeight()})},d.triggerQuickViewModal=function(e){e.preventDefault();var o=l(this).data("product-id");a.hasClass("loading")||a.addClass("loading"),n.hasClass("premium-woo-quick-view-active")||n.addClass("premium-woo-quick-view-active"),l(document).trigger("uael_quick_view_loading"),d.getProductByAjax(o),d.addCloseEvents()},d.getProductByAjax=function(e){l.ajax({url:PremiumWooSettings.ajaxurl,data:{action:"get_woo_product_qv",product_id:e,nonce:PremiumWooSettings.qv_nonce},dataType:"html",type:"POST",success:function(e){c.html(e),d.handleQuickViewModal()}})},d.addCloseEvents=function(){var e=a.find("#premium-woo-quick-view-close");l(document).keyup(function(e){27===e.keyCode&&d.closeModal()}),e.on("click",function(e){e.preventDefault(),d.closeModal()}),t.on("click",function(e){this===e.target&&d.closeModal()})},d.handleQuickViewModal=function(){if(!a.hasClass("active")){a.removeClass("loading").addClass("active");var e=d.getBarWidth();l("html").css("margin-right",e),l("html").addClass("premium-woo-qv-opened")}c.imagesLoaded(function(){d.handleQuickViewSlider()})},d.getBarWidth=function(){var e=l('<div style="width:50px;height:50px;overflow:hidden;position:absolute;top:-200px;left:-200px;"><div style="height:100px;"></div>');l("body").append(e);var o=l("div",e).innerWidth();e.css("overflow-y","scroll");var i=l("div",e).innerWidth();return l(e).remove(),o-i},d.handleQuickViewSlider=function(){var e=a.find(".premium-woo-qv-image-slider");e.find("li").length?e.flexslider({animation:"slide",start:function(){setTimeout(function(){d.updateQuickViewHeight(!0)},300)}}):setTimeout(function(){d.updateQuickViewHeight(!0)},300)},d.updateQuickViewHeight=function(e){var o=c,i=o.find(".product .uael-qv-image-slider").first().height(),t=o.find(".product .summary.entry-summary"),n=t.css("content");void 0!==n&&544==n.replace(/[^0-9]/g,"")&&0!=i&&null!==i?t.css("height",i):t.css("height",""),!0===e&&a.css("opacity",1)},d.closeModal=function(){n.removeClass("premium-woo-quick-view-active"),a.removeClass("active").removeClass("loading"),l("html").removeClass("premium-woo-qv-opened"),l("html").css("margin-right",""),setTimeout(function(){c.html("")},600)},d.handleAddToCart=function(){s.on("click",".premium-woo-cart-btn.product_type_simple",d.onBtnClick).on("premium_product_add_to_cart",d.handleBtnClick)},d.onBtnClick=function(e){e.preventDefault();var o=l(this),i=o.data("product_id");o.removeClass("added").addClass("adding"),l.ajax({url:PremiumWooSettings.ajaxurl,type:"POST",data:"action=premium_woo_add_cart_product&product_id="+i+"&quantity=1",success:function(){l(document.body).trigger("wc_fragment_refresh"),s.trigger("premium_product_add_to_cart",[o])}})},d.handleBtnClick=function(e,o){o&&o.removeClass("adding").addClass("added")},d.handleGalleryImages=function(){s.on("click",".premium-woo-product__gallery_image",function(){var e=l(this);e.closest(".premium-woo-product-thumbnail").find(".woocommerce-loop-product__link img").replaceWith(e.clone(!0))})},d.handleProductPagination=function(){s.on("click",".premium-woo-products-pagination a.page-numbers",function(e){var o=l(this);if(!s.hasClass("premium-woo-query-main")){e.preventDefault(),s.find("ul.products").after('<div class="premium-loading-feed"><div class="premium-loader"></div></div>');var i=s.data("page-id"),t=s.find(".page-numbers.current").index(),n=s.data("skin"),a=1;a=o.hasClass("next")?t+1:o.hasClass("prev")?t-1:o.html(),l.ajax({url:PremiumWooSettings.ajaxurl,data:{action:"get_woo_products",pageID:i,elemID:r.data("id"),category:"",skin:n,page_number:a,nonce:PremiumWooSettings.products_nonce},dataType:"json",type:"POST",success:function(e){s.find(".premium-loading-feed").remove(),l("html, body").animate({scrollTop:r.find(".premium-woocommerce").offset().top-100},"slow"),s.find("ul.products").replaceWith(e.data.html),s.find(".premium-woo-products-pagination").replaceWith(e.data.pagination),s.hasClass("premium-woo-products-metro")&&d.handleGridMetro()},error:function(e){console.log(e)}})}})}},l(window).on("elementor/frontend/init",function(){elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-1",e),elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-2",e),elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-3",e),elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-4",e),elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-5",e),elementorFrontend.hooks.addAction("frontend/element_ready/premium-woo-products.grid-6",e)})}(jQuery);
|
|
includes/addons-integration.php
CHANGED
@@ -44,7 +44,7 @@ class Addons_Integration {
|
|
44 |
|
45 |
add_action( 'elementor/editor/before_enqueue_styles', array( $this, 'enqueue_editor_styles' ) );
|
46 |
|
47 |
-
add_action( 'elementor/elements/categories_registered', array( $this, 'register_widgets_category' )
|
48 |
|
49 |
add_action( 'elementor/widgets/widgets_registered', array( $this, 'widgets_area' ) );
|
50 |
|
@@ -167,10 +167,17 @@ class Addons_Integration {
|
|
167 |
* @since 4.0.0
|
168 |
* @access public
|
169 |
*
|
|
|
|
|
170 |
*/
|
171 |
-
public function register_widgets_category() {
|
172 |
-
|
173 |
-
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
}
|
176 |
|
@@ -201,13 +208,14 @@ class Addons_Integration {
|
|
201 |
|
202 |
//Fixes the conflict between Lottie widget/addon keys
|
203 |
if( 'premium-lottie' === $slug ) {
|
204 |
-
|
205 |
//Check if Lottie widget switcher value was saved before.
|
206 |
$saved_options = get_option( 'pa_save_settings' );
|
207 |
|
208 |
$slug = 'premium-lottie-widget';
|
209 |
|
210 |
-
if
|
|
|
211 |
$check_component_active[ $slug ] = 1;
|
212 |
}
|
213 |
|
44 |
|
45 |
add_action( 'elementor/editor/before_enqueue_styles', array( $this, 'enqueue_editor_styles' ) );
|
46 |
|
47 |
+
add_action( 'elementor/elements/categories_registered', array( $this, 'register_widgets_category' ) );
|
48 |
|
49 |
add_action( 'elementor/widgets/widgets_registered', array( $this, 'widgets_area' ) );
|
50 |
|
167 |
* @since 4.0.0
|
168 |
* @access public
|
169 |
*
|
170 |
+
* @param object $elements_manager
|
171 |
+
*
|
172 |
*/
|
173 |
+
public function register_widgets_category( $elements_manager ) {
|
174 |
+
|
175 |
+
$elements_manager->add_category(
|
176 |
+
'premium-elements',
|
177 |
+
array(
|
178 |
+
'title' => Helper_Functions::get_category()
|
179 |
+
),
|
180 |
+
1);
|
181 |
|
182 |
}
|
183 |
|
208 |
|
209 |
//Fixes the conflict between Lottie widget/addon keys
|
210 |
if( 'premium-lottie' === $slug ) {
|
211 |
+
|
212 |
//Check if Lottie widget switcher value was saved before.
|
213 |
$saved_options = get_option( 'pa_save_settings' );
|
214 |
|
215 |
$slug = 'premium-lottie-widget';
|
216 |
|
217 |
+
//Check if settings were saved before
|
218 |
+
if( ! isset( $saved_options[ 'is-updated' ] ) ) {
|
219 |
$check_component_active[ $slug ] = 1;
|
220 |
}
|
221 |
|
includes/class-pa-core.php
CHANGED
@@ -169,6 +169,17 @@ if( ! class_exists('PA_Core') ) {
|
|
169 |
|
170 |
Addons_Integration::get_instance();
|
171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
//Make sure Woocommerce is insalled and active.
|
173 |
// if( class_exists('Woocommerce') ) {
|
174 |
// Modules_Manager::get_instance();
|
169 |
|
170 |
Addons_Integration::get_instance();
|
171 |
|
172 |
+
if ( version_compare( ELEMENTOR_VERSION, '2.0.0' ) < 0 ) {
|
173 |
+
|
174 |
+
\Elementor\Plugin::instance()->elements_manager->add_category(
|
175 |
+
'premium-elements',
|
176 |
+
array(
|
177 |
+
'title' => Helper_Functions::get_category()
|
178 |
+
),
|
179 |
+
1
|
180 |
+
);
|
181 |
+
}
|
182 |
+
|
183 |
//Make sure Woocommerce is insalled and active.
|
184 |
// if( class_exists('Woocommerce') ) {
|
185 |
// Modules_Manager::get_instance();
|
includes/templates/scripts/template-modal-header-logo.php
CHANGED
@@ -2,11 +2,14 @@
|
|
2 |
/**
|
3 |
* Template Library Modal Header
|
4 |
*/
|
|
|
|
|
|
|
5 |
?>
|
6 |
<span class="premium-template-modal-header-logo-icon">
|
7 |
<img src="<?php echo PREMIUM_ADDONS_URL .'admin/images/premium-addons-logo.png'; ?>">
|
8 |
</span>
|
9 |
<span class="premium-template-modal-header-logo-label">
|
10 |
-
<?php echo __('
|
11 |
</span>
|
12 |
|
2 |
/**
|
3 |
* Template Library Modal Header
|
4 |
*/
|
5 |
+
|
6 |
+
use PremiumAddons\Includes\Helper_Functions;
|
7 |
+
|
8 |
?>
|
9 |
<span class="premium-template-modal-header-logo-icon">
|
10 |
<img src="<?php echo PREMIUM_ADDONS_URL .'admin/images/premium-addons-logo.png'; ?>">
|
11 |
</span>
|
12 |
<span class="premium-template-modal-header-logo-label">
|
13 |
+
<?php echo sprintf( '%1$s %2$s', Helper_Functions::get_prefix(), __('Templates', 'premium-addons-for-elementor') ); ?>
|
14 |
</span>
|
15 |
|
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: 2020-
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
@@ -20,1054 +20,1047 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPathExcluded-1: admin/assets/js\n"
|
21 |
"X-Poedit-SearchPathExcluded-2: node_modules\n"
|
22 |
|
23 |
-
#: admin/includes/admin-
|
24 |
-
|
25 |
-
"
|
26 |
-
"Elementor plugin."
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: admin/includes/admin-notices.php:136
|
30 |
-
msgid "Install Now"
|
31 |
-
msgstr ""
|
32 |
-
|
33 |
-
#: admin/includes/admin-notices.php:144
|
34 |
-
msgid ""
|
35 |
-
"Premium Addons for Elementor is not working because you need to activate "
|
36 |
-
"Elementor plugin."
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#: admin/includes/admin-notices.php:146
|
40 |
-
msgid "Activate Now"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: admin/includes/admin-notices.php:164
|
44 |
-
msgid "Did you like"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: admin/includes/admin-notices.php:164
|
48 |
-
msgid "Plugin?"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: admin/includes/admin-notices.php:165
|
52 |
-
msgid ""
|
53 |
-
"Could you please do us a BIG favor ? if you could take 2 min of your time, "
|
54 |
-
"we'd really appreciate if you give Premium Addons for Elementor 5-star "
|
55 |
-
"rating on WordPress. By spreading the love, we can create even greater free "
|
56 |
-
"stuff in the future!"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: admin/includes/admin-notices.php:166
|
60 |
-
msgid "Leave a Review"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: admin/includes/admin-notices.php:167
|
64 |
-
msgid "Maybe Later"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: admin/includes/admin-notices.php:168
|
68 |
-
msgid "I Already did"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: admin/includes/admin-
|
72 |
-
msgid "
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: admin/includes/admin-
|
76 |
-
msgid "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: admin/includes/admin-
|
80 |
-
msgid "
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin/includes/
|
84 |
msgid "Settings"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: admin/includes/
|
|
|
88 |
msgid "Rollback to Version "
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: admin/includes/
|
92 |
msgid "Go Pro"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: admin/includes/
|
96 |
msgid "View Premium Addons for Elementor Documentation"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin/includes/
|
100 |
msgid "Docs & FAQs"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: admin/includes/
|
104 |
msgid "View Premium Addons Video Tutorials"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: admin/includes/
|
108 |
msgid "Video Tutorials"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: admin/includes/
|
112 |
-
|
|
|
|
|
|
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: admin/includes/
|
116 |
-
|
117 |
-
msgid "Duplicated: %s - [#%d]"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin/includes/
|
121 |
-
#:
|
122 |
-
msgid "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin/includes/
|
126 |
-
msgid "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin/includes/
|
130 |
-
msgid "
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/includes/
|
134 |
-
msgid "
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin/includes/
|
138 |
-
|
139 |
-
#: admin/settings/modules-setting.php:166
|
140 |
-
#, php-format
|
141 |
-
msgid ""
|
142 |
-
"Thank you for using %s. This plugin has been developed by %s and we hope you "
|
143 |
-
"enjoy using it."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: admin/includes/
|
147 |
-
msgid "
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin/includes/
|
|
|
151 |
msgid ""
|
152 |
-
"
|
153 |
-
"
|
154 |
-
"impressive websites with no coding required."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin/includes/
|
158 |
-
msgid "Get
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/includes/
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin/includes/
|
166 |
-
msgid "
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: admin/includes/
|
170 |
-
msgid "
|
|
|
|
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin/includes/
|
174 |
-
msgid "
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin/includes/
|
178 |
msgid ""
|
179 |
-
"
|
180 |
-
"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin/includes/
|
184 |
-
msgid " for
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: admin/includes/
|
188 |
-
msgid "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: admin/includes/
|
192 |
-
msgid "
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: admin/includes/
|
196 |
-
msgid "
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: admin/includes/
|
200 |
-
|
201 |
-
msgid "Did you like Premium Addons for Elementor Plugin? Please "
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin/includes/
|
205 |
-
|
206 |
-
msgid "Click Here to Rate it ★★★★★"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin/includes/
|
210 |
-
|
|
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin/includes/
|
214 |
-
msgid "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin/includes/
|
218 |
-
msgid "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin/includes/
|
222 |
#, php-format
|
223 |
-
msgid ""
|
224 |
-
"Experiencing an issue with Premium Addons for Elementor version %s? Rollback "
|
225 |
-
"to a previous version before the issue appeared."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/includes/
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin/includes/
|
233 |
-
|
|
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin/includes/
|
237 |
-
|
|
|
|
|
|
|
|
|
|
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin/includes/
|
241 |
-
|
242 |
-
|
243 |
-
"Addons for Elementor. The Beta version will not install automatically. You "
|
244 |
-
"always have the option to ignore it."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: admin/includes/
|
248 |
-
|
|
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: admin/includes/
|
252 |
-
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: admin/includes/
|
256 |
-
msgid ""
|
257 |
-
"Please Note: We do not recommend updating to a beta version on production "
|
258 |
-
"sites."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: admin/includes/
|
262 |
-
|
263 |
-
msgid "Save Settings"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin/
|
267 |
-
|
|
|
|
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin/
|
271 |
-
msgid ""
|
272 |
-
" Maps Element requires Google API key to be entered below. If you don’t have "
|
273 |
-
"one, click "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin/
|
277 |
-
|
|
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin/
|
281 |
-
|
|
|
|
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: admin/
|
285 |
-
|
|
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin/
|
289 |
-
|
|
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin/
|
293 |
-
|
|
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin/
|
297 |
-
msgid ""
|
298 |
-
"This will load API JS file if it's not loaded by another theme or plugin"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin/
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin/
|
310 |
-
msgid "
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: admin/
|
314 |
-
|
|
|
|
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: admin/
|
318 |
-
msgid "
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin/
|
322 |
-
|
|
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin/
|
326 |
-
msgid "
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/
|
330 |
-
|
331 |
-
#: widgets/premium-button.php:80 widgets/premium-button.php:655
|
332 |
-
#: widgets/premium-contactform.php:202 widgets/premium-contactform.php:438
|
333 |
-
#: widgets/premium-image-button.php:77 widgets/premium-image-button.php:529
|
334 |
-
#: widgets/premium-modalbox.php:340 widgets/premium-pricing-table.php:474
|
335 |
-
#: widgets/premium-pricing-table.php:792 widgets/premium-pricing-table.php:1717
|
336 |
-
msgid "Button"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin/
|
340 |
-
|
341 |
-
#: widgets/premium-person.php:799 widgets/premium-person.php:1282
|
342 |
-
msgid "Carousel"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/
|
346 |
-
msgid "
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin/
|
350 |
-
#: widgets/premium-
|
351 |
-
msgid "
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin/
|
355 |
-
|
356 |
-
msgid "Counter"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: admin/
|
360 |
-
#: widgets/premium-
|
361 |
-
msgid "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin/
|
365 |
-
|
366 |
-
#: widgets/premium-fancytext.php:400
|
367 |
-
msgid "Fancy Text"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin/
|
371 |
-
msgid "
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin/
|
375 |
-
msgid "
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: admin/
|
379 |
-
msgid "
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin/
|
383 |
-
|
384 |
-
msgid "Image Separator"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin/
|
388 |
-
msgid "
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: admin/
|
392 |
-
msgid "
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/
|
396 |
-
#: widgets/premium-
|
397 |
-
msgid "
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: admin/
|
401 |
-
|
|
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: admin/
|
405 |
-
#: widgets/premium-
|
406 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin/
|
410 |
-
#: widgets/premium-
|
411 |
-
msgid "
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/
|
415 |
-
msgid "
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: admin/
|
419 |
-
|
420 |
-
#: widgets/premium-blog.php:1214 widgets/premium-counter.php:80
|
421 |
-
#: widgets/premium-counter.php:541 widgets/premium-grid.php:561
|
422 |
-
#: widgets/premium-grid.php:1193 widgets/premium-maps.php:243
|
423 |
-
#: widgets/premium-maps.php:451 widgets/premium-modalbox.php:227
|
424 |
-
#: widgets/premium-person.php:342 widgets/premium-person.php:578
|
425 |
-
#: widgets/premium-pricing-table.php:154 widgets/premium-pricing-table.php:761
|
426 |
-
#: widgets/premium-pricing-table.php:980 widgets/premium-progressbar.php:187
|
427 |
-
#: widgets/premium-progressbar.php:632 widgets/premium-title.php:43
|
428 |
-
#: widgets/premium-title.php:84 widgets/premium-title.php:90
|
429 |
-
#: widgets/premium-title.php:537
|
430 |
-
msgid "Title"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/
|
434 |
-
|
435 |
-
msgid "Video Box"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin/
|
439 |
-
msgid "
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin/
|
443 |
-
msgid "
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/
|
447 |
-
|
448 |
-
msgid "Templates"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin/
|
452 |
-
msgid "
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin/
|
456 |
-
msgid "
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin/
|
460 |
-
msgid "
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/
|
464 |
-
|
|
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin/
|
468 |
-
|
|
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin/
|
472 |
-
msgid "
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin/
|
476 |
-
msgid "
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/
|
480 |
-
|
|
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin/
|
484 |
-
msgid "
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/
|
488 |
-
msgid "
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/
|
492 |
-
msgid "
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/
|
496 |
-
msgid "
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/
|
508 |
-
msgid "
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin/
|
512 |
-
msgid "
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin/
|
524 |
-
msgid "
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin/
|
528 |
-
msgid "
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin/
|
532 |
-
|
|
|
|
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/
|
536 |
-
msgid "
|
|
|
|
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin/
|
540 |
-
msgid "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/
|
544 |
-
msgid "
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/
|
548 |
-
msgid "
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/
|
552 |
-
msgid "
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/
|
556 |
-
|
|
|
|
|
|
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/
|
560 |
-
msgid "Premium
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin/
|
564 |
-
msgid "
|
|
|
|
|
|
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin/
|
568 |
-
msgid "
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin/
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: admin/
|
576 |
-
msgid "
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/
|
580 |
-
msgid "
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/
|
584 |
-
msgid "
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: includes/
|
588 |
-
msgid "
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: includes/
|
592 |
-
msgid "
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: includes/
|
596 |
-
|
|
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: includes/
|
600 |
-
|
|
|
|
|
|
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: includes/
|
604 |
-
msgid "
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: includes/
|
608 |
-
|
|
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: includes/
|
612 |
-
msgid "
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: includes/
|
616 |
-
msgid "
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: includes/
|
620 |
-
msgid "
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: includes/
|
624 |
-
msgid "
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: includes/
|
628 |
-
msgid "
|
|
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: includes/
|
632 |
-
msgid "
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: includes/
|
636 |
-
msgid "
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: includes/
|
640 |
-
msgid "
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/
|
644 |
-
msgid "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: includes/
|
648 |
-
msgid "
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: includes/
|
652 |
-
msgid "
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: includes/
|
656 |
-
msgid "
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/
|
660 |
-
msgid "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/
|
664 |
-
msgid "
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/
|
668 |
-
msgid "
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/
|
672 |
-
|
|
|
|
|
|
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: includes/
|
676 |
-
msgid "
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: includes/
|
680 |
-
msgid "
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: includes/
|
684 |
-
msgid "
|
|
|
|
|
|
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: includes/
|
688 |
-
msgid "
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: includes/
|
692 |
-
msgid "
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: includes/
|
696 |
-
msgid "
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: includes/
|
700 |
-
|
|
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: includes/
|
704 |
-
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: includes/
|
708 |
-
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: includes/
|
712 |
-
|
|
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: includes/
|
716 |
-
msgid "
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/
|
720 |
-
msgid "
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: includes/
|
724 |
-
msgid "
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: includes/
|
728 |
-
msgid "
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: includes/
|
732 |
-
msgid "
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: includes/
|
736 |
-
msgid "
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: includes/
|
740 |
-
msgid "
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: includes/
|
744 |
-
msgid "
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: includes/
|
748 |
-
msgid "
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: includes/
|
752 |
-
msgid "
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/
|
756 |
-
msgid "
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/
|
760 |
-
msgid "
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/
|
764 |
-
msgid "
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/
|
768 |
-
msgid "
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: includes/
|
772 |
-
msgid "
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: includes/
|
776 |
-
msgid "
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: includes/
|
780 |
-
msgid "
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: includes/
|
784 |
-
msgid "
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: includes/
|
788 |
-
msgid "
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: includes/
|
792 |
-
msgid "
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: includes/
|
796 |
-
msgid "
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: includes/
|
800 |
-
msgid "
|
|
|
|
|
|
|
|
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/compatibility/
|
804 |
msgid "Banner: Title"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: includes/compatibility/
|
808 |
msgid "Banner: Description"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: includes/compatibility/
|
812 |
msgid "Banner: Button Text"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: includes/compatibility/
|
816 |
msgid "Banner: URL"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: includes/compatibility/
|
820 |
msgid "Banner: Button URL"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: includes/compatibility/
|
824 |
-
#: includes/compatibility/
|
825 |
msgid "Button: Text"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: includes/compatibility/
|
829 |
-
#: includes/compatibility/
|
830 |
msgid "Button: URL"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: includes/compatibility/
|
834 |
msgid "Countdown: Expiration Message"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: includes/compatibility/
|
838 |
msgid "Countdown: Day Singular"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/compatibility/
|
842 |
msgid "Countdown: Day Plural"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: includes/compatibility/
|
846 |
msgid "Countdown: Week Singular"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: includes/compatibility/
|
850 |
msgid "Countdown: Week Plural"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: includes/compatibility/
|
854 |
msgid "Countdown: Month Singular"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: includes/compatibility/
|
858 |
msgid "Countdown: Month Plural"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: includes/compatibility/
|
862 |
msgid "Countdown: Year Singular"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/compatibility/
|
866 |
msgid "Countdown: Year Plural"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: includes/compatibility/
|
870 |
msgid "Countdown: Hour Singular"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: includes/compatibility/
|
874 |
msgid "Countdown: Hour Plural"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: includes/compatibility/
|
878 |
msgid "Countdown: Minute Singular"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: includes/compatibility/
|
882 |
msgid "Countdown: Minute Plural"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: includes/compatibility/
|
886 |
msgid "Countdown: Second Singular"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: includes/compatibility/
|
890 |
msgid "Countdown: Second Plural"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: includes/compatibility/
|
894 |
msgid "Countdown: Direction URL"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/compatibility/
|
898 |
msgid "Counter: Title Text"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/compatibility/
|
902 |
msgid "Counter: Thousands Separator"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: includes/compatibility/
|
906 |
msgid "Counter: Prefix"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: includes/compatibility/
|
910 |
msgid "Counter: Suffix"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: includes/compatibility/
|
914 |
-
#: includes/compatibility/
|
915 |
msgid "Advanced Heading: Heading URL"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: includes/compatibility/
|
919 |
msgid "Dual Heading: First Heading"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: includes/compatibility/
|
923 |
msgid "Dual Heading: Second Heading"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/compatibility/
|
927 |
msgid "Fancy Text: Prefix"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/compatibility/
|
931 |
msgid "Fancy Text: Suffix"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/compatibility/
|
935 |
msgid "Fancy Text: Cursor Text"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: includes/compatibility/
|
939 |
msgid "Grid: Load More Button"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: includes/compatibility/
|
943 |
msgid "Image Scroll: Link Title"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/compatibility/
|
947 |
msgid "Image Scroll: URL"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/compatibility/
|
951 |
msgid "Image Separator: Link Title"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/compatibility/
|
955 |
msgid "Image Separator: URL"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: includes/compatibility/
|
959 |
msgid "Maps: Center Latitude"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: includes/compatibility/
|
963 |
msgid "Maps: Center Longitude"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: includes/compatibility/
|
967 |
msgid "Modal Box: Header Title"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: includes/compatibility/
|
971 |
msgid "Modal Box: Content Text"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: includes/compatibility/
|
975 |
msgid "Modal Box: Close Button"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: includes/compatibility/
|
979 |
msgid "Modal Box: Trigger Button"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: includes/compatibility/
|
983 |
msgid "Modal Box: Trigger Text"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/compatibility/
|
987 |
msgid "Person: Name"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: includes/compatibility/
|
991 |
msgid "Person: Title"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: includes/compatibility/
|
995 |
msgid "Person: Description"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: includes/compatibility/
|
999 |
msgid "Pricing Table: Title"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/compatibility/
|
1003 |
msgid "Pricing Table: Slashed Price"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: includes/compatibility/
|
1007 |
msgid "Pricing Table: Currency"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/compatibility/
|
1011 |
msgid "Pricing Table: Price Value"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/compatibility/
|
1015 |
msgid "Pricing Table: Separator"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/compatibility/
|
1019 |
msgid "Pricing Table: Duration"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/compatibility/
|
1023 |
msgid "Pricing Table: Description"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: includes/compatibility/
|
1027 |
msgid "Pricing Table: Button Text"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/compatibility/
|
1031 |
msgid "Pricing Table: Button URL"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/compatibility/
|
1035 |
msgid "Pricing Table: Badge"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: includes/compatibility/
|
1039 |
msgid "Progress Bar: Left Label"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/compatibility/
|
1043 |
msgid "Testimonial: Name"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/compatibility/
|
1047 |
msgid "Testimonial: Company"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/compatibility/
|
1051 |
msgid "Testimonial: Company Link"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/compatibility/
|
1055 |
msgid "Testimonial: Content"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: includes/compatibility/
|
1059 |
msgid "Title: Text"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/compatibility/
|
1063 |
msgid "Video Box: Link"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/compatibility/
|
1067 |
msgid "Video Box: Description"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: includes/compatibility/
|
1071 |
msgid "Vertical Scroll: Tooltips"
|
1072 |
msgstr ""
|
1073 |
|
@@ -1115,20 +1108,259 @@ msgstr ""
|
|
1115 |
msgid "Vertical Scroll: Section ID"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/
|
1119 |
-
|
1120 |
-
msgid "Premium Templates"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/
|
1124 |
-
msgid "
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/
|
1128 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1132 |
#: widgets/premium-grid.php:294
|
1133 |
msgid "All"
|
1134 |
msgstr ""
|
@@ -1173,21 +1405,1559 @@ msgstr ""
|
|
1173 |
msgid "Sections"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#:
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
#:
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1185 |
msgid "Image"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1189 |
#: widgets/premium-grid.php:409 widgets/premium-modalbox.php:150
|
1190 |
-
#: widgets/premium-progressbar.php:241 widgets/premium-title.php:
|
1191 |
msgid "Upload Image"
|
1192 |
msgstr ""
|
1193 |
|
@@ -1196,15 +2966,15 @@ msgid "Select an image for the Banner"
|
|
1196 |
msgstr ""
|
1197 |
|
1198 |
#: widgets/premium-banner.php:110 widgets/premium-banner.php:413
|
1199 |
-
#: widgets/premium-blog.php:
|
1200 |
#: widgets/premium-dual-header.php:137 widgets/premium-dual-header.php:161
|
1201 |
-
#: widgets/premium-grid.php:
|
1202 |
-
#: widgets/premium-image-
|
1203 |
-
#: widgets/premium-
|
1204 |
-
#: widgets/premium-
|
1205 |
-
#: widgets/premium-testimonials.php:
|
1206 |
-
#: widgets/premium-title.php:
|
1207 |
-
#: widgets/premium-videobox.php:
|
1208 |
msgid "Link"
|
1209 |
msgstr ""
|
1210 |
|
@@ -1227,18 +2997,20 @@ msgstr ""
|
|
1227 |
#: widgets/premium-banner.php:142 widgets/premium-banner.php:400
|
1228 |
#: widgets/premium-banner.php:431 widgets/premium-button.php:100
|
1229 |
#: widgets/premium-button.php:126 widgets/premium-dual-header.php:149
|
1230 |
-
#: widgets/premium-dual-header.php:179 widgets/premium-grid.php:
|
1231 |
-
#: widgets/premium-grid.php:
|
1232 |
-
#: widgets/premium-
|
1233 |
-
#: widgets/premium-image-
|
1234 |
-
#: widgets/premium-image-
|
1235 |
-
#: widgets/premium-
|
1236 |
-
#: widgets/premium-
|
1237 |
-
#: widgets/premium-title.php:
|
|
|
1238 |
msgid "Existing Page"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: widgets/premium-banner.php:156 widgets/premium-
|
|
|
1242 |
msgid "Link Title"
|
1243 |
msgstr ""
|
1244 |
|
@@ -1290,81 +3062,52 @@ msgstr ""
|
|
1290 |
msgid "Effect 6"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: widgets/premium-banner.php:
|
1294 |
-
msgid "
|
1295 |
-
msgstr ""
|
1296 |
-
|
1297 |
-
#: widgets/premium-banner.php:213
|
1298 |
-
msgid "Choose if you want the effect to be always triggered"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: widgets/premium-banner.php:
|
1302 |
-
|
1303 |
-
#: widgets/premium-image-button.php:137 widgets/premium-person.php:168
|
1304 |
-
msgid "Hover Effect"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: widgets/premium-banner.php:
|
1308 |
-
|
1309 |
-
#: widgets/premium-button.php:144 widgets/premium-grid.php:769
|
1310 |
-
#: widgets/premium-image-button.php:141 widgets/premium-modalbox.php:120
|
1311 |
-
#: widgets/premium-person.php:171 widgets/premium-progressbar.php:380
|
1312 |
-
msgid "None"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: widgets/premium-banner.php:
|
1316 |
-
|
1317 |
-
msgid "Zoom In"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: widgets/premium-banner.php:
|
1321 |
-
|
1322 |
-
#: widgets/premium-person.php:173
|
1323 |
-
msgid "Zoom Out"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: widgets/premium-banner.php:
|
1327 |
-
|
1328 |
-
msgid "Scale"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: widgets/premium-banner.php:
|
1332 |
-
#: widgets/premium-
|
1333 |
-
|
|
|
|
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: widgets/premium-banner.php:227 widgets/premium-blog.php:
|
1337 |
-
#: widgets/premium-grid.php:
|
|
|
|
|
1338 |
msgid "Blur"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: widgets/premium-banner.php:
|
1342 |
-
#: widgets/premium-grid.php:775 widgets/premium-person.php:177
|
1343 |
-
msgid "Bright"
|
1344 |
-
msgstr ""
|
1345 |
-
|
1346 |
-
#: widgets/premium-banner.php:229 widgets/premium-blog.php:416
|
1347 |
-
#: widgets/premium-grid.php:776 widgets/premium-person.php:178
|
1348 |
-
msgid "Sepia"
|
1349 |
-
msgstr ""
|
1350 |
-
|
1351 |
-
#: widgets/premium-banner.php:237 widgets/premium-blog.php:427
|
1352 |
#: widgets/premium-contactform.php:151 widgets/premium-contactform.php:230
|
1353 |
#: widgets/premium-grid.php:114 widgets/premium-grid.php:439
|
1354 |
-
#: widgets/premium-grid.php:
|
1355 |
#: widgets/premium-progressbar.php:486 widgets/premium-progressbar.php:869
|
1356 |
msgid "Height"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: widgets/premium-banner.php:240 widgets/premium-grid.php:921
|
1360 |
-
msgid "Default"
|
1361 |
-
msgstr ""
|
1362 |
-
|
1363 |
-
#: widgets/premium-banner.php:241 widgets/premium-counter.php:429
|
1364 |
-
#: widgets/premium-fancytext.php:174
|
1365 |
-
msgid "Custom"
|
1366 |
-
msgstr ""
|
1367 |
-
|
1368 |
#: widgets/premium-banner.php:244
|
1369 |
msgid ""
|
1370 |
"Choose if you want to set a custom height for the banner or keep it as it is"
|
@@ -1382,10 +3125,11 @@ msgstr ""
|
|
1382 |
msgid "Vertical Align"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: widgets/premium-banner.php:270 widgets/premium-
|
1386 |
-
#: widgets/premium-
|
|
|
1387 |
#: widgets/premium-pricing-table.php:1146 widgets/premium-testimonials.php:248
|
1388 |
-
#: widgets/premium-title.php:
|
1389 |
#: widgets/premium-vscroll.php:289
|
1390 |
msgid "Top"
|
1391 |
msgstr ""
|
@@ -1394,9 +3138,10 @@ msgstr ""
|
|
1394 |
msgid "Middle"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: widgets/premium-banner.php:272 widgets/premium-
|
1398 |
-
#: widgets/premium-
|
1399 |
-
#: widgets/premium-
|
|
|
1400 |
msgid "Bottom"
|
1401 |
msgstr ""
|
1402 |
|
@@ -1409,16 +3154,17 @@ msgid "Enable Mouse Tilt"
|
|
1409 |
msgstr ""
|
1410 |
|
1411 |
#: widgets/premium-banner.php:292 widgets/premium-button.php:308
|
1412 |
-
#: widgets/premium-button.php:381 widgets/premium-counter.php:
|
1413 |
-
#: widgets/premium-
|
1414 |
-
#: widgets/premium-image-
|
1415 |
-
#: widgets/premium-
|
1416 |
-
#: widgets/premium-
|
1417 |
-
#: widgets/premium-
|
|
|
1418 |
msgid "Reverse"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: widgets/premium-banner.php:303 widgets/premium-carousel.php:
|
1422 |
msgid "Extra Class"
|
1423 |
msgstr ""
|
1424 |
|
@@ -1428,10 +3174,10 @@ msgid ""
|
|
1428 |
"this class for your customizations."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: widgets/premium-banner.php:315 widgets/premium-carousel.php:
|
1432 |
#: widgets/premium-modalbox.php:98 widgets/premium-modalbox.php:242
|
1433 |
-
#: widgets/premium-modalbox.php:264 widgets/premium-person.php:
|
1434 |
-
#: widgets/premium-testimonials.php:261 widgets/premium-testimonials.php:
|
1435 |
#: widgets/premium-vscroll.php:81
|
1436 |
msgid "Content"
|
1437 |
msgstr ""
|
@@ -1444,9 +3190,9 @@ msgstr ""
|
|
1444 |
msgid "Premium Banner"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: widgets/premium-banner.php:332 widgets/premium-dual-header.php:
|
1448 |
#: widgets/premium-pricing-table.php:173 widgets/premium-testimonials.php:112
|
1449 |
-
#: widgets/premium-testimonials.php:193 widgets/premium-title.php:
|
1450 |
msgid "HTML Tag"
|
1451 |
msgstr ""
|
1452 |
|
@@ -1455,17 +3201,6 @@ msgid ""
|
|
1455 |
"Select a heading tag for the title. Headings are defined with H1 to H6 tags"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: widgets/premium-banner.php:354 widgets/premium-banner.php:361
|
1459 |
-
#: widgets/premium-banner.php:716 widgets/premium-grid.php:569
|
1460 |
-
#: widgets/premium-grid.php:1223 widgets/premium-maps.php:252
|
1461 |
-
#: widgets/premium-maps.php:534 widgets/premium-person.php:352
|
1462 |
-
#: widgets/premium-person.php:588 widgets/premium-person.php:1034
|
1463 |
-
#: widgets/premium-pricing-table.php:454 widgets/premium-pricing-table.php:463
|
1464 |
-
#: widgets/premium-pricing-table.php:785 widgets/premium-pricing-table.php:1630
|
1465 |
-
#: widgets/premium-videobox.php:442
|
1466 |
-
msgid "Description"
|
1467 |
-
msgstr ""
|
1468 |
-
|
1469 |
#: widgets/premium-banner.php:362
|
1470 |
msgid "Give the description to this banner"
|
1471 |
msgstr ""
|
@@ -1477,112 +3212,41 @@ msgid ""
|
|
1477 |
msgstr ""
|
1478 |
|
1479 |
#: widgets/premium-banner.php:383 widgets/premium-button.php:86
|
1480 |
-
#: widgets/premium-
|
1481 |
-
#: widgets/premium-
|
1482 |
-
#: widgets/premium-
|
1483 |
-
#: widgets/premium-
|
1484 |
-
#: widgets/premium-pricing-table.php:
|
1485 |
-
#: widgets/premium-pricing-table.php:
|
|
|
|
|
|
|
1486 |
msgid "Text"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
#: widgets/premium-banner.php:396 widgets/premium-button.php:96
|
1490 |
-
#: widgets/premium-dual-header.php:145 widgets/premium-grid.php:
|
1491 |
-
#: widgets/premium-image-button.php:93 widgets/premium-lottie.php:
|
1492 |
-
#: widgets/premium-pricing-table.php:493 widgets/premium-title.php:
|
1493 |
msgid "Link Type"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
#: widgets/premium-banner.php:399 widgets/premium-button.php:99
|
1497 |
-
#: widgets/premium-dual-header.php:148 widgets/premium-grid.php:
|
1498 |
-
#: widgets/premium-
|
1499 |
-
#: widgets/premium-image-
|
1500 |
-
#: widgets/premium-image-
|
1501 |
-
#: widgets/premium-
|
1502 |
-
#: widgets/premium-
|
|
|
1503 |
msgid "URL"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: widgets/premium-banner.php:
|
1507 |
-
#: widgets/premium-blog.php:764 widgets/premium-blog.php:988
|
1508 |
-
#: widgets/premium-button.php:577 widgets/premium-countdown.php:167
|
1509 |
-
#: widgets/premium-counter.php:152 widgets/premium-dual-header.php:195
|
1510 |
-
#: widgets/premium-fancytext.php:134 widgets/premium-grid.php:374
|
1511 |
-
#: widgets/premium-image-button.php:483 widgets/premium-image-separator.php:217
|
1512 |
-
#: widgets/premium-lottie.php:229 widgets/premium-maps.php:505
|
1513 |
-
#: widgets/premium-maps.php:586 widgets/premium-modalbox.php:654
|
1514 |
-
#: widgets/premium-person.php:143 widgets/premium-pricing-table.php:421
|
1515 |
-
#: widgets/premium-pricing-table.php:1549 widgets/premium-title.php:286
|
1516 |
-
#: widgets/premium-title.php:315
|
1517 |
-
msgid "Alignment"
|
1518 |
-
msgstr ""
|
1519 |
-
|
1520 |
-
#: widgets/premium-banner.php:451 widgets/premium-blog.php:547
|
1521 |
-
#: widgets/premium-blog.php:768 widgets/premium-blog.php:992
|
1522 |
-
#: widgets/premium-button.php:581 widgets/premium-countdown.php:171
|
1523 |
-
#: widgets/premium-counter.php:156 widgets/premium-counter.php:272
|
1524 |
-
#: widgets/premium-counter.php:293 widgets/premium-counter.php:319
|
1525 |
-
#: widgets/premium-dual-header.php:199 widgets/premium-dual-header.php:237
|
1526 |
-
#: widgets/premium-fancytext.php:138 widgets/premium-fancytext.php:372
|
1527 |
-
#: widgets/premium-grid.php:241 widgets/premium-grid.php:378
|
1528 |
-
#: widgets/premium-grid.php:843 widgets/premium-image-button.php:487
|
1529 |
-
#: widgets/premium-image-separator.php:221 widgets/premium-lottie.php:233
|
1530 |
-
#: widgets/premium-maps.php:509 widgets/premium-maps.php:590
|
1531 |
-
#: widgets/premium-modalbox.php:658 widgets/premium-person.php:147
|
1532 |
-
#: widgets/premium-person.php:192 widgets/premium-pricing-table.php:425
|
1533 |
-
#: widgets/premium-pricing-table.php:652 widgets/premium-pricing-table.php:1553
|
1534 |
-
#: widgets/premium-progressbar.php:397 widgets/premium-title.php:237
|
1535 |
-
#: widgets/premium-title.php:290 widgets/premium-title.php:319
|
1536 |
-
#: widgets/premium-title.php:454 widgets/premium-vscroll.php:183
|
1537 |
-
#: widgets/premium-vscroll.php:274
|
1538 |
-
msgid "Left"
|
1539 |
-
msgstr ""
|
1540 |
-
|
1541 |
-
#: widgets/premium-banner.php:455 widgets/premium-blog.php:551
|
1542 |
-
#: widgets/premium-blog.php:772 widgets/premium-blog.php:996
|
1543 |
-
#: widgets/premium-button.php:585 widgets/premium-countdown.php:175
|
1544 |
-
#: widgets/premium-counter.php:160 widgets/premium-counter.php:297
|
1545 |
-
#: widgets/premium-counter.php:323 widgets/premium-dual-header.php:203
|
1546 |
-
#: widgets/premium-dual-header.php:241 widgets/premium-dual-header.php:269
|
1547 |
-
#: widgets/premium-fancytext.php:142 widgets/premium-fancytext.php:376
|
1548 |
-
#: widgets/premium-grid.php:245 widgets/premium-grid.php:382
|
1549 |
-
#: widgets/premium-grid.php:847 widgets/premium-image-button.php:491
|
1550 |
-
#: widgets/premium-image-separator.php:225 widgets/premium-lottie.php:237
|
1551 |
-
#: widgets/premium-maps.php:513 widgets/premium-maps.php:594
|
1552 |
-
#: widgets/premium-modalbox.php:662 widgets/premium-person.php:151
|
1553 |
-
#: widgets/premium-person.php:196 widgets/premium-pricing-table.php:429
|
1554 |
-
#: widgets/premium-pricing-table.php:1557 widgets/premium-progressbar.php:401
|
1555 |
-
#: widgets/premium-title.php:241 widgets/premium-title.php:294
|
1556 |
-
#: widgets/premium-title.php:323 widgets/premium-title.php:458
|
1557 |
-
msgid "Center"
|
1558 |
-
msgstr ""
|
1559 |
-
|
1560 |
-
#: widgets/premium-banner.php:459 widgets/premium-blog.php:555
|
1561 |
-
#: widgets/premium-blog.php:776 widgets/premium-blog.php:1000
|
1562 |
-
#: widgets/premium-button.php:589 widgets/premium-countdown.php:179
|
1563 |
-
#: widgets/premium-counter.php:164 widgets/premium-counter.php:271
|
1564 |
-
#: widgets/premium-counter.php:301 widgets/premium-counter.php:327
|
1565 |
-
#: widgets/premium-dual-header.php:207 widgets/premium-dual-header.php:245
|
1566 |
-
#: widgets/premium-fancytext.php:146 widgets/premium-fancytext.php:380
|
1567 |
-
#: widgets/premium-grid.php:249 widgets/premium-grid.php:386
|
1568 |
-
#: widgets/premium-grid.php:851 widgets/premium-image-button.php:495
|
1569 |
-
#: widgets/premium-image-separator.php:229 widgets/premium-lottie.php:241
|
1570 |
-
#: widgets/premium-maps.php:517 widgets/premium-maps.php:598
|
1571 |
-
#: widgets/premium-modalbox.php:666 widgets/premium-person.php:155
|
1572 |
-
#: widgets/premium-person.php:200 widgets/premium-pricing-table.php:433
|
1573 |
-
#: widgets/premium-pricing-table.php:656 widgets/premium-pricing-table.php:1561
|
1574 |
-
#: widgets/premium-progressbar.php:405 widgets/premium-title.php:245
|
1575 |
-
#: widgets/premium-title.php:298 widgets/premium-title.php:327
|
1576 |
-
#: widgets/premium-title.php:462 widgets/premium-vscroll.php:184
|
1577 |
-
#: widgets/premium-vscroll.php:275
|
1578 |
-
msgid "Right"
|
1579 |
-
msgstr ""
|
1580 |
-
|
1581 |
-
#: widgets/premium-banner.php:475 widgets/premium-grid.php:965
|
1582 |
msgid "Responsive"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: widgets/premium-banner.php:481 widgets/premium-grid.php:
|
1586 |
msgid "Responsive Controls"
|
1587 |
msgstr ""
|
1588 |
|
@@ -1592,928 +3256,613 @@ msgid ""
|
|
1592 |
"may enable this option which will hide the description text."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: widgets/premium-banner.php:489 widgets/premium-grid.php:
|
1596 |
msgid "Minimum Size"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: widgets/premium-banner.php:491 widgets/premium-grid.php:
|
1600 |
msgid "Note: minimum size for extra small screens is 1px."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: widgets/premium-banner.php:501 widgets/premium-grid.php:
|
1604 |
msgid "Maximum Size"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: widgets/premium-banner.php:503 widgets/premium-grid.php:
|
1608 |
msgid "Note: maximum size for extra small screens is 767px."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: widgets/premium-banner.php:
|
1612 |
-
#: widgets/premium-
|
1613 |
-
#: widgets/premium-
|
1614 |
-
#: widgets/premium-
|
1615 |
-
#: widgets/premium-
|
1616 |
-
#: widgets/premium-
|
1617 |
-
#: widgets/premium-
|
1618 |
-
#: widgets/premium-
|
1619 |
-
#: widgets/premium-
|
1620 |
-
|
1621 |
-
#: widgets/premium-counter.php:437 widgets/premium-counter.php:574
|
1622 |
-
#: widgets/premium-counter.php:666 widgets/premium-fancytext.php:433
|
1623 |
-
#: widgets/premium-fancytext.php:491 widgets/premium-fancytext.php:538
|
1624 |
-
#: widgets/premium-grid.php:1392 widgets/premium-grid.php:1476
|
1625 |
-
#: widgets/premium-grid.php:1584 widgets/premium-grid.php:1631
|
1626 |
-
#: widgets/premium-grid.php:1682 widgets/premium-grid.php:1973
|
1627 |
-
#: widgets/premium-image-separator.php:387 widgets/premium-lottie.php:384
|
1628 |
-
#: widgets/premium-lottie.php:427 widgets/premium-modalbox.php:815
|
1629 |
-
#: widgets/premium-modalbox.php:920 widgets/premium-modalbox.php:1010
|
1630 |
-
#: widgets/premium-modalbox.php:1077 widgets/premium-modalbox.php:1129
|
1631 |
-
#: widgets/premium-modalbox.php:1246 widgets/premium-modalbox.php:1306
|
1632 |
-
#: widgets/premium-person.php:1135 widgets/premium-person.php:1216
|
1633 |
-
#: widgets/premium-person.php:1331 widgets/premium-pricing-table.php:853
|
1634 |
-
#: widgets/premium-pricing-table.php:1608
|
1635 |
-
#: widgets/premium-pricing-table.php:1951
|
1636 |
-
#: widgets/premium-pricing-table.php:1969 widgets/premium-progressbar.php:912
|
1637 |
-
#: widgets/premium-title.php:578 widgets/premium-title.php:595
|
1638 |
-
#: widgets/premium-videobox.php:706 widgets/premium-vscroll.php:624
|
1639 |
-
#: widgets/premium-vscroll.php:718 widgets/premium-vscroll.php:777
|
1640 |
-
msgid "Background Color"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: widgets/premium-banner.php:
|
1644 |
-
|
|
|
|
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: widgets/premium-banner.php:
|
1648 |
-
msgid "
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: widgets/premium-banner.php:
|
1652 |
-
|
1653 |
-
#: widgets/premium-modalbox.php:708 widgets/premium-person.php:889
|
1654 |
-
msgid "Hover CSS Filters"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: widgets/premium-banner.php:
|
1658 |
-
|
1659 |
-
#: widgets/premium-blog.php:1446 widgets/premium-blog.php:1623
|
1660 |
-
#: widgets/premium-blog.php:1749 widgets/premium-blog.php:1872
|
1661 |
-
#: widgets/premium-blog.php:1959 widgets/premium-blog.php:2015
|
1662 |
-
#: widgets/premium-button.php:733 widgets/premium-button.php:882
|
1663 |
-
#: widgets/premium-carousel.php:685 widgets/premium-carousel.php:739
|
1664 |
-
#: widgets/premium-contactform.php:289 widgets/premium-contactform.php:503
|
1665 |
-
#: widgets/premium-countdown.php:491 widgets/premium-counter.php:510
|
1666 |
-
#: widgets/premium-counter.php:592 widgets/premium-counter.php:684
|
1667 |
-
#: widgets/premium-dual-header.php:465 widgets/premium-dual-header.php:662
|
1668 |
-
#: widgets/premium-grid.php:1056 widgets/premium-grid.php:1123
|
1669 |
-
#: widgets/premium-grid.php:1272 widgets/premium-grid.php:1414
|
1670 |
-
#: widgets/premium-grid.php:1498 widgets/premium-grid.php:1602
|
1671 |
-
#: widgets/premium-grid.php:1649 widgets/premium-grid.php:1700
|
1672 |
-
#: widgets/premium-grid.php:1828 widgets/premium-grid.php:1916
|
1673 |
-
#: widgets/premium-image-button.php:602 widgets/premium-image-button.php:794
|
1674 |
-
#: widgets/premium-image-scroll.php:440 widgets/premium-image-scroll.php:475
|
1675 |
-
#: widgets/premium-image-separator.php:421 widgets/premium-lottie.php:475
|
1676 |
-
#: widgets/premium-maps.php:628 widgets/premium-modalbox.php:844
|
1677 |
-
#: widgets/premium-modalbox.php:946 widgets/premium-modalbox.php:1096
|
1678 |
-
#: widgets/premium-modalbox.php:1148 widgets/premium-modalbox.php:1269
|
1679 |
-
#: widgets/premium-modalbox.php:1329 widgets/premium-modalbox.php:1454
|
1680 |
-
#: widgets/premium-person.php:1174 widgets/premium-person.php:1359
|
1681 |
-
#: widgets/premium-pricing-table.php:890 widgets/premium-pricing-table.php:930
|
1682 |
-
#: widgets/premium-pricing-table.php:1497
|
1683 |
-
#: widgets/premium-pricing-table.php:1789
|
1684 |
-
#: widgets/premium-pricing-table.php:1863
|
1685 |
-
#: widgets/premium-pricing-table.php:2032
|
1686 |
-
#: widgets/premium-pricing-table.php:2106 widgets/premium-progressbar.php:503
|
1687 |
-
#: widgets/premium-progressbar.php:933 widgets/premium-testimonials.php:617
|
1688 |
-
#: widgets/premium-title.php:791 widgets/premium-videobox.php:521
|
1689 |
-
#: widgets/premium-videobox.php:613 widgets/premium-vscroll.php:502
|
1690 |
-
#: widgets/premium-vscroll.php:605 widgets/premium-vscroll.php:638
|
1691 |
-
#: widgets/premium-vscroll.php:811
|
1692 |
-
msgid "Border Radius"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: widgets/premium-banner.php:
|
1696 |
-
|
1697 |
-
msgid "Blend Mode"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: widgets/premium-banner.php:
|
1701 |
-
#: widgets/premium-
|
1702 |
-
#: widgets/premium-
|
1703 |
-
|
1704 |
-
#: widgets/premium-dual-header.php:545 widgets/premium-grid.php:1372
|
1705 |
-
#: widgets/premium-grid.php:1564 widgets/premium-grid.php:1768
|
1706 |
-
#: widgets/premium-image-button.php:547 widgets/premium-image-scroll.php:324
|
1707 |
-
#: widgets/premium-image-scroll.php:395 widgets/premium-image-scroll.php:426
|
1708 |
-
#: widgets/premium-lottie.php:378 widgets/premium-modalbox.php:805
|
1709 |
-
#: widgets/premium-modalbox.php:1059 widgets/premium-modalbox.php:1224
|
1710 |
-
#: widgets/premium-person.php:910 widgets/premium-pricing-table.php:1766
|
1711 |
-
#: widgets/premium-pricing-table.php:2009 widgets/premium-vscroll.php:358
|
1712 |
-
#: widgets/premium-vscroll.php:684
|
1713 |
-
msgid "Normal"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: widgets/premium-banner.php:
|
1717 |
-
#: widgets/premium-
|
1718 |
-
#: widgets/premium-
|
1719 |
-
|
1720 |
-
#: widgets/premium-blog.php:1545 widgets/premium-blog.php:1582
|
1721 |
-
#: widgets/premium-blog.php:1669 widgets/premium-blog.php:1710
|
1722 |
-
#: widgets/premium-blog.php:1811 widgets/premium-blog.php:1923
|
1723 |
-
#: widgets/premium-blog.php:1979 widgets/premium-carousel.php:650
|
1724 |
-
#: widgets/premium-carousel.php:704 widgets/premium-carousel.php:792
|
1725 |
-
#: widgets/premium-countdown.php:416 widgets/premium-countdown.php:512
|
1726 |
-
#: widgets/premium-countdown.php:600 widgets/premium-counter.php:353
|
1727 |
-
#: widgets/premium-counter.php:551 widgets/premium-counter.php:642
|
1728 |
-
#: widgets/premium-fancytext.php:408 widgets/premium-fancytext.php:466
|
1729 |
-
#: widgets/premium-fancytext.php:513 widgets/premium-grid.php:1200
|
1730 |
-
#: widgets/premium-grid.php:1231 widgets/premium-grid.php:1378
|
1731 |
-
#: widgets/premium-grid.php:1462 widgets/premium-image-separator.php:353
|
1732 |
-
#: widgets/premium-maps.php:458 widgets/premium-maps.php:541
|
1733 |
-
#: widgets/premium-modalbox.php:719 widgets/premium-modalbox.php:990
|
1734 |
-
#: widgets/premium-modalbox.php:1066 widgets/premium-modalbox.php:1118
|
1735 |
-
#: widgets/premium-modalbox.php:1231 widgets/premium-modalbox.php:1291
|
1736 |
-
#: widgets/premium-person.php:939 widgets/premium-person.php:990
|
1737 |
-
#: widgets/premium-person.php:1041 widgets/premium-person.php:1107
|
1738 |
-
#: widgets/premium-person.php:1292 widgets/premium-pricing-table.php:820
|
1739 |
-
#: widgets/premium-pricing-table.php:990 widgets/premium-pricing-table.php:1077
|
1740 |
-
#: widgets/premium-pricing-table.php:1118
|
1741 |
-
#: widgets/premium-pricing-table.php:1189
|
1742 |
-
#: widgets/premium-pricing-table.php:1234
|
1743 |
-
#: widgets/premium-pricing-table.php:1286
|
1744 |
-
#: widgets/premium-pricing-table.php:1391
|
1745 |
-
#: widgets/premium-pricing-table.php:1422
|
1746 |
-
#: widgets/premium-pricing-table.php:1589
|
1747 |
-
#: widgets/premium-pricing-table.php:1647
|
1748 |
-
#: widgets/premium-pricing-table.php:1727 widgets/premium-progressbar.php:639
|
1749 |
-
#: widgets/premium-progressbar.php:681 widgets/premium-progressbar.php:794
|
1750 |
-
#: widgets/premium-progressbar.php:838 widgets/premium-progressbar.php:895
|
1751 |
-
#: widgets/premium-testimonials.php:437 widgets/premium-testimonials.php:477
|
1752 |
-
#: widgets/premium-testimonials.php:527 widgets/premium-title.php:544
|
1753 |
-
#: widgets/premium-title.php:734 widgets/premium-videobox.php:553
|
1754 |
-
msgid "Color"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: widgets/premium-banner.php:
|
|
|
|
|
1758 |
msgid "Background"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: widgets/premium-banner.php:
|
1762 |
msgid "Choose a background color for the title"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: widgets/premium-banner.php:
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
#: widgets/premium-
|
1770 |
-
#: widgets/premium-
|
1771 |
-
#: widgets/premium-dual-header.php:675 widgets/premium-grid.php:1135
|
1772 |
-
#: widgets/premium-grid.php:1284 widgets/premium-grid.php:1426
|
1773 |
-
#: widgets/premium-grid.php:1510 widgets/premium-maps.php:640
|
1774 |
-
#: widgets/premium-modalbox.php:885 widgets/premium-modalbox.php:961
|
1775 |
#: widgets/premium-pricing-table.php:1801
|
1776 |
#: widgets/premium-pricing-table.php:1875
|
1777 |
#: widgets/premium-pricing-table.php:2044
|
1778 |
-
#: widgets/premium-pricing-table.php:2118 widgets/premium-title.php:
|
1779 |
-
#: widgets/premium-videobox.php:
|
1780 |
-
#: widgets/premium-vscroll.php:
|
1781 |
-
#: widgets/premium-vscroll.php:
|
1782 |
msgid "Shadow"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: widgets/premium-banner.php:
|
1786 |
-
#: widgets/premium-
|
1787 |
-
#: widgets/premium-
|
1788 |
-
#: widgets/premium-button.php:776 widgets/premium-button.php:941
|
1789 |
-
#: widgets/premium-contactform.php:300 widgets/premium-countdown.php:614
|
1790 |
-
#: widgets/premium-counter.php:528 widgets/premium-counter.php:611
|
1791 |
-
#: widgets/premium-counter.php:695 widgets/premium-dual-header.php:487
|
1792 |
-
#: widgets/premium-dual-header.php:684 widgets/premium-grid.php:1075
|
1793 |
-
#: widgets/premium-grid.php:1163 widgets/premium-grid.php:1300
|
1794 |
-
#: widgets/premium-grid.php:1434 widgets/premium-grid.php:1518
|
1795 |
-
#: widgets/premium-grid.php:1723 widgets/premium-grid.php:1847
|
1796 |
-
#: widgets/premium-grid.php:1935 widgets/premium-image-button.php:645
|
1797 |
-
#: widgets/premium-image-button.php:853 widgets/premium-maps.php:481
|
1798 |
-
#: widgets/premium-maps.php:564 widgets/premium-maps.php:648
|
1799 |
-
#: widgets/premium-modalbox.php:1474 widgets/premium-person.php:1185
|
1800 |
-
#: widgets/premium-pricing-table.php:941 widgets/premium-pricing-table.php:1022
|
1801 |
-
#: widgets/premium-pricing-table.php:1100
|
1802 |
-
#: widgets/premium-pricing-table.php:1168
|
1803 |
-
#: widgets/premium-pricing-table.php:1215
|
1804 |
-
#: widgets/premium-pricing-table.php:1260
|
1805 |
-
#: widgets/premium-pricing-table.php:1312
|
1806 |
-
#: widgets/premium-pricing-table.php:1342
|
1807 |
-
#: widgets/premium-pricing-table.php:1509
|
1808 |
-
#: widgets/premium-pricing-table.php:1686
|
1809 |
-
#: widgets/premium-pricing-table.php:1809
|
1810 |
-
#: widgets/premium-pricing-table.php:1883
|
1811 |
-
#: widgets/premium-pricing-table.php:2052
|
1812 |
-
#: widgets/premium-pricing-table.php:2126 widgets/premium-progressbar.php:606
|
1813 |
-
#: widgets/premium-progressbar.php:662 widgets/premium-progressbar.php:704
|
1814 |
-
#: widgets/premium-testimonials.php:500 widgets/premium-title.php:700
|
1815 |
-
#: widgets/premium-title.php:802 widgets/premium-vscroll.php:527
|
1816 |
-
#: widgets/premium-vscroll.php:822
|
1817 |
-
msgid "Margin"
|
1818 |
-
msgstr ""
|
1819 |
-
|
1820 |
-
#: widgets/premium-banner.php:746
|
1821 |
-
msgid "Inner Border Color"
|
1822 |
-
msgstr ""
|
1823 |
-
|
1824 |
-
#: widgets/premium-banner.php:807 widgets/premium-blog.php:1137
|
1825 |
-
#: widgets/premium-blog.php:1243 widgets/premium-blog.php:1288
|
1826 |
-
#: widgets/premium-blog.php:1333 widgets/premium-blog.php:1839
|
1827 |
-
#: widgets/premium-image-separator.php:370 widgets/premium-modalbox.php:737
|
1828 |
-
#: widgets/premium-person.php:1121 widgets/premium-person.php:1306
|
1829 |
-
#: widgets/premium-videobox.php:567 widgets/premium-videobox.php:683
|
1830 |
-
msgid "Hover Color"
|
1831 |
-
msgstr ""
|
1832 |
-
|
1833 |
-
#: widgets/premium-banner.php:840 widgets/premium-blog.php:1165
|
1834 |
-
#: widgets/premium-blog.php:1849 widgets/premium-image-separator.php:404
|
1835 |
-
#: widgets/premium-person.php:1153
|
1836 |
msgid "Hover Background Color"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: widgets/premium-banner.php:
|
1840 |
-
#: widgets/premium-blog.php:1408 widgets/premium-blog.php:1468
|
1841 |
-
#: widgets/premium-blog.php:1645 widgets/premium-blog.php:1760
|
1842 |
-
#: widgets/premium-blog.php:1883 widgets/premium-blog.php:2050
|
1843 |
-
#: widgets/premium-button.php:787 widgets/premium-button.php:952
|
1844 |
-
#: widgets/premium-contactform.php:270 widgets/premium-contactform.php:454
|
1845 |
-
#: widgets/premium-counter.php:622 widgets/premium-counter.php:706
|
1846 |
-
#: widgets/premium-dual-header.php:500 widgets/premium-dual-header.php:697
|
1847 |
-
#: widgets/premium-grid.php:1086 widgets/premium-grid.php:1174
|
1848 |
-
#: widgets/premium-grid.php:1311 widgets/premium-grid.php:1444
|
1849 |
-
#: widgets/premium-grid.php:1528 widgets/premium-grid.php:1734
|
1850 |
-
#: widgets/premium-grid.php:1858 widgets/premium-grid.php:1946
|
1851 |
-
#: widgets/premium-image-button.php:655 widgets/premium-image-button.php:863
|
1852 |
-
#: widgets/premium-image-separator.php:443 widgets/premium-lottie.php:486
|
1853 |
-
#: widgets/premium-maps.php:493 widgets/premium-maps.php:575
|
1854 |
-
#: widgets/premium-maps.php:659 widgets/premium-modalbox.php:863
|
1855 |
-
#: widgets/premium-modalbox.php:1165 widgets/premium-modalbox.php:1346
|
1856 |
-
#: widgets/premium-modalbox.php:1486 widgets/premium-person.php:970
|
1857 |
-
#: widgets/premium-person.php:1021 widgets/premium-person.php:1072
|
1858 |
-
#: widgets/premium-person.php:1196 widgets/premium-person.php:1269
|
1859 |
-
#: widgets/premium-person.php:1370 widgets/premium-pricing-table.php:867
|
1860 |
-
#: widgets/premium-pricing-table.php:960 widgets/premium-pricing-table.php:1040
|
1861 |
-
#: widgets/premium-pricing-table.php:1361
|
1862 |
-
#: widgets/premium-pricing-table.php:1527
|
1863 |
-
#: widgets/premium-pricing-table.php:1704
|
1864 |
-
#: widgets/premium-pricing-table.php:1820
|
1865 |
-
#: widgets/premium-pricing-table.php:1894
|
1866 |
-
#: widgets/premium-pricing-table.php:2063
|
1867 |
-
#: widgets/premium-pricing-table.php:2137 widgets/premium-progressbar.php:944
|
1868 |
-
#: widgets/premium-testimonials.php:636 widgets/premium-title.php:711
|
1869 |
-
#: widgets/premium-title.php:813 widgets/premium-videobox.php:628
|
1870 |
-
#: widgets/premium-videobox.php:720 widgets/premium-vscroll.php:541
|
1871 |
-
#: widgets/premium-vscroll.php:833
|
1872 |
-
msgid "Padding"
|
1873 |
-
msgstr ""
|
1874 |
-
|
1875 |
-
#: widgets/premium-banner.php:902 widgets/premium-image-scroll.php:417
|
1876 |
#: widgets/premium-pricing-table.php:906 widgets/premium-pricing-table.php:1324
|
1877 |
#: widgets/premium-pricing-table.php:1471
|
1878 |
-
#: widgets/premium-pricing-table.php:1670 widgets/premium-testimonials.php:
|
1879 |
-
#: widgets/premium-vscroll.php:
|
1880 |
msgid "Container"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: widgets/premium-blog.php:
|
1884 |
-
msgid "General"
|
1885 |
-
msgstr ""
|
1886 |
-
|
1887 |
-
#: widgets/premium-blog.php:89 widgets/premium-grid.php:716
|
1888 |
msgid "Skin"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: widgets/premium-blog.php:
|
1892 |
msgid "Classic"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: widgets/premium-blog.php:
|
1896 |
msgid "Modern"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: widgets/premium-blog.php:
|
1900 |
msgid "Cards"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: widgets/premium-blog.php:
|
1904 |
-
msgid "
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: widgets/premium-blog.php:
|
1908 |
-
msgid "
|
|
|
|
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: widgets/premium-blog.php:
|
1912 |
-
msgid "
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: widgets/premium-blog.php:
|
1916 |
msgid "Even"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: widgets/premium-blog.php:
|
1920 |
msgid "Masonry"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: widgets/premium-blog.php:
|
1924 |
-
msgid "
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: widgets/premium-blog.php:
|
1928 |
msgid ""
|
1929 |
-
"
|
1930 |
-
"
|
1931 |
"height. You can set that from Featured Image tab."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: widgets/premium-blog.php:
|
1935 |
msgid "Number of Columns"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: widgets/premium-blog.php:
|
1939 |
-
#: widgets/premium-person.php:256
|
1940 |
-
msgid "1 Column"
|
1941 |
-
msgstr ""
|
1942 |
-
|
1943 |
-
#: widgets/premium-blog.php:174 widgets/premium-grid.php:174
|
1944 |
-
#: widgets/premium-person.php:257
|
1945 |
-
msgid "2 Columns"
|
1946 |
-
msgstr ""
|
1947 |
-
|
1948 |
-
#: widgets/premium-blog.php:175 widgets/premium-grid.php:175
|
1949 |
-
#: widgets/premium-person.php:258
|
1950 |
-
msgid "3 Columns"
|
1951 |
-
msgstr ""
|
1952 |
-
|
1953 |
-
#: widgets/premium-blog.php:176 widgets/premium-grid.php:176
|
1954 |
-
#: widgets/premium-person.php:259
|
1955 |
-
msgid "4 Columns"
|
1956 |
-
msgstr ""
|
1957 |
-
|
1958 |
-
#: widgets/premium-blog.php:177 widgets/premium-grid.php:177
|
1959 |
-
#: widgets/premium-person.php:260
|
1960 |
-
msgid "5 Columns"
|
1961 |
-
msgstr ""
|
1962 |
-
|
1963 |
-
#: widgets/premium-blog.php:178 widgets/premium-grid.php:178
|
1964 |
-
#: widgets/premium-person.php:261
|
1965 |
-
msgid "6 Columns"
|
1966 |
-
msgstr ""
|
1967 |
-
|
1968 |
-
#: widgets/premium-blog.php:196
|
1969 |
msgid "Posts Per Page"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: widgets/premium-blog.php:
|
1973 |
msgid "Set the number of per page"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: widgets/premium-blog.php:
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
#: widgets/premium-blog.php:214
|
1981 |
-
msgid "Filter By Category Rule"
|
1982 |
-
msgstr ""
|
1983 |
-
|
1984 |
-
#: widgets/premium-blog.php:220
|
1985 |
-
msgid "Match Categories"
|
1986 |
-
msgstr ""
|
1987 |
-
|
1988 |
-
#: widgets/premium-blog.php:221
|
1989 |
-
msgid "Exclude Categories"
|
1990 |
-
msgstr ""
|
1991 |
-
|
1992 |
-
#: widgets/premium-blog.php:228 widgets/premium-blog.php:728
|
1993 |
-
#: widgets/premium-grid.php:267 widgets/premium-grid.php:327
|
1994 |
-
msgid "Categories"
|
1995 |
-
msgstr ""
|
1996 |
-
|
1997 |
-
#: widgets/premium-blog.php:230
|
1998 |
-
msgid "Get posts for specific category(s)"
|
1999 |
-
msgstr ""
|
2000 |
-
|
2001 |
-
#: widgets/premium-blog.php:239
|
2002 |
-
msgid "Filter By Tag Rule"
|
2003 |
-
msgstr ""
|
2004 |
-
|
2005 |
-
#: widgets/premium-blog.php:245
|
2006 |
-
msgid "Match Tags"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: widgets/premium-blog.php:
|
2010 |
-
|
|
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: widgets/premium-blog.php:
|
2014 |
-
|
2015 |
-
msgid "
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: widgets/premium-blog.php:
|
2019 |
-
|
|
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: widgets/premium-blog.php:
|
2023 |
msgid "Filter By Author Rule"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: widgets/premium-blog.php:
|
2027 |
msgid "Match Authors"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: widgets/premium-blog.php:
|
2031 |
msgid "Exclude Authors"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: widgets/premium-blog.php:
|
2035 |
msgid "Authors"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: widgets/premium-blog.php:
|
2039 |
msgid "Filter By Post Rule"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: widgets/premium-blog.php:
|
2043 |
msgid "Match Post"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: widgets/premium-blog.php:
|
2047 |
msgid "Exclude Post"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: widgets/premium-blog.php:
|
2051 |
msgid "Posts"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: widgets/premium-blog.php:
|
2055 |
-
msgid "
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: widgets/premium-blog.php:
|
2059 |
msgid ""
|
2060 |
"This option is used to exclude number of initial posts from being display."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2064 |
msgid "Order By"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: widgets/premium-blog.php:
|
2068 |
msgid "ID"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: widgets/premium-blog.php:
|
2072 |
-
#: widgets/premium-testimonials.php:
|
2073 |
msgid "Author"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: widgets/premium-blog.php:
|
2077 |
-
#: widgets/premium-person.php:
|
2078 |
#: widgets/premium-testimonials.php:102 widgets/premium-testimonials.php:183
|
2079 |
msgid "Name"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: widgets/premium-blog.php:
|
2083 |
-
msgid "Date"
|
2084 |
-
msgstr ""
|
2085 |
-
|
2086 |
-
#: widgets/premium-blog.php:333
|
2087 |
msgid "Last Modified"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: widgets/premium-blog.php:
|
2091 |
-
msgid "Random"
|
2092 |
-
msgstr ""
|
2093 |
-
|
2094 |
-
#: widgets/premium-blog.php:335
|
2095 |
msgid "Number of Comments"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: widgets/premium-blog.php:
|
2099 |
-
msgid "Order"
|
2100 |
-
msgstr ""
|
2101 |
-
|
2102 |
-
#: widgets/premium-blog.php:347
|
2103 |
-
msgid "Descending"
|
2104 |
-
msgstr ""
|
2105 |
-
|
2106 |
-
#: widgets/premium-blog.php:348
|
2107 |
-
msgid "Ascending"
|
2108 |
-
msgstr ""
|
2109 |
-
|
2110 |
-
#: widgets/premium-blog.php:358
|
2111 |
msgid "Featured Image"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: widgets/premium-blog.php:
|
2115 |
msgid "Show Featured Image"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: widgets/premium-blog.php:
|
2119 |
msgid "Overlay Effect"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: widgets/premium-blog.php:
|
2123 |
msgid "Choose an overlay color effect"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: widgets/premium-blog.php:
|
2127 |
msgid "Framed"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: widgets/premium-blog.php:
|
2131 |
msgid "Diagonal"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: widgets/premium-blog.php:
|
2135 |
msgid "Bordered"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: widgets/premium-blog.php:
|
2139 |
msgid "Squares"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: widgets/premium-blog.php:
|
|
|
2143 |
msgid "Choose a hover effect for the image"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: widgets/premium-blog.php:
|
2147 |
-
|
2148 |
-
msgid "Translate"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: widgets/premium-blog.php:
|
2152 |
msgid "Thumbnail Fit"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: widgets/premium-blog.php:
|
|
|
|
|
2156 |
msgid "Cover"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: widgets/premium-blog.php:
|
2160 |
-
#: widgets/premium-progressbar.php:554
|
2161 |
msgid "Fill"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: widgets/premium-blog.php:
|
|
|
2165 |
msgid "Contain"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: widgets/premium-blog.php:
|
2169 |
-
#: widgets/premium-grid.php:693 widgets/premium-pricing-table.php:748
|
2170 |
-
msgid "Display Options"
|
2171 |
-
msgstr ""
|
2172 |
-
|
2173 |
-
#: widgets/premium-blog.php:478
|
2174 |
msgid "Title HTML Tag"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: widgets/premium-blog.php:
|
2178 |
msgid "Select a heading tag for the post title."
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: widgets/premium-blog.php:
|
2182 |
-
msgid "
|
2183 |
-
msgstr ""
|
2184 |
-
|
2185 |
-
#: widgets/premium-blog.php:520
|
2186 |
-
msgid "Columns Spacing"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: widgets/premium-blog.php:
|
2190 |
msgid "Post Options"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: widgets/premium-blog.php:
|
2194 |
msgid "Show Post Content"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: widgets/premium-blog.php:
|
2198 |
msgid "Get Content From"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: widgets/premium-blog.php:
|
2202 |
msgid "Post Excerpt"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: widgets/premium-blog.php:
|
2206 |
msgid "Post Full Content"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: widgets/premium-blog.php:
|
2210 |
msgid "Excerpt Length"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: widgets/premium-blog.php:
|
2214 |
msgid ""
|
2215 |
"Excerpt is used for article summary with a link to the whole entry. The "
|
2216 |
"default except length is 55"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: widgets/premium-blog.php:
|
2220 |
msgid "Excerpt Type"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: widgets/premium-blog.php:
|
2224 |
-
#: widgets/premium-progressbar.php:89 widgets/premium-vscroll.php:
|
2225 |
msgid "Dots"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: widgets/premium-blog.php:
|
|
|
2229 |
msgid "Full Width"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: widgets/premium-blog.php:
|
2233 |
msgid "Read More Text"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: widgets/premium-blog.php:
|
2237 |
-
msgid "Read More
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: widgets/premium-blog.php:
|
2241 |
msgid "Author Meta"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: widgets/premium-blog.php:
|
2245 |
msgid "Date Meta"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: widgets/premium-blog.php:
|
2249 |
msgid "Categories Meta"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: widgets/premium-blog.php:
|
2253 |
msgid "Display or hide categories meta"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: widgets/premium-blog.php:
|
2257 |
msgid "Comments Meta"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: widgets/premium-blog.php:
|
2261 |
msgid "Display or hide comments meta"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: widgets/premium-blog.php:
|
2265 |
msgid "Tags Meta"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: widgets/premium-blog.php:
|
2269 |
msgid "Display or hide post tags"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: widgets/premium-blog.php:
|
2273 |
-
msgid "
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: widgets/premium-blog.php:
|
2277 |
-
msgid "
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: widgets/premium-blog.php:
|
2281 |
-
msgid "
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: widgets/premium-blog.php:
|
2285 |
-
|
|
|
|
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: widgets/premium-blog.php:
|
2289 |
-
msgid "
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: widgets/premium-blog.php:
|
2293 |
msgid ""
|
2294 |
"Please make sure to select the categories/tags you need to show from Query "
|
2295 |
"tab."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: widgets/premium-blog.php:
|
2299 |
msgid "First Tab Label"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: widgets/premium-blog.php:
|
2303 |
msgid "Links in New Tab"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: widgets/premium-blog.php:
|
2307 |
msgid "Enable links to be opened in a new tab"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: widgets/premium-blog.php:
|
2311 |
msgid "Enable Carousel"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: widgets/premium-blog.php:
|
2315 |
msgid "Fade"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: widgets/premium-blog.php:
|
2319 |
msgid "Auto Play"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: widgets/premium-blog.php:
|
2323 |
-
#: widgets/premium-person.php:
|
2324 |
-
msgid "Autoplay Speed"
|
2325 |
-
msgstr ""
|
2326 |
-
|
2327 |
-
#: widgets/premium-blog.php:842 widgets/premium-carousel.php:320
|
2328 |
-
#: widgets/premium-person.php:817
|
2329 |
msgid ""
|
2330 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
2331 |
"in milliseconds (ms)"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: widgets/premium-blog.php:
|
2335 |
msgid "Center Mode"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: widgets/premium-blog.php:
|
2339 |
msgid "Slides' Spacing"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: widgets/premium-blog.php:
|
2343 |
msgid "Set a spacing value in pixels (px)"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: widgets/premium-blog.php:
|
2347 |
-
#: widgets/premium-vscroll.php:261 widgets/premium-vscroll.php:
|
2348 |
msgid "Navigation Dots"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: widgets/premium-blog.php:
|
2352 |
msgid "Navigation Arrows"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: widgets/premium-blog.php:
|
2356 |
-
msgid "Arrows Position"
|
2357 |
-
msgstr ""
|
2358 |
-
|
2359 |
-
#: widgets/premium-blog.php:926 widgets/premium-blog.php:1481
|
2360 |
-
msgid "Pagination"
|
2361 |
-
msgstr ""
|
2362 |
-
|
2363 |
-
#: widgets/premium-blog.php:932
|
2364 |
-
msgid "Enable Pagination"
|
2365 |
-
msgstr ""
|
2366 |
-
|
2367 |
-
#: widgets/premium-blog.php:934
|
2368 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: widgets/premium-blog.php:
|
2372 |
-
msgid "
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: widgets/premium-blog.php:
|
2376 |
-
msgid "Set the number of posts in all pages"
|
2377 |
-
msgstr ""
|
2378 |
-
|
2379 |
-
#: widgets/premium-blog.php:953
|
2380 |
msgid "Enable Pagination Next/Prev Strings"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: widgets/premium-blog.php:
|
2384 |
msgid "Previous Page String"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: widgets/premium-blog.php:
|
2388 |
msgid "Previous"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: widgets/premium-blog.php:
|
2392 |
msgid "Next Page String"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: widgets/premium-blog.php:
|
2396 |
msgid "Next"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: widgets/premium-blog.php:
|
2400 |
-
msgid "
|
2401 |
-
msgstr ""
|
2402 |
-
|
2403 |
-
#: widgets/premium-blog.php:1048 widgets/premium-image-button.php:726
|
2404 |
-
#: widgets/premium-image-button.php:743 widgets/premium-image-button.php:769
|
2405 |
-
#: widgets/premium-image-scroll.php:309
|
2406 |
-
msgid "Overlay Color"
|
2407 |
-
msgstr ""
|
2408 |
-
|
2409 |
-
#: widgets/premium-blog.php:1058 widgets/premium-contactform.php:546
|
2410 |
-
#: widgets/premium-pricing-table.php:1618 widgets/premium-progressbar.php:537
|
2411 |
-
#: widgets/premium-testimonials.php:343
|
2412 |
-
msgid "Border Color"
|
2413 |
-
msgstr ""
|
2414 |
-
|
2415 |
-
#: widgets/premium-blog.php:1104 widgets/premium-blog.php:1724
|
2416 |
-
#: widgets/premium-button.php:561 widgets/premium-carousel.php:599
|
2417 |
-
#: widgets/premium-countdown.php:583 widgets/premium-counter.php:370
|
2418 |
-
#: widgets/premium-counter.php:397 widgets/premium-grid.php:1351
|
2419 |
-
#: widgets/premium-image-button.php:467 widgets/premium-image-separator.php:178
|
2420 |
-
#: widgets/premium-lottie.php:182 widgets/premium-maps.php:185
|
2421 |
-
#: widgets/premium-modalbox.php:615 widgets/premium-modalbox.php:1043
|
2422 |
-
#: widgets/premium-person.php:1095 widgets/premium-person.php:1320
|
2423 |
-
#: widgets/premium-pricing-table.php:588 widgets/premium-pricing-table.php:608
|
2424 |
-
#: widgets/premium-pricing-table.php:628 widgets/premium-pricing-table.php:837
|
2425 |
-
#: widgets/premium-pricing-table.php:1436 widgets/premium-progressbar.php:148
|
2426 |
-
#: widgets/premium-progressbar.php:811 widgets/premium-progressbar.php:855
|
2427 |
-
#: widgets/premium-testimonials.php:302 widgets/premium-testimonials.php:538
|
2428 |
-
#: widgets/premium-title.php:752 widgets/premium-videobox.php:581
|
2429 |
-
msgid "Size"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: widgets/premium-blog.php:
|
2433 |
-
msgid "
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: widgets/premium-blog.php:
|
2437 |
-
|
|
|
|
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: widgets/premium-blog.php:
|
2441 |
-
|
|
|
|
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: widgets/premium-blog.php:
|
2445 |
-
|
2446 |
-
#: widgets/premium-contactform.php:526 widgets/premium-dual-header.php:358
|
2447 |
-
#: widgets/premium-dual-header.php:555 widgets/premium-grid.php:1570
|
2448 |
-
#: widgets/premium-grid.php:1621 widgets/premium-grid.php:1668
|
2449 |
-
#: widgets/premium-grid.php:1774 widgets/premium-image-button.php:553
|
2450 |
-
#: widgets/premium-image-button.php:673 widgets/premium-pricing-table.php:379
|
2451 |
-
#: widgets/premium-pricing-table.php:1928 widgets/premium-videobox.php:669
|
2452 |
-
#: widgets/premium-vscroll.php:690 widgets/premium-vscroll.php:749
|
2453 |
-
msgid "Text Color"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: widgets/premium-blog.php:
|
2457 |
-
msgid "
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: widgets/premium-blog.php:
|
2461 |
-
|
2462 |
-
#: widgets/premium-progressbar.php:122 widgets/premium-testimonials.php:159
|
2463 |
-
msgid "Spacing"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: widgets/premium-blog.php:
|
2467 |
-
|
2468 |
-
#: widgets/premium-contactform.php:520 widgets/premium-grid.php:1456
|
2469 |
-
#: widgets/premium-grid.php:1615 widgets/premium-grid.php:1871
|
2470 |
-
#: widgets/premium-image-button.php:667 widgets/premium-image-scroll.php:223
|
2471 |
-
#: widgets/premium-image-scroll.php:357 widgets/premium-image-scroll.php:461
|
2472 |
-
#: widgets/premium-lottie.php:421 widgets/premium-modalbox.php:910
|
2473 |
-
#: widgets/premium-modalbox.php:1111 widgets/premium-modalbox.php:1284
|
2474 |
-
#: widgets/premium-pricing-table.php:1840
|
2475 |
-
#: widgets/premium-pricing-table.php:2083
|
2476 |
-
msgid "Hover"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: widgets/premium-blog.php:
|
2480 |
-
|
2481 |
-
msgid "Active"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: widgets/premium-blog.php:
|
2485 |
-
msgid "
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: widgets/premium-blog.php:
|
2489 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: widgets/premium-blog.php:
|
2493 |
-
msgid "
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: widgets/premium-blog.php:
|
2497 |
-
msgid "
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: widgets/premium-blog.php:
|
2501 |
-
msgid "
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: widgets/premium-blog.php:
|
2505 |
-
msgid "
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: widgets/premium-blog.php:
|
2509 |
-
msgid "
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: widgets/premium-blog.php:
|
2513 |
-
msgid "
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: widgets/premium-blog.php:
|
2517 |
msgid ""
|
2518 |
"The current query has no posts. Please make sure you have published items "
|
2519 |
"matching your query."
|
@@ -2606,8 +3955,9 @@ msgid "Tilted Right"
|
|
2606 |
msgstr ""
|
2607 |
|
2608 |
#: widgets/premium-button.php:215 widgets/premium-countdown.php:82
|
2609 |
-
#: widgets/premium-counter.php:
|
2610 |
-
#: widgets/premium-
|
|
|
2611 |
msgid "Style"
|
2612 |
msgstr ""
|
2613 |
|
@@ -2627,91 +3977,92 @@ msgstr ""
|
|
2627 |
msgid "Rectangle Out"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: widgets/premium-button.php:233 widgets/premium-button.php:
|
2631 |
-
#: widgets/premium-button.php:
|
2632 |
-
#: widgets/premium-
|
2633 |
-
#: widgets/premium-
|
2634 |
-
#: widgets/premium-
|
2635 |
-
#: widgets/premium-
|
2636 |
-
#: widgets/premium-
|
2637 |
-
#: widgets/premium-
|
2638 |
-
#: widgets/premium-
|
2639 |
-
#: widgets/premium-
|
2640 |
-
#: widgets/premium-
|
2641 |
-
#: widgets/premium-
|
|
|
|
|
|
|
|
|
|
|
2642 |
msgid "Icon"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
#: widgets/premium-button.php:235 widgets/premium-image-button.php:225
|
2646 |
-
#: widgets/premium-modalbox.php:
|
2647 |
msgid "Enable or disable button icon"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
#: widgets/premium-button.php:244 widgets/premium-button.php:321
|
2651 |
-
#: widgets/premium-counter.php:
|
2652 |
-
#: widgets/premium-image-button.php:311 widgets/premium-
|
2653 |
-
#: widgets/premium-pricing-table.php:
|
2654 |
-
#: widgets/premium-title.php:
|
2655 |
msgid "Icon Type"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: widgets/premium-button.php:247 widgets/premium-button.php:324
|
2659 |
-
#: widgets/premium-counter.php:191 widgets/premium-image-button.php:237
|
2660 |
-
#: widgets/premium-image-button.php:314 widgets/premium-modalbox.php:121
|
2661 |
-
#: widgets/premium-modalbox.php:136 widgets/premium-progressbar.php:217
|
2662 |
-
msgid "Font Awesome"
|
2663 |
-
msgstr ""
|
2664 |
-
|
2665 |
#: widgets/premium-button.php:248 widgets/premium-button.php:325
|
2666 |
-
#: widgets/premium-counter.php:
|
2667 |
-
#: widgets/premium-image-button.php:
|
2668 |
-
#: widgets/premium-
|
2669 |
-
#: widgets/premium-
|
2670 |
-
#: widgets/premium-
|
|
|
2671 |
msgid "Lottie Animation"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
#: widgets/premium-button.php:279 widgets/premium-button.php:354
|
2675 |
-
#: widgets/premium-counter.php:
|
2676 |
-
#: widgets/premium-image-button.php:
|
2677 |
-
#: widgets/premium-
|
2678 |
-
#: widgets/premium-modalbox.php:
|
2679 |
-
#: widgets/premium-pricing-table.php:
|
2680 |
-
#: widgets/premium-title.php:
|
2681 |
msgid "Animation JSON URL"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
#: widgets/premium-button.php:294 widgets/premium-button.php:368
|
2685 |
-
#: widgets/premium-counter.php:
|
2686 |
-
#: widgets/premium-
|
2687 |
-
#: widgets/premium-image-
|
2688 |
-
#: widgets/premium-
|
2689 |
-
#: widgets/premium-
|
2690 |
-
#: widgets/premium-
|
2691 |
-
#: widgets/premium-videobox.php:
|
2692 |
msgid "Loop"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: widgets/premium-button.php:393 widgets/premium-counter.php:
|
2696 |
-
#: widgets/premium-
|
2697 |
-
#: widgets/premium-title.php:
|
2698 |
msgid "Icon Position"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: widgets/premium-button.php:397 widgets/premium-
|
2702 |
-
#: widgets/premium-
|
|
|
2703 |
msgid "Before"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: widgets/premium-button.php:398 widgets/premium-
|
2707 |
-
#: widgets/premium-
|
|
|
2708 |
msgid "After"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
#: widgets/premium-button.php:410 widgets/premium-button.php:425
|
2712 |
#: widgets/premium-image-button.php:400 widgets/premium-image-button.php:415
|
2713 |
-
#: widgets/premium-image-scroll.php:
|
2714 |
-
#: widgets/premium-modalbox.php:
|
2715 |
msgid "Icon Size"
|
2716 |
msgstr ""
|
2717 |
|
@@ -2719,29 +4070,30 @@ msgstr ""
|
|
2719 |
#: widgets/premium-button.php:480 widgets/premium-button.php:499
|
2720 |
#: widgets/premium-button.php:519 widgets/premium-button.php:540
|
2721 |
#: widgets/premium-image-button.php:429 widgets/premium-image-button.php:448
|
2722 |
-
#: widgets/premium-modalbox.php:
|
2723 |
-
#: widgets/premium-modalbox.php:
|
2724 |
msgid "Icon Spacing"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
#: widgets/premium-button.php:565 widgets/premium-image-button.php:471
|
2728 |
-
#: widgets/premium-modalbox.php:
|
2729 |
msgid "Small"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
#: widgets/premium-button.php:566 widgets/premium-image-button.php:472
|
2733 |
-
#: widgets/premium-modalbox.php:
|
2734 |
msgid "Medium"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
#: widgets/premium-button.php:567 widgets/premium-image-button.php:473
|
2738 |
-
#: widgets/premium-modalbox.php:
|
2739 |
msgid "Large"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
#: widgets/premium-button.php:568 widgets/premium-countdown.php:86
|
2743 |
-
#: widgets/premium-dual-header.php:125 widgets/premium-
|
2744 |
-
#: widgets/premium-
|
|
|
2745 |
msgid "Block"
|
2746 |
msgstr ""
|
2747 |
|
@@ -2753,327 +4105,267 @@ msgstr ""
|
|
2753 |
msgid "Example: myFunction();"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: widgets/premium-button.php:623 widgets/premium-carousel.php:437
|
2757 |
-
#: widgets/premium-dual-header.php:293 widgets/premium-grid.php:1001
|
2758 |
-
#: widgets/premium-lottie.php:337 widgets/premium-maps.php:427
|
2759 |
-
#: widgets/premium-person.php:856 widgets/premium-testimonials.php:279
|
2760 |
-
msgid "Helpful Documentations"
|
2761 |
-
msgstr ""
|
2762 |
-
|
2763 |
-
#: widgets/premium-button.php:630 widgets/premium-dual-header.php:300
|
2764 |
-
#: widgets/premium-grid.php:1007 widgets/premium-maps.php:433
|
2765 |
-
#, php-format
|
2766 |
-
msgid "%1$s Getting started » %2$s"
|
2767 |
-
msgstr ""
|
2768 |
-
|
2769 |
-
#: widgets/premium-button.php:638
|
2770 |
-
#, php-format
|
2771 |
-
msgid "%1$s How to open an Elementor popup using button widget » %2$s"
|
2772 |
-
msgstr ""
|
2773 |
-
|
2774 |
-
#: widgets/premium-button.php:646
|
2775 |
-
#, php-format
|
2776 |
-
msgid "%1$s How to play/pause a soundtrack using button widget » %2$s"
|
2777 |
-
msgstr ""
|
2778 |
-
|
2779 |
#: widgets/premium-button.php:692 widgets/premium-button.php:823
|
2780 |
-
#: widgets/premium-button.php:842 widgets/premium-image-button.php:
|
2781 |
-
#: widgets/premium-image-button.php:
|
2782 |
-
#: widgets/premium-image-scroll.php:
|
2783 |
#: widgets/premium-pricing-table.php:366
|
2784 |
msgid "Icon Color"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
#: widgets/premium-button.php:745 widgets/premium-button.php:894
|
2788 |
-
#: widgets/premium-button.php:908 widgets/premium-image-button.php:
|
2789 |
-
#: widgets/premium-image-button.php:
|
2790 |
-
#: widgets/premium-title.php:
|
2791 |
msgid "Icon Shadow"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
#: widgets/premium-button.php:759 widgets/premium-button.php:921
|
2795 |
-
#: widgets/premium-image-button.php:
|
2796 |
msgid "Text Shadow"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
#: widgets/premium-button.php:768 widgets/premium-button.php:933
|
2800 |
-
#: widgets/premium-image-button.php:
|
2801 |
msgid "Button Shadow"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: widgets/premium-carousel.php:
|
2805 |
msgid "Content Type"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
#: widgets/premium-carousel.php:
|
2809 |
msgid "How templates are selected"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: widgets/premium-carousel.php:
|
2813 |
msgid "Select Field"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: widgets/premium-carousel.php:
|
2817 |
msgid "Repeater"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: widgets/premium-carousel.php:
|
2821 |
msgid ""
|
2822 |
"Slider content is a template which you can choose from Elementor library. "
|
2823 |
"Each template will be a slider content"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: widgets/premium-carousel.php:
|
2827 |
-
|
2828 |
-
msgid "Type"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: widgets/premium-carousel.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2832 |
msgid "Set a navigation type"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: widgets/premium-carousel.php:
|
2836 |
-
#: widgets/premium-image-scroll.php:
|
|
|
2837 |
msgid "Horizontal"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: widgets/premium-carousel.php:
|
2841 |
-
#: widgets/premium-image-scroll.php:
|
|
|
2842 |
msgid "Vertical"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#: widgets/premium-carousel.php:
|
2846 |
msgid "Enable or disable navigation dots"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: widgets/premium-carousel.php:
|
2850 |
-
#: widgets/premium-pricing-table.php:647 widgets/premium-vscroll.php:180
|
2851 |
-
msgid "Position"
|
2852 |
-
msgstr ""
|
2853 |
-
|
2854 |
-
#: widgets/premium-carousel.php:162
|
2855 |
-
msgid "Below Slides"
|
2856 |
-
msgstr ""
|
2857 |
-
|
2858 |
-
#: widgets/premium-carousel.php:163
|
2859 |
-
msgid "On Slides"
|
2860 |
-
msgstr ""
|
2861 |
-
|
2862 |
-
#: widgets/premium-carousel.php:173 widgets/premium-pricing-table.php:669
|
2863 |
-
#: widgets/premium-pricing-table.php:695
|
2864 |
-
msgid "Horizontal Offset"
|
2865 |
-
msgstr ""
|
2866 |
-
|
2867 |
-
#: widgets/premium-carousel.php:188 widgets/premium-pricing-table.php:721
|
2868 |
-
msgid "Vertical Offset"
|
2869 |
-
msgstr ""
|
2870 |
-
|
2871 |
-
#: widgets/premium-carousel.php:203
|
2872 |
msgid "Ripple Effect"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: widgets/premium-carousel.php:
|
2876 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: widgets/premium-carousel.php:
|
2880 |
msgid "Arrows"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: widgets/premium-carousel.php:
|
2884 |
msgid "Enable or disable navigation arrows"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: widgets/premium-carousel.php:
|
2888 |
msgid "Appearance"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: widgets/premium-carousel.php:
|
2892 |
msgid "All visible"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: widgets/premium-carousel.php:
|
2896 |
msgid "One at a time"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: widgets/premium-carousel.php:
|
2900 |
msgid "Desktop Slides"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: widgets/premium-carousel.php:
|
2904 |
msgid "Tabs Slides"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: widgets/premium-carousel.php:
|
2908 |
msgid "Mobile Slides"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: widgets/premium-carousel.php:
|
2912 |
msgid "Slides Settings"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: widgets/premium-carousel.php:
|
2916 |
-
msgid "Infinite Loop"
|
2917 |
-
msgstr ""
|
2918 |
-
|
2919 |
-
#: widgets/premium-carousel.php:272
|
2920 |
msgid "Restart the slider automatically as it passes the last slide"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: widgets/premium-carousel.php:
|
2924 |
msgid "Enable fade transition between slides"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: widgets/premium-carousel.php:
|
2928 |
msgid "Zoom Effect"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: widgets/premium-carousel.php:
|
2932 |
msgid "Transition Speed"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: widgets/premium-carousel.php:
|
2936 |
msgid ""
|
2937 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: widgets/premium-carousel.php:
|
2941 |
msgid "Autoplay Slides"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: widgets/premium-carousel.php:
|
2945 |
msgid "Slide will start automatically"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: widgets/premium-carousel.php:
|
2949 |
#: widgets/premium-fancytext.php:184
|
2950 |
msgid "Animations"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: widgets/premium-carousel.php:
|
2954 |
msgid ""
|
2955 |
"Add extra class name that will be applied to the carousel, and you can use "
|
2956 |
"this class for your customizations."
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: widgets/premium-carousel.php:
|
2960 |
msgid "Additional Settings"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: widgets/premium-carousel.php:
|
2964 |
msgid "Draggable Effect"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#: widgets/premium-carousel.php:
|
2968 |
msgid "Allow the slides to be dragged by mouse click"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#: widgets/premium-carousel.php:
|
2972 |
msgid "Touch Move"
|
2973 |
msgstr ""
|
2974 |
|
2975 |
-
#: widgets/premium-carousel.php:
|
2976 |
msgid "Enable slide moving with touch"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
-
#: widgets/premium-carousel.php:
|
2980 |
msgid "RTL Mode"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: widgets/premium-carousel.php:
|
2984 |
msgid "Turn on RTL mode if your language starts from right to left"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: widgets/premium-carousel.php:
|
2988 |
msgid "Adaptive Height"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: widgets/premium-carousel.php:
|
2992 |
msgid ""
|
2993 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
2994 |
"space gaps"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: widgets/premium-carousel.php:
|
2998 |
-
msgid "Pause on Hover"
|
2999 |
-
msgstr ""
|
3000 |
-
|
3001 |
-
#: widgets/premium-carousel.php:393
|
3002 |
msgid "Pause the slider when mouse hover"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: widgets/premium-carousel.php:
|
3006 |
msgid ""
|
3007 |
"Center mode enables a centered view with partial next/previous slides. "
|
3008 |
"Animations and all visible scroll type doesn't work with this mode"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: widgets/premium-carousel.php:
|
3012 |
msgid "Tablet Breakpoint"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: widgets/premium-carousel.php:
|
3016 |
msgid ""
|
3017 |
"Sets the breakpoint between desktop and tablet devices. Below this "
|
3018 |
"breakpoint tablet layout will appear (Default: 1025px)."
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: widgets/premium-carousel.php:
|
3022 |
msgid "Mobile Breakpoint"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: widgets/premium-carousel.php:
|
3026 |
msgid ""
|
3027 |
"Sets the breakpoint between tablet and mobile devices. Below this breakpoint "
|
3028 |
"mobile layout will appear (Default: 768px)."
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: widgets/premium-carousel.php:
|
3032 |
-
#, php-format
|
3033 |
-
msgid "%1$s Issue: I can see the first slide only » %2$s"
|
3034 |
-
msgstr ""
|
3035 |
-
|
3036 |
-
#: widgets/premium-carousel.php:452 widgets/premium-person.php:863
|
3037 |
-
#: widgets/premium-testimonials.php:286
|
3038 |
-
#, php-format
|
3039 |
-
msgid "%1$s I'm not able to see Font Awesome icons in the widget » %2$s"
|
3040 |
-
msgstr ""
|
3041 |
-
|
3042 |
-
#: widgets/premium-carousel.php:460
|
3043 |
-
#, php-format
|
3044 |
-
msgid ""
|
3045 |
-
"%1$s How to add entrance animations to the elements inside Premium Carousel "
|
3046 |
-
"Widget » %2$s"
|
3047 |
-
msgstr ""
|
3048 |
-
|
3049 |
-
#: widgets/premium-carousel.php:479
|
3050 |
msgid "Right Icon"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: widgets/premium-carousel.php:
|
3054 |
msgid "Bottom Icon"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: widgets/premium-carousel.php:
|
3058 |
msgid "Top Icon"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: widgets/premium-carousel.php:
|
3062 |
msgid "Left Icon"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: widgets/premium-carousel.php:
|
3066 |
msgid "Position (PX)"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: widgets/premium-carousel.php:
|
3070 |
msgid "Active Ripple Color"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: widgets/premium-carousel.php:
|
3074 |
msgid "Inactive Ripple Color"
|
3075 |
msgstr ""
|
3076 |
|
|
|
|
|
|
|
|
|
3077 |
#: widgets/premium-contactform.php:69
|
3078 |
msgid "Contact Form"
|
3079 |
msgstr ""
|
@@ -3087,9 +4379,10 @@ msgid "Fields"
|
|
3087 |
msgstr ""
|
3088 |
|
3089 |
#: widgets/premium-contactform.php:94 widgets/premium-contactform.php:208
|
3090 |
-
#: widgets/premium-
|
3091 |
-
#: widgets/premium-modalbox.php:
|
3092 |
-
#: widgets/premium-pricing-table.php:1573
|
|
|
3093 |
msgid "Width"
|
3094 |
msgstr ""
|
3095 |
|
@@ -3147,7 +4440,7 @@ msgid "Placeholder Color"
|
|
3147 |
msgstr ""
|
3148 |
|
3149 |
#: widgets/premium-countdown.php:85 widgets/premium-dual-header.php:124
|
3150 |
-
#: widgets/premium-testimonials.php:146
|
3151 |
msgid "Inline"
|
3152 |
msgstr ""
|
3153 |
|
@@ -3317,23 +4610,23 @@ msgstr ""
|
|
3317 |
msgid "Seconds (Plural)"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: widgets/premium-countdown.php:
|
3321 |
msgid "Digits"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: widgets/premium-countdown.php:
|
3325 |
msgid "Background Size"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: widgets/premium-countdown.php:
|
3329 |
msgid "Units"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: widgets/premium-countdown.php:
|
3333 |
msgid "Spacing in Between"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: widgets/premium-countdown.php:
|
3337 |
#: widgets/premium-testimonials.php:133
|
3338 |
msgid "Separator"
|
3339 |
msgstr ""
|
@@ -3386,78 +4679,74 @@ msgstr ""
|
|
3386 |
msgid "How long should it take to complete the digit?"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: widgets/premium-counter.php:
|
3390 |
msgid "Use a font awesome icon or upload a custom image"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: widgets/premium-counter.php:
|
3394 |
#: widgets/premium-pricing-table.php:101 widgets/premium-progressbar.php:230
|
3395 |
msgid "Select an Icon"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: widgets/premium-counter.php:
|
3399 |
msgid "Choose a position for your icon"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: widgets/premium-counter.php:
|
3403 |
msgid "Value Alignment"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: widgets/premium-counter.php:
|
3407 |
msgid "Title Alignment"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: widgets/premium-counter.php:
|
3411 |
msgid ""
|
3412 |
"We are giving you three quick preset if you are in a hurry. Otherwise, "
|
3413 |
"create your own with various options"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
-
#: widgets/premium-counter.php:
|
3417 |
msgid "Simple"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
-
#: widgets/premium-counter.php:
|
3421 |
msgid "Circle Background"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: widgets/premium-counter.php:
|
3425 |
msgid "Square Background"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: widgets/premium-counter.php:
|
3429 |
msgid "Background size"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: widgets/premium-counter.php:
|
3433 |
-
msgid "Vertical Alignment"
|
3434 |
-
msgstr ""
|
3435 |
-
|
3436 |
-
#: widgets/premium-counter.php:635 widgets/premium-progressbar.php:419
|
3437 |
msgid "Value"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: widgets/premium-counter.php:
|
3441 |
msgid "Prefix & Suffix"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: widgets/premium-counter.php:
|
3445 |
msgid "Prefix Color"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: widgets/premium-counter.php:
|
3449 |
msgid "Suffix Color"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: widgets/premium-dual-header.php:
|
3453 |
msgid "First Heading"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: widgets/premium-dual-header.php:
|
3457 |
msgid "Second Heading"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
-
#: widgets/premium-dual-header.php:
|
3461 |
msgid "Addons"
|
3462 |
msgstr ""
|
3463 |
|
@@ -3469,57 +4758,78 @@ msgstr ""
|
|
3469 |
msgid "Enable or disable link"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: widgets/premium-dual-header.php:
|
3473 |
msgid "Degrees"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: widgets/premium-dual-header.php:
|
3477 |
msgid "X Anchor Point"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: widgets/premium-dual-header.php:
|
3481 |
msgid "Y Anchor Point"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: widgets/premium-dual-header.php:
|
3485 |
-
|
3486 |
-
msgid "
|
|
|
|
|
|
|
|
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: widgets/premium-dual-header.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3490 |
msgid "Animated Background"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: widgets/premium-dual-header.php:
|
3494 |
msgid "Background Style"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#: widgets/premium-dual-header.php:
|
3498 |
msgid ""
|
3499 |
"Choose ‘Normal’ style to put a background behind the text. Choose ‘Clipped’ "
|
3500 |
"style so the background will be clipped on the text."
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: widgets/premium-dual-header.php:
|
3504 |
msgid "Clipped"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
#: widgets/premium-dual-header.php:
|
3508 |
msgid "Stroke"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
-
#: widgets/premium-dual-header.php:
|
3512 |
msgid "Stroke Text Color"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: widgets/premium-dual-header.php:
|
3516 |
msgid "Stroke Fill Color"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
-
#: widgets/premium-dual-header.php:
|
3520 |
msgid "Stroke Fill Width"
|
3521 |
msgstr ""
|
3522 |
|
|
|
|
|
|
|
|
|
3523 |
#: widgets/premium-fancytext.php:78
|
3524 |
msgid "Prefix"
|
3525 |
msgstr ""
|
@@ -3540,7 +4850,8 @@ msgstr ""
|
|
3540 |
msgid "Designer"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: widgets/premium-fancytext.php:108
|
|
|
3544 |
msgid "Developer"
|
3545 |
msgstr ""
|
3546 |
|
@@ -3577,18 +4888,23 @@ msgid "Set typing effect speed in milliseconds."
|
|
3577 |
msgstr ""
|
3578 |
|
3579 |
#: widgets/premium-fancytext.php:208 widgets/premium-fancytext.php:318
|
3580 |
-
#: widgets/premium-lottie.php:
|
3581 |
msgid "Animation Speed"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
-
#: widgets/premium-fancytext.php:210
|
3585 |
-
msgid "Set animation speed in
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: widgets/premium-fancytext.php:222
|
|
|
3589 |
msgid "Animation Delay"
|
3590 |
msgstr ""
|
3591 |
|
|
|
|
|
|
|
|
|
3592 |
#: widgets/premium-fancytext.php:233
|
3593 |
msgid "Loop Count"
|
3594 |
msgstr ""
|
@@ -3666,10 +4982,6 @@ msgstr ""
|
|
3666 |
msgid "Grid Layout"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: widgets/premium-grid.php:106
|
3670 |
-
msgid "Metro"
|
3671 |
-
msgstr ""
|
3672 |
-
|
3673 |
#: widgets/premium-grid.php:140
|
3674 |
msgid "Images Fit"
|
3675 |
msgstr ""
|
@@ -3682,7 +4994,7 @@ msgstr ""
|
|
3682 |
msgid "12 Columns"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: widgets/premium-grid.php:193 widgets/premium-grid.php:
|
3686 |
msgid "Load More Button"
|
3687 |
msgstr ""
|
3688 |
|
@@ -3690,7 +5002,7 @@ msgstr ""
|
|
3690 |
msgid "Requires number of images larger than 6"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: widgets/premium-grid.php:201 widgets/premium-modalbox.php:
|
3694 |
msgid "Button Text"
|
3695 |
msgstr ""
|
3696 |
|
@@ -3726,15 +5038,11 @@ msgstr ""
|
|
3726 |
msgid "First Category Label"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: widgets/premium-grid.php:306 widgets/premium-grid.php:577
|
3730 |
-
msgid "Category"
|
3731 |
-
msgstr ""
|
3732 |
-
|
3733 |
#: widgets/premium-grid.php:314
|
3734 |
msgid "Rotation Degrees"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: widgets/premium-grid.php:316
|
3738 |
msgid "Set rotation value in degrees"
|
3739 |
msgstr ""
|
3740 |
|
@@ -3768,16 +5076,16 @@ msgstr ""
|
|
3768 |
msgid "Video"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: widgets/premium-grid.php:470 widgets/premium-person.php:
|
3772 |
-
#: widgets/premium-person.php:
|
3773 |
msgid "YouTube"
|
3774 |
msgstr ""
|
3775 |
|
3776 |
-
#: widgets/premium-grid.php:471 widgets/premium-videobox.php:
|
3777 |
msgid "Vimeo"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: widgets/premium-grid.php:472 widgets/premium-videobox.php:
|
3781 |
msgid "Self Hosted"
|
3782 |
msgstr ""
|
3783 |
|
@@ -3789,7 +5097,7 @@ msgstr ""
|
|
3789 |
msgid "Select Video"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: widgets/premium-grid.php:522 widgets/premium-videobox.php:
|
3793 |
msgid "Remote Video URL"
|
3794 |
msgstr ""
|
3795 |
|
@@ -3797,211 +5105,412 @@ msgstr ""
|
|
3797 |
msgid "Controls"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: widgets/premium-grid.php:
|
3801 |
msgid "Mute"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: widgets/premium-grid.php:
|
3805 |
msgid "To assign for multiple categories, separate by a comma ','"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: widgets/premium-grid.php:
|
3809 |
msgid "Whole Image Link"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: widgets/premium-grid.php:
|
3813 |
msgid "Whole Image Lightbox"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: widgets/premium-grid.php:
|
3817 |
msgid "Images"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: widgets/premium-grid.php:
|
3821 |
msgid "Shuffle Images on Page Load"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: widgets/premium-grid.php:
|
3825 |
msgid "Youtube Videos Thumbnail Size"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: widgets/premium-grid.php:
|
3829 |
msgid "Maximum Resolution"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#: widgets/premium-grid.php:
|
3833 |
msgid "High Quality"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: widgets/premium-grid.php:
|
3837 |
msgid "Medium Quality"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: widgets/premium-grid.php:
|
3841 |
msgid "Standard Quality"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: widgets/premium-grid.php:
|
3845 |
msgid "Image Gap"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: widgets/premium-grid.php:
|
3849 |
msgid "Choose a layout style for the gallery"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: widgets/premium-grid.php:720 widgets/premium-person.php:
|
3853 |
-
#: widgets/premium-title.php:
|
3854 |
-
msgid "Style 1"
|
3855 |
-
msgstr ""
|
3856 |
-
|
3857 |
-
#: widgets/premium-grid.php:721 widgets/premium-person.php:98
|
3858 |
-
#: widgets/premium-title.php:105
|
3859 |
msgid "Style 2"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: widgets/premium-grid.php:
|
|
|
3863 |
msgid "Style 3"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: widgets/premium-grid.php:
|
3867 |
msgid "Style 4"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: widgets/premium-grid.php:
|
3871 |
msgid "Style 4 works only with Even / Masonry Layout"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: widgets/premium-grid.php:
|
3875 |
msgid "Links Icon"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: widgets/premium-grid.php:
|
3879 |
msgid "Videos"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: widgets/premium-grid.php:
|
3883 |
msgid "Always Show Play Icon"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: widgets/premium-grid.php:
|
3887 |
msgid "Videos Play Icon"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: widgets/premium-grid.php:
|
3891 |
msgid ""
|
3892 |
"This option moves the origin of the grid to the right side. Useful for RTL "
|
3893 |
"direction sites"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: widgets/premium-grid.php:
|
3897 |
msgid "Content Alignment"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: widgets/premium-grid.php:
|
3901 |
-
#: widgets/premium-grid.php:
|
3902 |
msgid "Lightbox"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: widgets/premium-grid.php:
|
3906 |
msgid "Lightbox Style"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: widgets/premium-grid.php:
|
3910 |
-
msgid "PrettyPhoto"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: widgets/premium-
|
3914 |
-
msgid "
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: widgets/premium-
|
3918 |
-
msgid "
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: widgets/premium-
|
3922 |
-
msgid "
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: widgets/premium-
|
3926 |
-
msgid "
|
|
|
|
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#: widgets/premium-
|
3930 |
-
msgid "
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#: widgets/premium-
|
3934 |
-
msgid "
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#: widgets/premium-
|
3938 |
-
msgid "
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: widgets/premium-
|
3942 |
-
msgid "
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#: widgets/premium-
|
3946 |
-
|
|
|
|
|
|
|
|
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: widgets/premium-
|
3950 |
-
|
3951 |
-
msgid "Facebook"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: widgets/premium-
|
3955 |
-
msgid "
|
|
|
|
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: widgets/premium-
|
3959 |
-
msgid "
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: widgets/premium-
|
3963 |
-
msgid ""
|
3964 |
-
"If the content text is not suiting well on specific screen sizes, you may "
|
3965 |
-
"enable this option which will hide the description text."
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: widgets/premium-
|
3969 |
-
|
3970 |
-
msgid "%1$s How to assign a grid item to multiple categories » %2$s"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: widgets/premium-
|
3974 |
-
|
3975 |
-
msgid "
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: widgets/premium-
|
3979 |
-
msgid "
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: widgets/premium-
|
3983 |
-
msgid "
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: widgets/premium-
|
3987 |
-
|
|
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: widgets/premium-
|
3991 |
-
msgid "
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: widgets/premium-
|
3995 |
-
|
3996 |
-
msgid "Text Hover Color"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: widgets/premium-
|
4000 |
-
msgid "
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: widgets/premium-
|
4004 |
-
msgid "
|
4005 |
msgstr ""
|
4006 |
|
4007 |
#: widgets/premium-image-button.php:142
|
@@ -4036,72 +5545,137 @@ msgstr ""
|
|
4036 |
msgid "Overlap Direction"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: widgets/premium-image-scroll.php:
|
4040 |
msgid "Image Settings"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: widgets/premium-image-scroll.php:
|
4044 |
msgid "Choose the scroll image"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: widgets/premium-image-scroll.php:
|
4048 |
msgid "Image Height"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: widgets/premium-image-scroll.php:
|
4052 |
msgid "Add a custom link or select an existing page link"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: widgets/premium-image-scroll.php:
|
4056 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#: widgets/premium-image-scroll.php:
|
4060 |
msgid "Direction"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
-
#: widgets/premium-image-scroll.php:
|
4064 |
msgid "Select Scroll Direction"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: widgets/premium-image-scroll.php:
|
|
|
|
|
|
|
|
|
4068 |
msgid "Reverse Direction"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: widgets/premium-image-scroll.php:
|
4072 |
-
#: widgets/premium-modalbox.php:
|
4073 |
msgid "Trigger"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: widgets/premium-image-scroll.php:
|
4077 |
msgid "Mouse Scroll"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: widgets/premium-image-scroll.php:
|
4081 |
msgid "Speed"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: widgets/premium-image-scroll.php:
|
4085 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: widgets/premium-image-scroll.php:
|
4089 |
-
#: widgets/premium-videobox.php:
|
4090 |
-
msgid "Overlay"
|
4091 |
-
msgstr ""
|
4092 |
-
|
4093 |
-
#: widgets/premium-image-scroll.php:279 widgets/premium-videobox.php:285
|
4094 |
-
#: widgets/premium-videobox.php:298 widgets/premium-videobox.php:311
|
4095 |
msgid "Show"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: widgets/premium-image-scroll.php:
|
4099 |
-
#: widgets/premium-videobox.php:
|
4100 |
msgid "Hide"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#: widgets/premium-image-scroll.php:
|
4104 |
-
#: widgets/premium-lottie.php:
|
4105 |
msgid "Opacity"
|
4106 |
msgstr ""
|
4107 |
|
@@ -4113,8 +5687,7 @@ msgstr ""
|
|
4113 |
msgid "Choose the separator image"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: widgets/premium-image-separator.php:167 widgets/premium-
|
4117 |
-
#: widgets/premium-modalbox.php:604
|
4118 |
msgid "Only Play on Hover"
|
4119 |
msgstr ""
|
4120 |
|
@@ -4140,56 +5713,53 @@ msgstr ""
|
|
4140 |
msgid "General Settings"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: widgets/premium-lottie.php:
|
4144 |
-
msgid "
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#: widgets/premium-lottie.php:
|
4148 |
-
msgid "
|
4149 |
msgstr ""
|
4150 |
|
4151 |
-
#: widgets/premium-lottie.php:
|
4152 |
-
msgid "
|
4153 |
msgstr ""
|
4154 |
|
4155 |
-
#: widgets/premium-lottie.php:
|
4156 |
-
msgid "
|
4157 |
msgstr ""
|
4158 |
|
4159 |
-
#: widgets/premium-lottie.php:
|
4160 |
-
msgid "
|
4161 |
msgstr ""
|
4162 |
|
4163 |
-
#: widgets/premium-lottie.php:
|
4164 |
-
msgid "
|
4165 |
msgstr ""
|
4166 |
|
4167 |
-
#: widgets/premium-lottie.php:
|
4168 |
-
msgid "
|
4169 |
msgstr ""
|
4170 |
|
4171 |
-
#: widgets/premium-lottie.php:
|
4172 |
-
msgid ""
|
4173 |
-
"Set render type to canvas if you're having performance issues on the page."
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: widgets/premium-lottie.php:
|
4177 |
-
|
4178 |
-
msgid "%1$s Check the video tutorial » %2$s"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#: widgets/premium-lottie.php:
|
4182 |
-
|
4183 |
-
msgid "%1$s Check the documentation article » %2$s"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: widgets/premium-lottie.php:
|
4187 |
-
|
4188 |
-
msgid "%1$s How to speed up Elementor pages with many Lottie animations » %2$s"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: widgets/premium-lottie.php:
|
4192 |
-
msgid "
|
|
|
4193 |
msgstr ""
|
4194 |
|
4195 |
#: widgets/premium-maps.php:81
|
@@ -4332,16 +5902,19 @@ msgstr ""
|
|
4332 |
msgid "JSON Code"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
-
#: widgets/premium-maps.php:
|
4336 |
-
|
4337 |
-
msgid "%1$s Getting your API key » %2$s"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
-
#: widgets/premium-maps.php:
|
|
|
|
|
|
|
|
|
4341 |
msgid "Map"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: widgets/premium-modalbox.php:105 widgets/premium-modalbox.php:
|
4345 |
msgid "Header"
|
4346 |
msgstr ""
|
4347 |
|
@@ -4349,8 +5922,8 @@ msgstr ""
|
|
4349 |
msgid "Enable or disable modal header"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
-
#: widgets/premium-modalbox.php:
|
4353 |
-
msgid "
|
4354 |
msgstr ""
|
4355 |
|
4356 |
#: widgets/premium-modalbox.php:230
|
@@ -4373,57 +5946,57 @@ msgstr ""
|
|
4373 |
msgid "Modal content is a template which you can choose from Elementor library"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
-
#: widgets/premium-modalbox.php:292 widgets/premium-modalbox.php:
|
4377 |
msgid "Upper Close Button"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
-
#: widgets/premium-modalbox.php:304 widgets/premium-modalbox.php:
|
4381 |
msgid "Lower Close Button"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
-
#: widgets/premium-modalbox.php:
|
4385 |
msgid "Trigger Options"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
-
#: widgets/premium-modalbox.php:
|
4389 |
msgid "Choose where would you like the modal box appear on"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
#: widgets/premium-modalbox.php:
|
4393 |
msgid "On Page Load"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: widgets/premium-modalbox.php:
|
4397 |
msgid "Premium Modal Box"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: widgets/premium-modalbox.php:
|
4401 |
msgid "Button Size"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: widgets/premium-modalbox.php:
|
4405 |
msgid "Delay in Popup Display (Sec)"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
-
#: widgets/premium-modalbox.php:
|
4409 |
msgid ""
|
4410 |
"When should the popup appear during page load? The value are counted in "
|
4411 |
"seconds"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: widgets/premium-modalbox.php:
|
4415 |
msgid "Icon Hover Color"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: widgets/premium-modalbox.php:
|
4419 |
msgid "Content Background Color"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
-
#: widgets/premium-modalbox.php:
|
4423 |
msgid "Max Height"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: widgets/premium-modalbox.php:
|
4427 |
msgid "Footer Background Color"
|
4428 |
msgstr ""
|
4429 |
|
@@ -4435,119 +6008,128 @@ msgstr ""
|
|
4435 |
msgid "Enable this option if you need to add multiple persons"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: widgets/premium-person.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4439 |
msgid "Enter image width in (PX, EM, %), default is 100%"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: widgets/premium-person.php:
|
4443 |
msgid "Name Tag"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: widgets/premium-person.php:
|
4447 |
msgid "Title Tag"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: widgets/premium-person.php:
|
4451 |
msgid "Members/Row"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: widgets/premium-person.php:
|
4455 |
-
msgid "Equal Height"
|
4456 |
-
msgstr ""
|
4457 |
-
|
4458 |
-
#: widgets/premium-person.php:310
|
4459 |
msgid "Single Member Settings"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: widgets/premium-person.php:
|
4463 |
-
msgid "Senior Developer"
|
4464 |
-
msgstr ""
|
4465 |
-
|
4466 |
-
#: widgets/premium-person.php:355 widgets/premium-person.php:591
|
4467 |
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
-
#: widgets/premium-person.php:
|
4471 |
msgid "Enable Social Icons"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
-
#: widgets/premium-person.php:
|
4475 |
msgid "Twitter"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: widgets/premium-person.php:
|
4479 |
msgid "LinkedIn"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: widgets/premium-person.php:
|
4483 |
msgid "Google+"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: widgets/premium-person.php:
|
4487 |
msgid "Instagram"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: widgets/premium-person.php:
|
4491 |
msgid "Skype"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: widgets/premium-person.php:
|
4495 |
msgid "Pinterest"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: widgets/premium-person.php:
|
4499 |
msgid "Dribbble"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
-
#: widgets/premium-person.php:
|
4503 |
msgid "Behance"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: widgets/premium-person.php:
|
4507 |
msgid "WhatsApp"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: widgets/premium-person.php:
|
4511 |
msgid "Telegram"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
-
#: widgets/premium-person.php:
|
4515 |
msgid "Email Address"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: widgets/premium-person.php:
|
4519 |
msgid "Website"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: widgets/premium-person.php:
|
4523 |
msgid "Multiple Members Settings"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
-
#: widgets/premium-person.php:
|
4527 |
msgid "Members"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
#: widgets/premium-person.php:
|
|
|
|
|
|
|
|
|
|
|
4531 |
msgid "Job Title"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
-
#: widgets/premium-person.php:
|
4535 |
msgid "Social Icons"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: widgets/premium-person.php:
|
4539 |
msgid "Brands Default Colors"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: widgets/premium-person.php:
|
4543 |
msgid "Bottom Offset"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: widgets/premium-person.php:
|
4547 |
msgid "Transition Duration (sec)"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: widgets/premium-person.php:
|
4551 |
msgid "Background Hover Color"
|
4552 |
msgstr ""
|
4553 |
|
@@ -4555,12 +6137,6 @@ msgstr ""
|
|
4555 |
msgid "Select HTML tag for the title"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: widgets/premium-pricing-table.php:198 widgets/premium-pricing-table.php:229
|
4559 |
-
#: widgets/premium-pricing-table.php:769 widgets/premium-pricing-table.php:1060
|
4560 |
-
#: widgets/premium-pricing-table.php:1181
|
4561 |
-
msgid "Price"
|
4562 |
-
msgstr ""
|
4563 |
-
|
4564 |
#: widgets/premium-pricing-table.php:208 widgets/premium-pricing-table.php:1070
|
4565 |
msgid "Slashed Price"
|
4566 |
msgstr ""
|
@@ -4569,10 +6145,6 @@ msgstr ""
|
|
4569 |
msgid "Currency"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: widgets/premium-pricing-table.php:240 widgets/premium-pricing-table.php:1226
|
4573 |
-
msgid "Divider"
|
4574 |
-
msgstr ""
|
4575 |
-
|
4576 |
#: widgets/premium-pricing-table.php:251 widgets/premium-pricing-table.php:1278
|
4577 |
msgid "Duration"
|
4578 |
msgstr ""
|
@@ -4593,11 +6165,6 @@ msgstr ""
|
|
4593 |
msgid "Tooltip Text"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: widgets/premium-pricing-table.php:389 widgets/premium-pricing-table.php:777
|
4597 |
-
#: widgets/premium-pricing-table.php:1374
|
4598 |
-
msgid "Features"
|
4599 |
-
msgstr ""
|
4600 |
-
|
4601 |
#: widgets/premium-pricing-table.php:397
|
4602 |
msgid "List Item #1"
|
4603 |
msgstr ""
|
@@ -4648,13 +6215,6 @@ msgstr ""
|
|
4648 |
msgid "NEW"
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#: widgets/premium-pricing-table.php:1133
|
4652 |
-
#: widgets/premium-pricing-table.php:1206
|
4653 |
-
#: widgets/premium-pricing-table.php:1251
|
4654 |
-
#: widgets/premium-pricing-table.php:1303
|
4655 |
-
msgid "Typography"
|
4656 |
-
msgstr ""
|
4657 |
-
|
4658 |
#: widgets/premium-pricing-table.php:1150
|
4659 |
msgid "Unset"
|
4660 |
msgstr ""
|
@@ -4663,7 +6223,7 @@ msgstr ""
|
|
4663 |
msgid "Vertical Spacing"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: widgets/premium-pricing-table.php:1539 widgets/premium-vscroll.php:
|
4667 |
msgid "Tooltips"
|
4668 |
msgstr ""
|
4669 |
|
@@ -4745,18 +6305,10 @@ msgstr ""
|
|
4745 |
msgid "Labels Alignment"
|
4746 |
msgstr ""
|
4747 |
|
4748 |
-
#: widgets/premium-progressbar.php:432
|
4749 |
-
msgid "Solid"
|
4750 |
-
msgstr ""
|
4751 |
-
|
4752 |
#: widgets/premium-progressbar.php:433
|
4753 |
msgid "Striped"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
-
#: widgets/premium-progressbar.php:434
|
4757 |
-
msgid "Animated Gradient"
|
4758 |
-
msgstr ""
|
4759 |
-
|
4760 |
#: widgets/premium-progressbar.php:444
|
4761 |
msgid "Speed (milliseconds)"
|
4762 |
msgstr ""
|
@@ -4837,7 +6389,7 @@ msgstr ""
|
|
4837 |
msgid "Align"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: widgets/premium-testimonials.php:177 widgets/premium-testimonials.php:
|
4841 |
msgid "Company"
|
4842 |
msgstr ""
|
4843 |
|
@@ -4881,235 +6433,389 @@ msgid ""
|
|
4881 |
"Donec id elit non mi porta gravida at eget metus."
|
4882 |
msgstr ""
|
4883 |
|
4884 |
-
#: widgets/premium-testimonials.php:
|
4885 |
msgid "Border Width (PX)"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: widgets/premium-testimonials.php:
|
4889 |
msgid "Author Color"
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: widgets/premium-testimonials.php:
|
4893 |
msgid "Name Typograhy"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: widgets/premium-testimonials.php:
|
4897 |
-
msgid "Separator Color"
|
4898 |
-
msgstr ""
|
4899 |
-
|
4900 |
-
#: widgets/premium-testimonials.php:418
|
4901 |
msgid "Separator Typograhy"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#: widgets/premium-testimonials.php:
|
4905 |
msgid "Quotation Icon"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: widgets/premium-testimonials.php:
|
4909 |
msgid "Top Icon Position"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#: widgets/premium-testimonials.php:
|
4913 |
msgid "Bottom Icon Position"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#: widgets/premium-title.php:
|
4917 |
msgid "Premium Title"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#: widgets/premium-title.php:
|
4921 |
msgid "Style 5"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#: widgets/premium-title.php:
|
4925 |
msgid "Style 6"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
-
#: widgets/premium-title.php:
|
4929 |
msgid "Style 7"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#: widgets/premium-title.php:
|
4933 |
-
msgid "
|
4934 |
msgstr ""
|
4935 |
|
4936 |
-
#: widgets/premium-title.php:
|
4937 |
-
msgid "
|
|
|
|
|
|
|
|
|
4938 |
msgstr ""
|
4939 |
|
4940 |
-
#: widgets/premium-title.php:
|
4941 |
msgid ""
|
4942 |
"Please note that left/right alignment is reversed when Icon Position is set "
|
4943 |
"to After."
|
4944 |
msgstr ""
|
4945 |
|
4946 |
-
#: widgets/premium-title.php:
|
4947 |
msgid "Stripe Position"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
-
#: widgets/premium-title.php:
|
4951 |
msgid "Stripe Width (PX)"
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#: widgets/premium-title.php:
|
4955 |
msgid "Stripe Height (PX)"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
-
#: widgets/premium-title.php:
|
4959 |
msgid "Stripe Top Spacing (PX)"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
-
#: widgets/premium-title.php:
|
4963 |
msgid "Stripe Bottom Spacing (PX)"
|
4964 |
msgstr ""
|
4965 |
|
4966 |
-
#: widgets/premium-title.php:
|
4967 |
msgid "Stripe Alignment"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
-
#: widgets/premium-title.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4971 |
msgid "Line Color"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
-
#: widgets/premium-title.php:
|
4975 |
msgid "Triangle Color"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
-
#: widgets/premium-title.php:
|
4979 |
msgid "Stripe Color"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
-
#: widgets/premium-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4983 |
msgid "Video Type"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
-
#: widgets/premium-videobox.php:
|
4987 |
msgid "Youtube"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
-
#: widgets/premium-videobox.php:
|
4991 |
msgid "Embed URL"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
-
#: widgets/premium-videobox.php:
|
4995 |
msgid "Video ID"
|
4996 |
msgstr ""
|
4997 |
|
4998 |
-
#: widgets/premium-videobox.php:
|
4999 |
msgid ""
|
5000 |
"Enter the numbers and letters after the equal sign which located in your "
|
5001 |
"YouTube video link or after the slash sign in your Vimeo video link. For "
|
5002 |
"example, z1hQgVpfTKU"
|
5003 |
msgstr ""
|
5004 |
|
5005 |
-
#: widgets/premium-videobox.php:
|
5006 |
msgid ""
|
5007 |
"Enter your YouTube/Vimeo video link. For example, https://www.youtube.com/"
|
5008 |
"embed/z1hQgVpfTKU"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5012 |
msgid "Player Controls"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: widgets/premium-videobox.php:
|
5016 |
msgid "Show/hide player controls"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
#: widgets/premium-videobox.php:
|
5020 |
msgid "This will play the video muted"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#: widgets/premium-videobox.php:
|
5024 |
msgid "Autoplay"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
5028 |
msgid ""
|
5029 |
"Please note that autoplay option works only when Overlay option is disabled"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5033 |
msgid "Start Time"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
-
#: widgets/premium-videobox.php:
|
5037 |
msgid "Specify a start time (in seconds)"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
-
#: widgets/premium-videobox.php:
|
5041 |
msgid "End Time"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
-
#: widgets/premium-videobox.php:
|
5045 |
msgid "Specify an end time (in seconds)"
|
5046 |
msgstr ""
|
5047 |
|
5048 |
-
#: widgets/premium-videobox.php:
|
5049 |
msgid "Suggested Videos From"
|
5050 |
msgstr ""
|
5051 |
|
5052 |
-
#: widgets/premium-videobox.php:
|
5053 |
msgid "Current Channel"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
-
#: widgets/premium-videobox.php:
|
5057 |
msgid "Any Channel"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
-
#: widgets/premium-videobox.php:
|
5061 |
msgid "Controls Color"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
-
#: widgets/premium-videobox.php:
|
5065 |
msgid "Intro Title"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
-
#: widgets/premium-videobox.php:
|
5069 |
msgid "Intro Portrait"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
-
#: widgets/premium-videobox.php:
|
5073 |
msgid "Intro Byline"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
-
#: widgets/premium-videobox.php:
|
5077 |
msgid "Aspect Ratio"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
5081 |
msgid "Thumbnail Size"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5085 |
msgid "Choose an image for the video box"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
-
#: widgets/premium-videobox.php:
|
5089 |
-
#: widgets/premium-videobox.php:
|
5090 |
msgid "Play Icon"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
-
#: widgets/premium-videobox.php:
|
5094 |
-
|
|
|
5095 |
msgstr ""
|
5096 |
|
5097 |
-
#: widgets/premium-videobox.php:
|
5098 |
-
|
|
|
5099 |
msgstr ""
|
5100 |
|
5101 |
-
#: widgets/premium-videobox.php:
|
5102 |
msgid "Video Text"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: widgets/premium-videobox.php:
|
5106 |
msgid "Play Video"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#: widgets/premium-videobox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
5110 |
msgid "Hover Padding"
|
5111 |
msgstr ""
|
5112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5113 |
#: widgets/premium-vscroll.php:97
|
5114 |
msgid "Choose which method you prefer to insert sections."
|
5115 |
msgstr ""
|
@@ -5131,7 +6837,7 @@ msgstr ""
|
|
5131 |
msgid "Navigation"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: widgets/premium-vscroll.php:172 widgets/premium-vscroll.php:
|
5135 |
msgid "Navigation Menu"
|
5136 |
msgstr ""
|
5137 |
|
@@ -5159,14 +6865,6 @@ msgstr ""
|
|
5159 |
msgid "Menu Items"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: widgets/premium-vscroll.php:271
|
5163 |
-
msgid "Horizontal Position"
|
5164 |
-
msgstr ""
|
5165 |
-
|
5166 |
-
#: widgets/premium-vscroll.php:286
|
5167 |
-
msgid "Vertical Position"
|
5168 |
-
msgstr ""
|
5169 |
-
|
5170 |
#: widgets/premium-vscroll.php:302
|
5171 |
msgid "Shape"
|
5172 |
msgstr ""
|
@@ -5191,22 +6889,6 @@ msgstr ""
|
|
5191 |
msgid "Add text for each navigation dot separated by ','"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: widgets/premium-vscroll.php:341
|
5195 |
-
msgid "Entrance Animation"
|
5196 |
-
msgstr ""
|
5197 |
-
|
5198 |
-
#: widgets/premium-vscroll.php:353
|
5199 |
-
msgid "Animation Duration"
|
5200 |
-
msgstr ""
|
5201 |
-
|
5202 |
-
#: widgets/premium-vscroll.php:357
|
5203 |
-
msgid "Slow"
|
5204 |
-
msgstr ""
|
5205 |
-
|
5206 |
-
#: widgets/premium-vscroll.php:359
|
5207 |
-
msgid "Fast"
|
5208 |
-
msgstr ""
|
5209 |
-
|
5210 |
#: widgets/premium-vscroll.php:372
|
5211 |
msgid "Scroll Settings"
|
5212 |
msgstr ""
|
@@ -5240,22 +6922,29 @@ msgstr ""
|
|
5240 |
msgid "Enable Full Section Scroll on Touch Devices"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#: widgets/premium-vscroll.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5244 |
msgid "Tooltips Text Color"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: widgets/premium-vscroll.php:
|
5248 |
msgid "Tooltips Background"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#: widgets/premium-vscroll.php:
|
5252 |
msgid "Dots Color"
|
5253 |
msgstr ""
|
5254 |
|
5255 |
-
#: widgets/premium-vscroll.php:
|
5256 |
msgid "Active Dot Color"
|
5257 |
msgstr ""
|
5258 |
|
5259 |
-
#: widgets/premium-vscroll.php:
|
5260 |
msgid "Dots Border Color"
|
5261 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Premium Addons for Elementor\n"
|
5 |
+
"POT-Creation-Date: 2020-11-22 18:13+0200\n"
|
6 |
"PO-Revision-Date: 2018-02-15 10:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Leap13\n"
|
20 |
"X-Poedit-SearchPathExcluded-1: admin/assets/js\n"
|
21 |
"X-Poedit-SearchPathExcluded-2: node_modules\n"
|
22 |
|
23 |
+
#: admin/includes/admin-helper.php:221 admin/includes/dep/maintenance.php:31
|
24 |
+
#: admin/includes/templates/version-control.php:20
|
25 |
+
msgid "Rollback to Previous Version"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/includes/admin-helper.php:222 admin/includes/admin-helper.php:231
|
29 |
+
msgid "Are you sure you want to reinstall version "
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: admin/includes/admin-helper.php:223
|
33 |
+
msgid "Continue"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: admin/includes/admin-helper.php:224
|
37 |
+
msgid "Cancel"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: admin/includes/admin-helper.php:256
|
41 |
msgid "Settings"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: admin/includes/admin-helper.php:258
|
45 |
+
#: admin/includes/templates/version-control.php:26
|
46 |
msgid "Rollback to Version "
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: admin/includes/admin-helper.php:266
|
50 |
msgid "Go Pro"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: admin/includes/admin-helper.php:297
|
54 |
msgid "View Premium Addons for Elementor Documentation"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: admin/includes/admin-helper.php:297
|
58 |
msgid "Docs & FAQs"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: admin/includes/admin-helper.php:298
|
62 |
msgid "View Premium Addons Video Tutorials"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: admin/includes/admin-helper.php:298
|
66 |
msgid "Video Tutorials"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: admin/includes/admin-helper.php:340
|
70 |
+
#: modules/woocommerce/widgets/woo-products.php:93
|
71 |
+
#: widgets/premium-banner.php:533 widgets/premium-blog.php:87
|
72 |
+
#: widgets/premium-grid.php:1032
|
73 |
+
msgid "General"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin/includes/admin-helper.php:347
|
77 |
+
msgid "Widgets & Add-ons"
|
|
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin/includes/admin-helper.php:354 widgets/premium-pricing-table.php:389
|
81 |
+
#: widgets/premium-pricing-table.php:777 widgets/premium-pricing-table.php:1374
|
82 |
+
msgid "Features"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: admin/includes/admin-helper.php:361
|
86 |
+
msgid "Integrations"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/includes/admin-helper.php:368
|
90 |
+
msgid "Version Control"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin/includes/admin-helper.php:375
|
94 |
+
msgid "White Labeling"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin/includes/admin-helper.php:382
|
98 |
+
msgid "System Info"
|
|
|
|
|
|
|
|
|
|
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin/includes/admin-helper.php:504
|
102 |
+
msgid "Get Premium Addons PRO"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin/includes/admin-helper.php:505
|
106 |
+
#, php-format
|
107 |
msgid ""
|
108 |
+
"Supercharge your Elementor with %sPRO Widgets & Addons%s that you won't find "
|
109 |
+
"anywhere else."
|
|
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: admin/includes/admin-helper.php:508
|
113 |
+
msgid "Get PRO"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin/includes/admin-notices.php:160
|
117 |
+
msgid ""
|
118 |
+
"Premium Addons for Elementor is not working because you need to Install "
|
119 |
+
"Elementor plugin."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: admin/includes/admin-notices.php:162
|
123 |
+
msgid "Install Now"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: admin/includes/admin-notices.php:170
|
127 |
+
msgid ""
|
128 |
+
"Premium Addons for Elementor is not working because you need to activate "
|
129 |
+
"Elementor plugin."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin/includes/admin-notices.php:172
|
133 |
+
msgid "Activate Now"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: admin/includes/admin-notices.php:190
|
137 |
msgid ""
|
138 |
+
"Can we take only 2 minutes of your time? We'd really appreciate it if you "
|
139 |
+
"give "
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin/includes/admin-notices.php:191
|
143 |
+
msgid "Premium Addons for Elementor"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: admin/includes/admin-notices.php:193
|
147 |
+
msgid "Leave a Review"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin/includes/admin-notices.php:194
|
151 |
+
msgid "I Already Did"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin/includes/admin-notices.php:195
|
155 |
+
msgid "Maybe Later"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: admin/includes/admin-notices.php:259
|
159 |
+
msgid "Huge Update for"
|
|
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: admin/includes/admin-notices.php:260
|
163 |
+
msgid "Premium Addons Free and PRO"
|
|
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin/includes/admin-notices.php:261
|
167 |
+
#, php-format
|
168 |
+
msgid "Plugins. Click <a href=\"%s\" target=\"_blank\">Here</a> for Details."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin/includes/dep/rollback.php:110
|
172 |
+
msgid "Rolling Back to Version "
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin/includes/duplicator.php:74
|
176 |
+
msgid "PA Duplicate"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin/includes/duplicator.php:174
|
180 |
#, php-format
|
181 |
+
msgid "Duplicated: %s - [#%d]"
|
|
|
|
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: admin/includes/elements.php:8
|
185 |
+
msgid "All Widgets"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin/includes/elements.php:19 admin/includes/elements.php:174
|
189 |
+
#: admin/includes/elements.php:583 widgets/premium-lottie.php:47
|
190 |
+
msgid "Lottie Animations"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: admin/includes/elements.php:26 admin/includes/elements.php:423
|
194 |
+
#: modules/woocommerce/widgets/woo-products.php:105
|
195 |
+
#: modules/woocommerce/widgets/woo-products.php:952
|
196 |
+
#: widgets/premium-blog.php:911 widgets/premium-carousel.php:37
|
197 |
+
#: widgets/premium-carousel.php:79 widgets/premium-person.php:821
|
198 |
+
#: widgets/premium-person.php:1317
|
199 |
+
msgid "Carousel"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: admin/includes/elements.php:33 admin/includes/elements.php:430
|
203 |
+
#: widgets/premium-blog.php:38
|
204 |
+
msgid "Blog"
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin/includes/elements.php:39 admin/includes/elements.php:436
|
208 |
+
#: widgets/premium-maps.php:38
|
209 |
+
msgid "Google Maps"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin/includes/elements.php:46 admin/includes/elements.php:443
|
213 |
+
#: widgets/premium-person.php:35
|
214 |
+
msgid "Team Members"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: admin/includes/elements.php:52 admin/includes/elements.php:449
|
218 |
+
msgid "Tabs"
|
|
|
|
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: admin/includes/elements.php:59 admin/includes/elements.php:456
|
222 |
+
msgid "Content Switcher"
|
|
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: admin/includes/elements.php:66 admin/includes/elements.php:463
|
226 |
+
#: widgets/premium-fancytext.php:32 widgets/premium-fancytext.php:71
|
227 |
+
#: widgets/premium-fancytext.php:101 widgets/premium-fancytext.php:400
|
228 |
+
msgid "Fancy Text"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: admin/includes/elements.php:72 admin/includes/elements.php:469
|
232 |
+
msgid "Heading"
|
|
|
|
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: admin/includes/elements.php:78 admin/includes/elements.php:475
|
236 |
+
#: widgets/premium-dual-header.php:41 widgets/premium-dual-header.php:73
|
237 |
+
msgid "Dual Heading"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin/includes/elements.php:84 admin/includes/elements.php:481
|
241 |
+
#: widgets/premium-icon-list.php:808 widgets/premium-pricing-table.php:240
|
242 |
+
#: widgets/premium-pricing-table.php:1226
|
243 |
+
msgid "Divider"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: admin/includes/elements.php:91 admin/includes/elements.php:494
|
247 |
+
#: widgets/premium-grid.php:47
|
248 |
+
msgid "Media Grid"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin/includes/elements.php:97 admin/includes/elements.php:500
|
252 |
+
#: widgets/premium-image-scroll.php:40
|
253 |
+
msgid "Image Scroll"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin/includes/elements.php:103 admin/includes/elements.php:506
|
257 |
+
#: widgets/premium-image-separator.php:41
|
258 |
+
msgid "Image Separator"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: admin/includes/elements.php:109 admin/includes/elements.php:512
|
262 |
+
msgid "Image Comparison"
|
|
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: admin/includes/elements.php:116 admin/includes/elements.php:519
|
266 |
+
msgid "Image Hotspots"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin/includes/elements.php:123 admin/includes/elements.php:526
|
270 |
+
msgid "Image Layers"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin/includes/elements.php:131 admin/includes/elements.php:534
|
274 |
+
msgid "Image Accordion"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/includes/elements.php:138 admin/includes/elements.php:541
|
278 |
+
#: widgets/premium-videobox.php:39 widgets/premium-videobox.php:82
|
279 |
+
#: widgets/premium-videobox.php:1192
|
280 |
+
msgid "Video Box"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: admin/includes/elements.php:144 admin/includes/elements.php:553
|
284 |
+
msgid "Horizontal Scroll"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: admin/includes/elements.php:152 admin/includes/elements.php:561
|
288 |
+
#: widgets/premium-vscroll.php:38
|
289 |
+
msgid "Vertical Scroll"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin/includes/elements.php:159 admin/includes/elements.php:568
|
293 |
+
msgid "Background Transition"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin/includes/elements.php:166 admin/includes/elements.php:575
|
297 |
+
msgid "Multi Scroll"
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin/includes/elements.php:182 admin/includes/elements.php:591
|
301 |
+
msgid "Parallax"
|
|
|
|
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: admin/includes/elements.php:190 admin/includes/elements.php:599
|
305 |
+
msgid "Particles"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin/includes/elements.php:198 admin/includes/elements.php:607
|
309 |
+
#: widgets/premium-progressbar.php:434
|
310 |
+
msgid "Animated Gradient"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin/includes/elements.php:206 admin/includes/elements.php:615
|
314 |
+
msgid "Animated Ken Burns"
|
|
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin/includes/elements.php:214 admin/includes/elements.php:629
|
318 |
+
#: widgets/premium-modalbox.php:52 widgets/premium-modalbox.php:1431
|
319 |
+
msgid "Modal Box"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin/includes/elements.php:221 admin/includes/elements.php:636
|
323 |
+
msgid "Alert Box"
|
|
|
|
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin/includes/elements.php:228 admin/includes/elements.php:643
|
327 |
+
msgid "Magic Section"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin/includes/elements.php:235 admin/includes/elements.php:650
|
331 |
+
msgid "Preview Window"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin/includes/elements.php:243 admin/includes/elements.php:664
|
335 |
+
msgid "Testimonials"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/includes/elements.php:249 admin/includes/elements.php:670
|
339 |
+
msgid "Facebook Reviews"
|
|
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin/includes/elements.php:257 admin/includes/elements.php:678
|
343 |
+
msgid "Google Reviews"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin/includes/elements.php:265 admin/includes/elements.php:686
|
347 |
+
msgid "Yelp Reviews"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin/includes/elements.php:273 admin/includes/elements.php:700
|
351 |
+
#: widgets/premium-countdown.php:33 widgets/premium-countdown.php:75
|
352 |
+
msgid "Countdown"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: admin/includes/elements.php:279 admin/includes/elements.php:706
|
356 |
+
#: widgets/premium-banner.php:44 widgets/premium-blog.php:100
|
357 |
+
msgid "Banner"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/includes/elements.php:285 admin/includes/elements.php:712
|
361 |
+
#: widgets/premium-banner.php:372 widgets/premium-banner.php:835
|
362 |
+
#: widgets/premium-blog.php:1694 widgets/premium-button.php:55
|
363 |
+
#: widgets/premium-button.php:80 widgets/premium-button.php:655
|
364 |
+
#: widgets/premium-contactform.php:202 widgets/premium-contactform.php:438
|
365 |
+
#: widgets/premium-image-button.php:77 widgets/premium-image-button.php:561
|
366 |
+
#: widgets/premium-modalbox.php:381 widgets/premium-pricing-table.php:474
|
367 |
+
#: widgets/premium-pricing-table.php:792 widgets/premium-pricing-table.php:1717
|
368 |
+
msgid "Button"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/includes/elements.php:292 admin/includes/elements.php:719
|
372 |
+
#: widgets/premium-image-button.php:36
|
373 |
+
msgid "Image Button"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/includes/elements.php:298 admin/includes/elements.php:725
|
377 |
+
msgid "Hover Box"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin/includes/elements.php:305 admin/includes/elements.php:732
|
381 |
+
msgid "Icon Box"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin/includes/elements.php:312 admin/includes/elements.php:739
|
385 |
+
msgid "iHover"
|
|
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/includes/elements.php:319 admin/includes/elements.php:746
|
389 |
+
msgid "Unfold"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin/includes/elements.php:326 admin/includes/elements.php:753
|
393 |
+
msgid "Bullet List"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/includes/elements.php:333 admin/includes/elements.php:766
|
397 |
+
msgid "Facebook Feed"
|
|
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin/includes/elements.php:340 admin/includes/elements.php:773
|
401 |
+
msgid "Twitter Feed"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin/includes/elements.php:348 admin/includes/elements.php:781
|
405 |
+
msgid "Instagram Feed"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/includes/elements.php:355 admin/includes/elements.php:788
|
409 |
+
msgid "Behance Feed"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin/includes/elements.php:363 admin/includes/elements.php:802
|
413 |
+
#: widgets/premium-progressbar.php:35 widgets/premium-progressbar.php:479
|
414 |
+
msgid "Progress Bar"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin/includes/elements.php:370 admin/includes/elements.php:809
|
418 |
+
#: widgets/premium-pricing-table.php:43 widgets/premium-pricing-table.php:164
|
419 |
+
msgid "Pricing Table"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin/includes/elements.php:376 admin/includes/elements.php:815
|
423 |
+
msgid "Charts"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin/includes/elements.php:384 admin/includes/elements.php:823
|
427 |
+
msgid "Table"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin/includes/elements.php:391 admin/includes/elements.php:830
|
431 |
+
#: widgets/premium-counter.php:35 widgets/premium-counter.php:74
|
432 |
+
msgid "Counter"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/elements.php:397 admin/includes/elements.php:842
|
436 |
+
msgid "Contact Form 7"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: admin/includes/elements.php:403 admin/includes/elements.php:848
|
440 |
+
msgid "Facebook Messenger Chat"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin/includes/elements.php:410 admin/includes/elements.php:855
|
444 |
+
msgid "Whatsapp Chat"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/elements.php:419
|
448 |
+
msgid "Content Widgets"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin/includes/elements.php:490
|
452 |
+
msgid "Image & Video Widgets"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin/includes/elements.php:549
|
456 |
+
msgid "Section Addons & Widgets"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin/includes/elements.php:625
|
460 |
+
msgid "Off-Grid Widgets"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/elements.php:660
|
464 |
+
msgid "Reviews & Testimonials Widgets"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin/includes/elements.php:696
|
468 |
+
msgid "Blurbs & CTA Widgets"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin/includes/elements.php:762
|
472 |
+
msgid "Social Feed Widgets"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin/includes/elements.php:798
|
476 |
+
msgid "Tables, Charts & Anything Data Widgets"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/elements.php:838
|
480 |
+
msgid "Contact Widgets"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/templates/features.php:22
|
484 |
+
#: includes/templates/scripts/template-modal-header-logo.php:13
|
485 |
+
#: widgets/premium-carousel.php:98 widgets/premium-carousel.php:132
|
486 |
+
msgid "Templates"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/templates/features.php:23
|
490 |
+
msgid ""
|
491 |
+
"Build Professional Website in Minutes Using Our Pre-Made Premium Elementor "
|
492 |
+
"Templates."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/templates/features.php:37
|
496 |
+
msgid "Cross-Domain Copy N’ Paste"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/includes/templates/features.php:38
|
500 |
+
msgid "Copy any Elementor content from site to another in just ONE click."
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/includes/templates/features.php:52
|
504 |
+
msgid "Duplicator"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/templates/features.php:53
|
508 |
+
msgid "Duplicate any post, page or template on your website."
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: admin/includes/templates/features.php:65
|
512 |
+
#: admin/includes/templates/integrations.php:97
|
513 |
+
#: admin/includes/templates/modules-settings.php:125
|
514 |
+
#: admin/includes/templates/version-control.php:56
|
515 |
+
msgid "Save Settings"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: admin/includes/templates/general.php:20
|
519 |
+
msgid "What is Premium Addons?"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin/includes/templates/general.php:22
|
523 |
+
msgid ""
|
524 |
+
"Premium Addons for Elementor extends Elementor Page Builder capabilities "
|
525 |
+
"with many fully customizable widgets and addons that help you to build "
|
526 |
+
"impressive websites with no coding required."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/templates/general.php:32
|
530 |
+
msgid "Docs and Support"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin/includes/templates/general.php:34
|
534 |
+
msgid ""
|
535 |
+
"It’s highly recommended to check out documentation and FAQ before using this "
|
536 |
+
"plugin. "
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/includes/templates/general.php:34
|
540 |
+
msgid "Click Here"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/includes/templates/general.php:34
|
544 |
+
msgid " for more details. You can also join our "
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/templates/general.php:34
|
548 |
+
msgid "Facebook Group"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/templates/general.php:34
|
552 |
+
msgid " and Our "
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/templates/general.php:34
|
556 |
+
msgid "Community Forums"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/includes/templates/info.php:43
|
560 |
+
#, php-format
|
561 |
+
msgid ""
|
562 |
+
"%1$s - We recommend setting wp memory at least 64MB.</mark> See: <a href="
|
563 |
+
"\"%2$s\" target=\"_blank\">Increasing WP Memory Limit</a>"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/includes/templates/info.php:110
|
567 |
+
#, php-format
|
568 |
+
msgid ""
|
569 |
+
"%s - We recommend setting max execution time at least 300.</mark> See: <a "
|
570 |
+
"href=\"%2$s\" target=\"_blank\">Increasing WP Time Limit</a>"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: admin/includes/templates/integrations.php:24
|
574 |
+
msgid "Google API Keys"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: admin/includes/templates/integrations.php:25
|
578 |
+
#, php-format
|
579 |
+
msgid ""
|
580 |
+
"Google APIs are used in %1$s Google Maps and %1$s Video Box widgets. If you "
|
581 |
+
"don't have one, click %2$shere%3$s to get your key. Click %4$shere%3$s to "
|
582 |
+
"enable Youtube Data for your API key"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: admin/includes/templates/integrations.php:34
|
586 |
+
msgid "Youtube Data API Key:"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/includes/templates/integrations.php:44
|
590 |
+
msgid "Google Maps API Key:"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/includes/templates/integrations.php:53
|
594 |
+
msgid "Google Maps Localization Language:"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: admin/includes/templates/integrations.php:72
|
598 |
+
msgid "Load Maps API JS File:"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: admin/includes/templates/integrations.php:78
|
602 |
+
msgid ""
|
603 |
+
"This will load API JS file if it's not loaded by another theme or plugin."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: admin/includes/templates/integrations.php:86
|
607 |
+
msgid "Load Markers Clustering JS File:"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: admin/includes/templates/integrations.php:92
|
611 |
+
msgid "This will load the JS file for markers clusters."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/includes/templates/modules-settings.php:28
|
615 |
+
msgid "Master Switch"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: admin/includes/templates/modules-settings.php:29
|
619 |
+
msgid "Use this to switch on or off ALL Widgets & Add-ons at once."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: admin/includes/templates/modules-settings.php:33
|
623 |
+
msgid "Switch On"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: admin/includes/templates/modules-settings.php:34
|
627 |
+
msgid "Switch Off"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/includes/templates/modules-settings.php:85
|
631 |
+
msgid "pro"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/templates/modules-settings.php:92
|
635 |
+
msgid "Live Demo"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: admin/includes/templates/modules-settings.php:98
|
639 |
+
msgid "Docs"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: admin/includes/templates/modules-settings.php:106
|
643 |
+
msgid "Video Tutorial"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/includes/templates/version-control.php:21
|
647 |
+
#, php-format
|
648 |
+
msgid ""
|
649 |
+
"Experiencing an issue with Premium Addons for Elementor version %s? Rollback "
|
650 |
+
"to a previous version before the issue appeared."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: admin/includes/templates/version-control.php:30
|
654 |
+
msgid "Warning: Please backup your database before making the rollback."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: admin/includes/templates/version-control.php:38
|
658 |
+
msgid "Become a Beta Tester"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: admin/includes/templates/version-control.php:39
|
662 |
+
msgid ""
|
663 |
+
"Turn-on Beta Tester, to get notified when a new beta version of Premium "
|
664 |
+
"Addons for Elementor. The Beta version will not install automatically. You "
|
665 |
+
"always have the option to ignore it."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: admin/includes/templates/version-control.php:46
|
669 |
+
msgid "Check this box to get updates for beta versions"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: admin/includes/templates/version-control.php:50
|
673 |
+
msgid "We do not recommend updating to a beta version on production sites."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: admin/includes/templates/white-label.php:69
|
677 |
+
msgid "Free Version"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: admin/includes/templates/white-label.php:72
|
681 |
+
#: admin/includes/templates/white-label.php:96
|
682 |
+
msgid "Author Name"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: admin/includes/templates/white-label.php:75
|
686 |
+
#: admin/includes/templates/white-label.php:99
|
687 |
+
msgid "Author URL"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: admin/includes/templates/white-label.php:78
|
691 |
+
#: admin/includes/templates/white-label.php:102
|
692 |
+
msgid "Plugin Name"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: admin/includes/templates/white-label.php:82
|
696 |
+
#: admin/includes/templates/white-label.php:105
|
697 |
+
msgid "Plugin Description"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: admin/includes/templates/white-label.php:85
|
701 |
+
msgid "Hide Plugin Row Meta Links"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: admin/includes/templates/white-label.php:88
|
705 |
+
msgid ""
|
706 |
+
"This will hide Docs, FAQs, and Video Tutorials links located on the plugins "
|
707 |
+
"page."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: admin/includes/templates/white-label.php:93
|
711 |
+
msgid "PRO Version"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: admin/includes/templates/white-label.php:108
|
715 |
+
msgid "Hide Plugin Changelog Link"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: admin/includes/templates/white-label.php:111
|
719 |
+
msgid "This will hide the Changelog link located on the plugins page."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: admin/includes/templates/white-label.php:116
|
723 |
+
msgid "General Options"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: admin/includes/templates/white-label.php:119
|
727 |
+
msgid "Widgets Category Name"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: admin/includes/templates/white-label.php:122
|
731 |
+
msgid "Widgets Prefix"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: admin/includes/templates/white-label.php:125
|
735 |
+
msgid "Widgets Badge"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: admin/includes/templates/white-label.php:137
|
739 |
+
msgid "Admin Settings"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: admin/includes/templates/white-label.php:140
|
743 |
+
msgid "General Tab"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: admin/includes/templates/white-label.php:143
|
747 |
+
msgid "This will hide the General tab"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: admin/includes/templates/white-label.php:146
|
751 |
+
msgid "Version Control Tab"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: admin/includes/templates/white-label.php:149
|
755 |
+
msgid "This will hide the Version Control tab."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: admin/includes/templates/white-label.php:152
|
759 |
+
msgid "Hide Premium Addons Logo"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: admin/includes/templates/white-label.php:155
|
763 |
+
msgid "This will hide Premium Addons logo located on the dashboard."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: admin/includes/templates/white-label.php:158
|
767 |
+
msgid "License Tab"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: admin/includes/templates/white-label.php:161
|
771 |
+
msgid "This will hide the License tab."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: admin/includes/templates/white-label.php:165
|
775 |
+
msgid "White Labeling Tab"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: admin/includes/templates/white-label.php:168
|
779 |
+
msgid "This will hide the White Labeling tab options."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: admin/includes/templates/white-label.php:172
|
783 |
+
msgid ""
|
784 |
+
"You will need to reactivate Premium Addons PRO for Elementor plugin to be "
|
785 |
+
"able to reset White Labeling tab options."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/addons-cross-cp.php:48
|
789 |
+
msgid "Not a Valid"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: includes/addons-cross-cp.php:56
|
793 |
+
msgid "Empty Content."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/compatibility/premium-addons-wpml.php:94
|
797 |
msgid "Banner: Title"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: includes/compatibility/premium-addons-wpml.php:99
|
801 |
msgid "Banner: Description"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/compatibility/premium-addons-wpml.php:104
|
805 |
msgid "Banner: Button Text"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: includes/compatibility/premium-addons-wpml.php:109
|
809 |
msgid "Banner: URL"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: includes/compatibility/premium-addons-wpml.php:114
|
813 |
msgid "Banner: Button URL"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: includes/compatibility/premium-addons-wpml.php:125
|
817 |
+
#: includes/compatibility/premium-addons-wpml.php:318
|
818 |
msgid "Button: Text"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: includes/compatibility/premium-addons-wpml.php:130
|
822 |
+
#: includes/compatibility/premium-addons-wpml.php:323
|
823 |
msgid "Button: URL"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/compatibility/premium-addons-wpml.php:141
|
827 |
msgid "Countdown: Expiration Message"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/compatibility/premium-addons-wpml.php:146
|
831 |
msgid "Countdown: Day Singular"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: includes/compatibility/premium-addons-wpml.php:151
|
835 |
msgid "Countdown: Day Plural"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/compatibility/premium-addons-wpml.php:156
|
839 |
msgid "Countdown: Week Singular"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: includes/compatibility/premium-addons-wpml.php:161
|
843 |
msgid "Countdown: Week Plural"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: includes/compatibility/premium-addons-wpml.php:166
|
847 |
msgid "Countdown: Month Singular"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: includes/compatibility/premium-addons-wpml.php:171
|
851 |
msgid "Countdown: Month Plural"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: includes/compatibility/premium-addons-wpml.php:176
|
855 |
msgid "Countdown: Year Singular"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/compatibility/premium-addons-wpml.php:181
|
859 |
msgid "Countdown: Year Plural"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/compatibility/premium-addons-wpml.php:186
|
863 |
msgid "Countdown: Hour Singular"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: includes/compatibility/premium-addons-wpml.php:191
|
867 |
msgid "Countdown: Hour Plural"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: includes/compatibility/premium-addons-wpml.php:196
|
871 |
msgid "Countdown: Minute Singular"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: includes/compatibility/premium-addons-wpml.php:201
|
875 |
msgid "Countdown: Minute Plural"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: includes/compatibility/premium-addons-wpml.php:206
|
879 |
msgid "Countdown: Second Singular"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: includes/compatibility/premium-addons-wpml.php:211
|
883 |
msgid "Countdown: Second Plural"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/compatibility/premium-addons-wpml.php:216
|
887 |
msgid "Countdown: Direction URL"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: includes/compatibility/premium-addons-wpml.php:227
|
891 |
msgid "Counter: Title Text"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/compatibility/premium-addons-wpml.php:232
|
895 |
msgid "Counter: Thousands Separator"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/compatibility/premium-addons-wpml.php:237
|
899 |
msgid "Counter: Prefix"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/compatibility/premium-addons-wpml.php:242
|
903 |
msgid "Counter: Suffix"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/compatibility/premium-addons-wpml.php:247
|
907 |
+
#: includes/compatibility/premium-addons-wpml.php:268
|
908 |
msgid "Advanced Heading: Heading URL"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/compatibility/premium-addons-wpml.php:258
|
912 |
msgid "Dual Heading: First Heading"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/compatibility/premium-addons-wpml.php:263
|
916 |
msgid "Dual Heading: Second Heading"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/compatibility/premium-addons-wpml.php:284
|
920 |
msgid "Fancy Text: Prefix"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/compatibility/premium-addons-wpml.php:289
|
924 |
msgid "Fancy Text: Suffix"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/compatibility/premium-addons-wpml.php:294
|
928 |
msgid "Fancy Text: Cursor Text"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: includes/compatibility/premium-addons-wpml.php:306
|
932 |
msgid "Grid: Load More Button"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: includes/compatibility/premium-addons-wpml.php:334
|
936 |
msgid "Image Scroll: Link Title"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: includes/compatibility/premium-addons-wpml.php:339
|
940 |
msgid "Image Scroll: URL"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: includes/compatibility/premium-addons-wpml.php:350
|
944 |
msgid "Image Separator: Link Title"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: includes/compatibility/premium-addons-wpml.php:355
|
948 |
msgid "Image Separator: URL"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: includes/compatibility/premium-addons-wpml.php:366
|
952 |
msgid "Maps: Center Latitude"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: includes/compatibility/premium-addons-wpml.php:371
|
956 |
msgid "Maps: Center Longitude"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: includes/compatibility/premium-addons-wpml.php:383
|
960 |
msgid "Modal Box: Header Title"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: includes/compatibility/premium-addons-wpml.php:388
|
964 |
msgid "Modal Box: Content Text"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/compatibility/premium-addons-wpml.php:393
|
968 |
msgid "Modal Box: Close Button"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: includes/compatibility/premium-addons-wpml.php:398
|
972 |
msgid "Modal Box: Trigger Button"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: includes/compatibility/premium-addons-wpml.php:403
|
976 |
msgid "Modal Box: Trigger Text"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: includes/compatibility/premium-addons-wpml.php:414
|
980 |
msgid "Person: Name"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: includes/compatibility/premium-addons-wpml.php:419
|
984 |
msgid "Person: Title"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: includes/compatibility/premium-addons-wpml.php:424
|
988 |
msgid "Person: Description"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: includes/compatibility/premium-addons-wpml.php:435
|
992 |
msgid "Pricing Table: Title"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: includes/compatibility/premium-addons-wpml.php:440
|
996 |
msgid "Pricing Table: Slashed Price"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: includes/compatibility/premium-addons-wpml.php:445
|
1000 |
msgid "Pricing Table: Currency"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/compatibility/premium-addons-wpml.php:450
|
1004 |
msgid "Pricing Table: Price Value"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: includes/compatibility/premium-addons-wpml.php:455
|
1008 |
msgid "Pricing Table: Separator"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: includes/compatibility/premium-addons-wpml.php:460
|
1012 |
msgid "Pricing Table: Duration"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: includes/compatibility/premium-addons-wpml.php:465
|
1016 |
msgid "Pricing Table: Description"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: includes/compatibility/premium-addons-wpml.php:470
|
1020 |
msgid "Pricing Table: Button Text"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: includes/compatibility/premium-addons-wpml.php:475
|
1024 |
msgid "Pricing Table: Button URL"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: includes/compatibility/premium-addons-wpml.php:480
|
1028 |
msgid "Pricing Table: Badge"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/compatibility/premium-addons-wpml.php:492
|
1032 |
msgid "Progress Bar: Left Label"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: includes/compatibility/premium-addons-wpml.php:504
|
1036 |
msgid "Testimonial: Name"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: includes/compatibility/premium-addons-wpml.php:509
|
1040 |
msgid "Testimonial: Company"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/compatibility/premium-addons-wpml.php:514
|
1044 |
msgid "Testimonial: Company Link"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/compatibility/premium-addons-wpml.php:519
|
1048 |
msgid "Testimonial: Content"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: includes/compatibility/premium-addons-wpml.php:530
|
1052 |
msgid "Title: Text"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: includes/compatibility/premium-addons-wpml.php:541
|
1056 |
msgid "Video Box: Link"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: includes/compatibility/premium-addons-wpml.php:546
|
1060 |
msgid "Video Box: Description"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/compatibility/premium-addons-wpml.php:557
|
1064 |
msgid "Vertical Scroll: Tooltips"
|
1065 |
msgstr ""
|
1066 |
|
1108 |
msgid "Vertical Scroll: Section ID"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/elementor-helper.php:678
|
1112 |
+
msgid "No Comments"
|
|
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/elementor-helper.php:679
|
1116 |
+
msgid "1 Comment"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: includes/elementor-helper.php:680
|
1120 |
+
msgid "% Comments"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: includes/elementor-helper.php:998
|
1124 |
+
#: modules/woocommerce/widgets/woo-products.php:574
|
1125 |
+
#: modules/woocommerce/widgets/woo-products.php:774
|
1126 |
+
#: widgets/premium-blog.php:1034 widgets/premium-blog.php:1939
|
1127 |
+
msgid "Pagination"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/helper-functions.php:179 includes/helper-functions.php:189
|
1131 |
+
msgid "Premium Addons"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/helper-functions.php:203 includes/helper-functions.php:213
|
1135 |
+
#: widgets/premium-dual-header.php:83
|
1136 |
+
msgid "Premium"
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: includes/helper-functions.php:252
|
1140 |
+
msgid "Arabic"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: includes/helper-functions.php:253
|
1144 |
+
msgid "Basque"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: includes/helper-functions.php:254
|
1148 |
+
msgid "Bulgarian"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: includes/helper-functions.php:255
|
1152 |
+
msgid "Bengali"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: includes/helper-functions.php:256
|
1156 |
+
msgid "Catalan"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: includes/helper-functions.php:257
|
1160 |
+
msgid "Czech"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: includes/helper-functions.php:258
|
1164 |
+
msgid "Danish"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: includes/helper-functions.php:259
|
1168 |
+
msgid "German"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: includes/helper-functions.php:260
|
1172 |
+
msgid "Greek"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: includes/helper-functions.php:261
|
1176 |
+
msgid "English"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: includes/helper-functions.php:262
|
1180 |
+
msgid "English (australian)"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: includes/helper-functions.php:263
|
1184 |
+
msgid "English (great britain)"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: includes/helper-functions.php:264
|
1188 |
+
msgid "Spanish"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: includes/helper-functions.php:265
|
1192 |
+
msgid "Farsi"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: includes/helper-functions.php:266
|
1196 |
+
msgid "Finnish"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: includes/helper-functions.php:267
|
1200 |
+
msgid "Filipino"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: includes/helper-functions.php:268
|
1204 |
+
msgid "French"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: includes/helper-functions.php:269
|
1208 |
+
msgid "Galician"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: includes/helper-functions.php:270
|
1212 |
+
msgid "Gujarati"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: includes/helper-functions.php:271
|
1216 |
+
msgid "Hindi"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: includes/helper-functions.php:272
|
1220 |
+
msgid "Croatian"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: includes/helper-functions.php:273
|
1224 |
+
msgid "Hungarian"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: includes/helper-functions.php:274
|
1228 |
+
msgid "Indonesian"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: includes/helper-functions.php:275
|
1232 |
+
msgid "Italian"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: includes/helper-functions.php:276
|
1236 |
+
msgid "Hebrew"
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: includes/helper-functions.php:277
|
1240 |
+
msgid "Japanese"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: includes/helper-functions.php:278
|
1244 |
+
msgid "Kannada"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: includes/helper-functions.php:279
|
1248 |
+
msgid "Korean"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: includes/helper-functions.php:280
|
1252 |
+
msgid "Lithuanian"
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: includes/helper-functions.php:281
|
1256 |
+
msgid "Latvian"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: includes/helper-functions.php:282
|
1260 |
+
msgid "Malayalam"
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: includes/helper-functions.php:283
|
1264 |
+
msgid "Marathi"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: includes/helper-functions.php:284
|
1268 |
+
msgid "Dutch"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: includes/helper-functions.php:285
|
1272 |
+
msgid "Norwegian"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: includes/helper-functions.php:286
|
1276 |
+
msgid "Polish"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: includes/helper-functions.php:287
|
1280 |
+
msgid "Portuguese"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: includes/helper-functions.php:288
|
1284 |
+
msgid "Portuguese (brazil)"
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: includes/helper-functions.php:289
|
1288 |
+
msgid "Portuguese (portugal)"
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: includes/helper-functions.php:290
|
1292 |
+
msgid "Romanian"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: includes/helper-functions.php:291
|
1296 |
+
msgid "Russian"
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: includes/helper-functions.php:292
|
1300 |
+
msgid "Slovak"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: includes/helper-functions.php:293
|
1304 |
+
msgid "Slovenian"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: includes/helper-functions.php:294
|
1308 |
+
msgid "Serbian"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: includes/helper-functions.php:295
|
1312 |
+
msgid "Swedish"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: includes/helper-functions.php:296
|
1316 |
+
msgid "Tagalog"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/helper-functions.php:297
|
1320 |
+
msgid "Tamil"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: includes/helper-functions.php:298
|
1324 |
+
msgid "Telugu"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/helper-functions.php:299
|
1328 |
+
msgid "Thai"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/helper-functions.php:300
|
1332 |
+
msgid "Turkish"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/helper-functions.php:301
|
1336 |
+
msgid "Ukrainian"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: includes/helper-functions.php:302
|
1340 |
+
msgid "Vietnamese"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: includes/helper-functions.php:303
|
1344 |
+
msgid "Chinese (simplified)"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: includes/helper-functions.php:304
|
1348 |
+
msgid "Chinese (traditional)"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: includes/templates/classes/config.php:61
|
1352 |
+
msgid "Premium Templates"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: includes/templates/classes/config.php:171
|
1356 |
+
msgid "Activate License"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/templates/classes/config.php:173
|
1360 |
+
msgid "Get Pro"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: includes/templates/classes/manager.php:189 widgets/premium-blog.php:860
|
1364 |
#: widgets/premium-grid.php:294
|
1365 |
msgid "All"
|
1366 |
msgstr ""
|
1405 |
msgid "Sections"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: modules/woocommerce/module.php:88
|
1409 |
+
msgid "Saved"
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: modules/woocommerce/skins/skin-1.php:44
|
1413 |
+
msgid "Skin 1"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: modules/woocommerce/skins/skin-1.php:97
|
1417 |
+
#: modules/woocommerce/skins/skin-2.php:111
|
1418 |
+
#: modules/woocommerce/skins/skin-3.php:111
|
1419 |
+
#: modules/woocommerce/skins/skin-4.php:136
|
1420 |
+
#: modules/woocommerce/skins/skin-5.php:100
|
1421 |
+
#: modules/woocommerce/skins/skin-6.php:154 widgets/premium-blog.php:545
|
1422 |
+
#: widgets/premium-counter.php:181 widgets/premium-grid.php:692
|
1423 |
+
#: widgets/premium-icon-list.php:652 widgets/premium-pricing-table.php:748
|
1424 |
+
msgid "Display Options"
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: modules/woocommerce/skins/skin-1.php:103
|
1428 |
+
#: modules/woocommerce/skins/skin-2.php:117
|
1429 |
+
#: modules/woocommerce/skins/skin-3.php:117
|
1430 |
+
#: modules/woocommerce/skins/skin-4.php:142
|
1431 |
+
#: modules/woocommerce/skins/skin-5.php:106
|
1432 |
+
#: modules/woocommerce/skins/skin-6.php:160
|
1433 |
+
#: modules/woocommerce/widgets/woo-products.php:734
|
1434 |
+
#: widgets/premium-banner.php:82 widgets/premium-blog.php:1295
|
1435 |
+
#: widgets/premium-counter.php:200 widgets/premium-grid.php:1098
|
1436 |
+
#: widgets/premium-icon-list.php:123 widgets/premium-image-scroll.php:82
|
1437 |
+
#: widgets/premium-image-scroll.php:498 widgets/premium-image-separator.php:92
|
1438 |
+
#: widgets/premium-image-separator.php:115 widgets/premium-modalbox.php:382
|
1439 |
+
#: widgets/premium-modalbox.php:576 widgets/premium-person.php:341
|
1440 |
+
#: widgets/premium-person.php:578 widgets/premium-person.php:896
|
1441 |
+
#: widgets/premium-testimonials.php:75 widgets/premium-testimonials.php:297
|
1442 |
+
#: widgets/premium-title.php:132 widgets/premium-videobox.php:980
|
1443 |
msgid "Image"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: modules/woocommerce/skins/skin-1.php:113
|
1447 |
+
#: modules/woocommerce/skins/skin-2.php:127
|
1448 |
+
#: modules/woocommerce/skins/skin-3.php:127
|
1449 |
+
#: modules/woocommerce/skins/skin-4.php:152
|
1450 |
+
#: modules/woocommerce/skins/skin-5.php:116
|
1451 |
+
msgid "Select Product Segment"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: modules/woocommerce/skins/skin-1.php:122
|
1455 |
+
#: modules/woocommerce/skins/skin-2.php:143
|
1456 |
+
#: modules/woocommerce/skins/skin-3.php:143
|
1457 |
+
#: modules/woocommerce/skins/skin-4.php:168
|
1458 |
+
#: modules/woocommerce/skins/skin-5.php:125
|
1459 |
+
msgid "Product Structure"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: modules/woocommerce/skins/skin-1.php:148
|
1463 |
+
#: modules/woocommerce/skins/skin-4.php:233
|
1464 |
+
msgid "Add to Cart Position"
|
1465 |
+
msgstr ""
|
1466 |
+
|
1467 |
+
#: modules/woocommerce/skins/skin-1.php:151
|
1468 |
+
msgid "Below Image"
|
1469 |
+
msgstr ""
|
1470 |
+
|
1471 |
+
#: modules/woocommerce/skins/skin-1.php:152
|
1472 |
+
#: modules/woocommerce/skins/skin-4.php:237
|
1473 |
+
msgid "Above Image"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: modules/woocommerce/skins/skin-1.php:163
|
1477 |
+
#: modules/woocommerce/skins/skin-2.php:169
|
1478 |
+
#: modules/woocommerce/skins/skin-3.php:169
|
1479 |
+
#: modules/woocommerce/skins/skin-4.php:194
|
1480 |
+
#: modules/woocommerce/skins/skin-5.php:151
|
1481 |
+
#: modules/woocommerce/skins/skin-6.php:215
|
1482 |
+
#: modules/woocommerce/widgets/woo-products.php:627
|
1483 |
+
#: widgets/premium-banner.php:447 widgets/premium-blog.php:617
|
1484 |
+
#: widgets/premium-blog.php:870 widgets/premium-blog.php:1097
|
1485 |
+
#: widgets/premium-button.php:577 widgets/premium-countdown.php:167
|
1486 |
+
#: widgets/premium-counter.php:152 widgets/premium-dual-header.php:194
|
1487 |
+
#: widgets/premium-fancytext.php:134 widgets/premium-grid.php:374
|
1488 |
+
#: widgets/premium-icon-list.php:707 widgets/premium-image-button.php:483
|
1489 |
+
#: widgets/premium-image-separator.php:217 widgets/premium-lottie.php:264
|
1490 |
+
#: widgets/premium-maps.php:509 widgets/premium-maps.php:590
|
1491 |
+
#: widgets/premium-modalbox.php:695 widgets/premium-person.php:165
|
1492 |
+
#: widgets/premium-pricing-table.php:421 widgets/premium-pricing-table.php:1549
|
1493 |
+
#: widgets/premium-title.php:289 widgets/premium-title.php:318
|
1494 |
+
msgid "Alignment"
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: modules/woocommerce/skins/skin-1.php:167
|
1498 |
+
#: modules/woocommerce/skins/skin-2.php:173
|
1499 |
+
#: modules/woocommerce/skins/skin-3.php:173
|
1500 |
+
#: modules/woocommerce/skins/skin-4.php:198
|
1501 |
+
#: modules/woocommerce/skins/skin-5.php:155
|
1502 |
+
#: modules/woocommerce/skins/skin-6.php:219
|
1503 |
+
#: modules/woocommerce/widgets/woo-products.php:631
|
1504 |
+
#: widgets/premium-banner.php:451 widgets/premium-blog.php:621
|
1505 |
+
#: widgets/premium-blog.php:874 widgets/premium-blog.php:1101
|
1506 |
+
#: widgets/premium-button.php:581 widgets/premium-countdown.php:171
|
1507 |
+
#: widgets/premium-counter.php:156 widgets/premium-counter.php:288
|
1508 |
+
#: widgets/premium-counter.php:312 widgets/premium-counter.php:338
|
1509 |
+
#: widgets/premium-dual-header.php:198 widgets/premium-dual-header.php:236
|
1510 |
+
#: widgets/premium-fancytext.php:138 widgets/premium-fancytext.php:372
|
1511 |
+
#: widgets/premium-grid.php:241 widgets/premium-grid.php:378
|
1512 |
+
#: widgets/premium-grid.php:842 widgets/premium-icon-list.php:712
|
1513 |
+
#: widgets/premium-icon-list.php:757 widgets/premium-icon-list.php:791
|
1514 |
+
#: widgets/premium-image-button.php:487 widgets/premium-image-separator.php:221
|
1515 |
+
#: widgets/premium-lottie.php:268 widgets/premium-maps.php:513
|
1516 |
+
#: widgets/premium-maps.php:594 widgets/premium-modalbox.php:699
|
1517 |
+
#: widgets/premium-person.php:169 widgets/premium-person.php:214
|
1518 |
+
#: widgets/premium-pricing-table.php:425 widgets/premium-pricing-table.php:652
|
1519 |
+
#: widgets/premium-pricing-table.php:1553 widgets/premium-progressbar.php:397
|
1520 |
+
#: widgets/premium-title.php:240 widgets/premium-title.php:293
|
1521 |
+
#: widgets/premium-title.php:322 widgets/premium-title.php:457
|
1522 |
+
#: widgets/premium-vscroll.php:183 widgets/premium-vscroll.php:274
|
1523 |
+
msgid "Left"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: modules/woocommerce/skins/skin-1.php:171
|
1527 |
+
#: modules/woocommerce/skins/skin-2.php:177
|
1528 |
+
#: modules/woocommerce/skins/skin-3.php:177
|
1529 |
+
#: modules/woocommerce/skins/skin-4.php:202
|
1530 |
+
#: modules/woocommerce/skins/skin-5.php:159
|
1531 |
+
#: modules/woocommerce/skins/skin-6.php:223
|
1532 |
+
#: modules/woocommerce/widgets/woo-products.php:635
|
1533 |
+
#: widgets/premium-banner.php:455 widgets/premium-blog.php:625
|
1534 |
+
#: widgets/premium-blog.php:652 widgets/premium-blog.php:878
|
1535 |
+
#: widgets/premium-blog.php:1105 widgets/premium-button.php:585
|
1536 |
+
#: widgets/premium-countdown.php:175 widgets/premium-counter.php:160
|
1537 |
+
#: widgets/premium-counter.php:316 widgets/premium-counter.php:342
|
1538 |
+
#: widgets/premium-dual-header.php:202 widgets/premium-dual-header.php:240
|
1539 |
+
#: widgets/premium-dual-header.php:268 widgets/premium-fancytext.php:142
|
1540 |
+
#: widgets/premium-fancytext.php:376 widgets/premium-grid.php:245
|
1541 |
+
#: widgets/premium-grid.php:382 widgets/premium-grid.php:846
|
1542 |
+
#: widgets/premium-icon-list.php:716 widgets/premium-icon-list.php:761
|
1543 |
+
#: widgets/premium-image-button.php:491 widgets/premium-image-separator.php:225
|
1544 |
+
#: widgets/premium-lottie.php:272 widgets/premium-maps.php:517
|
1545 |
+
#: widgets/premium-maps.php:598 widgets/premium-modalbox.php:703
|
1546 |
+
#: widgets/premium-person.php:173 widgets/premium-person.php:218
|
1547 |
+
#: widgets/premium-pricing-table.php:429 widgets/premium-pricing-table.php:1557
|
1548 |
+
#: widgets/premium-progressbar.php:401 widgets/premium-title.php:244
|
1549 |
+
#: widgets/premium-title.php:297 widgets/premium-title.php:326
|
1550 |
+
#: widgets/premium-title.php:461
|
1551 |
+
msgid "Center"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: modules/woocommerce/skins/skin-1.php:175
|
1555 |
+
#: modules/woocommerce/skins/skin-2.php:181
|
1556 |
+
#: modules/woocommerce/skins/skin-3.php:181
|
1557 |
+
#: modules/woocommerce/skins/skin-4.php:206
|
1558 |
+
#: modules/woocommerce/skins/skin-5.php:163
|
1559 |
+
#: modules/woocommerce/skins/skin-6.php:227
|
1560 |
+
#: modules/woocommerce/widgets/woo-products.php:639
|
1561 |
+
#: widgets/premium-banner.php:459 widgets/premium-blog.php:629
|
1562 |
+
#: widgets/premium-blog.php:882 widgets/premium-blog.php:1109
|
1563 |
+
#: widgets/premium-button.php:589 widgets/premium-countdown.php:179
|
1564 |
+
#: widgets/premium-counter.php:164 widgets/premium-counter.php:287
|
1565 |
+
#: widgets/premium-counter.php:320 widgets/premium-counter.php:346
|
1566 |
+
#: widgets/premium-dual-header.php:206 widgets/premium-dual-header.php:244
|
1567 |
+
#: widgets/premium-fancytext.php:146 widgets/premium-fancytext.php:380
|
1568 |
+
#: widgets/premium-grid.php:249 widgets/premium-grid.php:386
|
1569 |
+
#: widgets/premium-grid.php:850 widgets/premium-icon-list.php:720
|
1570 |
+
#: widgets/premium-icon-list.php:765 widgets/premium-icon-list.php:787
|
1571 |
+
#: widgets/premium-image-button.php:495 widgets/premium-image-separator.php:229
|
1572 |
+
#: widgets/premium-lottie.php:276 widgets/premium-maps.php:521
|
1573 |
+
#: widgets/premium-maps.php:602 widgets/premium-modalbox.php:707
|
1574 |
+
#: widgets/premium-person.php:177 widgets/premium-person.php:222
|
1575 |
+
#: widgets/premium-pricing-table.php:433 widgets/premium-pricing-table.php:656
|
1576 |
+
#: widgets/premium-pricing-table.php:1561 widgets/premium-progressbar.php:405
|
1577 |
+
#: widgets/premium-title.php:248 widgets/premium-title.php:301
|
1578 |
+
#: widgets/premium-title.php:330 widgets/premium-title.php:465
|
1579 |
+
#: widgets/premium-vscroll.php:184 widgets/premium-vscroll.php:275
|
1580 |
+
msgid "Right"
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
+
#: modules/woocommerce/skins/skin-1.php:190
|
1584 |
+
#: modules/woocommerce/skins/skin-2.php:196
|
1585 |
+
#: modules/woocommerce/skins/skin-3.php:196
|
1586 |
+
#: modules/woocommerce/skins/skin-4.php:221
|
1587 |
+
#: modules/woocommerce/skins/skin-5.php:178
|
1588 |
+
#: modules/woocommerce/skins/skin-6.php:242
|
1589 |
+
msgid "Enable Products Divider"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: modules/woocommerce/skins/skin-1.php:214
|
1593 |
+
#: modules/woocommerce/skins/skin-2.php:219
|
1594 |
+
#: modules/woocommerce/skins/skin-3.php:219
|
1595 |
+
#: modules/woocommerce/skins/skin-4.php:259
|
1596 |
+
#: modules/woocommerce/skins/skin-5.php:202
|
1597 |
+
#: modules/woocommerce/skins/skin-6.php:265
|
1598 |
+
#: modules/woocommerce/widgets/woo-products.php:658
|
1599 |
+
msgid "Product"
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: modules/woocommerce/skins/skin-1.php:230
|
1603 |
+
#: modules/woocommerce/skins/skin-1.php:560
|
1604 |
+
#: modules/woocommerce/skins/skin-1.php:895
|
1605 |
+
#: modules/woocommerce/skins/skin-1.php:1054
|
1606 |
+
#: modules/woocommerce/skins/skin-2.php:235
|
1607 |
+
#: modules/woocommerce/skins/skin-2.php:608
|
1608 |
+
#: modules/woocommerce/skins/skin-2.php:942
|
1609 |
+
#: modules/woocommerce/skins/skin-2.php:1099
|
1610 |
+
#: modules/woocommerce/skins/skin-2.php:1141
|
1611 |
+
#: modules/woocommerce/skins/skin-3.php:235
|
1612 |
+
#: modules/woocommerce/skins/skin-3.php:608
|
1613 |
+
#: modules/woocommerce/skins/skin-3.php:942
|
1614 |
+
#: modules/woocommerce/skins/skin-3.php:1099
|
1615 |
+
#: modules/woocommerce/skins/skin-4.php:275
|
1616 |
+
#: modules/woocommerce/skins/skin-4.php:649
|
1617 |
+
#: modules/woocommerce/skins/skin-4.php:991
|
1618 |
+
#: modules/woocommerce/skins/skin-4.php:1148
|
1619 |
+
#: modules/woocommerce/skins/skin-4.php:1190
|
1620 |
+
#: modules/woocommerce/skins/skin-5.php:218
|
1621 |
+
#: modules/woocommerce/skins/skin-5.php:545
|
1622 |
+
#: modules/woocommerce/skins/skin-5.php:877
|
1623 |
+
#: modules/woocommerce/skins/skin-5.php:1036
|
1624 |
+
#: modules/woocommerce/skins/skin-6.php:281
|
1625 |
+
#: modules/woocommerce/skins/skin-6.php:621
|
1626 |
+
#: modules/woocommerce/skins/skin-6.php:948
|
1627 |
+
#: modules/woocommerce/skins/skin-6.php:1105
|
1628 |
+
#: modules/woocommerce/skins/skin-6.php:1147
|
1629 |
+
#: modules/woocommerce/widgets/woo-products.php:785
|
1630 |
+
#: modules/woocommerce/widgets/woo-products.php:1024
|
1631 |
+
#: widgets/premium-banner.php:942 widgets/premium-blog.php:1282
|
1632 |
+
#: widgets/premium-blog.php:1525 widgets/premium-blog.php:1681
|
1633 |
+
#: widgets/premium-blog.php:1822 widgets/premium-blog.php:1926
|
1634 |
+
#: widgets/premium-blog.php:2144 widgets/premium-blog.php:2290
|
1635 |
+
#: widgets/premium-button.php:787 widgets/premium-button.php:952
|
1636 |
+
#: widgets/premium-contactform.php:270 widgets/premium-contactform.php:454
|
1637 |
+
#: widgets/premium-counter.php:662 widgets/premium-counter.php:746
|
1638 |
+
#: widgets/premium-dual-header.php:602 widgets/premium-dual-header.php:787
|
1639 |
+
#: widgets/premium-grid.php:1085 widgets/premium-grid.php:1173
|
1640 |
+
#: widgets/premium-grid.php:1310 widgets/premium-grid.php:1443
|
1641 |
+
#: widgets/premium-grid.php:1527 widgets/premium-grid.php:1733
|
1642 |
+
#: widgets/premium-grid.php:1857 widgets/premium-grid.php:1945
|
1643 |
+
#: widgets/premium-icon-list.php:1036 widgets/premium-icon-list.php:1227
|
1644 |
+
#: widgets/premium-icon-list.php:1452 widgets/premium-image-button.php:687
|
1645 |
+
#: widgets/premium-image-button.php:895 widgets/premium-image-separator.php:443
|
1646 |
+
#: widgets/premium-lottie.php:520 widgets/premium-maps.php:497
|
1647 |
+
#: widgets/premium-maps.php:579 widgets/premium-maps.php:663
|
1648 |
+
#: widgets/premium-modalbox.php:934 widgets/premium-modalbox.php:1236
|
1649 |
+
#: widgets/premium-modalbox.php:1417 widgets/premium-modalbox.php:1557
|
1650 |
+
#: widgets/premium-person.php:994 widgets/premium-person.php:1056
|
1651 |
+
#: widgets/premium-person.php:1107 widgets/premium-person.php:1231
|
1652 |
+
#: widgets/premium-person.php:1304 widgets/premium-person.php:1405
|
1653 |
+
#: widgets/premium-pricing-table.php:867 widgets/premium-pricing-table.php:960
|
1654 |
+
#: widgets/premium-pricing-table.php:1040
|
1655 |
+
#: widgets/premium-pricing-table.php:1361
|
1656 |
+
#: widgets/premium-pricing-table.php:1527
|
1657 |
+
#: widgets/premium-pricing-table.php:1704
|
1658 |
+
#: widgets/premium-pricing-table.php:1820
|
1659 |
+
#: widgets/premium-pricing-table.php:1894
|
1660 |
+
#: widgets/premium-pricing-table.php:2063
|
1661 |
+
#: widgets/premium-pricing-table.php:2137 widgets/premium-progressbar.php:944
|
1662 |
+
#: widgets/premium-testimonials.php:638 widgets/premium-title.php:897
|
1663 |
+
#: widgets/premium-title.php:1000 widgets/premium-videobox.php:1373
|
1664 |
+
#: widgets/premium-videobox.php:1472 widgets/premium-videobox.php:1601
|
1665 |
+
#: widgets/premium-vscroll.php:557 widgets/premium-vscroll.php:849
|
1666 |
+
msgid "Padding"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: modules/woocommerce/skins/skin-1.php:246
|
1670 |
+
#: modules/woocommerce/skins/skin-1.php:1069
|
1671 |
+
#: modules/woocommerce/skins/skin-2.php:130
|
1672 |
+
#: modules/woocommerce/skins/skin-2.php:287
|
1673 |
+
#: modules/woocommerce/skins/skin-3.php:130
|
1674 |
+
#: modules/woocommerce/skins/skin-3.php:287
|
1675 |
+
#: modules/woocommerce/skins/skin-4.php:155
|
1676 |
+
#: modules/woocommerce/skins/skin-4.php:325
|
1677 |
+
#: modules/woocommerce/skins/skin-5.php:234
|
1678 |
+
#: modules/woocommerce/skins/skin-5.php:1206
|
1679 |
+
#: modules/woocommerce/skins/skin-6.php:168
|
1680 |
+
#: modules/woocommerce/skins/skin-6.php:297
|
1681 |
+
#: modules/woocommerce/widgets/woo-products.php:532
|
1682 |
+
#: widgets/premium-banner.php:321 widgets/premium-banner.php:716
|
1683 |
+
#: widgets/premium-blog.php:388 widgets/premium-blog.php:1362
|
1684 |
+
#: widgets/premium-counter.php:80 widgets/premium-counter.php:581
|
1685 |
+
#: widgets/premium-grid.php:560 widgets/premium-grid.php:1192
|
1686 |
+
#: widgets/premium-icon-list.php:95 widgets/premium-icon-list.php:1243
|
1687 |
+
#: widgets/premium-maps.php:243 widgets/premium-maps.php:455
|
1688 |
+
#: widgets/premium-modalbox.php:227 widgets/premium-person.php:364
|
1689 |
+
#: widgets/premium-person.php:600 widgets/premium-pricing-table.php:154
|
1690 |
+
#: widgets/premium-pricing-table.php:761 widgets/premium-pricing-table.php:980
|
1691 |
+
#: widgets/premium-progressbar.php:187 widgets/premium-progressbar.php:632
|
1692 |
+
#: widgets/premium-title.php:43 widgets/premium-title.php:85
|
1693 |
+
#: widgets/premium-title.php:91 widgets/premium-title.php:651
|
1694 |
+
msgid "Title"
|
1695 |
+
msgstr ""
|
1696 |
+
|
1697 |
+
#: modules/woocommerce/skins/skin-1.php:253
|
1698 |
+
#: modules/woocommerce/skins/skin-1.php:322
|
1699 |
+
#: modules/woocommerce/skins/skin-1.php:377
|
1700 |
+
#: modules/woocommerce/skins/skin-1.php:438
|
1701 |
+
#: modules/woocommerce/skins/skin-1.php:493
|
1702 |
+
#: modules/woocommerce/skins/skin-1.php:582
|
1703 |
+
#: modules/woocommerce/skins/skin-1.php:637
|
1704 |
+
#: modules/woocommerce/skins/skin-1.php:821
|
1705 |
+
#: modules/woocommerce/skins/skin-1.php:980
|
1706 |
+
#: modules/woocommerce/skins/skin-2.php:257
|
1707 |
+
#: modules/woocommerce/skins/skin-2.php:294
|
1708 |
+
#: modules/woocommerce/skins/skin-2.php:363
|
1709 |
+
#: modules/woocommerce/skins/skin-2.php:489
|
1710 |
+
#: modules/woocommerce/skins/skin-2.php:544
|
1711 |
+
#: modules/woocommerce/skins/skin-2.php:627
|
1712 |
+
#: modules/woocommerce/skins/skin-2.php:682
|
1713 |
+
#: modules/woocommerce/skins/skin-2.php:868
|
1714 |
+
#: modules/woocommerce/skins/skin-2.php:1025
|
1715 |
+
#: modules/woocommerce/skins/skin-2.php:1160
|
1716 |
+
#: modules/woocommerce/skins/skin-2.php:1215
|
1717 |
+
#: modules/woocommerce/skins/skin-3.php:257
|
1718 |
+
#: modules/woocommerce/skins/skin-3.php:294
|
1719 |
+
#: modules/woocommerce/skins/skin-3.php:363
|
1720 |
+
#: modules/woocommerce/skins/skin-3.php:489
|
1721 |
+
#: modules/woocommerce/skins/skin-3.php:544
|
1722 |
+
#: modules/woocommerce/skins/skin-3.php:627
|
1723 |
+
#: modules/woocommerce/skins/skin-3.php:682
|
1724 |
+
#: modules/woocommerce/skins/skin-3.php:868
|
1725 |
+
#: modules/woocommerce/skins/skin-3.php:1025
|
1726 |
+
#: modules/woocommerce/skins/skin-3.php:1160
|
1727 |
+
#: modules/woocommerce/skins/skin-3.php:1215
|
1728 |
+
#: modules/woocommerce/skins/skin-4.php:295
|
1729 |
+
#: modules/woocommerce/skins/skin-4.php:332
|
1730 |
+
#: modules/woocommerce/skins/skin-4.php:401
|
1731 |
+
#: modules/woocommerce/skins/skin-4.php:527
|
1732 |
+
#: modules/woocommerce/skins/skin-4.php:582
|
1733 |
+
#: modules/woocommerce/skins/skin-4.php:671
|
1734 |
+
#: modules/woocommerce/skins/skin-4.php:726
|
1735 |
+
#: modules/woocommerce/skins/skin-4.php:917
|
1736 |
+
#: modules/woocommerce/skins/skin-4.php:1074
|
1737 |
+
#: modules/woocommerce/skins/skin-4.php:1209
|
1738 |
+
#: modules/woocommerce/skins/skin-4.php:1264
|
1739 |
+
#: modules/woocommerce/skins/skin-5.php:241
|
1740 |
+
#: modules/woocommerce/skins/skin-5.php:310
|
1741 |
+
#: modules/woocommerce/skins/skin-5.php:365
|
1742 |
+
#: modules/woocommerce/skins/skin-5.php:426
|
1743 |
+
#: modules/woocommerce/skins/skin-5.php:481
|
1744 |
+
#: modules/woocommerce/skins/skin-5.php:564
|
1745 |
+
#: modules/woocommerce/skins/skin-5.php:619
|
1746 |
+
#: modules/woocommerce/skins/skin-5.php:803
|
1747 |
+
#: modules/woocommerce/skins/skin-5.php:962
|
1748 |
+
#: modules/woocommerce/skins/skin-5.php:1096
|
1749 |
+
#: modules/woocommerce/skins/skin-5.php:1151
|
1750 |
+
#: modules/woocommerce/skins/skin-6.php:304
|
1751 |
+
#: modules/woocommerce/skins/skin-6.php:373
|
1752 |
+
#: modules/woocommerce/skins/skin-6.php:499
|
1753 |
+
#: modules/woocommerce/skins/skin-6.php:554
|
1754 |
+
#: modules/woocommerce/skins/skin-6.php:643
|
1755 |
+
#: modules/woocommerce/skins/skin-6.php:698
|
1756 |
+
#: modules/woocommerce/skins/skin-6.php:874
|
1757 |
+
#: modules/woocommerce/skins/skin-6.php:1031
|
1758 |
+
#: modules/woocommerce/skins/skin-6.php:1166
|
1759 |
+
#: modules/woocommerce/skins/skin-6.php:1221
|
1760 |
+
#: modules/woocommerce/skins/skin-base.php:60
|
1761 |
+
#: modules/woocommerce/widgets/woo-products.php:813
|
1762 |
+
#: modules/woocommerce/widgets/woo-products.php:860
|
1763 |
+
#: modules/woocommerce/widgets/woo-products.php:907
|
1764 |
+
#: modules/woocommerce/widgets/woo-products.php:962
|
1765 |
+
#: modules/woocommerce/widgets/woo-products.php:1038
|
1766 |
+
#: widgets/premium-banner.php:723 widgets/premium-banner.php:790
|
1767 |
+
#: widgets/premium-banner.php:846 widgets/premium-blog.php:1155
|
1768 |
+
#: widgets/premium-blog.php:1211 widgets/premium-blog.php:1378
|
1769 |
+
#: widgets/premium-blog.php:1437 widgets/premium-blog.php:1732
|
1770 |
+
#: widgets/premium-blog.php:1779 widgets/premium-blog.php:1852
|
1771 |
+
#: widgets/premium-blog.php:1966 widgets/premium-blog.php:2023
|
1772 |
+
#: widgets/premium-blog.php:2080 widgets/premium-blog.php:2199
|
1773 |
+
#: widgets/premium-blog.php:2240 widgets/premium-carousel.php:664
|
1774 |
+
#: widgets/premium-carousel.php:718 widgets/premium-carousel.php:806
|
1775 |
+
#: widgets/premium-countdown.php:434 widgets/premium-countdown.php:530
|
1776 |
+
#: widgets/premium-countdown.php:618 widgets/premium-counter.php:393
|
1777 |
+
#: widgets/premium-counter.php:591 widgets/premium-counter.php:682
|
1778 |
+
#: widgets/premium-dual-header.php:810 widgets/premium-fancytext.php:408
|
1779 |
+
#: widgets/premium-fancytext.php:466 widgets/premium-fancytext.php:513
|
1780 |
+
#: widgets/premium-grid.php:1199 widgets/premium-grid.php:1230
|
1781 |
+
#: widgets/premium-grid.php:1377 widgets/premium-grid.php:1461
|
1782 |
+
#: widgets/premium-icon-list.php:1102 widgets/premium-icon-list.php:1272
|
1783 |
+
#: widgets/premium-icon-list.php:1566 widgets/premium-icon-list.php:1688
|
1784 |
+
#: widgets/premium-image-scroll.php:296 widgets/premium-image-separator.php:353
|
1785 |
+
#: widgets/premium-maps.php:462 widgets/premium-maps.php:545
|
1786 |
+
#: widgets/premium-modalbox.php:790 widgets/premium-modalbox.php:1061
|
1787 |
+
#: widgets/premium-modalbox.php:1137 widgets/premium-modalbox.php:1189
|
1788 |
+
#: widgets/premium-modalbox.php:1302 widgets/premium-modalbox.php:1362
|
1789 |
+
#: widgets/premium-person.php:963 widgets/premium-person.php:1014
|
1790 |
+
#: widgets/premium-person.php:1076 widgets/premium-person.php:1142
|
1791 |
+
#: widgets/premium-person.php:1327 widgets/premium-pricing-table.php:820
|
1792 |
+
#: widgets/premium-pricing-table.php:990 widgets/premium-pricing-table.php:1077
|
1793 |
+
#: widgets/premium-pricing-table.php:1118
|
1794 |
+
#: widgets/premium-pricing-table.php:1189
|
1795 |
+
#: widgets/premium-pricing-table.php:1234
|
1796 |
+
#: widgets/premium-pricing-table.php:1286
|
1797 |
+
#: widgets/premium-pricing-table.php:1391
|
1798 |
+
#: widgets/premium-pricing-table.php:1422
|
1799 |
+
#: widgets/premium-pricing-table.php:1589
|
1800 |
+
#: widgets/premium-pricing-table.php:1647
|
1801 |
+
#: widgets/premium-pricing-table.php:1727 widgets/premium-progressbar.php:639
|
1802 |
+
#: widgets/premium-progressbar.php:681 widgets/premium-progressbar.php:794
|
1803 |
+
#: widgets/premium-progressbar.php:838 widgets/premium-progressbar.php:895
|
1804 |
+
#: widgets/premium-testimonials.php:439 widgets/premium-testimonials.php:479
|
1805 |
+
#: widgets/premium-testimonials.php:529 widgets/premium-title.php:658
|
1806 |
+
#: widgets/premium-title.php:921 widgets/premium-title.php:1036
|
1807 |
+
#: widgets/premium-videobox.php:896 widgets/premium-videobox.php:1298
|
1808 |
+
#: widgets/premium-videobox.php:1644
|
1809 |
+
msgid "Color"
|
1810 |
+
msgstr ""
|
1811 |
+
|
1812 |
+
#: modules/woocommerce/skins/skin-1.php:267
|
1813 |
+
#: modules/woocommerce/skins/skin-2.php:308
|
1814 |
+
#: modules/woocommerce/skins/skin-3.php:308
|
1815 |
+
#: modules/woocommerce/skins/skin-4.php:346
|
1816 |
+
#: modules/woocommerce/skins/skin-5.php:255
|
1817 |
+
#: modules/woocommerce/skins/skin-6.php:318 widgets/premium-banner.php:860
|
1818 |
+
#: widgets/premium-blog.php:1392 widgets/premium-blog.php:1447
|
1819 |
+
#: widgets/premium-blog.php:1866 widgets/premium-icon-list.php:1119
|
1820 |
+
#: widgets/premium-icon-list.php:1289 widgets/premium-image-separator.php:370
|
1821 |
+
#: widgets/premium-modalbox.php:808 widgets/premium-person.php:1156
|
1822 |
+
#: widgets/premium-person.php:1341 widgets/premium-videobox.php:1312
|
1823 |
+
#: widgets/premium-videobox.php:1435
|
1824 |
+
msgid "Hover Color"
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: modules/woocommerce/skins/skin-1.php:298
|
1828 |
+
#: modules/woocommerce/skins/skin-1.php:353
|
1829 |
+
#: modules/woocommerce/skins/skin-1.php:469
|
1830 |
+
#: modules/woocommerce/skins/skin-1.php:524
|
1831 |
+
#: modules/woocommerce/skins/skin-1.php:884
|
1832 |
+
#: modules/woocommerce/skins/skin-1.php:1043
|
1833 |
+
#: modules/woocommerce/skins/skin-2.php:339
|
1834 |
+
#: modules/woocommerce/skins/skin-2.php:394
|
1835 |
+
#: modules/woocommerce/skins/skin-2.php:520
|
1836 |
+
#: modules/woocommerce/skins/skin-2.php:575
|
1837 |
+
#: modules/woocommerce/skins/skin-2.php:931
|
1838 |
+
#: modules/woocommerce/skins/skin-2.php:1088
|
1839 |
+
#: modules/woocommerce/skins/skin-3.php:339
|
1840 |
+
#: modules/woocommerce/skins/skin-3.php:394
|
1841 |
+
#: modules/woocommerce/skins/skin-3.php:520
|
1842 |
+
#: modules/woocommerce/skins/skin-3.php:575
|
1843 |
+
#: modules/woocommerce/skins/skin-3.php:931
|
1844 |
+
#: modules/woocommerce/skins/skin-3.php:1088
|
1845 |
+
#: modules/woocommerce/skins/skin-4.php:377
|
1846 |
+
#: modules/woocommerce/skins/skin-4.php:432
|
1847 |
+
#: modules/woocommerce/skins/skin-4.php:558
|
1848 |
+
#: modules/woocommerce/skins/skin-4.php:613
|
1849 |
+
#: modules/woocommerce/skins/skin-4.php:980
|
1850 |
+
#: modules/woocommerce/skins/skin-4.php:1137
|
1851 |
+
#: modules/woocommerce/skins/skin-5.php:286
|
1852 |
+
#: modules/woocommerce/skins/skin-5.php:341
|
1853 |
+
#: modules/woocommerce/skins/skin-5.php:457
|
1854 |
+
#: modules/woocommerce/skins/skin-5.php:512
|
1855 |
+
#: modules/woocommerce/skins/skin-5.php:866
|
1856 |
+
#: modules/woocommerce/skins/skin-5.php:1025
|
1857 |
+
#: modules/woocommerce/skins/skin-6.php:349
|
1858 |
+
#: modules/woocommerce/skins/skin-6.php:404
|
1859 |
+
#: modules/woocommerce/skins/skin-6.php:530
|
1860 |
+
#: modules/woocommerce/skins/skin-6.php:585
|
1861 |
+
#: modules/woocommerce/skins/skin-6.php:937
|
1862 |
+
#: modules/woocommerce/skins/skin-6.php:1094 widgets/premium-banner.php:770
|
1863 |
+
#: widgets/premium-banner.php:822 widgets/premium-banner.php:931
|
1864 |
+
#: widgets/premium-blog.php:1271 widgets/premium-blog.php:1514
|
1865 |
+
#: widgets/premium-blog.php:1670 widgets/premium-blog.php:2132
|
1866 |
+
#: widgets/premium-button.php:776 widgets/premium-button.php:941
|
1867 |
+
#: widgets/premium-contactform.php:300 widgets/premium-countdown.php:632
|
1868 |
+
#: widgets/premium-counter.php:568 widgets/premium-counter.php:651
|
1869 |
+
#: widgets/premium-counter.php:735 widgets/premium-dual-header.php:590
|
1870 |
+
#: widgets/premium-dual-header.php:775 widgets/premium-grid.php:1074
|
1871 |
+
#: widgets/premium-grid.php:1162 widgets/premium-grid.php:1299
|
1872 |
+
#: widgets/premium-grid.php:1433 widgets/premium-grid.php:1517
|
1873 |
+
#: widgets/premium-grid.php:1722 widgets/premium-grid.php:1846
|
1874 |
+
#: widgets/premium-grid.php:1934 widgets/premium-icon-list.php:1023
|
1875 |
+
#: widgets/premium-icon-list.php:1213 widgets/premium-icon-list.php:1316
|
1876 |
+
#: widgets/premium-icon-list.php:1433 widgets/premium-image-button.php:677
|
1877 |
+
#: widgets/premium-image-button.php:885 widgets/premium-maps.php:485
|
1878 |
+
#: widgets/premium-maps.php:568 widgets/premium-maps.php:652
|
1879 |
+
#: widgets/premium-modalbox.php:1545 widgets/premium-person.php:1045
|
1880 |
+
#: widgets/premium-person.php:1220 widgets/premium-pricing-table.php:941
|
1881 |
+
#: widgets/premium-pricing-table.php:1022
|
1882 |
+
#: widgets/premium-pricing-table.php:1100
|
1883 |
+
#: widgets/premium-pricing-table.php:1168
|
1884 |
+
#: widgets/premium-pricing-table.php:1215
|
1885 |
+
#: widgets/premium-pricing-table.php:1260
|
1886 |
+
#: widgets/premium-pricing-table.php:1312
|
1887 |
+
#: widgets/premium-pricing-table.php:1342
|
1888 |
+
#: widgets/premium-pricing-table.php:1509
|
1889 |
+
#: widgets/premium-pricing-table.php:1686
|
1890 |
+
#: widgets/premium-pricing-table.php:1809
|
1891 |
+
#: widgets/premium-pricing-table.php:1883
|
1892 |
+
#: widgets/premium-pricing-table.php:2052
|
1893 |
+
#: widgets/premium-pricing-table.php:2126 widgets/premium-progressbar.php:606
|
1894 |
+
#: widgets/premium-progressbar.php:662 widgets/premium-progressbar.php:704
|
1895 |
+
#: widgets/premium-testimonials.php:502 widgets/premium-title.php:886
|
1896 |
+
#: widgets/premium-title.php:989 widgets/premium-vscroll.php:543
|
1897 |
+
#: widgets/premium-vscroll.php:838
|
1898 |
+
msgid "Margin"
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: modules/woocommerce/skins/skin-1.php:315
|
1902 |
+
#: modules/woocommerce/skins/skin-1.php:1070
|
1903 |
+
#: modules/woocommerce/skins/skin-2.php:131
|
1904 |
+
#: modules/woocommerce/skins/skin-2.php:356
|
1905 |
+
#: modules/woocommerce/skins/skin-3.php:131
|
1906 |
+
#: modules/woocommerce/skins/skin-3.php:356
|
1907 |
+
#: modules/woocommerce/skins/skin-4.php:156
|
1908 |
+
#: modules/woocommerce/skins/skin-4.php:394
|
1909 |
+
#: modules/woocommerce/skins/skin-5.php:303
|
1910 |
+
#: modules/woocommerce/skins/skin-5.php:1207
|
1911 |
+
#: modules/woocommerce/skins/skin-6.php:176
|
1912 |
+
#: modules/woocommerce/skins/skin-6.php:366 widgets/premium-grid.php:306
|
1913 |
+
#: widgets/premium-grid.php:576
|
1914 |
+
msgid "Category"
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: modules/woocommerce/skins/skin-1.php:370
|
1918 |
+
#: modules/woocommerce/skins/skin-1.php:1071
|
1919 |
+
#: modules/woocommerce/skins/skin-2.php:132
|
1920 |
+
#: modules/woocommerce/skins/skin-2.php:248
|
1921 |
+
#: modules/woocommerce/skins/skin-2.php:411
|
1922 |
+
#: modules/woocommerce/skins/skin-3.php:132
|
1923 |
+
#: modules/woocommerce/skins/skin-3.php:248
|
1924 |
+
#: modules/woocommerce/skins/skin-3.php:411
|
1925 |
+
#: modules/woocommerce/skins/skin-4.php:157
|
1926 |
+
#: modules/woocommerce/skins/skin-4.php:287
|
1927 |
+
#: modules/woocommerce/skins/skin-4.php:449
|
1928 |
+
#: modules/woocommerce/skins/skin-5.php:358
|
1929 |
+
#: modules/woocommerce/skins/skin-5.php:1208
|
1930 |
+
#: modules/woocommerce/skins/skin-6.php:184
|
1931 |
+
#: modules/woocommerce/skins/skin-6.php:421
|
1932 |
+
#: modules/woocommerce/widgets/woo-products.php:536
|
1933 |
+
msgid "Rating"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: modules/woocommerce/skins/skin-1.php:387
|
1937 |
+
#: modules/woocommerce/skins/skin-2.php:438
|
1938 |
+
#: modules/woocommerce/skins/skin-3.php:438
|
1939 |
+
#: modules/woocommerce/skins/skin-4.php:476
|
1940 |
+
#: modules/woocommerce/skins/skin-5.php:375
|
1941 |
+
#: modules/woocommerce/skins/skin-6.php:448
|
1942 |
+
msgid "Star Size"
|
1943 |
+
msgstr ""
|
1944 |
+
|
1945 |
+
#: modules/woocommerce/skins/skin-1.php:407
|
1946 |
+
#: modules/woocommerce/skins/skin-2.php:272
|
1947 |
+
#: modules/woocommerce/skins/skin-2.php:458
|
1948 |
+
#: modules/woocommerce/skins/skin-3.php:272
|
1949 |
+
#: modules/woocommerce/skins/skin-3.php:458
|
1950 |
+
#: modules/woocommerce/skins/skin-4.php:310
|
1951 |
+
#: modules/woocommerce/skins/skin-4.php:496
|
1952 |
+
#: modules/woocommerce/skins/skin-5.php:395
|
1953 |
+
#: modules/woocommerce/skins/skin-6.php:468 widgets/premium-blog.php:1713
|
1954 |
+
#: widgets/premium-blog.php:1915 widgets/premium-person.php:298
|
1955 |
+
#: widgets/premium-pricing-table.php:1447 widgets/premium-progressbar.php:122
|
1956 |
+
#: widgets/premium-testimonials.php:159
|
1957 |
+
msgid "Spacing"
|
1958 |
+
msgstr ""
|
1959 |
+
|
1960 |
+
#: modules/woocommerce/skins/skin-1.php:431
|
1961 |
+
#: modules/woocommerce/skins/skin-1.php:1072
|
1962 |
+
#: modules/woocommerce/skins/skin-2.php:133
|
1963 |
+
#: modules/woocommerce/skins/skin-2.php:482
|
1964 |
+
#: modules/woocommerce/skins/skin-3.php:133
|
1965 |
+
#: modules/woocommerce/skins/skin-3.php:482
|
1966 |
+
#: modules/woocommerce/skins/skin-4.php:158
|
1967 |
+
#: modules/woocommerce/skins/skin-4.php:520
|
1968 |
+
#: modules/woocommerce/skins/skin-5.php:419
|
1969 |
+
#: modules/woocommerce/skins/skin-5.php:1209
|
1970 |
+
#: modules/woocommerce/skins/skin-6.php:192
|
1971 |
+
#: modules/woocommerce/skins/skin-6.php:492
|
1972 |
+
#: modules/woocommerce/widgets/woo-products.php:535
|
1973 |
+
#: widgets/premium-pricing-table.php:198 widgets/premium-pricing-table.php:229
|
1974 |
+
#: widgets/premium-pricing-table.php:769 widgets/premium-pricing-table.php:1060
|
1975 |
+
#: widgets/premium-pricing-table.php:1181
|
1976 |
+
msgid "Price"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: modules/woocommerce/skins/skin-1.php:486
|
1980 |
+
#: modules/woocommerce/skins/skin-2.php:537
|
1981 |
+
#: modules/woocommerce/skins/skin-3.php:537
|
1982 |
+
#: modules/woocommerce/skins/skin-4.php:575
|
1983 |
+
#: modules/woocommerce/skins/skin-5.php:474
|
1984 |
+
#: modules/woocommerce/skins/skin-6.php:547 widgets/premium-banner.php:354
|
1985 |
+
#: widgets/premium-banner.php:361 widgets/premium-banner.php:783
|
1986 |
+
#: widgets/premium-grid.php:568 widgets/premium-grid.php:1222
|
1987 |
+
#: widgets/premium-maps.php:252 widgets/premium-maps.php:538
|
1988 |
+
#: widgets/premium-person.php:374 widgets/premium-person.php:610
|
1989 |
+
#: widgets/premium-person.php:1069 widgets/premium-pricing-table.php:454
|
1990 |
+
#: widgets/premium-pricing-table.php:463 widgets/premium-pricing-table.php:785
|
1991 |
+
#: widgets/premium-pricing-table.php:1630 widgets/premium-videobox.php:1069
|
1992 |
+
msgid "Description"
|
1993 |
+
msgstr ""
|
1994 |
+
|
1995 |
+
#: modules/woocommerce/skins/skin-1.php:541
|
1996 |
+
#: modules/woocommerce/skins/skin-1.php:1074
|
1997 |
+
#: modules/woocommerce/skins/skin-2.php:135
|
1998 |
+
#: modules/woocommerce/skins/skin-2.php:592
|
1999 |
+
#: modules/woocommerce/skins/skin-3.php:135
|
2000 |
+
#: modules/woocommerce/skins/skin-3.php:592
|
2001 |
+
#: modules/woocommerce/skins/skin-4.php:160
|
2002 |
+
#: modules/woocommerce/skins/skin-4.php:630
|
2003 |
+
#: modules/woocommerce/skins/skin-5.php:529
|
2004 |
+
#: modules/woocommerce/skins/skin-5.php:1211
|
2005 |
+
#: modules/woocommerce/skins/skin-6.php:602
|
2006 |
+
msgid "CTA"
|
2007 |
+
msgstr ""
|
2008 |
+
|
2009 |
+
#: modules/woocommerce/skins/skin-1.php:576
|
2010 |
+
#: modules/woocommerce/skins/skin-2.php:621
|
2011 |
+
#: modules/woocommerce/skins/skin-2.php:1154
|
2012 |
+
#: modules/woocommerce/skins/skin-3.php:621
|
2013 |
+
#: modules/woocommerce/skins/skin-3.php:1154
|
2014 |
+
#: modules/woocommerce/skins/skin-4.php:665
|
2015 |
+
#: modules/woocommerce/skins/skin-4.php:1203
|
2016 |
+
#: modules/woocommerce/skins/skin-5.php:558
|
2017 |
+
#: modules/woocommerce/skins/skin-5.php:1090
|
2018 |
+
#: modules/woocommerce/skins/skin-6.php:637
|
2019 |
+
#: modules/woocommerce/skins/skin-6.php:1160
|
2020 |
+
#: modules/woocommerce/widgets/woo-products.php:807
|
2021 |
+
#: widgets/premium-banner.php:694 widgets/premium-blog.php:1149
|
2022 |
+
#: widgets/premium-blog.php:1725 widgets/premium-blog.php:1959
|
2023 |
+
#: widgets/premium-button.php:673 widgets/premium-carousel.php:658
|
2024 |
+
#: widgets/premium-contactform.php:467 widgets/premium-dual-header.php:458
|
2025 |
+
#: widgets/premium-dual-header.php:643 widgets/premium-dual-header.php:844
|
2026 |
+
#: widgets/premium-grid.php:1371 widgets/premium-grid.php:1563
|
2027 |
+
#: widgets/premium-grid.php:1767 widgets/premium-icon-list.php:398
|
2028 |
+
#: widgets/premium-icon-list.php:858 widgets/premium-image-button.php:579
|
2029 |
+
#: widgets/premium-image-scroll.php:533 widgets/premium-image-scroll.php:604
|
2030 |
+
#: widgets/premium-image-scroll.php:635 widgets/premium-lottie.php:412
|
2031 |
+
#: widgets/premium-modalbox.php:343 widgets/premium-modalbox.php:876
|
2032 |
+
#: widgets/premium-modalbox.php:1130 widgets/premium-modalbox.php:1295
|
2033 |
+
#: widgets/premium-person.php:934 widgets/premium-pricing-table.php:1766
|
2034 |
+
#: widgets/premium-pricing-table.php:2009 widgets/premium-title.php:1070
|
2035 |
+
#: widgets/premium-videobox.php:518 widgets/premium-vscroll.php:358
|
2036 |
+
#: widgets/premium-vscroll.php:700
|
2037 |
+
msgid "Normal"
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: modules/woocommerce/skins/skin-1.php:618
|
2041 |
+
#: modules/woocommerce/skins/skin-1.php:672
|
2042 |
+
#: modules/woocommerce/skins/skin-1.php:857
|
2043 |
+
#: modules/woocommerce/skins/skin-1.php:1016
|
2044 |
+
#: modules/woocommerce/skins/skin-2.php:663
|
2045 |
+
#: modules/woocommerce/skins/skin-2.php:717
|
2046 |
+
#: modules/woocommerce/skins/skin-2.php:904
|
2047 |
+
#: modules/woocommerce/skins/skin-2.php:1061
|
2048 |
+
#: modules/woocommerce/skins/skin-2.php:1196
|
2049 |
+
#: modules/woocommerce/skins/skin-2.php:1250
|
2050 |
+
#: modules/woocommerce/skins/skin-3.php:663
|
2051 |
+
#: modules/woocommerce/skins/skin-3.php:717
|
2052 |
+
#: modules/woocommerce/skins/skin-3.php:904
|
2053 |
+
#: modules/woocommerce/skins/skin-3.php:1061
|
2054 |
+
#: modules/woocommerce/skins/skin-3.php:1196
|
2055 |
+
#: modules/woocommerce/skins/skin-3.php:1250
|
2056 |
+
#: modules/woocommerce/skins/skin-4.php:707
|
2057 |
+
#: modules/woocommerce/skins/skin-4.php:761
|
2058 |
+
#: modules/woocommerce/skins/skin-4.php:953
|
2059 |
+
#: modules/woocommerce/skins/skin-4.php:1110
|
2060 |
+
#: modules/woocommerce/skins/skin-4.php:1245
|
2061 |
+
#: modules/woocommerce/skins/skin-4.php:1299
|
2062 |
+
#: modules/woocommerce/skins/skin-5.php:600
|
2063 |
+
#: modules/woocommerce/skins/skin-5.php:654
|
2064 |
+
#: modules/woocommerce/skins/skin-5.php:839
|
2065 |
+
#: modules/woocommerce/skins/skin-5.php:998
|
2066 |
+
#: modules/woocommerce/skins/skin-5.php:1132
|
2067 |
+
#: modules/woocommerce/skins/skin-5.php:1186
|
2068 |
+
#: modules/woocommerce/skins/skin-6.php:679
|
2069 |
+
#: modules/woocommerce/skins/skin-6.php:733
|
2070 |
+
#: modules/woocommerce/skins/skin-6.php:910
|
2071 |
+
#: modules/woocommerce/skins/skin-6.php:1067
|
2072 |
+
#: modules/woocommerce/skins/skin-6.php:1202
|
2073 |
+
#: modules/woocommerce/skins/skin-6.php:1256
|
2074 |
+
#: modules/woocommerce/widgets/woo-products.php:721
|
2075 |
+
#: modules/woocommerce/widgets/woo-products.php:841
|
2076 |
+
#: modules/woocommerce/widgets/woo-products.php:888
|
2077 |
+
#: modules/woocommerce/widgets/woo-products.php:935
|
2078 |
+
#: modules/woocommerce/widgets/woo-products.php:1010
|
2079 |
+
#: widgets/premium-banner.php:680 widgets/premium-banner.php:911
|
2080 |
+
#: widgets/premium-banner.php:970 widgets/premium-blog.php:1191
|
2081 |
+
#: widgets/premium-blog.php:1247 widgets/premium-blog.php:1485
|
2082 |
+
#: widgets/premium-blog.php:1760 widgets/premium-blog.php:1807
|
2083 |
+
#: widgets/premium-blog.php:1904 widgets/premium-blog.php:2003
|
2084 |
+
#: widgets/premium-blog.php:2060 widgets/premium-blog.php:2117
|
2085 |
+
#: widgets/premium-blog.php:2279 widgets/premium-button.php:733
|
2086 |
+
#: widgets/premium-button.php:882 widgets/premium-carousel.php:699
|
2087 |
+
#: widgets/premium-carousel.php:753 widgets/premium-contactform.php:289
|
2088 |
+
#: widgets/premium-contactform.php:503 widgets/premium-countdown.php:509
|
2089 |
+
#: widgets/premium-counter.php:550 widgets/premium-counter.php:632
|
2090 |
+
#: widgets/premium-counter.php:724 widgets/premium-dual-header.php:570
|
2091 |
+
#: widgets/premium-dual-header.php:755 widgets/premium-grid.php:1055
|
2092 |
+
#: widgets/premium-grid.php:1122 widgets/premium-grid.php:1271
|
2093 |
+
#: widgets/premium-grid.php:1413 widgets/premium-grid.php:1497
|
2094 |
+
#: widgets/premium-grid.php:1601 widgets/premium-grid.php:1648
|
2095 |
+
#: widgets/premium-grid.php:1699 widgets/premium-grid.php:1827
|
2096 |
+
#: widgets/premium-grid.php:1915 widgets/premium-icon-list.php:1004
|
2097 |
+
#: widgets/premium-icon-list.php:1200 widgets/premium-image-button.php:634
|
2098 |
+
#: widgets/premium-image-button.php:826 widgets/premium-image-scroll.php:649
|
2099 |
+
#: widgets/premium-image-scroll.php:684 widgets/premium-image-separator.php:421
|
2100 |
+
#: widgets/premium-lottie.php:509 widgets/premium-maps.php:632
|
2101 |
+
#: widgets/premium-modalbox.php:915 widgets/premium-modalbox.php:1017
|
2102 |
+
#: widgets/premium-modalbox.php:1167 widgets/premium-modalbox.php:1219
|
2103 |
+
#: widgets/premium-modalbox.php:1340 widgets/premium-modalbox.php:1400
|
2104 |
+
#: widgets/premium-modalbox.php:1525 widgets/premium-person.php:1209
|
2105 |
+
#: widgets/premium-person.php:1394 widgets/premium-pricing-table.php:890
|
2106 |
+
#: widgets/premium-pricing-table.php:930 widgets/premium-pricing-table.php:1497
|
2107 |
+
#: widgets/premium-pricing-table.php:1789
|
2108 |
+
#: widgets/premium-pricing-table.php:1863
|
2109 |
+
#: widgets/premium-pricing-table.php:2032
|
2110 |
+
#: widgets/premium-pricing-table.php:2106 widgets/premium-progressbar.php:503
|
2111 |
+
#: widgets/premium-progressbar.php:933 widgets/premium-testimonials.php:619
|
2112 |
+
#: widgets/premium-title.php:978 widgets/premium-videobox.php:1208
|
2113 |
+
#: widgets/premium-videobox.php:1358 widgets/premium-vscroll.php:518
|
2114 |
+
#: widgets/premium-vscroll.php:621 widgets/premium-vscroll.php:654
|
2115 |
+
#: widgets/premium-vscroll.php:827
|
2116 |
+
msgid "Border Radius"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: modules/woocommerce/skins/skin-1.php:631
|
2120 |
+
#: modules/woocommerce/skins/skin-2.php:676
|
2121 |
+
#: modules/woocommerce/skins/skin-2.php:1209
|
2122 |
+
#: modules/woocommerce/skins/skin-3.php:676
|
2123 |
+
#: modules/woocommerce/skins/skin-3.php:1209
|
2124 |
+
#: modules/woocommerce/skins/skin-4.php:720
|
2125 |
+
#: modules/woocommerce/skins/skin-4.php:1258
|
2126 |
+
#: modules/woocommerce/skins/skin-5.php:613
|
2127 |
+
#: modules/woocommerce/skins/skin-5.php:1145
|
2128 |
+
#: modules/woocommerce/skins/skin-6.php:692
|
2129 |
+
#: modules/woocommerce/skins/skin-6.php:1215
|
2130 |
+
#: modules/woocommerce/widgets/woo-products.php:854
|
2131 |
+
#: widgets/premium-blog.php:1773 widgets/premium-blog.php:2016
|
2132 |
+
#: widgets/premium-button.php:800 widgets/premium-carousel.php:712
|
2133 |
+
#: widgets/premium-contactform.php:520 widgets/premium-grid.php:1455
|
2134 |
+
#: widgets/premium-grid.php:1614 widgets/premium-grid.php:1870
|
2135 |
+
#: widgets/premium-icon-list.php:511 widgets/premium-image-button.php:699
|
2136 |
+
#: widgets/premium-image-scroll.php:414 widgets/premium-image-scroll.php:566
|
2137 |
+
#: widgets/premium-image-scroll.php:670 widgets/premium-lottie.php:148
|
2138 |
+
#: widgets/premium-lottie.php:455 widgets/premium-modalbox.php:981
|
2139 |
+
#: widgets/premium-modalbox.php:1182 widgets/premium-modalbox.php:1355
|
2140 |
+
#: widgets/premium-pricing-table.php:1840
|
2141 |
+
#: widgets/premium-pricing-table.php:2083
|
2142 |
+
msgid "Hover"
|
2143 |
+
msgstr ""
|
2144 |
+
|
2145 |
+
#: modules/woocommerce/skins/skin-1.php:700
|
2146 |
+
#: modules/woocommerce/skins/skin-1.php:794
|
2147 |
+
#: modules/woocommerce/skins/skin-2.php:744
|
2148 |
+
#: modules/woocommerce/skins/skin-2.php:841
|
2149 |
+
#: modules/woocommerce/skins/skin-3.php:744
|
2150 |
+
#: modules/woocommerce/skins/skin-3.php:841
|
2151 |
+
#: modules/woocommerce/skins/skin-4.php:788
|
2152 |
+
#: modules/woocommerce/skins/skin-4.php:890
|
2153 |
+
#: modules/woocommerce/skins/skin-5.php:682
|
2154 |
+
#: modules/woocommerce/skins/skin-5.php:776
|
2155 |
+
#: modules/woocommerce/skins/skin-6.php:760
|
2156 |
+
#: modules/woocommerce/skins/skin-6.php:847
|
2157 |
+
msgid "Sale Ribbon"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: modules/woocommerce/skins/skin-1.php:706
|
2161 |
+
#: modules/woocommerce/skins/skin-2.php:750
|
2162 |
+
#: modules/woocommerce/skins/skin-3.php:750
|
2163 |
+
#: modules/woocommerce/skins/skin-4.php:794
|
2164 |
+
#: modules/woocommerce/skins/skin-5.php:688
|
2165 |
+
#: modules/woocommerce/skins/skin-6.php:766
|
2166 |
+
msgid "Show Sale Ribbon"
|
2167 |
+
msgstr ""
|
2168 |
+
|
2169 |
+
#: modules/woocommerce/skins/skin-1.php:714
|
2170 |
+
#: modules/woocommerce/skins/skin-2.php:758
|
2171 |
+
#: modules/woocommerce/skins/skin-3.php:758
|
2172 |
+
#: modules/woocommerce/skins/skin-4.php:802
|
2173 |
+
#: modules/woocommerce/skins/skin-5.php:696
|
2174 |
+
#: modules/woocommerce/skins/skin-6.php:774
|
2175 |
+
#: modules/woocommerce/widgets/woo-products.php:590
|
2176 |
+
#: widgets/premium-carousel.php:145 widgets/premium-grid.php:467
|
2177 |
+
#: widgets/premium-icon-list.php:117 widgets/premium-pricing-table.php:564
|
2178 |
+
#: widgets/premium-progressbar.php:84
|
2179 |
+
msgid "Type"
|
2180 |
+
msgstr ""
|
2181 |
+
|
2182 |
+
#: modules/woocommerce/skins/skin-1.php:717
|
2183 |
+
#: modules/woocommerce/skins/skin-2.php:761
|
2184 |
+
#: modules/woocommerce/skins/skin-3.php:761
|
2185 |
+
#: modules/woocommerce/skins/skin-4.php:805
|
2186 |
+
#: modules/woocommerce/skins/skin-5.php:699
|
2187 |
+
#: modules/woocommerce/skins/skin-6.php:777 widgets/premium-banner.php:240
|
2188 |
+
#: widgets/premium-grid.php:920
|
2189 |
+
msgid "Default"
|
2190 |
+
msgstr ""
|
2191 |
+
|
2192 |
+
#: modules/woocommerce/skins/skin-1.php:718
|
2193 |
+
#: modules/woocommerce/skins/skin-2.php:762
|
2194 |
+
#: modules/woocommerce/skins/skin-3.php:762
|
2195 |
+
#: modules/woocommerce/skins/skin-4.php:806
|
2196 |
+
#: modules/woocommerce/skins/skin-5.php:700
|
2197 |
+
#: modules/woocommerce/skins/skin-6.php:778
|
2198 |
+
#: modules/woocommerce/widgets/woo-products.php:154
|
2199 |
+
#: modules/woocommerce/widgets/woo-products.php:753
|
2200 |
+
#: widgets/premium-banner.php:241 widgets/premium-counter.php:469
|
2201 |
+
#: widgets/premium-fancytext.php:174
|
2202 |
+
msgid "Custom"
|
2203 |
+
msgstr ""
|
2204 |
+
|
2205 |
+
#: modules/woocommerce/skins/skin-1.php:729
|
2206 |
+
#: modules/woocommerce/skins/skin-1.php:930
|
2207 |
+
#: modules/woocommerce/skins/skin-2.php:773
|
2208 |
+
#: modules/woocommerce/skins/skin-2.php:976
|
2209 |
+
#: modules/woocommerce/skins/skin-3.php:773
|
2210 |
+
#: modules/woocommerce/skins/skin-3.php:976
|
2211 |
+
#: modules/woocommerce/skins/skin-4.php:817
|
2212 |
+
#: modules/woocommerce/skins/skin-4.php:1025
|
2213 |
+
#: modules/woocommerce/skins/skin-5.php:711
|
2214 |
+
#: modules/woocommerce/skins/skin-5.php:912
|
2215 |
+
#: modules/woocommerce/skins/skin-6.php:789
|
2216 |
+
#: modules/woocommerce/skins/skin-6.php:982
|
2217 |
+
msgid "String"
|
2218 |
+
msgstr ""
|
2219 |
+
|
2220 |
+
#: modules/woocommerce/skins/skin-1.php:732
|
2221 |
+
#: modules/woocommerce/skins/skin-2.php:776
|
2222 |
+
#: modules/woocommerce/skins/skin-3.php:776
|
2223 |
+
#: modules/woocommerce/skins/skin-4.php:820
|
2224 |
+
#: modules/woocommerce/skins/skin-5.php:714
|
2225 |
+
#: modules/woocommerce/skins/skin-6.php:792
|
2226 |
+
msgid ""
|
2227 |
+
"Show Sale % Value ( [value] Autocalculated offer value will replace this )."
|
2228 |
+
msgstr ""
|
2229 |
+
|
2230 |
+
#: modules/woocommerce/skins/skin-1.php:753
|
2231 |
+
#: modules/woocommerce/skins/skin-1.php:767
|
2232 |
+
#: modules/woocommerce/skins/skin-2.php:798
|
2233 |
+
#: modules/woocommerce/skins/skin-2.php:1122
|
2234 |
+
#: modules/woocommerce/skins/skin-3.php:798
|
2235 |
+
#: modules/woocommerce/skins/skin-3.php:1122
|
2236 |
+
#: modules/woocommerce/skins/skin-4.php:842
|
2237 |
+
#: modules/woocommerce/skins/skin-4.php:864
|
2238 |
+
#: modules/woocommerce/skins/skin-4.php:1171
|
2239 |
+
#: modules/woocommerce/skins/skin-5.php:735
|
2240 |
+
#: modules/woocommerce/skins/skin-5.php:749
|
2241 |
+
#: modules/woocommerce/skins/skin-5.php:1058
|
2242 |
+
#: modules/woocommerce/skins/skin-6.php:814
|
2243 |
+
#: modules/woocommerce/skins/skin-6.php:1128
|
2244 |
+
#: modules/woocommerce/skins/skin-base.php:49
|
2245 |
+
#: modules/woocommerce/templates/product-1.php:93
|
2246 |
+
#: modules/woocommerce/templates/product-2.php:112
|
2247 |
+
#: modules/woocommerce/templates/product-4.php:88
|
2248 |
+
#: modules/woocommerce/templates/product-6.php:84
|
2249 |
+
msgid "Quick View"
|
2250 |
+
msgstr ""
|
2251 |
+
|
2252 |
+
#: modules/woocommerce/skins/skin-1.php:759
|
2253 |
+
#: modules/woocommerce/skins/skin-2.php:812
|
2254 |
+
#: modules/woocommerce/skins/skin-3.php:812
|
2255 |
+
#: modules/woocommerce/skins/skin-4.php:856
|
2256 |
+
#: modules/woocommerce/skins/skin-5.php:741
|
2257 |
+
#: modules/woocommerce/skins/skin-6.php:828
|
2258 |
+
msgid "Enable Quick View"
|
2259 |
+
msgstr ""
|
2260 |
+
|
2261 |
+
#: modules/woocommerce/skins/skin-1.php:770
|
2262 |
+
#: modules/woocommerce/skins/skin-4.php:867
|
2263 |
+
#: modules/woocommerce/skins/skin-5.php:752
|
2264 |
+
msgid "On Button Click"
|
2265 |
+
msgstr ""
|
2266 |
+
|
2267 |
+
#: modules/woocommerce/skins/skin-1.php:771
|
2268 |
+
#: modules/woocommerce/skins/skin-4.php:868
|
2269 |
+
#: modules/woocommerce/skins/skin-5.php:753
|
2270 |
+
msgid "On Image Click"
|
2271 |
+
msgstr ""
|
2272 |
+
|
2273 |
+
#: modules/woocommerce/skins/skin-1.php:804
|
2274 |
+
#: modules/woocommerce/skins/skin-1.php:963
|
2275 |
+
#: modules/woocommerce/skins/skin-2.php:851
|
2276 |
+
#: modules/woocommerce/skins/skin-2.php:1008
|
2277 |
+
#: modules/woocommerce/skins/skin-3.php:851
|
2278 |
+
#: modules/woocommerce/skins/skin-3.php:1008
|
2279 |
+
#: modules/woocommerce/skins/skin-4.php:900
|
2280 |
+
#: modules/woocommerce/skins/skin-4.php:1057
|
2281 |
+
#: modules/woocommerce/skins/skin-5.php:786
|
2282 |
+
#: modules/woocommerce/skins/skin-5.php:945
|
2283 |
+
#: modules/woocommerce/skins/skin-6.php:857
|
2284 |
+
#: modules/woocommerce/skins/skin-6.php:1014
|
2285 |
+
#: modules/woocommerce/widgets/woo-products.php:979
|
2286 |
+
#: widgets/premium-blog.php:2254 widgets/premium-button.php:561
|
2287 |
+
#: widgets/premium-carousel.php:610 widgets/premium-countdown.php:601
|
2288 |
+
#: widgets/premium-counter.php:410 widgets/premium-counter.php:437
|
2289 |
+
#: widgets/premium-grid.php:1350 widgets/premium-icon-list.php:366
|
2290 |
+
#: widgets/premium-icon-list.php:1069 widgets/premium-image-button.php:467
|
2291 |
+
#: widgets/premium-image-separator.php:178 widgets/premium-lottie.php:217
|
2292 |
+
#: widgets/premium-maps.php:185 widgets/premium-modalbox.php:656
|
2293 |
+
#: widgets/premium-modalbox.php:1114 widgets/premium-person.php:1130
|
2294 |
+
#: widgets/premium-person.php:1355 widgets/premium-pricing-table.php:588
|
2295 |
+
#: widgets/premium-pricing-table.php:608 widgets/premium-pricing-table.php:628
|
2296 |
+
#: widgets/premium-pricing-table.php:837 widgets/premium-pricing-table.php:1436
|
2297 |
+
#: widgets/premium-progressbar.php:148 widgets/premium-progressbar.php:811
|
2298 |
+
#: widgets/premium-progressbar.php:855 widgets/premium-testimonials.php:304
|
2299 |
+
#: widgets/premium-testimonials.php:540 widgets/premium-title.php:939
|
2300 |
+
#: widgets/premium-videobox.php:1326 widgets/premium-videobox.php:1587
|
2301 |
+
#: widgets/premium-videobox.php:1669
|
2302 |
+
msgid "Size"
|
2303 |
+
msgstr ""
|
2304 |
+
|
2305 |
+
#: modules/woocommerce/skins/skin-1.php:843
|
2306 |
+
#: modules/woocommerce/skins/skin-1.php:1002
|
2307 |
+
#: modules/woocommerce/skins/skin-2.php:890
|
2308 |
+
#: modules/woocommerce/skins/skin-2.php:1047
|
2309 |
+
#: modules/woocommerce/skins/skin-3.php:890
|
2310 |
+
#: modules/woocommerce/skins/skin-3.php:1047
|
2311 |
+
#: modules/woocommerce/skins/skin-4.php:939
|
2312 |
+
#: modules/woocommerce/skins/skin-4.php:1096
|
2313 |
+
#: modules/woocommerce/skins/skin-5.php:825
|
2314 |
+
#: modules/woocommerce/skins/skin-5.php:984
|
2315 |
+
#: modules/woocommerce/skins/skin-6.php:896
|
2316 |
+
#: modules/woocommerce/skins/skin-6.php:1053
|
2317 |
+
#: modules/woocommerce/skins/skin-base.php:74
|
2318 |
+
#: modules/woocommerce/widgets/woo-products.php:823
|
2319 |
+
#: modules/woocommerce/widgets/woo-products.php:870
|
2320 |
+
#: modules/woocommerce/widgets/woo-products.php:917
|
2321 |
+
#: modules/woocommerce/widgets/woo-products.php:993
|
2322 |
+
#: widgets/premium-banner.php:540 widgets/premium-banner.php:883
|
2323 |
+
#: widgets/premium-blog.php:1169 widgets/premium-blog.php:1225
|
2324 |
+
#: widgets/premium-blog.php:1457 widgets/premium-blog.php:1636
|
2325 |
+
#: widgets/premium-blog.php:1742 widgets/premium-blog.php:1789
|
2326 |
+
#: widgets/premium-blog.php:1885 widgets/premium-blog.php:1980
|
2327 |
+
#: widgets/premium-blog.php:2037 widgets/premium-blog.php:2094
|
2328 |
+
#: widgets/premium-blog.php:2265 widgets/premium-button.php:711
|
2329 |
+
#: widgets/premium-button.php:860 widgets/premium-carousel.php:681
|
2330 |
+
#: widgets/premium-carousel.php:735 widgets/premium-contactform.php:481
|
2331 |
+
#: widgets/premium-contactform.php:536 widgets/premium-countdown.php:460
|
2332 |
+
#: widgets/premium-countdown.php:554 widgets/premium-counter.php:477
|
2333 |
+
#: widgets/premium-counter.php:614 widgets/premium-counter.php:706
|
2334 |
+
#: widgets/premium-fancytext.php:433 widgets/premium-fancytext.php:491
|
2335 |
+
#: widgets/premium-fancytext.php:538 widgets/premium-grid.php:1391
|
2336 |
+
#: widgets/premium-grid.php:1475 widgets/premium-grid.php:1583
|
2337 |
+
#: widgets/premium-grid.php:1630 widgets/premium-grid.php:1681
|
2338 |
+
#: widgets/premium-grid.php:1972 widgets/premium-icon-list.php:951
|
2339 |
+
#: widgets/premium-image-separator.php:387 widgets/premium-lottie.php:418
|
2340 |
+
#: widgets/premium-lottie.php:461 widgets/premium-modalbox.php:886
|
2341 |
+
#: widgets/premium-modalbox.php:991 widgets/premium-modalbox.php:1081
|
2342 |
+
#: widgets/premium-modalbox.php:1148 widgets/premium-modalbox.php:1200
|
2343 |
+
#: widgets/premium-modalbox.php:1317 widgets/premium-modalbox.php:1377
|
2344 |
+
#: widgets/premium-person.php:1170 widgets/premium-person.php:1251
|
2345 |
+
#: widgets/premium-person.php:1366 widgets/premium-pricing-table.php:853
|
2346 |
+
#: widgets/premium-pricing-table.php:1608
|
2347 |
+
#: widgets/premium-pricing-table.php:1951
|
2348 |
+
#: widgets/premium-pricing-table.php:1969 widgets/premium-progressbar.php:912
|
2349 |
+
#: widgets/premium-title.php:717 widgets/premium-title.php:734
|
2350 |
+
#: widgets/premium-videobox.php:1458 widgets/premium-videobox.php:1658
|
2351 |
+
#: widgets/premium-videobox.php:1724 widgets/premium-vscroll.php:640
|
2352 |
+
#: widgets/premium-vscroll.php:734 widgets/premium-vscroll.php:793
|
2353 |
+
msgid "Background Color"
|
2354 |
+
msgstr ""
|
2355 |
+
|
2356 |
+
#: modules/woocommerce/skins/skin-1.php:917
|
2357 |
+
#: modules/woocommerce/skins/skin-1.php:953
|
2358 |
+
#: modules/woocommerce/skins/skin-2.php:963
|
2359 |
+
#: modules/woocommerce/skins/skin-2.php:998
|
2360 |
+
#: modules/woocommerce/skins/skin-3.php:963
|
2361 |
+
#: modules/woocommerce/skins/skin-3.php:998
|
2362 |
+
#: modules/woocommerce/skins/skin-4.php:1012
|
2363 |
+
#: modules/woocommerce/skins/skin-4.php:1047
|
2364 |
+
#: modules/woocommerce/skins/skin-5.php:899
|
2365 |
+
#: modules/woocommerce/skins/skin-5.php:935
|
2366 |
+
#: modules/woocommerce/skins/skin-6.php:969
|
2367 |
+
#: modules/woocommerce/skins/skin-6.php:1004
|
2368 |
+
msgid "Featured Ribbon"
|
2369 |
+
msgstr ""
|
2370 |
+
|
2371 |
+
#: modules/woocommerce/skins/skin-1.php:923
|
2372 |
+
#: modules/woocommerce/skins/skin-2.php:969
|
2373 |
+
#: modules/woocommerce/skins/skin-3.php:969
|
2374 |
+
#: modules/woocommerce/skins/skin-4.php:1018
|
2375 |
+
#: modules/woocommerce/skins/skin-5.php:905
|
2376 |
+
#: modules/woocommerce/skins/skin-6.php:975
|
2377 |
+
msgid "Show Featured Ribbon"
|
2378 |
+
msgstr ""
|
2379 |
+
|
2380 |
+
#: modules/woocommerce/skins/skin-1.php:932
|
2381 |
+
#: modules/woocommerce/skins/skin-2.php:978
|
2382 |
+
#: modules/woocommerce/skins/skin-3.php:978
|
2383 |
+
#: modules/woocommerce/skins/skin-4.php:1027
|
2384 |
+
#: modules/woocommerce/skins/skin-5.php:914
|
2385 |
+
#: modules/woocommerce/skins/skin-6.php:984
|
2386 |
+
msgid "Hot"
|
2387 |
+
msgstr ""
|
2388 |
+
|
2389 |
+
#: modules/woocommerce/skins/skin-1.php:1073
|
2390 |
+
#: modules/woocommerce/skins/skin-2.php:134
|
2391 |
+
#: modules/woocommerce/skins/skin-3.php:134
|
2392 |
+
#: modules/woocommerce/skins/skin-4.php:159
|
2393 |
+
#: modules/woocommerce/skins/skin-5.php:1210
|
2394 |
+
#: modules/woocommerce/skins/skin-6.php:200
|
2395 |
+
msgid "Excerpt"
|
2396 |
+
msgstr ""
|
2397 |
+
|
2398 |
+
#: modules/woocommerce/skins/skin-2.php:44
|
2399 |
+
msgid "Skin 2"
|
2400 |
+
msgstr ""
|
2401 |
+
|
2402 |
+
#: modules/woocommerce/skins/skin-2.php:418
|
2403 |
+
#: modules/woocommerce/skins/skin-3.php:418
|
2404 |
+
#: modules/woocommerce/skins/skin-4.php:456
|
2405 |
+
#: modules/woocommerce/skins/skin-6.php:428
|
2406 |
+
msgid "Star Color"
|
2407 |
+
msgstr ""
|
2408 |
+
|
2409 |
+
#: modules/woocommerce/skins/skin-2.php:428
|
2410 |
+
#: modules/woocommerce/skins/skin-3.php:428
|
2411 |
+
#: modules/woocommerce/skins/skin-4.php:466
|
2412 |
+
#: modules/woocommerce/skins/skin-6.php:438
|
2413 |
+
msgid "Empty Star Color"
|
2414 |
+
msgstr ""
|
2415 |
+
|
2416 |
+
#: modules/woocommerce/skins/skin-2.php:804
|
2417 |
+
#: modules/woocommerce/skins/skin-3.php:804
|
2418 |
+
#: modules/woocommerce/skins/skin-4.php:848
|
2419 |
+
#: modules/woocommerce/skins/skin-6.php:820
|
2420 |
+
msgid "Please make sure that Display Options includes CTA"
|
2421 |
+
msgstr ""
|
2422 |
+
|
2423 |
+
#: modules/woocommerce/skins/skin-2.php:820
|
2424 |
+
#: modules/woocommerce/skins/skin-3.php:820
|
2425 |
+
msgid "Reverse Buttons"
|
2426 |
+
msgstr ""
|
2427 |
+
|
2428 |
+
#: modules/woocommerce/skins/skin-3.php:44
|
2429 |
+
msgid "Skin 3"
|
2430 |
+
msgstr ""
|
2431 |
+
|
2432 |
+
#: modules/woocommerce/skins/skin-4.php:44
|
2433 |
+
msgid "Skin 4"
|
2434 |
+
msgstr ""
|
2435 |
+
|
2436 |
+
#: modules/woocommerce/skins/skin-4.php:108
|
2437 |
+
#: widgets/premium-image-scroll.php:468 widgets/premium-videobox.php:723
|
2438 |
+
#: widgets/premium-videobox.php:965
|
2439 |
+
msgid "Overlay"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: modules/woocommerce/skins/skin-4.php:236
|
2443 |
+
msgid "Below Content"
|
2444 |
+
msgstr ""
|
2445 |
+
|
2446 |
+
#: modules/woocommerce/skins/skin-5.php:44
|
2447 |
+
msgid "Skin 5"
|
2448 |
+
msgstr ""
|
2449 |
+
|
2450 |
+
#: modules/woocommerce/skins/skin-6.php:43
|
2451 |
+
msgid "Skin 6"
|
2452 |
+
msgstr ""
|
2453 |
+
|
2454 |
+
#: modules/woocommerce/skins/skin-6.php:107
|
2455 |
+
#: modules/woocommerce/widgets/woo-products.php:103
|
2456 |
+
#: modules/woocommerce/widgets/woo-products.php:114
|
2457 |
+
#: widgets/premium-blog.php:139
|
2458 |
+
msgid "Grid"
|
2459 |
+
msgstr ""
|
2460 |
+
|
2461 |
+
#: modules/woocommerce/skins/skin-6.php:116
|
2462 |
+
msgid "Grid Style"
|
2463 |
+
msgstr ""
|
2464 |
+
|
2465 |
+
#: modules/woocommerce/skins/skin-6.php:119
|
2466 |
+
#: modules/woocommerce/widgets/woo-products.php:151
|
2467 |
+
#: widgets/premium-grid.php:719 widgets/premium-person.php:97
|
2468 |
+
#: widgets/premium-title.php:105
|
2469 |
+
msgid "Style 1"
|
2470 |
+
msgstr ""
|
2471 |
+
|
2472 |
+
#: modules/woocommerce/skins/skin-6.php:120
|
2473 |
+
#: modules/woocommerce/widgets/woo-products.php:152
|
2474 |
+
msgid "style 2"
|
2475 |
+
msgstr ""
|
2476 |
+
|
2477 |
+
#: modules/woocommerce/skins/skin-6.php:121
|
2478 |
+
#: modules/woocommerce/widgets/woo-products.php:153
|
2479 |
+
msgid "style 4"
|
2480 |
+
msgstr ""
|
2481 |
+
|
2482 |
+
#: modules/woocommerce/skins/skin-6.php:122
|
2483 |
+
#: modules/woocommerce/widgets/woo-products.php:129
|
2484 |
+
#: widgets/premium-blog.php:192 widgets/premium-grid.php:176
|
2485 |
+
#: widgets/premium-person.php:281 widgets/premium-videobox.php:246
|
2486 |
+
msgid "4 Columns"
|
2487 |
+
msgstr ""
|
2488 |
+
|
2489 |
+
#: modules/woocommerce/skins/skin-6.php:123
|
2490 |
+
#: modules/woocommerce/widgets/woo-products.php:130
|
2491 |
+
#: widgets/premium-blog.php:193 widgets/premium-grid.php:177
|
2492 |
+
#: widgets/premium-person.php:282 widgets/premium-videobox.php:247
|
2493 |
+
msgid "5 Columns"
|
2494 |
+
msgstr ""
|
2495 |
+
|
2496 |
+
#: modules/woocommerce/skins/skin-6.php:124
|
2497 |
+
#: modules/woocommerce/widgets/woo-products.php:131
|
2498 |
+
#: widgets/premium-blog.php:194 widgets/premium-grid.php:178
|
2499 |
+
#: widgets/premium-person.php:283 widgets/premium-videobox.php:248
|
2500 |
+
msgid "6 Columns"
|
2501 |
+
msgstr ""
|
2502 |
+
|
2503 |
+
#: modules/woocommerce/skins/skin-6.php:133
|
2504 |
+
#: modules/woocommerce/widgets/woo-products.php:192
|
2505 |
+
msgid "Products Per Page"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: modules/woocommerce/skins/skin-6.php:134
|
2509 |
+
#: modules/woocommerce/widgets/woo-products.php:193
|
2510 |
+
msgid "Choose how many products do you want to be displayed per page"
|
2511 |
+
msgstr ""
|
2512 |
+
|
2513 |
+
#: modules/woocommerce/skins/skin-6.php:207
|
2514 |
+
msgid "Add To Cart"
|
2515 |
+
msgstr ""
|
2516 |
+
|
2517 |
+
#: modules/woocommerce/templates/loop/featured-ribbon.php:12
|
2518 |
+
#: widgets/premium-icon-list.php:173 widgets/premium-icon-list.php:313
|
2519 |
+
msgid "New"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: modules/woocommerce/templates/loop/sale-ribbon.php:14
|
2523 |
+
msgid "Sale!"
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: modules/woocommerce/templates/product-1.php:35
|
2527 |
+
#: modules/woocommerce/templates/product-2.php:33
|
2528 |
+
#: modules/woocommerce/templates/product-3.php:32
|
2529 |
+
#: modules/woocommerce/templates/product-4.php:35
|
2530 |
+
#: modules/woocommerce/templates/product-5.php:33
|
2531 |
+
#: modules/woocommerce/templates/product-6.php:33
|
2532 |
+
msgid "Out of stock"
|
2533 |
+
msgstr ""
|
2534 |
+
|
2535 |
+
#: modules/woocommerce/templates/quick-view-product-image.php:54
|
2536 |
+
msgid "Placeholder"
|
2537 |
+
msgstr ""
|
2538 |
+
|
2539 |
+
#: modules/woocommerce/widgets/woo-products.php:50
|
2540 |
+
msgid "Products"
|
2541 |
+
msgstr ""
|
2542 |
+
|
2543 |
+
#: modules/woocommerce/widgets/woo-products.php:99 widgets/premium-blog.php:147
|
2544 |
+
#: widgets/premium-grid.php:95
|
2545 |
+
msgid "Layout"
|
2546 |
+
msgstr ""
|
2547 |
+
|
2548 |
+
#: modules/woocommerce/widgets/woo-products.php:104
|
2549 |
+
#: widgets/premium-grid.php:106
|
2550 |
+
msgid "Metro"
|
2551 |
+
msgstr ""
|
2552 |
+
|
2553 |
+
#: modules/woocommerce/widgets/woo-products.php:123
|
2554 |
+
msgid "Products Per Row"
|
2555 |
+
msgstr ""
|
2556 |
+
|
2557 |
+
#: modules/woocommerce/widgets/woo-products.php:126
|
2558 |
+
#: widgets/premium-grid.php:173 widgets/premium-person.php:278
|
2559 |
+
#: widgets/premium-videobox.php:243
|
2560 |
+
msgid "1 Column"
|
2561 |
+
msgstr ""
|
2562 |
+
|
2563 |
+
#: modules/woocommerce/widgets/woo-products.php:127
|
2564 |
+
#: widgets/premium-blog.php:190 widgets/premium-grid.php:174
|
2565 |
+
#: widgets/premium-person.php:279 widgets/premium-videobox.php:244
|
2566 |
+
msgid "2 Columns"
|
2567 |
+
msgstr ""
|
2568 |
+
|
2569 |
+
#: modules/woocommerce/widgets/woo-products.php:128
|
2570 |
+
#: widgets/premium-blog.php:191 widgets/premium-grid.php:175
|
2571 |
+
#: widgets/premium-person.php:280 widgets/premium-videobox.php:245
|
2572 |
+
msgid "3 Columns"
|
2573 |
+
msgstr ""
|
2574 |
+
|
2575 |
+
#: modules/woocommerce/widgets/woo-products.php:148
|
2576 |
+
msgid "Metro Style"
|
2577 |
+
msgstr ""
|
2578 |
+
|
2579 |
+
#: modules/woocommerce/widgets/woo-products.php:166
|
2580 |
+
msgid "Width Pattern"
|
2581 |
+
msgstr ""
|
2582 |
+
|
2583 |
+
#: modules/woocommerce/widgets/woo-products.php:167
|
2584 |
+
msgid ""
|
2585 |
+
"Each row is divided into 12 cells. Add widths for the products separated by "
|
2586 |
+
"comma, for example: 6,3,3"
|
2587 |
+
msgstr ""
|
2588 |
+
|
2589 |
+
#: modules/woocommerce/widgets/woo-products.php:179
|
2590 |
+
msgid "Height Pattern"
|
2591 |
+
msgstr ""
|
2592 |
+
|
2593 |
+
#: modules/woocommerce/widgets/woo-products.php:180
|
2594 |
+
msgid ""
|
2595 |
+
"Each row is divided into 12 cells. Add heights for the products separated by "
|
2596 |
+
"comma, for example: 6,3,3"
|
2597 |
+
msgstr ""
|
2598 |
+
|
2599 |
+
#: modules/woocommerce/widgets/woo-products.php:204
|
2600 |
+
msgid "Carousel Options"
|
2601 |
+
msgstr ""
|
2602 |
+
|
2603 |
+
#: modules/woocommerce/widgets/woo-products.php:214
|
2604 |
+
msgid "Show Arrows"
|
2605 |
+
msgstr ""
|
2606 |
+
|
2607 |
+
#: modules/woocommerce/widgets/woo-products.php:222
|
2608 |
+
#: widgets/premium-blog.php:1005 widgets/premium-person.php:851
|
2609 |
+
msgid "Arrows Position"
|
2610 |
+
msgstr ""
|
2611 |
+
|
2612 |
+
#: modules/woocommerce/widgets/woo-products.php:247
|
2613 |
+
msgid "Show Dots"
|
2614 |
+
msgstr ""
|
2615 |
+
|
2616 |
+
#: modules/woocommerce/widgets/woo-products.php:255
|
2617 |
+
#: widgets/premium-carousel.php:168 widgets/premium-grid.php:1329
|
2618 |
+
#: widgets/premium-pricing-table.php:647 widgets/premium-videobox.php:466
|
2619 |
+
#: widgets/premium-vscroll.php:180
|
2620 |
+
msgid "Position"
|
2621 |
+
msgstr ""
|
2622 |
+
|
2623 |
+
#: modules/woocommerce/widgets/woo-products.php:259
|
2624 |
+
#: widgets/premium-carousel.php:172
|
2625 |
+
msgid "Below Slides"
|
2626 |
+
msgstr ""
|
2627 |
+
|
2628 |
+
#: modules/woocommerce/widgets/woo-products.php:260
|
2629 |
+
#: widgets/premium-carousel.php:173
|
2630 |
+
msgid "On Slides"
|
2631 |
+
msgstr ""
|
2632 |
+
|
2633 |
+
#: modules/woocommerce/widgets/woo-products.php:270
|
2634 |
+
#: widgets/premium-carousel.php:183 widgets/premium-dual-header.php:326
|
2635 |
+
#: widgets/premium-pricing-table.php:669 widgets/premium-pricing-table.php:695
|
2636 |
+
#: widgets/premium-title.php:575
|
2637 |
+
msgid "Horizontal Offset"
|
2638 |
+
msgstr ""
|
2639 |
+
|
2640 |
+
#: modules/woocommerce/widgets/woo-products.php:285
|
2641 |
+
#: widgets/premium-carousel.php:198 widgets/premium-dual-header.php:354
|
2642 |
+
#: widgets/premium-pricing-table.php:721 widgets/premium-title.php:603
|
2643 |
+
msgid "Vertical Offset"
|
2644 |
+
msgstr ""
|
2645 |
+
|
2646 |
+
#: modules/woocommerce/widgets/woo-products.php:305
|
2647 |
+
msgid "Number of Products"
|
2648 |
+
msgstr ""
|
2649 |
+
|
2650 |
+
#: modules/woocommerce/widgets/woo-products.php:316
|
2651 |
+
msgid "Products to Show"
|
2652 |
+
msgstr ""
|
2653 |
+
|
2654 |
+
#: modules/woocommerce/widgets/woo-products.php:318
|
2655 |
+
msgid ""
|
2656 |
+
"Make sure to have the number of products greater than the number of products "
|
2657 |
+
"to show"
|
2658 |
+
msgstr ""
|
2659 |
+
|
2660 |
+
#: modules/woocommerce/widgets/woo-products.php:327
|
2661 |
+
msgid "Products to Scroll"
|
2662 |
+
msgstr ""
|
2663 |
+
|
2664 |
+
#: modules/woocommerce/widgets/woo-products.php:335
|
2665 |
+
msgid "Autoplay Slides"
|
2666 |
+
msgstr ""
|
2667 |
+
|
2668 |
+
#: modules/woocommerce/widgets/woo-products.php:343
|
2669 |
+
msgid "Autoplay Interval"
|
2670 |
+
msgstr ""
|
2671 |
+
|
2672 |
+
#: modules/woocommerce/widgets/woo-products.php:354
|
2673 |
+
#: widgets/premium-carousel.php:402 widgets/premium-fancytext.php:357
|
2674 |
+
msgid "Pause on Hover"
|
2675 |
+
msgstr ""
|
2676 |
+
|
2677 |
+
#: modules/woocommerce/widgets/woo-products.php:364
|
2678 |
+
#: widgets/premium-carousel.php:280
|
2679 |
+
msgid "Infinite Loop"
|
2680 |
+
msgstr ""
|
2681 |
+
|
2682 |
+
#: modules/woocommerce/widgets/woo-products.php:373
|
2683 |
+
#: widgets/premium-blog.php:949 widgets/premium-carousel.php:329
|
2684 |
+
#: widgets/premium-person.php:838
|
2685 |
+
msgid "Autoplay Speed"
|
2686 |
+
msgstr ""
|
2687 |
+
|
2688 |
+
#: modules/woocommerce/widgets/woo-products.php:383
|
2689 |
+
#: widgets/premium-blog.php:224
|
2690 |
+
msgid "Query"
|
2691 |
+
msgstr ""
|
2692 |
+
|
2693 |
+
#: modules/woocommerce/widgets/woo-products.php:389
|
2694 |
+
#: widgets/premium-blog.php:232 widgets/premium-videobox.php:192
|
2695 |
+
msgid "Source"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: modules/woocommerce/widgets/woo-products.php:398
|
2699 |
+
msgid "Select Categories to Be"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: modules/woocommerce/widgets/woo-products.php:402
|
2703 |
+
#: modules/woocommerce/widgets/woo-products.php:429
|
2704 |
+
msgid "Included"
|
2705 |
+
msgstr ""
|
2706 |
+
|
2707 |
+
#: modules/woocommerce/widgets/woo-products.php:403
|
2708 |
+
#: modules/woocommerce/widgets/woo-products.php:430
|
2709 |
+
msgid "Excluded"
|
2710 |
+
msgstr ""
|
2711 |
+
|
2712 |
+
#: modules/woocommerce/widgets/woo-products.php:413
|
2713 |
+
msgid "Select Categories"
|
2714 |
+
msgstr ""
|
2715 |
+
|
2716 |
+
#: modules/woocommerce/widgets/woo-products.php:425
|
2717 |
+
msgid "Select Tags to Be"
|
2718 |
+
msgstr ""
|
2719 |
+
|
2720 |
+
#: modules/woocommerce/widgets/woo-products.php:440
|
2721 |
+
msgid "Select Tags"
|
2722 |
+
msgstr ""
|
2723 |
+
|
2724 |
+
#: modules/woocommerce/widgets/woo-products.php:452
|
2725 |
+
#: widgets/premium-blog.php:360
|
2726 |
+
msgid "Offset"
|
2727 |
+
msgstr ""
|
2728 |
+
|
2729 |
+
#: modules/woocommerce/widgets/woo-products.php:455
|
2730 |
+
msgid "Set the starting index."
|
2731 |
+
msgstr ""
|
2732 |
+
|
2733 |
+
#: modules/woocommerce/widgets/woo-products.php:464
|
2734 |
+
msgid "Exclude"
|
2735 |
+
msgstr ""
|
2736 |
+
|
2737 |
+
#: modules/woocommerce/widgets/woo-products.php:475
|
2738 |
+
msgid "Select Products"
|
2739 |
+
msgstr ""
|
2740 |
+
|
2741 |
+
#: modules/woocommerce/widgets/woo-products.php:479
|
2742 |
+
msgid "Select products to exclude from the query."
|
2743 |
+
msgstr ""
|
2744 |
+
|
2745 |
+
#: modules/woocommerce/widgets/woo-products.php:488
|
2746 |
+
msgid "Exclude Current Product"
|
2747 |
+
msgstr ""
|
2748 |
+
|
2749 |
+
#: modules/woocommerce/widgets/woo-products.php:490
|
2750 |
+
#: widgets/premium-blog.php:352 widgets/premium-blog.php:373
|
2751 |
+
msgid "Yes"
|
2752 |
+
msgstr ""
|
2753 |
+
|
2754 |
+
#: modules/woocommerce/widgets/woo-products.php:491
|
2755 |
+
#: widgets/premium-blog.php:353 widgets/premium-blog.php:374
|
2756 |
+
msgid "No"
|
2757 |
+
msgstr ""
|
2758 |
+
|
2759 |
+
#: modules/woocommerce/widgets/woo-products.php:492
|
2760 |
+
msgid "This option will remove the current from the query."
|
2761 |
+
msgstr ""
|
2762 |
+
|
2763 |
+
#: modules/woocommerce/widgets/woo-products.php:501
|
2764 |
+
msgid "Advanced"
|
2765 |
+
msgstr ""
|
2766 |
+
|
2767 |
+
#: modules/woocommerce/widgets/woo-products.php:512
|
2768 |
+
msgid "Filter By"
|
2769 |
+
msgstr ""
|
2770 |
+
|
2771 |
+
#: modules/woocommerce/widgets/woo-products.php:516
|
2772 |
+
#: modules/woocommerce/widgets/woo-products.php:744
|
2773 |
+
#: widgets/premium-banner.php:222 widgets/premium-blog.php:385
|
2774 |
+
#: widgets/premium-blog.php:450 widgets/premium-blog.php:470
|
2775 |
+
#: widgets/premium-button.php:144 widgets/premium-grid.php:768
|
2776 |
+
#: widgets/premium-icon-list.php:889 widgets/premium-image-button.php:141
|
2777 |
+
#: widgets/premium-lottie.php:146 widgets/premium-modalbox.php:120
|
2778 |
+
#: widgets/premium-person.php:193 widgets/premium-progressbar.php:380
|
2779 |
+
#: widgets/premium-videobox.php:776
|
2780 |
+
msgid "None"
|
2781 |
+
msgstr ""
|
2782 |
+
|
2783 |
+
#: modules/woocommerce/widgets/woo-products.php:517
|
2784 |
+
msgid "Featured"
|
2785 |
+
msgstr ""
|
2786 |
+
|
2787 |
+
#: modules/woocommerce/widgets/woo-products.php:518
|
2788 |
+
msgid "Sale"
|
2789 |
+
msgstr ""
|
2790 |
+
|
2791 |
+
#: modules/woocommerce/widgets/woo-products.php:528
|
2792 |
+
msgid "Order by"
|
2793 |
+
msgstr ""
|
2794 |
+
|
2795 |
+
#: modules/woocommerce/widgets/woo-products.php:533
|
2796 |
+
#: widgets/premium-blog.php:390
|
2797 |
+
msgid "Date"
|
2798 |
+
msgstr ""
|
2799 |
+
|
2800 |
+
#: modules/woocommerce/widgets/woo-products.php:534
|
2801 |
+
msgid "Popularity"
|
2802 |
+
msgstr ""
|
2803 |
+
|
2804 |
+
#: modules/woocommerce/widgets/woo-products.php:537
|
2805 |
+
#: widgets/premium-blog.php:392
|
2806 |
+
msgid "Random"
|
2807 |
+
msgstr ""
|
2808 |
+
|
2809 |
+
#: modules/woocommerce/widgets/woo-products.php:538
|
2810 |
+
msgid "Menu Order"
|
2811 |
+
msgstr ""
|
2812 |
+
|
2813 |
+
#: modules/woocommerce/widgets/woo-products.php:548
|
2814 |
+
#: widgets/premium-blog.php:401
|
2815 |
+
msgid "Order"
|
2816 |
+
msgstr ""
|
2817 |
+
|
2818 |
+
#: modules/woocommerce/widgets/woo-products.php:552
|
2819 |
+
#: widgets/premium-blog.php:405
|
2820 |
+
msgid "Descending"
|
2821 |
+
msgstr ""
|
2822 |
+
|
2823 |
+
#: modules/woocommerce/widgets/woo-products.php:553
|
2824 |
+
#: widgets/premium-blog.php:406
|
2825 |
+
msgid "Ascending"
|
2826 |
+
msgstr ""
|
2827 |
+
|
2828 |
+
#: modules/woocommerce/widgets/woo-products.php:563
|
2829 |
+
msgid "Empty Query Message"
|
2830 |
+
msgstr ""
|
2831 |
+
|
2832 |
+
#: modules/woocommerce/widgets/woo-products.php:565
|
2833 |
+
msgid "No products were found for this query."
|
2834 |
+
msgstr ""
|
2835 |
+
|
2836 |
+
#: modules/woocommerce/widgets/woo-products.php:583
|
2837 |
+
#: widgets/premium-blog.php:1043
|
2838 |
+
msgid "Enable Pagination"
|
2839 |
+
msgstr ""
|
2840 |
+
|
2841 |
+
#: modules/woocommerce/widgets/woo-products.php:593
|
2842 |
+
msgid "Numbers"
|
2843 |
+
msgstr ""
|
2844 |
+
|
2845 |
+
#: modules/woocommerce/widgets/woo-products.php:594
|
2846 |
+
msgid "Numbers + Pre/Next Arrow"
|
2847 |
+
msgstr ""
|
2848 |
+
|
2849 |
+
#: modules/woocommerce/widgets/woo-products.php:605
|
2850 |
+
msgid "Previous Label"
|
2851 |
+
msgstr ""
|
2852 |
+
|
2853 |
+
#: modules/woocommerce/widgets/woo-products.php:606
|
2854 |
+
msgid "←"
|
2855 |
+
msgstr ""
|
2856 |
+
|
2857 |
+
#: modules/woocommerce/widgets/woo-products.php:616
|
2858 |
+
msgid "Next String"
|
2859 |
+
msgstr ""
|
2860 |
+
|
2861 |
+
#: modules/woocommerce/widgets/woo-products.php:617
|
2862 |
+
msgid "→"
|
2863 |
+
msgstr ""
|
2864 |
+
|
2865 |
+
#: modules/woocommerce/widgets/woo-products.php:665
|
2866 |
+
#: widgets/premium-blog.php:572 widgets/premium-videobox.php:1236
|
2867 |
+
msgid "Rows Spacing"
|
2868 |
+
msgstr ""
|
2869 |
+
|
2870 |
+
#: modules/woocommerce/widgets/woo-products.php:685
|
2871 |
+
#: widgets/premium-blog.php:594 widgets/premium-videobox.php:1262
|
2872 |
+
msgid "Columns Spacing"
|
2873 |
+
msgstr ""
|
2874 |
+
|
2875 |
+
#: modules/woocommerce/widgets/woo-products.php:741
|
2876 |
+
msgid "Image Hover Style"
|
2877 |
+
msgstr ""
|
2878 |
+
|
2879 |
+
#: modules/woocommerce/widgets/woo-products.php:745
|
2880 |
+
msgid "Swap Images"
|
2881 |
+
msgstr ""
|
2882 |
+
|
2883 |
+
#: modules/woocommerce/widgets/woo-products.php:746
|
2884 |
+
#: widgets/premium-banner.php:223 widgets/premium-blog.php:471
|
2885 |
+
#: widgets/premium-grid.php:769 widgets/premium-person.php:194
|
2886 |
+
#: widgets/premium-videobox.php:777
|
2887 |
+
msgid "Zoom In"
|
2888 |
+
msgstr ""
|
2889 |
+
|
2890 |
+
#: modules/woocommerce/widgets/woo-products.php:747
|
2891 |
+
#: widgets/premium-banner.php:224 widgets/premium-blog.php:472
|
2892 |
+
#: widgets/premium-fancytext.php:172 widgets/premium-grid.php:770
|
2893 |
+
#: widgets/premium-person.php:195 widgets/premium-videobox.php:778
|
2894 |
+
msgid "Zoom Out"
|
2895 |
+
msgstr ""
|
2896 |
+
|
2897 |
+
#: modules/woocommerce/widgets/woo-products.php:748
|
2898 |
+
#: widgets/premium-banner.php:225 widgets/premium-blog.php:473
|
2899 |
+
#: widgets/premium-grid.php:771 widgets/premium-person.php:196
|
2900 |
+
#: widgets/premium-videobox.php:779
|
2901 |
+
msgid "Scale"
|
2902 |
+
msgstr ""
|
2903 |
+
|
2904 |
+
#: modules/woocommerce/widgets/woo-products.php:749
|
2905 |
+
#: widgets/premium-banner.php:226 widgets/premium-blog.php:474
|
2906 |
+
#: widgets/premium-grid.php:772 widgets/premium-person.php:197
|
2907 |
+
#: widgets/premium-videobox.php:780
|
2908 |
+
msgid "Grayscale"
|
2909 |
+
msgstr ""
|
2910 |
+
|
2911 |
+
#: modules/woocommerce/widgets/woo-products.php:750
|
2912 |
+
#: widgets/premium-banner.php:228 widgets/premium-blog.php:476
|
2913 |
+
#: widgets/premium-grid.php:774 widgets/premium-person.php:199
|
2914 |
+
#: widgets/premium-videobox.php:782
|
2915 |
+
msgid "Bright"
|
2916 |
+
msgstr ""
|
2917 |
+
|
2918 |
+
#: modules/woocommerce/widgets/woo-products.php:751
|
2919 |
+
#: widgets/premium-banner.php:229 widgets/premium-blog.php:477
|
2920 |
+
#: widgets/premium-grid.php:775 widgets/premium-person.php:200
|
2921 |
+
#: widgets/premium-videobox.php:783
|
2922 |
+
msgid "Sepia"
|
2923 |
+
msgstr ""
|
2924 |
+
|
2925 |
+
#: modules/woocommerce/widgets/woo-products.php:752
|
2926 |
+
#: widgets/premium-blog.php:478 widgets/premium-grid.php:776
|
2927 |
+
#: widgets/premium-person.php:201 widgets/premium-videobox.php:784
|
2928 |
+
msgid "Translate"
|
2929 |
+
msgstr ""
|
2930 |
+
|
2931 |
+
#: modules/woocommerce/widgets/woo-products.php:901
|
2932 |
+
#: widgets/premium-blog.php:1205 widgets/premium-blog.php:2073
|
2933 |
+
#: widgets/premium-grid.php:1661 widgets/premium-vscroll.php:759
|
2934 |
+
msgid "Active"
|
2935 |
+
msgstr ""
|
2936 |
+
|
2937 |
+
#: modules/woocommerce/widgets/woo-products.php:1056
|
2938 |
+
#: widgets/premium-blog.php:2213 widgets/premium-carousel.php:823
|
2939 |
+
msgid "Active Color"
|
2940 |
+
msgstr ""
|
2941 |
+
|
2942 |
+
#: modules/woocommerce/widgets/woo-products.php:1078
|
2943 |
+
msgid "All Products"
|
2944 |
+
msgstr ""
|
2945 |
+
|
2946 |
+
#: modules/woocommerce/widgets/woo-products.php:1079
|
2947 |
+
msgid "Custom Query"
|
2948 |
+
msgstr ""
|
2949 |
+
|
2950 |
+
#: modules/woocommerce/widgets/woo-products.php:1080
|
2951 |
+
msgid "Main Query"
|
2952 |
+
msgstr ""
|
2953 |
+
|
2954 |
+
#: modules/woocommerce/widgets/woo-products.php:1084
|
2955 |
+
msgid "Related Products"
|
2956 |
+
msgstr ""
|
2957 |
+
|
2958 |
+
#: widgets/premium-banner.php:88 widgets/premium-counter.php:228
|
2959 |
#: widgets/premium-grid.php:409 widgets/premium-modalbox.php:150
|
2960 |
+
#: widgets/premium-progressbar.php:241 widgets/premium-title.php:161
|
2961 |
msgid "Upload Image"
|
2962 |
msgstr ""
|
2963 |
|
2966 |
msgstr ""
|
2967 |
|
2968 |
#: widgets/premium-banner.php:110 widgets/premium-banner.php:413
|
2969 |
+
#: widgets/premium-blog.php:722 widgets/premium-button.php:109
|
2970 |
#: widgets/premium-dual-header.php:137 widgets/premium-dual-header.php:161
|
2971 |
+
#: widgets/premium-grid.php:599 widgets/premium-icon-list.php:231
|
2972 |
+
#: widgets/premium-image-button.php:106 widgets/premium-image-scroll.php:129
|
2973 |
+
#: widgets/premium-image-separator.php:242 widgets/premium-lottie.php:291
|
2974 |
+
#: widgets/premium-lottie.php:314 widgets/premium-pricing-table.php:506
|
2975 |
+
#: widgets/premium-testimonials.php:214 widgets/premium-testimonials.php:222
|
2976 |
+
#: widgets/premium-title.php:483 widgets/premium-title.php:506
|
2977 |
+
#: widgets/premium-videobox.php:101 widgets/premium-videobox.php:150
|
2978 |
msgid "Link"
|
2979 |
msgstr ""
|
2980 |
|
2997 |
#: widgets/premium-banner.php:142 widgets/premium-banner.php:400
|
2998 |
#: widgets/premium-banner.php:431 widgets/premium-button.php:100
|
2999 |
#: widgets/premium-button.php:126 widgets/premium-dual-header.php:149
|
3000 |
+
#: widgets/premium-dual-header.php:179 widgets/premium-grid.php:588
|
3001 |
+
#: widgets/premium-grid.php:612 widgets/premium-icon-list.php:245
|
3002 |
+
#: widgets/premium-icon-list.php:273 widgets/premium-image-button.php:97
|
3003 |
+
#: widgets/premium-image-button.php:123 widgets/premium-image-scroll.php:141
|
3004 |
+
#: widgets/premium-image-scroll.php:167 widgets/premium-image-separator.php:254
|
3005 |
+
#: widgets/premium-image-separator.php:266 widgets/premium-lottie.php:302
|
3006 |
+
#: widgets/premium-lottie.php:332 widgets/premium-pricing-table.php:497
|
3007 |
+
#: widgets/premium-pricing-table.php:524 widgets/premium-title.php:494
|
3008 |
+
#: widgets/premium-title.php:524
|
3009 |
msgid "Existing Page"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: widgets/premium-banner.php:156 widgets/premium-icon-list.php:287
|
3013 |
+
#: widgets/premium-image-scroll.php:180
|
3014 |
msgid "Link Title"
|
3015 |
msgstr ""
|
3016 |
|
3062 |
msgid "Effect 6"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
+
#: widgets/premium-banner.php:201
|
3066 |
+
msgid "Effect 7"
|
|
|
|
|
|
|
|
|
3067 |
msgstr ""
|
3068 |
|
3069 |
+
#: widgets/premium-banner.php:202
|
3070 |
+
msgid "Effect 8"
|
|
|
|
|
3071 |
msgstr ""
|
3072 |
|
3073 |
+
#: widgets/premium-banner.php:203
|
3074 |
+
msgid "Effect 9"
|
|
|
|
|
|
|
|
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: widgets/premium-banner.php:204
|
3078 |
+
msgid "Effect 10"
|
|
|
3079 |
msgstr ""
|
3080 |
|
3081 |
+
#: widgets/premium-banner.php:211
|
3082 |
+
msgid "Always Hovered"
|
|
|
|
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: widgets/premium-banner.php:213
|
3086 |
+
msgid "Choose if you want the effect to be always triggered"
|
|
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: widgets/premium-banner.php:219 widgets/premium-blog.php:466
|
3090 |
+
#: widgets/premium-button.php:140 widgets/premium-grid.php:764
|
3091 |
+
#: widgets/premium-icon-list.php:886 widgets/premium-image-button.php:137
|
3092 |
+
#: widgets/premium-person.php:190 widgets/premium-videobox.php:772
|
3093 |
+
msgid "Hover Effect"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: widgets/premium-banner.php:227 widgets/premium-blog.php:475
|
3097 |
+
#: widgets/premium-grid.php:773 widgets/premium-icon-list.php:890
|
3098 |
+
#: widgets/premium-image-scroll.php:341 widgets/premium-person.php:198
|
3099 |
+
#: widgets/premium-videobox.php:781 widgets/premium-videobox.php:940
|
3100 |
msgid "Blur"
|
3101 |
msgstr ""
|
3102 |
|
3103 |
+
#: widgets/premium-banner.php:237 widgets/premium-blog.php:504
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3104 |
#: widgets/premium-contactform.php:151 widgets/premium-contactform.php:230
|
3105 |
#: widgets/premium-grid.php:114 widgets/premium-grid.php:439
|
3106 |
+
#: widgets/premium-grid.php:744 widgets/premium-maps.php:297
|
3107 |
#: widgets/premium-progressbar.php:486 widgets/premium-progressbar.php:869
|
3108 |
msgid "Height"
|
3109 |
msgstr ""
|
3110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3111 |
#: widgets/premium-banner.php:244
|
3112 |
msgid ""
|
3113 |
"Choose if you want to set a custom height for the banner or keep it as it is"
|
3125 |
msgid "Vertical Align"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: widgets/premium-banner.php:270 widgets/premium-blog.php:648
|
3129 |
+
#: widgets/premium-counter.php:286 widgets/premium-dual-header.php:264
|
3130 |
+
#: widgets/premium-icon-list.php:740 widgets/premium-lottie.php:204
|
3131 |
#: widgets/premium-pricing-table.php:1146 widgets/premium-testimonials.php:248
|
3132 |
+
#: widgets/premium-title.php:219 widgets/premium-title.php:364
|
3133 |
#: widgets/premium-vscroll.php:289
|
3134 |
msgid "Top"
|
3135 |
msgstr ""
|
3138 |
msgid "Middle"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: widgets/premium-banner.php:272 widgets/premium-blog.php:656
|
3142 |
+
#: widgets/premium-dual-header.php:272 widgets/premium-lottie.php:203
|
3143 |
+
#: widgets/premium-pricing-table.php:1154 widgets/premium-title.php:365
|
3144 |
+
#: widgets/premium-vscroll.php:291
|
3145 |
msgid "Bottom"
|
3146 |
msgstr ""
|
3147 |
|
3154 |
msgstr ""
|
3155 |
|
3156 |
#: widgets/premium-banner.php:292 widgets/premium-button.php:308
|
3157 |
+
#: widgets/premium-button.php:381 widgets/premium-counter.php:269
|
3158 |
+
#: widgets/premium-icon-list.php:216 widgets/premium-image-button.php:298
|
3159 |
+
#: widgets/premium-image-button.php:371 widgets/premium-image-separator.php:156
|
3160 |
+
#: widgets/premium-lottie.php:124 widgets/premium-modalbox.php:196
|
3161 |
+
#: widgets/premium-modalbox.php:633 widgets/premium-pricing-table.php:141
|
3162 |
+
#: widgets/premium-pricing-table.php:336 widgets/premium-progressbar.php:282
|
3163 |
+
#: widgets/premium-title.php:202
|
3164 |
msgid "Reverse"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: widgets/premium-banner.php:303 widgets/premium-carousel.php:349
|
3168 |
msgid "Extra Class"
|
3169 |
msgstr ""
|
3170 |
|
3174 |
"this class for your customizations."
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: widgets/premium-banner.php:315 widgets/premium-carousel.php:114
|
3178 |
#: widgets/premium-modalbox.php:98 widgets/premium-modalbox.php:242
|
3179 |
+
#: widgets/premium-modalbox.php:264 widgets/premium-person.php:1244
|
3180 |
+
#: widgets/premium-testimonials.php:261 widgets/premium-testimonials.php:472
|
3181 |
#: widgets/premium-vscroll.php:81
|
3182 |
msgid "Content"
|
3183 |
msgstr ""
|
3190 |
msgid "Premium Banner"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: widgets/premium-banner.php:332 widgets/premium-dual-header.php:102
|
3194 |
#: widgets/premium-pricing-table.php:173 widgets/premium-testimonials.php:112
|
3195 |
+
#: widgets/premium-testimonials.php:193 widgets/premium-title.php:268
|
3196 |
msgid "HTML Tag"
|
3197 |
msgstr ""
|
3198 |
|
3201 |
"Select a heading tag for the title. Headings are defined with H1 to H6 tags"
|
3202 |
msgstr ""
|
3203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3204 |
#: widgets/premium-banner.php:362
|
3205 |
msgid "Give the description to this banner"
|
3206 |
msgstr ""
|
3212 |
msgstr ""
|
3213 |
|
3214 |
#: widgets/premium-banner.php:383 widgets/premium-button.php:86
|
3215 |
+
#: widgets/premium-dual-header.php:296 widgets/premium-fancytext.php:125
|
3216 |
+
#: widgets/premium-icon-list.php:125 widgets/premium-icon-list.php:171
|
3217 |
+
#: widgets/premium-image-button.php:83 widgets/premium-modalbox.php:313
|
3218 |
+
#: widgets/premium-modalbox.php:383 widgets/premium-modalbox.php:592
|
3219 |
+
#: widgets/premium-pricing-table.php:163 widgets/premium-pricing-table.php:274
|
3220 |
+
#: widgets/premium-pricing-table.php:483 widgets/premium-pricing-table.php:578
|
3221 |
+
#: widgets/premium-pricing-table.php:1384
|
3222 |
+
#: widgets/premium-pricing-table.php:1640 widgets/premium-title.php:545
|
3223 |
+
#: widgets/premium-videobox.php:572 widgets/premium-videobox.php:1087
|
3224 |
msgid "Text"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
#: widgets/premium-banner.php:396 widgets/premium-button.php:96
|
3228 |
+
#: widgets/premium-dual-header.php:145 widgets/premium-grid.php:584
|
3229 |
+
#: widgets/premium-image-button.php:93 widgets/premium-lottie.php:298
|
3230 |
+
#: widgets/premium-pricing-table.php:493 widgets/premium-title.php:490
|
3231 |
msgid "Link Type"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
#: widgets/premium-banner.php:399 widgets/premium-button.php:99
|
3235 |
+
#: widgets/premium-dual-header.php:148 widgets/premium-grid.php:587
|
3236 |
+
#: widgets/premium-icon-list.php:244 widgets/premium-icon-list.php:258
|
3237 |
+
#: widgets/premium-image-button.php:96 widgets/premium-image-scroll.php:140
|
3238 |
+
#: widgets/premium-image-scroll.php:153 widgets/premium-image-separator.php:253
|
3239 |
+
#: widgets/premium-image-separator.php:280 widgets/premium-lottie.php:301
|
3240 |
+
#: widgets/premium-pricing-table.php:496 widgets/premium-title.php:493
|
3241 |
+
#: widgets/premium-videobox.php:294
|
3242 |
msgid "URL"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
+
#: widgets/premium-banner.php:475 widgets/premium-grid.php:964
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3246 |
msgid "Responsive"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
#: widgets/premium-banner.php:481 widgets/premium-grid.php:969
|
3250 |
msgid "Responsive Controls"
|
3251 |
msgstr ""
|
3252 |
|
3256 |
"may enable this option which will hide the description text."
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
#: widgets/premium-banner.php:489 widgets/premium-grid.php:976
|
3260 |
msgid "Minimum Size"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: widgets/premium-banner.php:491 widgets/premium-grid.php:978
|
3264 |
msgid "Note: minimum size for extra small screens is 1px."
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
#: widgets/premium-banner.php:501 widgets/premium-grid.php:987
|
3268 |
msgid "Maximum Size"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: widgets/premium-banner.php:503 widgets/premium-grid.php:989
|
3272 |
msgid "Note: maximum size for extra small screens is 767px."
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: widgets/premium-banner.php:515 widgets/premium-button.php:623
|
3276 |
+
#: widgets/premium-carousel.php:447 widgets/premium-countdown.php:407
|
3277 |
+
#: widgets/premium-counter.php:365 widgets/premium-dual-header.php:402
|
3278 |
+
#: widgets/premium-grid.php:1001 widgets/premium-icon-list.php:916
|
3279 |
+
#: widgets/premium-image-button.php:529 widgets/premium-image-scroll.php:480
|
3280 |
+
#: widgets/premium-lottie.php:372 widgets/premium-maps.php:427
|
3281 |
+
#: widgets/premium-modalbox.php:725 widgets/premium-person.php:878
|
3282 |
+
#: widgets/premium-testimonials.php:279 widgets/premium-videobox.php:1161
|
3283 |
+
#: widgets/premium-vscroll.php:422
|
3284 |
+
msgid "Helpful Documentations"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: widgets/premium-banner.php:524 widgets/premium-countdown.php:416
|
3288 |
+
#: widgets/premium-counter.php:374 widgets/premium-dual-header.php:411
|
3289 |
+
#: widgets/premium-icon-list.php:925 widgets/premium-image-scroll.php:489
|
3290 |
+
msgid "Gettings started »"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: widgets/premium-banner.php:550
|
3294 |
+
msgid "Image Opacity"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: widgets/premium-banner.php:570
|
3298 |
+
msgid "Hover Opacity"
|
|
|
|
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: widgets/premium-banner.php:591 widgets/premium-banner.php:623
|
3302 |
+
msgid "Hover Border Width"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: widgets/premium-banner.php:607 widgets/premium-banner.php:639
|
3306 |
+
msgid "Hover Border Color"
|
|
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: widgets/premium-banner.php:664 widgets/premium-blog.php:1353
|
3310 |
+
#: widgets/premium-grid.php:1154 widgets/premium-image-separator.php:343
|
3311 |
+
#: widgets/premium-modalbox.php:779 widgets/premium-person.php:913
|
3312 |
+
msgid "Hover CSS Filters"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3313 |
msgstr ""
|
3314 |
|
3315 |
+
#: widgets/premium-banner.php:691 widgets/premium-dual-header.php:841
|
3316 |
+
#: widgets/premium-image-scroll.php:601 widgets/premium-person.php:931
|
3317 |
+
#: widgets/premium-title.php:1067
|
3318 |
+
msgid "Blend Mode"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: widgets/premium-banner.php:746 widgets/premium-icon-list.php:339
|
3322 |
+
#: widgets/premium-icon-list.php:495 widgets/premium-icon-list.php:595
|
3323 |
+
#: widgets/premium-icon-list.php:1145 widgets/premium-icon-list.php:1378
|
3324 |
msgid "Background"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: widgets/premium-banner.php:749
|
3328 |
msgid "Choose a background color for the title"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: widgets/premium-banner.php:762 widgets/premium-banner.php:814
|
3332 |
+
#: widgets/premium-banner.php:923 widgets/premium-dual-header.php:582
|
3333 |
+
#: widgets/premium-dual-header.php:767 widgets/premium-grid.php:1134
|
3334 |
+
#: widgets/premium-grid.php:1283 widgets/premium-grid.php:1425
|
3335 |
+
#: widgets/premium-grid.php:1509 widgets/premium-maps.php:644
|
3336 |
+
#: widgets/premium-modalbox.php:956 widgets/premium-modalbox.php:1032
|
|
|
|
|
|
|
|
|
3337 |
#: widgets/premium-pricing-table.php:1801
|
3338 |
#: widgets/premium-pricing-table.php:1875
|
3339 |
#: widgets/premium-pricing-table.php:2044
|
3340 |
+
#: widgets/premium-pricing-table.php:2118 widgets/premium-title.php:831
|
3341 |
+
#: widgets/premium-videobox.php:1220 widgets/premium-videobox.php:1484
|
3342 |
+
#: widgets/premium-vscroll.php:666 widgets/premium-vscroll.php:749
|
3343 |
+
#: widgets/premium-vscroll.php:808
|
3344 |
msgid "Shadow"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: widgets/premium-banner.php:893 widgets/premium-blog.php:1467
|
3348 |
+
#: widgets/premium-icon-list.php:963 widgets/premium-image-separator.php:404
|
3349 |
+
#: widgets/premium-person.php:1188
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3350 |
msgid "Hover Background Color"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: widgets/premium-banner.php:955 widgets/premium-image-scroll.php:626
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3354 |
#: widgets/premium-pricing-table.php:906 widgets/premium-pricing-table.php:1324
|
3355 |
#: widgets/premium-pricing-table.php:1471
|
3356 |
+
#: widgets/premium-pricing-table.php:1670 widgets/premium-testimonials.php:595
|
3357 |
+
#: widgets/premium-vscroll.php:634
|
3358 |
msgid "Container"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: widgets/premium-blog.php:93 widgets/premium-grid.php:715
|
|
|
|
|
|
|
|
|
3362 |
msgid "Skin"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: widgets/premium-blog.php:96
|
3366 |
msgid "Classic"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: widgets/premium-blog.php:97
|
3370 |
msgid "Modern"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
+
#: widgets/premium-blog.php:98
|
3374 |
msgid "Cards"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: widgets/premium-blog.php:99
|
3378 |
+
msgid "On Side"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: widgets/premium-blog.php:109
|
3382 |
+
msgid ""
|
3383 |
+
"If content height is larger than image height, then you may need to increase "
|
3384 |
+
"image height from Featured Image tab"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: widgets/premium-blog.php:120
|
3388 |
+
msgid "Content Offset"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: widgets/premium-blog.php:150 widgets/premium-grid.php:104
|
3392 |
msgid "Even"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: widgets/premium-blog.php:151 widgets/premium-grid.php:105
|
3396 |
msgid "Masonry"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: widgets/premium-blog.php:162 widgets/premium-person.php:319
|
3400 |
+
msgid "Equal Height"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
+
#: widgets/premium-blog.php:174
|
3404 |
msgid ""
|
3405 |
+
"Equal Height option uses JS to force all content boxes to take the equal "
|
3406 |
+
"height, so you will need to make sure all featured images are the same "
|
3407 |
"height. You can set that from Featured Image tab."
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: widgets/premium-blog.php:187
|
3411 |
msgid "Number of Columns"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: widgets/premium-blog.php:212
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3415 |
msgid "Posts Per Page"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: widgets/premium-blog.php:213
|
3419 |
msgid "Set the number of per page"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: widgets/premium-blog.php:265
|
3423 |
+
#, php-format
|
3424 |
+
msgid "%s Filter Rule"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: widgets/premium-blog.php:270
|
3428 |
+
#, php-format
|
3429 |
+
msgid "Match %s"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: widgets/premium-blog.php:271
|
3433 |
+
#, php-format
|
3434 |
+
msgid "Exclude %s"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: widgets/premium-blog.php:282
|
3438 |
+
#, php-format
|
3439 |
+
msgid "%s Filter"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: widgets/premium-blog.php:302
|
3443 |
msgid "Filter By Author Rule"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: widgets/premium-blog.php:308
|
3447 |
msgid "Match Authors"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: widgets/premium-blog.php:309
|
3451 |
msgid "Exclude Authors"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: widgets/premium-blog.php:316
|
3455 |
msgid "Authors"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: widgets/premium-blog.php:326
|
3459 |
msgid "Filter By Post Rule"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: widgets/premium-blog.php:332
|
3463 |
msgid "Match Post"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: widgets/premium-blog.php:333
|
3467 |
msgid "Exclude Post"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: widgets/premium-blog.php:340
|
3471 |
msgid "Posts"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: widgets/premium-blog.php:350
|
3475 |
+
msgid "Ignore Sticky Posts"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: widgets/premium-blog.php:361
|
3479 |
msgid ""
|
3480 |
"This option is used to exclude number of initial posts from being display."
|
3481 |
msgstr ""
|
3482 |
|
3483 |
+
#: widgets/premium-blog.php:370
|
3484 |
+
msgid "Exclude Current Post"
|
3485 |
+
msgstr ""
|
3486 |
+
|
3487 |
+
#: widgets/premium-blog.php:372
|
3488 |
+
msgid "This option will remove the current post from the query."
|
3489 |
+
msgstr ""
|
3490 |
+
|
3491 |
+
#: widgets/premium-blog.php:380
|
3492 |
msgid "Order By"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: widgets/premium-blog.php:386 widgets/premium-videobox.php:105
|
3496 |
msgid "ID"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: widgets/premium-blog.php:387 widgets/premium-testimonials.php:69
|
3500 |
+
#: widgets/premium-testimonials.php:361
|
3501 |
msgid "Author"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: widgets/premium-blog.php:389 widgets/premium-person.php:353
|
3505 |
+
#: widgets/premium-person.php:589 widgets/premium-person.php:956
|
3506 |
#: widgets/premium-testimonials.php:102 widgets/premium-testimonials.php:183
|
3507 |
msgid "Name"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: widgets/premium-blog.php:391
|
|
|
|
|
|
|
|
|
3511 |
msgid "Last Modified"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: widgets/premium-blog.php:393
|
|
|
|
|
|
|
|
|
3515 |
msgid "Number of Comments"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: widgets/premium-blog.php:416
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3519 |
msgid "Featured Image"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: widgets/premium-blog.php:422
|
3523 |
msgid "Show Featured Image"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: widgets/premium-blog.php:446
|
3527 |
msgid "Overlay Effect"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: widgets/premium-blog.php:448
|
3531 |
msgid "Choose an overlay color effect"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: widgets/premium-blog.php:451
|
3535 |
msgid "Framed"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: widgets/premium-blog.php:452
|
3539 |
msgid "Diagonal"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: widgets/premium-blog.php:453
|
3543 |
msgid "Bordered"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
+
#: widgets/premium-blog.php:454
|
3547 |
msgid "Squares"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: widgets/premium-blog.php:468 widgets/premium-grid.php:766
|
3551 |
+
#: widgets/premium-videobox.php:774
|
3552 |
msgid "Choose a hover effect for the image"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: widgets/premium-blog.php:488
|
3556 |
+
msgid "Width (%)"
|
|
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: widgets/premium-blog.php:526
|
3560 |
msgid "Thumbnail Fit"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: widgets/premium-blog.php:529 widgets/premium-grid.php:144
|
3564 |
+
#: widgets/premium-image-scroll.php:222 widgets/premium-image-scroll.php:387
|
3565 |
+
#: widgets/premium-videobox.php:822
|
3566 |
msgid "Cover"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: widgets/premium-blog.php:530 widgets/premium-grid.php:143
|
3570 |
+
#: widgets/premium-image-scroll.php:386 widgets/premium-progressbar.php:554
|
3571 |
msgid "Fill"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
+
#: widgets/premium-blog.php:531 widgets/premium-image-scroll.php:221
|
3575 |
+
#: widgets/premium-videobox.php:821
|
3576 |
msgid "Contain"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: widgets/premium-blog.php:551
|
|
|
|
|
|
|
|
|
|
|
3580 |
msgid "Title HTML Tag"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: widgets/premium-blog.php:552
|
3584 |
msgid "Select a heading tag for the post title."
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: widgets/premium-blog.php:644 widgets/premium-counter.php:516
|
3588 |
+
msgid "Vertical Alignment"
|
|
|
|
|
|
|
|
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: widgets/premium-blog.php:675
|
3592 |
msgid "Post Options"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: widgets/premium-blog.php:681
|
3596 |
msgid "Show Post Content"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: widgets/premium-blog.php:689
|
3600 |
msgid "Get Content From"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: widgets/premium-blog.php:692
|
3604 |
msgid "Post Excerpt"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: widgets/premium-blog.php:693
|
3608 |
msgid "Post Full Content"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: widgets/premium-blog.php:705
|
3612 |
msgid "Excerpt Length"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
+
#: widgets/premium-blog.php:707
|
3616 |
msgid ""
|
3617 |
"Excerpt is used for article summary with a link to the whole entry. The "
|
3618 |
"default except length is 55"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: widgets/premium-blog.php:718
|
3622 |
msgid "Excerpt Type"
|
3623 |
msgstr ""
|
3624 |
|
3625 |
+
#: widgets/premium-blog.php:721 widgets/premium-carousel.php:158
|
3626 |
+
#: widgets/premium-progressbar.php:89 widgets/premium-vscroll.php:573
|
3627 |
msgid "Dots"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: widgets/premium-blog.php:734 widgets/premium-dual-header.php:311
|
3631 |
+
#: widgets/premium-title.php:560
|
3632 |
msgid "Full Width"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: widgets/premium-blog.php:746
|
3636 |
msgid "Read More Text"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: widgets/premium-blog.php:748
|
3640 |
+
msgid "Read More »"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: widgets/premium-blog.php:758
|
3644 |
msgid "Author Meta"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: widgets/premium-blog.php:766
|
3648 |
msgid "Date Meta"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: widgets/premium-blog.php:774
|
3652 |
msgid "Categories Meta"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: widgets/premium-blog.php:776
|
3656 |
msgid "Display or hide categories meta"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
+
#: widgets/premium-blog.php:783
|
3660 |
msgid "Comments Meta"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: widgets/premium-blog.php:784
|
3664 |
msgid "Display or hide comments meta"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: widgets/premium-blog.php:792
|
3668 |
msgid "Tags Meta"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: widgets/premium-blog.php:794
|
3672 |
msgid "Display or hide post tags"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: widgets/premium-blog.php:813 widgets/premium-image-scroll.php:364
|
3676 |
+
msgid "Advanced Settings"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: widgets/premium-blog.php:819 widgets/premium-grid.php:273
|
3680 |
+
msgid "Filter Tabs"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: widgets/premium-blog.php:829
|
3684 |
+
msgid "Get Tabs From"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: widgets/premium-blog.php:834 widgets/premium-blog.php:1419
|
3688 |
+
#: widgets/premium-blog.php:1496 widgets/premium-grid.php:267
|
3689 |
+
#: widgets/premium-grid.php:327
|
3690 |
+
msgid "Categories"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: widgets/premium-blog.php:835 widgets/premium-blog.php:1836
|
3694 |
+
msgid "Tags"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
+
#: widgets/premium-blog.php:846
|
3698 |
msgid ""
|
3699 |
"Please make sure to select the categories/tags you need to show from Query "
|
3700 |
"tab."
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: widgets/premium-blog.php:858
|
3704 |
msgid "First Tab Label"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: widgets/premium-blog.php:900
|
3708 |
msgid "Links in New Tab"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: widgets/premium-blog.php:902
|
3712 |
msgid "Enable links to be opened in a new tab"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: widgets/premium-blog.php:921
|
3716 |
msgid "Enable Carousel"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: widgets/premium-blog.php:928 widgets/premium-carousel.php:289
|
3720 |
msgid "Fade"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: widgets/premium-blog.php:939 widgets/premium-person.php:828
|
3724 |
msgid "Auto Play"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: widgets/premium-blog.php:950 widgets/premium-carousel.php:330
|
3728 |
+
#: widgets/premium-person.php:839
|
|
|
|
|
|
|
|
|
|
|
3729 |
msgid ""
|
3730 |
"Autoplay Speed means at which time the next slide should come. Set a value "
|
3731 |
"in milliseconds (ms)"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: widgets/premium-blog.php:962 widgets/premium-carousel.php:410
|
3735 |
msgid "Center Mode"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: widgets/premium-blog.php:972 widgets/premium-carousel.php:418
|
3739 |
msgid "Slides' Spacing"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: widgets/premium-blog.php:973 widgets/premium-carousel.php:419
|
3743 |
msgid "Set a spacing value in pixels (px)"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: widgets/premium-blog.php:984 widgets/premium-carousel.php:770
|
3747 |
+
#: widgets/premium-vscroll.php:261 widgets/premium-vscroll.php:438
|
3748 |
msgid "Navigation Dots"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: widgets/premium-blog.php:994 widgets/premium-carousel.php:480
|
3752 |
msgid "Navigation Arrows"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
#: widgets/premium-blog.php:1045
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3756 |
msgid "Pagination is the process of dividing the posts into discrete pages"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
+
#: widgets/premium-blog.php:1051
|
3760 |
+
msgid "Page Limit"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: widgets/premium-blog.php:1062
|
|
|
|
|
|
|
|
|
3764 |
msgid "Enable Pagination Next/Prev Strings"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: widgets/premium-blog.php:1073
|
3768 |
msgid "Previous Page String"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: widgets/premium-blog.php:1075
|
3772 |
msgid "Previous"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: widgets/premium-blog.php:1085
|
3776 |
msgid "Next Page String"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: widgets/premium-blog.php:1087
|
3780 |
msgid "Next"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: widgets/premium-blog.php:1128 widgets/premium-grid.php:1543
|
3784 |
+
msgid "Filter"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: widgets/premium-blog.php:1303
|
3788 |
+
msgid "Plus Sign Color"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: widgets/premium-blog.php:1316 widgets/premium-blog.php:2155
|
3792 |
+
#: widgets/premium-image-button.php:758 widgets/premium-image-button.php:775
|
3793 |
+
#: widgets/premium-image-button.php:801 widgets/premium-image-scroll.php:518
|
3794 |
+
msgid "Overlay Color"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
+
#: widgets/premium-blog.php:1326 widgets/premium-contactform.php:546
|
3798 |
+
#: widgets/premium-pricing-table.php:1618 widgets/premium-progressbar.php:537
|
3799 |
+
#: widgets/premium-testimonials.php:345
|
3800 |
+
msgid "Border Color"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: widgets/premium-blog.php:1406
|
3804 |
+
msgid "Bottom Spacing"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: widgets/premium-blog.php:1538
|
3808 |
+
msgid "Metadata"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: widgets/premium-blog.php:1554
|
3812 |
+
msgid "Metadata Color"
|
|
|
|
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: widgets/premium-blog.php:1564
|
3816 |
+
msgid "Links Hover Color"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: widgets/premium-blog.php:1574 widgets/premium-testimonials.php:400
|
3820 |
+
msgid "Separator Color"
|
|
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: widgets/premium-blog.php:1587
|
3824 |
+
msgid "Content Box"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: widgets/premium-blog.php:1605 widgets/premium-button.php:679
|
3828 |
+
#: widgets/premium-button.php:806 widgets/premium-contactform.php:471
|
3829 |
+
#: widgets/premium-contactform.php:526 widgets/premium-dual-header.php:467
|
3830 |
+
#: widgets/premium-dual-header.php:652 widgets/premium-grid.php:1569
|
3831 |
+
#: widgets/premium-grid.php:1620 widgets/premium-grid.php:1667
|
3832 |
+
#: widgets/premium-grid.php:1773 widgets/premium-icon-list.php:324
|
3833 |
+
#: widgets/premium-icon-list.php:1361 widgets/premium-image-button.php:585
|
3834 |
+
#: widgets/premium-image-button.php:705 widgets/premium-pricing-table.php:379
|
3835 |
+
#: widgets/premium-pricing-table.php:1928 widgets/premium-videobox.php:1421
|
3836 |
+
#: widgets/premium-videobox.php:1695 widgets/premium-vscroll.php:706
|
3837 |
+
#: widgets/premium-vscroll.php:765
|
3838 |
+
msgid "Text Color"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: widgets/premium-blog.php:1622
|
3842 |
+
msgid "Text Margin"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
+
#: widgets/premium-blog.php:1878
|
3846 |
+
msgid "Box"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
+
#: widgets/premium-blog.php:2166 widgets/premium-grid.php:1788
|
3850 |
+
msgid "Spinner Color"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
+
#: widgets/premium-blog.php:2176
|
3854 |
+
msgid "Fill Color"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
+
#: widgets/premium-blog.php:2188
|
3858 |
+
msgid "Carousel Dots"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
+
#: widgets/premium-blog.php:2229
|
3862 |
+
msgid "Carousel Arrows"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: widgets/premium-blog.php:2625
|
3866 |
msgid ""
|
3867 |
"The current query has no posts. Please make sure you have published items "
|
3868 |
"matching your query."
|
3955 |
msgstr ""
|
3956 |
|
3957 |
#: widgets/premium-button.php:215 widgets/premium-countdown.php:82
|
3958 |
+
#: widgets/premium-counter.php:462 widgets/premium-icon-list.php:1606
|
3959 |
+
#: widgets/premium-person.php:93 widgets/premium-progressbar.php:428
|
3960 |
+
#: widgets/premium-title.php:101
|
3961 |
msgid "Style"
|
3962 |
msgstr ""
|
3963 |
|
3977 |
msgid "Rectangle Out"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: widgets/premium-button.php:233 widgets/premium-button.php:247
|
3981 |
+
#: widgets/premium-button.php:261 widgets/premium-button.php:324
|
3982 |
+
#: widgets/premium-button.php:337 widgets/premium-carousel.php:780
|
3983 |
+
#: widgets/premium-counter.php:187 widgets/premium-counter.php:199
|
3984 |
+
#: widgets/premium-counter.php:383 widgets/premium-icon-list.php:122
|
3985 |
+
#: widgets/premium-icon-list.php:137 widgets/premium-icon-list.php:1052
|
3986 |
+
#: widgets/premium-image-button.php:223 widgets/premium-image-button.php:237
|
3987 |
+
#: widgets/premium-image-button.php:251 widgets/premium-image-button.php:314
|
3988 |
+
#: widgets/premium-image-button.php:327 widgets/premium-image-scroll.php:438
|
3989 |
+
#: widgets/premium-image-separator.php:91 widgets/premium-modalbox.php:121
|
3990 |
+
#: widgets/premium-modalbox.php:409 widgets/premium-modalbox.php:421
|
3991 |
+
#: widgets/premium-pricing-table.php:80 widgets/premium-pricing-table.php:92
|
3992 |
+
#: widgets/premium-pricing-table.php:287 widgets/premium-pricing-table.php:296
|
3993 |
+
#: widgets/premium-pricing-table.php:754 widgets/premium-pricing-table.php:810
|
3994 |
+
#: widgets/premium-pricing-table.php:1414 widgets/premium-progressbar.php:217
|
3995 |
+
#: widgets/premium-progressbar.php:885 widgets/premium-title.php:121
|
3996 |
+
#: widgets/premium-title.php:131 widgets/premium-title.php:911
|
3997 |
msgid "Icon"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
#: widgets/premium-button.php:235 widgets/premium-image-button.php:225
|
4001 |
+
#: widgets/premium-modalbox.php:414
|
4002 |
msgid "Enable or disable button icon"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
#: widgets/premium-button.php:244 widgets/premium-button.php:321
|
4006 |
+
#: widgets/premium-counter.php:195 widgets/premium-image-button.php:234
|
4007 |
+
#: widgets/premium-image-button.php:311 widgets/premium-modalbox.php:117
|
4008 |
+
#: widgets/premium-pricing-table.php:89 widgets/premium-pricing-table.php:284
|
4009 |
+
#: widgets/premium-progressbar.php:214 widgets/premium-title.php:128
|
4010 |
msgid "Icon Type"
|
4011 |
msgstr ""
|
4012 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4013 |
#: widgets/premium-button.php:248 widgets/premium-button.php:325
|
4014 |
+
#: widgets/premium-counter.php:201 widgets/premium-icon-list.php:124
|
4015 |
+
#: widgets/premium-image-button.php:238 widgets/premium-image-button.php:315
|
4016 |
+
#: widgets/premium-image-separator.php:93 widgets/premium-modalbox.php:123
|
4017 |
+
#: widgets/premium-modalbox.php:384 widgets/premium-pricing-table.php:93
|
4018 |
+
#: widgets/premium-pricing-table.php:288 widgets/premium-progressbar.php:219
|
4019 |
+
#: widgets/premium-title.php:133
|
4020 |
msgid "Lottie Animation"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
#: widgets/premium-button.php:279 widgets/premium-button.php:354
|
4024 |
+
#: widgets/premium-counter.php:242 widgets/premium-icon-list.php:185
|
4025 |
+
#: widgets/premium-image-button.php:269 widgets/premium-image-button.php:344
|
4026 |
+
#: widgets/premium-image-separator.php:131 widgets/premium-lottie.php:90
|
4027 |
+
#: widgets/premium-modalbox.php:167 widgets/premium-modalbox.php:606
|
4028 |
+
#: widgets/premium-pricing-table.php:116 widgets/premium-pricing-table.php:311
|
4029 |
+
#: widgets/premium-progressbar.php:255 widgets/premium-title.php:175
|
4030 |
msgid "Animation JSON URL"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
#: widgets/premium-button.php:294 widgets/premium-button.php:368
|
4034 |
+
#: widgets/premium-counter.php:256 widgets/premium-fancytext.php:281
|
4035 |
+
#: widgets/premium-icon-list.php:201 widgets/premium-image-button.php:284
|
4036 |
+
#: widgets/premium-image-button.php:358 widgets/premium-image-separator.php:144
|
4037 |
+
#: widgets/premium-lottie.php:115 widgets/premium-modalbox.php:182
|
4038 |
+
#: widgets/premium-modalbox.php:620 widgets/premium-pricing-table.php:129
|
4039 |
+
#: widgets/premium-pricing-table.php:324 widgets/premium-progressbar.php:269
|
4040 |
+
#: widgets/premium-title.php:189 widgets/premium-videobox.php:408
|
4041 |
msgid "Loop"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: widgets/premium-button.php:393 widgets/premium-counter.php:281
|
4045 |
+
#: widgets/premium-icon-list.php:736 widgets/premium-image-button.php:383
|
4046 |
+
#: widgets/premium-modalbox.php:439 widgets/premium-title.php:214
|
4047 |
msgid "Icon Position"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: widgets/premium-button.php:397 widgets/premium-icon-list.php:739
|
4051 |
+
#: widgets/premium-image-button.php:387 widgets/premium-modalbox.php:443
|
4052 |
+
#: widgets/premium-title.php:217
|
4053 |
msgid "Before"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: widgets/premium-button.php:398 widgets/premium-icon-list.php:741
|
4057 |
+
#: widgets/premium-image-button.php:388 widgets/premium-modalbox.php:444
|
4058 |
+
#: widgets/premium-title.php:218
|
4059 |
msgid "After"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
#: widgets/premium-button.php:410 widgets/premium-button.php:425
|
4063 |
#: widgets/premium-image-button.php:400 widgets/premium-image-button.php:415
|
4064 |
+
#: widgets/premium-image-scroll.php:445 widgets/premium-modalbox.php:209
|
4065 |
+
#: widgets/premium-modalbox.php:457 widgets/premium-progressbar.php:294
|
4066 |
msgid "Icon Size"
|
4067 |
msgstr ""
|
4068 |
|
4070 |
#: widgets/premium-button.php:480 widgets/premium-button.php:499
|
4071 |
#: widgets/premium-button.php:519 widgets/premium-button.php:540
|
4072 |
#: widgets/premium-image-button.php:429 widgets/premium-image-button.php:448
|
4073 |
+
#: widgets/premium-modalbox.php:474 widgets/premium-modalbox.php:494
|
4074 |
+
#: widgets/premium-modalbox.php:516 widgets/premium-modalbox.php:536
|
4075 |
msgid "Icon Spacing"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
#: widgets/premium-button.php:565 widgets/premium-image-button.php:471
|
4079 |
+
#: widgets/premium-modalbox.php:560
|
4080 |
msgid "Small"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
#: widgets/premium-button.php:566 widgets/premium-image-button.php:472
|
4084 |
+
#: widgets/premium-modalbox.php:561
|
4085 |
msgid "Medium"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
#: widgets/premium-button.php:567 widgets/premium-image-button.php:473
|
4089 |
+
#: widgets/premium-modalbox.php:562
|
4090 |
msgid "Large"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
#: widgets/premium-button.php:568 widgets/premium-countdown.php:86
|
4094 |
+
#: widgets/premium-dual-header.php:125 widgets/premium-icon-list.php:692
|
4095 |
+
#: widgets/premium-image-button.php:474 widgets/premium-modalbox.php:563
|
4096 |
+
#: widgets/premium-testimonials.php:147
|
4097 |
msgid "Block"
|
4098 |
msgstr ""
|
4099 |
|
4105 |
msgid "Example: myFunction();"
|
4106 |
msgstr ""
|
4107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4108 |
#: widgets/premium-button.php:692 widgets/premium-button.php:823
|
4109 |
+
#: widgets/premium-button.php:842 widgets/premium-image-button.php:598
|
4110 |
+
#: widgets/premium-image-button.php:721 widgets/premium-image-button.php:740
|
4111 |
+
#: widgets/premium-image-scroll.php:505 widgets/premium-modalbox.php:826
|
4112 |
#: widgets/premium-pricing-table.php:366
|
4113 |
msgid "Icon Color"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
#: widgets/premium-button.php:745 widgets/premium-button.php:894
|
4117 |
+
#: widgets/premium-button.php:908 widgets/premium-image-button.php:646
|
4118 |
+
#: widgets/premium-image-button.php:838 widgets/premium-image-button.php:852
|
4119 |
+
#: widgets/premium-title.php:1012
|
4120 |
msgid "Icon Shadow"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
#: widgets/premium-button.php:759 widgets/premium-button.php:921
|
4124 |
+
#: widgets/premium-image-button.php:660 widgets/premium-image-button.php:865
|
4125 |
msgid "Text Shadow"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
#: widgets/premium-button.php:768 widgets/premium-button.php:933
|
4129 |
+
#: widgets/premium-image-button.php:669 widgets/premium-image-button.php:877
|
4130 |
msgid "Button Shadow"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
+
#: widgets/premium-carousel.php:85 widgets/premium-vscroll.php:95
|
4134 |
msgid "Content Type"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: widgets/premium-carousel.php:86
|
4138 |
msgid "How templates are selected"
|
4139 |
msgstr ""
|
4140 |
|
4141 |
+
#: widgets/premium-carousel.php:89
|
4142 |
msgid "Select Field"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
+
#: widgets/premium-carousel.php:90
|
4146 |
msgid "Repeater"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: widgets/premium-carousel.php:99
|
4150 |
msgid ""
|
4151 |
"Slider content is a template which you can choose from Elementor library. "
|
4152 |
"Each template will be a slider content"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
+
#: widgets/premium-carousel.php:123
|
4156 |
+
msgid "Custom Navigation Element Selector"
|
|
|
4157 |
msgstr ""
|
4158 |
|
4159 |
+
#: widgets/premium-carousel.php:126
|
4160 |
+
msgid ""
|
4161 |
+
"Use this to add an element selector to be used to navigate to this slide. "
|
4162 |
+
"For example #slide-1"
|
4163 |
+
msgstr ""
|
4164 |
+
|
4165 |
+
#: widgets/premium-carousel.php:146
|
4166 |
msgid "Set a navigation type"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: widgets/premium-carousel.php:149 widgets/premium-image-button.php:211
|
4170 |
+
#: widgets/premium-image-scroll.php:305 widgets/premium-image-scroll.php:374
|
4171 |
+
#: widgets/premium-videobox.php:904
|
4172 |
msgid "Horizontal"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: widgets/premium-carousel.php:150 widgets/premium-image-button.php:212
|
4176 |
+
#: widgets/premium-image-scroll.php:323 widgets/premium-image-scroll.php:375
|
4177 |
+
#: widgets/premium-videobox.php:922
|
4178 |
msgid "Vertical"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: widgets/premium-carousel.php:159
|
4182 |
msgid "Enable or disable navigation dots"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
+
#: widgets/premium-carousel.php:213
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4186 |
msgid "Ripple Effect"
|
4187 |
msgstr ""
|
4188 |
|
4189 |
+
#: widgets/premium-carousel.php:214
|
4190 |
msgid "Enable a ripple effect when the active dot is hovered/clicked"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: widgets/premium-carousel.php:225
|
4194 |
msgid "Arrows"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: widgets/premium-carousel.php:226
|
4198 |
msgid "Enable or disable navigation arrows"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
+
#: widgets/premium-carousel.php:235
|
4202 |
msgid "Appearance"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: widgets/premium-carousel.php:240
|
4206 |
msgid "All visible"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
+
#: widgets/premium-carousel.php:241
|
4210 |
msgid "One at a time"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
+
#: widgets/premium-carousel.php:248
|
4214 |
msgid "Desktop Slides"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
+
#: widgets/premium-carousel.php:256
|
4218 |
msgid "Tabs Slides"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
+
#: widgets/premium-carousel.php:264
|
4222 |
msgid "Mobile Slides"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: widgets/premium-carousel.php:274
|
4226 |
msgid "Slides Settings"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: widgets/premium-carousel.php:282
|
|
|
|
|
|
|
|
|
4230 |
msgid "Restart the slider automatically as it passes the last slide"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: widgets/premium-carousel.php:291
|
4234 |
msgid "Enable fade transition between slides"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: widgets/premium-carousel.php:300
|
4238 |
msgid "Zoom Effect"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: widgets/premium-carousel.php:311
|
4242 |
msgid "Transition Speed"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
+
#: widgets/premium-carousel.php:312
|
4246 |
msgid ""
|
4247 |
"Set a navigation speed value. The value will be counted in milliseconds (ms)"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: widgets/premium-carousel.php:320
|
4251 |
msgid "Autoplay Slides"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: widgets/premium-carousel.php:321
|
4255 |
msgid "Slide will start automatically"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: widgets/premium-carousel.php:341 widgets/premium-counter.php:300
|
4259 |
#: widgets/premium-fancytext.php:184
|
4260 |
msgid "Animations"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: widgets/premium-carousel.php:351
|
4264 |
msgid ""
|
4265 |
"Add extra class name that will be applied to the carousel, and you can use "
|
4266 |
"this class for your customizations."
|
4267 |
msgstr ""
|
4268 |
|
4269 |
+
#: widgets/premium-carousel.php:359 widgets/premium-fancytext.php:161
|
4270 |
msgid "Additional Settings"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
+
#: widgets/premium-carousel.php:365
|
4274 |
msgid "Draggable Effect"
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: widgets/premium-carousel.php:366
|
4278 |
msgid "Allow the slides to be dragged by mouse click"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: widgets/premium-carousel.php:374
|
4282 |
msgid "Touch Move"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: widgets/premium-carousel.php:375
|
4286 |
msgid "Enable slide moving with touch"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: widgets/premium-carousel.php:383 widgets/premium-grid.php:829
|
4290 |
msgid "RTL Mode"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: widgets/premium-carousel.php:384
|
4294 |
msgid "Turn on RTL mode if your language starts from right to left"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: widgets/premium-carousel.php:394
|
4298 |
msgid "Adaptive Height"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: widgets/premium-carousel.php:395
|
4302 |
msgid ""
|
4303 |
"Adaptive height setting gives each slide a fixed height to avoid huge white "
|
4304 |
"space gaps"
|
4305 |
msgstr ""
|
4306 |
|
4307 |
+
#: widgets/premium-carousel.php:403
|
|
|
|
|
|
|
|
|
4308 |
msgid "Pause the slider when mouse hover"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
+
#: widgets/premium-carousel.php:411
|
4312 |
msgid ""
|
4313 |
"Center mode enables a centered view with partial next/previous slides. "
|
4314 |
"Animations and all visible scroll type doesn't work with this mode"
|
4315 |
msgstr ""
|
4316 |
|
4317 |
+
#: widgets/premium-carousel.php:427
|
4318 |
msgid "Tablet Breakpoint"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: widgets/premium-carousel.php:428
|
4322 |
msgid ""
|
4323 |
"Sets the breakpoint between desktop and tablet devices. Below this "
|
4324 |
"breakpoint tablet layout will appear (Default: 1025px)."
|
4325 |
msgstr ""
|
4326 |
|
4327 |
+
#: widgets/premium-carousel.php:436
|
4328 |
msgid "Mobile Breakpoint"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
+
#: widgets/premium-carousel.php:437
|
4332 |
msgid ""
|
4333 |
"Sets the breakpoint between tablet and mobile devices. Below this breakpoint "
|
4334 |
"mobile layout will appear (Default: 768px)."
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#: widgets/premium-carousel.php:490
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4338 |
msgid "Right Icon"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: widgets/premium-carousel.php:520
|
4342 |
msgid "Bottom Icon"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: widgets/premium-carousel.php:550
|
4346 |
msgid "Top Icon"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: widgets/premium-carousel.php:580
|
4350 |
msgid "Left Icon"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: widgets/premium-carousel.php:634
|
4354 |
msgid "Position (PX)"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: widgets/premium-carousel.php:840
|
4358 |
msgid "Active Ripple Color"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
+
#: widgets/premium-carousel.php:854
|
4362 |
msgid "Inactive Ripple Color"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: widgets/premium-contactform.php:32
|
4366 |
+
msgid "Contact Form7"
|
4367 |
+
msgstr ""
|
4368 |
+
|
4369 |
#: widgets/premium-contactform.php:69
|
4370 |
msgid "Contact Form"
|
4371 |
msgstr ""
|
4379 |
msgstr ""
|
4380 |
|
4381 |
#: widgets/premium-contactform.php:94 widgets/premium-contactform.php:208
|
4382 |
+
#: widgets/premium-dual-header.php:307 widgets/premium-grid.php:419
|
4383 |
+
#: widgets/premium-modalbox.php:1270 widgets/premium-modalbox.php:1461
|
4384 |
+
#: widgets/premium-person.php:138 widgets/premium-pricing-table.php:1573
|
4385 |
+
#: widgets/premium-title.php:556
|
4386 |
msgid "Width"
|
4387 |
msgstr ""
|
4388 |
|
4440 |
msgstr ""
|
4441 |
|
4442 |
#: widgets/premium-countdown.php:85 widgets/premium-dual-header.php:124
|
4443 |
+
#: widgets/premium-icon-list.php:691 widgets/premium-testimonials.php:146
|
4444 |
msgid "Inline"
|
4445 |
msgstr ""
|
4446 |
|
4610 |
msgid "Seconds (Plural)"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
+
#: widgets/premium-countdown.php:426
|
4614 |
msgid "Digits"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
+
#: widgets/premium-countdown.php:483
|
4618 |
msgid "Background Size"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: widgets/premium-countdown.php:522
|
4622 |
msgid "Units"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: widgets/premium-countdown.php:565
|
4626 |
msgid "Spacing in Between"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
+
#: widgets/premium-countdown.php:589 widgets/premium-image-separator.php:323
|
4630 |
#: widgets/premium-testimonials.php:133
|
4631 |
msgid "Separator"
|
4632 |
msgstr ""
|
4679 |
msgid "How long should it take to complete the digit?"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: widgets/premium-counter.php:197
|
4683 |
msgid "Use a font awesome icon or upload a custom image"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: widgets/premium-counter.php:212 widgets/premium-image-separator.php:101
|
4687 |
#: widgets/premium-pricing-table.php:101 widgets/premium-progressbar.php:230
|
4688 |
msgid "Select an Icon"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
+
#: widgets/premium-counter.php:283
|
4692 |
msgid "Choose a position for your icon"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: widgets/premium-counter.php:308
|
4696 |
msgid "Value Alignment"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
+
#: widgets/premium-counter.php:334
|
4700 |
msgid "Title Alignment"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: widgets/premium-counter.php:464
|
4704 |
msgid ""
|
4705 |
"We are giving you three quick preset if you are in a hurry. Otherwise, "
|
4706 |
"create your own with various options"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: widgets/premium-counter.php:466
|
4710 |
msgid "Simple"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: widgets/premium-counter.php:467
|
4714 |
msgid "Circle Background"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: widgets/premium-counter.php:468
|
4718 |
msgid "Square Background"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: widgets/premium-counter.php:494
|
4722 |
msgid "Background size"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: widgets/premium-counter.php:675 widgets/premium-progressbar.php:419
|
|
|
|
|
|
|
|
|
4726 |
msgid "Value"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: widgets/premium-counter.php:759 widgets/premium-fancytext.php:505
|
4730 |
msgid "Prefix & Suffix"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: widgets/premium-counter.php:766
|
4734 |
msgid "Prefix Color"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
+
#: widgets/premium-counter.php:790
|
4738 |
msgid "Suffix Color"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: widgets/premium-dual-header.php:80 widgets/premium-dual-header.php:430
|
4742 |
msgid "First Heading"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
+
#: widgets/premium-dual-header.php:91 widgets/premium-dual-header.php:615
|
4746 |
msgid "Second Heading"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: widgets/premium-dual-header.php:94
|
4750 |
msgid "Addons"
|
4751 |
msgstr ""
|
4752 |
|
4758 |
msgid "Enable or disable link"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: widgets/premium-dual-header.php:219
|
4762 |
msgid "Degrees"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: widgets/premium-dual-header.php:231
|
4766 |
msgid "X Anchor Point"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: widgets/premium-dual-header.php:259
|
4770 |
msgid "Y Anchor Point"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: widgets/premium-dual-header.php:289 widgets/premium-dual-header.php:800
|
4774 |
+
#: widgets/premium-title.php:538 widgets/premium-title.php:1026
|
4775 |
+
msgid "Background Text"
|
4776 |
+
msgstr ""
|
4777 |
+
|
4778 |
+
#: widgets/premium-dual-header.php:298 widgets/premium-title.php:547
|
4779 |
+
msgid "Awesome Title"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
+
#: widgets/premium-dual-header.php:310 widgets/premium-title.php:559
|
4783 |
+
msgid "Auto"
|
4784 |
+
msgstr ""
|
4785 |
+
|
4786 |
+
#: widgets/premium-dual-header.php:382 widgets/premium-lottie.php:244
|
4787 |
+
#: widgets/premium-title.php:631
|
4788 |
+
msgid "Rotate (degrees)"
|
4789 |
+
msgstr ""
|
4790 |
+
|
4791 |
+
#: widgets/premium-dual-header.php:421
|
4792 |
+
msgid "How to add an outlined heading using Dual Heading widget »"
|
4793 |
+
msgstr ""
|
4794 |
+
|
4795 |
+
#: widgets/premium-dual-header.php:446 widgets/premium-dual-header.php:631
|
4796 |
msgid "Animated Background"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
+
#: widgets/premium-dual-header.php:453 widgets/premium-dual-header.php:638
|
4800 |
msgid "Background Style"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
+
#: widgets/premium-dual-header.php:456 widgets/premium-dual-header.php:641
|
4804 |
msgid ""
|
4805 |
"Choose ‘Normal’ style to put a background behind the text. Choose ‘Clipped’ "
|
4806 |
"style so the background will be clipped on the text."
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: widgets/premium-dual-header.php:459 widgets/premium-dual-header.php:644
|
4810 |
msgid "Clipped"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: widgets/premium-dual-header.php:496 widgets/premium-dual-header.php:681
|
4814 |
msgid "Stroke"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
+
#: widgets/premium-dual-header.php:506 widgets/premium-dual-header.php:691
|
4818 |
msgid "Stroke Text Color"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: widgets/premium-dual-header.php:520 widgets/premium-dual-header.php:705
|
4822 |
msgid "Stroke Fill Color"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
+
#: widgets/premium-dual-header.php:534 widgets/premium-dual-header.php:719
|
4826 |
msgid "Stroke Fill Width"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
+
#: widgets/premium-dual-header.php:864 widgets/premium-title.php:1090
|
4830 |
+
msgid "z-Index"
|
4831 |
+
msgstr ""
|
4832 |
+
|
4833 |
#: widgets/premium-fancytext.php:78
|
4834 |
msgid "Prefix"
|
4835 |
msgstr ""
|
4850 |
msgid "Designer"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: widgets/premium-fancytext.php:108 widgets/premium-person.php:367
|
4854 |
+
#: widgets/premium-person.php:603
|
4855 |
msgid "Developer"
|
4856 |
msgstr ""
|
4857 |
|
4888 |
msgstr ""
|
4889 |
|
4890 |
#: widgets/premium-fancytext.php:208 widgets/premium-fancytext.php:318
|
4891 |
+
#: widgets/premium-lottie.php:132
|
4892 |
msgid "Animation Speed"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
+
#: widgets/premium-fancytext.php:210
|
4896 |
+
msgid "Set animation speed in milliseconds. Default value is 1000"
|
4897 |
msgstr ""
|
4898 |
|
4899 |
+
#: widgets/premium-fancytext.php:222 widgets/premium-modalbox.php:354
|
4900 |
+
#: widgets/premium-videobox.php:540
|
4901 |
msgid "Animation Delay"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: widgets/premium-fancytext.php:224
|
4905 |
+
msgid "Set animation delay in milliseconds.Default value is 2500"
|
4906 |
+
msgstr ""
|
4907 |
+
|
4908 |
#: widgets/premium-fancytext.php:233
|
4909 |
msgid "Loop Count"
|
4910 |
msgstr ""
|
4982 |
msgid "Grid Layout"
|
4983 |
msgstr ""
|
4984 |
|
|
|
|
|
|
|
|
|
4985 |
#: widgets/premium-grid.php:140
|
4986 |
msgid "Images Fit"
|
4987 |
msgstr ""
|
4994 |
msgid "12 Columns"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
+
#: widgets/premium-grid.php:193 widgets/premium-grid.php:1746
|
4998 |
msgid "Load More Button"
|
4999 |
msgstr ""
|
5000 |
|
5002 |
msgid "Requires number of images larger than 6"
|
5003 |
msgstr ""
|
5004 |
|
5005 |
+
#: widgets/premium-grid.php:201 widgets/premium-modalbox.php:395
|
5006 |
msgid "Button Text"
|
5007 |
msgstr ""
|
5008 |
|
5038 |
msgid "First Category Label"
|
5039 |
msgstr ""
|
5040 |
|
|
|
|
|
|
|
|
|
5041 |
#: widgets/premium-grid.php:314
|
5042 |
msgid "Rotation Degrees"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
+
#: widgets/premium-grid.php:316 widgets/premium-lottie.php:246
|
5046 |
msgid "Set rotation value in degrees"
|
5047 |
msgstr ""
|
5048 |
|
5076 |
msgid "Video"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
+
#: widgets/premium-grid.php:470 widgets/premium-person.php:442
|
5080 |
+
#: widgets/premium-person.php:678
|
5081 |
msgid "YouTube"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: widgets/premium-grid.php:471 widgets/premium-videobox.php:93
|
5085 |
msgid "Vimeo"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: widgets/premium-grid.php:472 widgets/premium-videobox.php:94
|
5089 |
msgid "Self Hosted"
|
5090 |
msgstr ""
|
5091 |
|
5097 |
msgid "Select Video"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
+
#: widgets/premium-grid.php:522 widgets/premium-videobox.php:312
|
5101 |
msgid "Remote Video URL"
|
5102 |
msgstr ""
|
5103 |
|
5105 |
msgid "Controls"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
+
#: widgets/premium-grid.php:549 widgets/premium-videobox.php:355
|
5109 |
msgid "Mute"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
+
#: widgets/premium-grid.php:578
|
5113 |
msgid "To assign for multiple categories, separate by a comma ','"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: widgets/premium-grid.php:629
|
5117 |
msgid "Whole Image Link"
|
5118 |
msgstr ""
|
5119 |
|
5120 |
+
#: widgets/premium-grid.php:639
|
5121 |
msgid "Whole Image Lightbox"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
+
#: widgets/premium-grid.php:649
|
5125 |
msgid "Images"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
+
#: widgets/premium-grid.php:668
|
5129 |
msgid "Shuffle Images on Page Load"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
+
#: widgets/premium-grid.php:675
|
5133 |
msgid "Youtube Videos Thumbnail Size"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
+
#: widgets/premium-grid.php:678 widgets/premium-videobox.php:739
|
5137 |
msgid "Maximum Resolution"
|
5138 |
msgstr ""
|
5139 |
|
5140 |
+
#: widgets/premium-grid.php:679 widgets/premium-videobox.php:740
|
5141 |
msgid "High Quality"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
+
#: widgets/premium-grid.php:680 widgets/premium-videobox.php:741
|
5145 |
msgid "Medium Quality"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: widgets/premium-grid.php:681 widgets/premium-videobox.php:742
|
5149 |
msgid "Standard Quality"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: widgets/premium-grid.php:698
|
5153 |
msgid "Image Gap"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
+
#: widgets/premium-grid.php:717
|
5157 |
msgid "Choose a layout style for the gallery"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
+
#: widgets/premium-grid.php:720 widgets/premium-person.php:98
|
5161 |
+
#: widgets/premium-title.php:106
|
|
|
|
|
|
|
|
|
|
|
5162 |
msgid "Style 2"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
+
#: widgets/premium-grid.php:721 widgets/premium-person.php:99
|
5166 |
+
#: widgets/premium-title.php:107
|
5167 |
msgid "Style 3"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: widgets/premium-grid.php:722 widgets/premium-title.php:108
|
5171 |
msgid "Style 4"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
+
#: widgets/premium-grid.php:732
|
5175 |
msgid "Style 4 works only with Even / Masonry Layout"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: widgets/premium-grid.php:786
|
5179 |
msgid "Links Icon"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: widgets/premium-grid.php:797
|
5183 |
msgid "Videos"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: widgets/premium-grid.php:805
|
5187 |
msgid "Always Show Play Icon"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: widgets/premium-grid.php:818
|
5191 |
msgid "Videos Play Icon"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: widgets/premium-grid.php:830
|
5195 |
msgid ""
|
5196 |
"This option moves the origin of the grid to the right side. Useful for RTL "
|
5197 |
"direction sites"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: widgets/premium-grid.php:838 widgets/premium-person.php:210
|
5201 |
msgid "Content Alignment"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
+
#: widgets/premium-grid.php:866 widgets/premium-grid.php:872
|
5205 |
+
#: widgets/premium-grid.php:1962
|
5206 |
msgid "Lightbox"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
+
#: widgets/premium-grid.php:881
|
5210 |
msgid "Lightbox Style"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
+
#: widgets/premium-grid.php:885
|
5214 |
+
msgid "PrettyPhoto"
|
5215 |
+
msgstr ""
|
5216 |
+
|
5217 |
+
#: widgets/premium-grid.php:886
|
5218 |
+
msgid "Elementor"
|
5219 |
+
msgstr ""
|
5220 |
+
|
5221 |
+
#: widgets/premium-grid.php:887
|
5222 |
+
msgid "Other Lightbox Plugin"
|
5223 |
+
msgstr ""
|
5224 |
+
|
5225 |
+
#: widgets/premium-grid.php:897
|
5226 |
+
msgid "Show Image Title"
|
5227 |
+
msgstr ""
|
5228 |
+
|
5229 |
+
#: widgets/premium-grid.php:909
|
5230 |
+
msgid "Please note Elementor lightbox style is always applied on videos."
|
5231 |
+
msgstr ""
|
5232 |
+
|
5233 |
+
#: widgets/premium-grid.php:917
|
5234 |
+
msgid "Lightbox Theme"
|
5235 |
+
msgstr ""
|
5236 |
+
|
5237 |
+
#: widgets/premium-grid.php:921
|
5238 |
+
msgid "Light Rounded"
|
5239 |
+
msgstr ""
|
5240 |
+
|
5241 |
+
#: widgets/premium-grid.php:922
|
5242 |
+
msgid "Dark Rounded"
|
5243 |
+
msgstr ""
|
5244 |
+
|
5245 |
+
#: widgets/premium-grid.php:923
|
5246 |
+
msgid "Light Square"
|
5247 |
+
msgstr ""
|
5248 |
+
|
5249 |
+
#: widgets/premium-grid.php:924
|
5250 |
+
msgid "Dark Square"
|
5251 |
+
msgstr ""
|
5252 |
+
|
5253 |
+
#: widgets/premium-grid.php:925 widgets/premium-person.php:392
|
5254 |
+
#: widgets/premium-person.php:628
|
5255 |
+
msgid "Facebook"
|
5256 |
+
msgstr ""
|
5257 |
+
|
5258 |
+
#: widgets/premium-grid.php:937
|
5259 |
+
msgid "Overlay Gallery Images"
|
5260 |
+
msgstr ""
|
5261 |
+
|
5262 |
+
#: widgets/premium-grid.php:948
|
5263 |
+
msgid "Lightbox Icon"
|
5264 |
+
msgstr ""
|
5265 |
+
|
5266 |
+
#: widgets/premium-grid.php:971
|
5267 |
+
msgid ""
|
5268 |
+
"If the content text is not suiting well on specific screen sizes, you may "
|
5269 |
+
"enable this option which will hide the description text."
|
5270 |
+
msgstr ""
|
5271 |
+
|
5272 |
+
#: widgets/premium-grid.php:1104
|
5273 |
+
msgid "Hover Overlay Color"
|
5274 |
+
msgstr ""
|
5275 |
+
|
5276 |
+
#: widgets/premium-grid.php:1186
|
5277 |
+
msgid "Title / Description"
|
5278 |
+
msgstr ""
|
5279 |
+
|
5280 |
+
#: widgets/premium-grid.php:1323
|
5281 |
+
msgid "Icons"
|
5282 |
+
msgstr ""
|
5283 |
+
|
5284 |
+
#: widgets/premium-grid.php:1876 widgets/premium-vscroll.php:720
|
5285 |
+
#: widgets/premium-vscroll.php:779
|
5286 |
+
msgid "Text Hover Color"
|
5287 |
+
msgstr ""
|
5288 |
+
|
5289 |
+
#: widgets/premium-grid.php:1982
|
5290 |
+
msgid "UI Color"
|
5291 |
+
msgstr ""
|
5292 |
+
|
5293 |
+
#: widgets/premium-grid.php:1992
|
5294 |
+
msgid "UI Hover Color"
|
5295 |
+
msgstr ""
|
5296 |
+
|
5297 |
+
#: widgets/premium-icon-list.php:48
|
5298 |
+
msgid "Bullet list"
|
5299 |
+
msgstr ""
|
5300 |
+
|
5301 |
+
#: widgets/premium-icon-list.php:84 widgets/premium-icon-list.php:613
|
5302 |
+
msgid "List Items"
|
5303 |
+
msgstr ""
|
5304 |
+
|
5305 |
+
#: widgets/premium-icon-list.php:97
|
5306 |
+
msgid "List Title"
|
5307 |
+
msgstr ""
|
5308 |
+
|
5309 |
+
#: widgets/premium-icon-list.php:106
|
5310 |
+
msgid "Show Icon"
|
5311 |
+
msgstr ""
|
5312 |
+
|
5313 |
+
#: widgets/premium-icon-list.php:154 widgets/premium-modalbox.php:122
|
5314 |
+
#: widgets/premium-progressbar.php:218
|
5315 |
+
msgid "Custom Image"
|
5316 |
+
msgstr ""
|
5317 |
+
|
5318 |
+
#: widgets/premium-icon-list.php:241 widgets/premium-image-scroll.php:137
|
5319 |
+
#: widgets/premium-image-separator.php:250
|
5320 |
+
msgid "Link/URL"
|
5321 |
+
msgstr ""
|
5322 |
+
|
5323 |
+
#: widgets/premium-icon-list.php:301
|
5324 |
+
msgid "Badge"
|
5325 |
+
msgstr ""
|
5326 |
+
|
5327 |
+
#: widgets/premium-icon-list.php:311
|
5328 |
+
msgid "Badge Text"
|
5329 |
+
msgstr ""
|
5330 |
+
|
5331 |
+
#: widgets/premium-icon-list.php:354
|
5332 |
+
msgid "Override Global Style"
|
5333 |
+
msgstr ""
|
5334 |
+
|
5335 |
+
#: widgets/premium-icon-list.php:409 widgets/premium-icon-list.php:432
|
5336 |
+
#: widgets/premium-icon-list.php:522 widgets/premium-icon-list.php:540
|
5337 |
+
msgid "Icon/Text Color"
|
5338 |
+
msgstr ""
|
5339 |
+
|
5340 |
+
#: widgets/premium-icon-list.php:454
|
5341 |
+
msgid "Icon/Text Background"
|
5342 |
+
msgstr ""
|
5343 |
+
|
5344 |
+
#: widgets/premium-icon-list.php:475 widgets/premium-icon-list.php:579
|
5345 |
+
msgid "Title Color"
|
5346 |
+
msgstr ""
|
5347 |
+
|
5348 |
+
#: widgets/premium-icon-list.php:558
|
5349 |
+
msgid "Icon/Text Background "
|
5350 |
+
msgstr ""
|
5351 |
+
|
5352 |
+
#: widgets/premium-icon-list.php:661
|
5353 |
+
msgid "List Overflow"
|
5354 |
+
msgstr ""
|
5355 |
+
|
5356 |
+
#: widgets/premium-icon-list.php:664
|
5357 |
+
msgid "Visible"
|
5358 |
+
msgstr ""
|
5359 |
+
|
5360 |
+
#: widgets/premium-icon-list.php:665
|
5361 |
+
msgid "Hidden"
|
5362 |
+
msgstr ""
|
5363 |
+
|
5364 |
+
#: widgets/premium-icon-list.php:678
|
5365 |
+
msgid ""
|
5366 |
+
"Please note that icon connector option only appears when overflow set to "
|
5367 |
+
"visible."
|
5368 |
+
msgstr ""
|
5369 |
+
|
5370 |
+
#: widgets/premium-icon-list.php:688
|
5371 |
+
msgid "Layout Type"
|
5372 |
+
msgstr ""
|
5373 |
+
|
5374 |
+
#: widgets/premium-icon-list.php:753 widgets/premium-title.php:236
|
5375 |
+
msgid "Icon Alignment"
|
5376 |
+
msgstr ""
|
5377 |
+
|
5378 |
+
#: widgets/premium-icon-list.php:783
|
5379 |
+
msgid "Badge Alignment "
|
5380 |
+
msgstr ""
|
5381 |
+
|
5382 |
+
#: widgets/premium-icon-list.php:818
|
5383 |
+
msgid "Icon Connector"
|
5384 |
+
msgstr ""
|
5385 |
+
|
5386 |
+
#: widgets/premium-icon-list.php:832 widgets/premium-lottie.php:403
|
5387 |
+
msgid "Animation"
|
5388 |
+
msgstr ""
|
5389 |
+
|
5390 |
+
#: widgets/premium-icon-list.php:839 widgets/premium-modalbox.php:326
|
5391 |
+
#: widgets/premium-videobox.php:502 widgets/premium-vscroll.php:341
|
5392 |
+
msgid "Entrance Animation"
|
5393 |
+
msgstr ""
|
5394 |
+
|
5395 |
+
#: widgets/premium-icon-list.php:853 widgets/premium-modalbox.php:338
|
5396 |
+
#: widgets/premium-videobox.php:513 widgets/premium-vscroll.php:353
|
5397 |
+
msgid "Animation Duration"
|
5398 |
+
msgstr ""
|
5399 |
+
|
5400 |
+
#: widgets/premium-icon-list.php:857 widgets/premium-modalbox.php:342
|
5401 |
+
#: widgets/premium-videobox.php:517 widgets/premium-vscroll.php:357
|
5402 |
+
msgid "Slow"
|
5403 |
+
msgstr ""
|
5404 |
+
|
5405 |
+
#: widgets/premium-icon-list.php:859 widgets/premium-modalbox.php:344
|
5406 |
+
#: widgets/premium-videobox.php:519 widgets/premium-vscroll.php:359
|
5407 |
+
msgid "Fast"
|
5408 |
+
msgstr ""
|
5409 |
+
|
5410 |
+
#: widgets/premium-icon-list.php:870
|
5411 |
+
msgid "Animation Delay in Between (s)"
|
5412 |
+
msgstr ""
|
5413 |
+
|
5414 |
+
#: widgets/premium-icon-list.php:891
|
5415 |
+
msgid "Grow"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: widgets/premium-icon-list.php:892
|
5419 |
+
msgid "Text Gradient"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: widgets/premium-icon-list.php:942
|
5423 |
+
msgid " General "
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: widgets/premium-icon-list.php:995 widgets/premium-icon-list.php:1190
|
5427 |
+
msgid "Border"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: widgets/premium-icon-list.php:1060 widgets/premium-icon-list.php:1251
|
5431 |
+
msgid ""
|
5432 |
+
"Options below will be applied on items with no style options set "
|
5433 |
+
"individually from the repeater."
|
5434 |
msgstr ""
|
5435 |
|
5436 |
+
#: widgets/premium-icon-list.php:1092
|
5437 |
+
msgid "Color options below will be applied on Font Awesome and Text."
|
5438 |
msgstr ""
|
5439 |
|
5440 |
+
#: widgets/premium-icon-list.php:1135
|
5441 |
+
msgid "Background Color options below will be applied on all icon types."
|
5442 |
msgstr ""
|
5443 |
|
5444 |
+
#: widgets/premium-icon-list.php:1157
|
5445 |
+
msgid " Hover Background"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
+
#: widgets/premium-icon-list.php:1168
|
5449 |
+
msgid "Typography option below will be applied on text."
|
5450 |
msgstr ""
|
5451 |
|
5452 |
+
#: widgets/premium-icon-list.php:1179 widgets/premium-icon-list.php:1261
|
5453 |
+
#: widgets/premium-icon-list.php:1342 widgets/premium-pricing-table.php:1133
|
5454 |
+
#: widgets/premium-pricing-table.php:1206
|
5455 |
+
#: widgets/premium-pricing-table.php:1251
|
5456 |
+
#: widgets/premium-pricing-table.php:1303
|
5457 |
+
msgid "Typography"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
+
#: widgets/premium-icon-list.php:1332
|
5461 |
+
msgid " Badge "
|
|
|
5462 |
msgstr ""
|
5463 |
|
5464 |
+
#: widgets/premium-icon-list.php:1351
|
5465 |
+
msgid ""
|
5466 |
+
"Color options below will be applied on badge with no style options set "
|
5467 |
+
"individually from the repeater."
|
5468 |
msgstr ""
|
5469 |
|
5470 |
+
#: widgets/premium-icon-list.php:1396
|
5471 |
+
msgid "Badge Radius"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: widgets/premium-icon-list.php:1474
|
5475 |
+
msgid " Divider "
|
|
|
|
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: widgets/premium-icon-list.php:1486
|
5479 |
+
msgid "Divider Style"
|
|
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: widgets/premium-icon-list.php:1489 widgets/premium-icon-list.php:1609
|
5483 |
+
#: widgets/premium-progressbar.php:432
|
5484 |
+
msgid "Solid"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: widgets/premium-icon-list.php:1490 widgets/premium-icon-list.php:1610
|
5488 |
+
msgid "Double"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: widgets/premium-icon-list.php:1491 widgets/premium-icon-list.php:1612
|
5492 |
+
msgid "Dotted"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: widgets/premium-icon-list.php:1492 widgets/premium-icon-list.php:1611
|
5496 |
+
#: widgets/premium-icon-list.php:1613
|
5497 |
+
msgid "Dashed"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
+
#: widgets/premium-icon-list.php:1493 widgets/premium-icon-list.php:1614
|
5501 |
+
msgid "Groove"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
+
#: widgets/premium-icon-list.php:1510 widgets/premium-icon-list.php:1630
|
5505 |
+
msgid " Width"
|
|
|
5506 |
msgstr ""
|
5507 |
|
5508 |
+
#: widgets/premium-icon-list.php:1538 widgets/premium-icon-list.php:1657
|
5509 |
+
msgid " Height"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
+
#: widgets/premium-icon-list.php:1590
|
5513 |
+
msgid " Connector "
|
5514 |
msgstr ""
|
5515 |
|
5516 |
#: widgets/premium-image-button.php:142
|
5545 |
msgid "Overlap Direction"
|
5546 |
msgstr ""
|
5547 |
|
5548 |
+
#: widgets/premium-image-scroll.php:76 widgets/premium-image-separator.php:82
|
5549 |
msgid "Image Settings"
|
5550 |
msgstr ""
|
5551 |
|
5552 |
+
#: widgets/premium-image-scroll.php:88
|
5553 |
msgid "Choose the scroll image"
|
5554 |
msgstr ""
|
5555 |
|
5556 |
+
#: widgets/premium-image-scroll.php:104
|
5557 |
msgid "Image Height"
|
5558 |
msgstr ""
|
5559 |
|
5560 |
+
#: widgets/premium-image-scroll.php:131 widgets/premium-image-separator.php:244
|
5561 |
msgid "Add a custom link or select an existing page link"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
+
#: widgets/premium-image-scroll.php:192
|
5565 |
+
msgid "Mask Image Shape"
|
5566 |
+
msgstr ""
|
5567 |
+
|
5568 |
+
#: widgets/premium-image-scroll.php:201 widgets/premium-videobox.php:801
|
5569 |
+
msgid "Mask Image"
|
5570 |
+
msgstr ""
|
5571 |
+
|
5572 |
+
#: widgets/premium-image-scroll.php:206
|
5573 |
+
msgid "Use PNG image with the shape you want to mask around feature image."
|
5574 |
+
msgstr ""
|
5575 |
+
|
5576 |
+
#: widgets/premium-image-scroll.php:218 widgets/premium-videobox.php:818
|
5577 |
+
msgid "Mask Size"
|
5578 |
+
msgstr ""
|
5579 |
+
|
5580 |
+
#: widgets/premium-image-scroll.php:236 widgets/premium-image-scroll.php:262
|
5581 |
+
#: widgets/premium-videobox.php:836 widgets/premium-videobox.php:862
|
5582 |
+
msgid "Mask Position"
|
5583 |
+
msgstr ""
|
5584 |
+
|
5585 |
+
#: widgets/premium-image-scroll.php:239 widgets/premium-image-scroll.php:265
|
5586 |
+
#: widgets/premium-videobox.php:839 widgets/premium-videobox.php:865
|
5587 |
+
msgid "Center Center"
|
5588 |
+
msgstr ""
|
5589 |
+
|
5590 |
+
#: widgets/premium-image-scroll.php:240 widgets/premium-videobox.php:473
|
5591 |
+
#: widgets/premium-videobox.php:840
|
5592 |
+
msgid "Center Left"
|
5593 |
+
msgstr ""
|
5594 |
+
|
5595 |
+
#: widgets/premium-image-scroll.php:241 widgets/premium-videobox.php:474
|
5596 |
+
#: widgets/premium-videobox.php:841
|
5597 |
+
msgid "Center Right"
|
5598 |
+
msgstr ""
|
5599 |
+
|
5600 |
+
#: widgets/premium-image-scroll.php:242 widgets/premium-image-scroll.php:266
|
5601 |
+
#: widgets/premium-videobox.php:842 widgets/premium-videobox.php:866
|
5602 |
+
msgid "Top Center"
|
5603 |
+
msgstr ""
|
5604 |
+
|
5605 |
+
#: widgets/premium-image-scroll.php:243 widgets/premium-videobox.php:469
|
5606 |
+
#: widgets/premium-videobox.php:843
|
5607 |
+
msgid "Top Left"
|
5608 |
+
msgstr ""
|
5609 |
+
|
5610 |
+
#: widgets/premium-image-scroll.php:244 widgets/premium-videobox.php:470
|
5611 |
+
#: widgets/premium-videobox.php:844
|
5612 |
+
msgid "Top Right"
|
5613 |
+
msgstr ""
|
5614 |
+
|
5615 |
+
#: widgets/premium-image-scroll.php:245 widgets/premium-image-scroll.php:267
|
5616 |
+
#: widgets/premium-videobox.php:845 widgets/premium-videobox.php:867
|
5617 |
+
msgid "Bottom Center"
|
5618 |
+
msgstr ""
|
5619 |
+
|
5620 |
+
#: widgets/premium-image-scroll.php:246 widgets/premium-videobox.php:471
|
5621 |
+
#: widgets/premium-videobox.php:846
|
5622 |
+
msgid "Bottom Left"
|
5623 |
+
msgstr ""
|
5624 |
+
|
5625 |
+
#: widgets/premium-image-scroll.php:247 widgets/premium-videobox.php:472
|
5626 |
+
#: widgets/premium-videobox.php:847
|
5627 |
+
msgid "Bottom Right"
|
5628 |
+
msgstr ""
|
5629 |
+
|
5630 |
+
#: widgets/premium-image-scroll.php:282
|
5631 |
+
msgid "Image Shadow"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
+
#: widgets/premium-image-scroll.php:370
|
5635 |
msgid "Direction"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
+
#: widgets/premium-image-scroll.php:371
|
5639 |
msgid "Select Scroll Direction"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: widgets/premium-image-scroll.php:383
|
5643 |
+
msgid "Image Fit"
|
5644 |
+
msgstr ""
|
5645 |
+
|
5646 |
+
#: widgets/premium-image-scroll.php:401
|
5647 |
msgid "Reverse Direction"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
+
#: widgets/premium-image-scroll.php:411 widgets/premium-lottie.php:143
|
5651 |
+
#: widgets/premium-modalbox.php:377 widgets/premium-modalbox.php:756
|
5652 |
msgid "Trigger"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: widgets/premium-image-scroll.php:415
|
5656 |
msgid "Mouse Scroll"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: widgets/premium-image-scroll.php:423 widgets/premium-lottie.php:173
|
5660 |
msgid "Speed"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: widgets/premium-image-scroll.php:424
|
5664 |
msgid "Set the scroll speed value. The value will be counted in seconds (s)"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: widgets/premium-image-scroll.php:470 widgets/premium-videobox.php:652
|
5668 |
+
#: widgets/premium-videobox.php:665 widgets/premium-videobox.php:678
|
|
|
|
|
|
|
|
|
|
|
5669 |
msgid "Show"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
+
#: widgets/premium-image-scroll.php:471 widgets/premium-videobox.php:653
|
5673 |
+
#: widgets/premium-videobox.php:666 widgets/premium-videobox.php:679
|
5674 |
msgid "Hide"
|
5675 |
msgstr ""
|
5676 |
|
5677 |
+
#: widgets/premium-image-scroll.php:539 widgets/premium-image-scroll.php:572
|
5678 |
+
#: widgets/premium-lottie.php:428 widgets/premium-lottie.php:471
|
5679 |
msgid "Opacity"
|
5680 |
msgstr ""
|
5681 |
|
5687 |
msgid "Choose the separator image"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
+
#: widgets/premium-image-separator.php:167 widgets/premium-modalbox.php:645
|
|
|
5691 |
msgid "Only Play on Hover"
|
5692 |
msgstr ""
|
5693 |
|
5713 |
msgid "General Settings"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
+
#: widgets/premium-lottie.php:78
|
5717 |
+
msgid "File Source"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
+
#: widgets/premium-lottie.php:81
|
5721 |
+
msgid "External URL"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
+
#: widgets/premium-lottie.php:82
|
5725 |
+
msgid "Media File"
|
5726 |
msgstr ""
|
5727 |
|
5728 |
+
#: widgets/premium-lottie.php:103
|
5729 |
+
msgid "Upload JSON File"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
+
#: widgets/premium-lottie.php:147 widgets/premium-lottie.php:193
|
5733 |
+
msgid "Viewport"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: widgets/premium-lottie.php:149
|
5737 |
+
msgid "Scroll"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
+
#: widgets/premium-lottie.php:157
|
5741 |
+
msgid "Play on Hover"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
+
#: widgets/premium-lottie.php:165
|
5745 |
+
msgid "Play On Scroll"
|
|
|
5746 |
msgstr ""
|
5747 |
|
5748 |
+
#: widgets/premium-lottie.php:346
|
5749 |
+
msgid "Render As"
|
|
|
5750 |
msgstr ""
|
5751 |
|
5752 |
+
#: widgets/premium-lottie.php:349
|
5753 |
+
msgid "SVG"
|
|
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: widgets/premium-lottie.php:350
|
5757 |
+
msgid "Canvas"
|
|
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: widgets/premium-lottie.php:362
|
5761 |
+
msgid ""
|
5762 |
+
"Set render type to canvas if you're having performance issues on the page."
|
5763 |
msgstr ""
|
5764 |
|
5765 |
#: widgets/premium-maps.php:81
|
5902 |
msgid "JSON Code"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
+
#: widgets/premium-maps.php:436
|
5906 |
+
msgid "Getting started »"
|
|
|
5907 |
msgstr ""
|
5908 |
|
5909 |
+
#: widgets/premium-maps.php:446
|
5910 |
+
msgid "Getting your API key »"
|
5911 |
+
msgstr ""
|
5912 |
+
|
5913 |
+
#: widgets/premium-maps.php:617
|
5914 |
msgid "Map"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
+
#: widgets/premium-modalbox.php:105 widgets/premium-modalbox.php:1050
|
5918 |
msgid "Header"
|
5919 |
msgstr ""
|
5920 |
|
5922 |
msgid "Enable or disable modal header"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
+
#: widgets/premium-modalbox.php:136
|
5926 |
+
msgid "Select Icon"
|
5927 |
msgstr ""
|
5928 |
|
5929 |
#: widgets/premium-modalbox.php:230
|
5946 |
msgid "Modal content is a template which you can choose from Elementor library"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
+
#: widgets/premium-modalbox.php:292 widgets/premium-modalbox.php:1102
|
5950 |
msgid "Upper Close Button"
|
5951 |
msgstr ""
|
5952 |
|
5953 |
+
#: widgets/premium-modalbox.php:304 widgets/premium-modalbox.php:1250
|
5954 |
msgid "Lower Close Button"
|
5955 |
msgstr ""
|
5956 |
|
5957 |
+
#: widgets/premium-modalbox.php:370
|
5958 |
msgid "Trigger Options"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
+
#: widgets/premium-modalbox.php:379
|
5962 |
msgid "Choose where would you like the modal box appear on"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
+
#: widgets/premium-modalbox.php:385
|
5966 |
msgid "On Page Load"
|
5967 |
msgstr ""
|
5968 |
|
5969 |
+
#: widgets/premium-modalbox.php:396 widgets/premium-modalbox.php:596
|
5970 |
msgid "Premium Modal Box"
|
5971 |
msgstr ""
|
5972 |
|
5973 |
+
#: widgets/premium-modalbox.php:557
|
5974 |
msgid "Button Size"
|
5975 |
msgstr ""
|
5976 |
|
5977 |
+
#: widgets/premium-modalbox.php:681
|
5978 |
msgid "Delay in Popup Display (Sec)"
|
5979 |
msgstr ""
|
5980 |
|
5981 |
+
#: widgets/premium-modalbox.php:683
|
5982 |
msgid ""
|
5983 |
"When should the popup appear during page load? The value are counted in "
|
5984 |
"seconds"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
+
#: widgets/premium-modalbox.php:844
|
5988 |
msgid "Icon Hover Color"
|
5989 |
msgstr ""
|
5990 |
|
5991 |
+
#: widgets/premium-modalbox.php:1450
|
5992 |
msgid "Content Background Color"
|
5993 |
msgstr ""
|
5994 |
|
5995 |
+
#: widgets/premium-modalbox.php:1478
|
5996 |
msgid "Max Height"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
+
#: widgets/premium-modalbox.php:1506
|
6000 |
msgid "Footer Background Color"
|
6001 |
msgstr ""
|
6002 |
|
6008 |
msgid "Enable this option if you need to add multiple persons"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
+
#: widgets/premium-person.php:108
|
6012 |
+
msgid "Title Rotate"
|
6013 |
+
msgstr ""
|
6014 |
+
|
6015 |
+
#: widgets/premium-person.php:111
|
6016 |
+
msgid "90 Degrees"
|
6017 |
+
msgstr ""
|
6018 |
+
|
6019 |
+
#: widgets/premium-person.php:112
|
6020 |
+
msgid "-90 Degrees"
|
6021 |
+
msgstr ""
|
6022 |
+
|
6023 |
+
#: widgets/premium-person.php:140
|
6024 |
msgid "Enter image width in (PX, EM, %), default is 100%"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
+
#: widgets/premium-person.php:235
|
6028 |
msgid "Name Tag"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
+
#: widgets/premium-person.php:255
|
6032 |
msgid "Title Tag"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: widgets/premium-person.php:275
|
6036 |
msgid "Members/Row"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: widgets/premium-person.php:332
|
|
|
|
|
|
|
|
|
6040 |
msgid "Single Member Settings"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
+
#: widgets/premium-person.php:377 widgets/premium-person.php:613
|
|
|
|
|
|
|
|
|
6044 |
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
+
#: widgets/premium-person.php:383 widgets/premium-person.php:619
|
6048 |
msgid "Enable Social Icons"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
+
#: widgets/premium-person.php:405 widgets/premium-person.php:641
|
6052 |
msgid "Twitter"
|
6053 |
msgstr ""
|
6054 |
|
6055 |
+
#: widgets/premium-person.php:418 widgets/premium-person.php:654
|
6056 |
msgid "LinkedIn"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
+
#: widgets/premium-person.php:430 widgets/premium-person.php:666
|
6060 |
msgid "Google+"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
+
#: widgets/premium-person.php:454 widgets/premium-person.php:690
|
6064 |
msgid "Instagram"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: widgets/premium-person.php:467 widgets/premium-person.php:703
|
6068 |
msgid "Skype"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
+
#: widgets/premium-person.php:479 widgets/premium-person.php:715
|
6072 |
msgid "Pinterest"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
+
#: widgets/premium-person.php:491 widgets/premium-person.php:727
|
6076 |
msgid "Dribbble"
|
6077 |
msgstr ""
|
6078 |
|
6079 |
+
#: widgets/premium-person.php:504 widgets/premium-person.php:740
|
6080 |
msgid "Behance"
|
6081 |
msgstr ""
|
6082 |
|
6083 |
+
#: widgets/premium-person.php:516 widgets/premium-person.php:752
|
6084 |
msgid "WhatsApp"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
+
#: widgets/premium-person.php:528 widgets/premium-person.php:764
|
6088 |
msgid "Telegram"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
+
#: widgets/premium-person.php:540 widgets/premium-person.php:776
|
6092 |
msgid "Email Address"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
+
#: widgets/premium-person.php:552 widgets/premium-person.php:788
|
6096 |
msgid "Website"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
+
#: widgets/premium-person.php:567
|
6100 |
msgid "Multiple Members Settings"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: widgets/premium-person.php:800
|
6104 |
msgid "Members"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
+
#: widgets/premium-person.php:887 widgets/premium-testimonials.php:288
|
6108 |
+
#, php-format
|
6109 |
+
msgid "%1$s I'm not able to see Font Awesome icons in the widget » %2$s"
|
6110 |
+
msgstr ""
|
6111 |
+
|
6112 |
+
#: widgets/premium-person.php:1007
|
6113 |
msgid "Job Title"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: widgets/premium-person.php:1120
|
6117 |
msgid "Social Icons"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
+
#: widgets/premium-person.php:1180
|
6121 |
msgid "Brands Default Colors"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: widgets/premium-person.php:1262
|
6125 |
msgid "Bottom Offset"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
+
#: widgets/premium-person.php:1287
|
6129 |
msgid "Transition Duration (sec)"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
#: widgets/premium-person.php:1380
|
6133 |
msgid "Background Hover Color"
|
6134 |
msgstr ""
|
6135 |
|
6137 |
msgid "Select HTML tag for the title"
|
6138 |
msgstr ""
|
6139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6140 |
#: widgets/premium-pricing-table.php:208 widgets/premium-pricing-table.php:1070
|
6141 |
msgid "Slashed Price"
|
6142 |
msgstr ""
|
6145 |
msgid "Currency"
|
6146 |
msgstr ""
|
6147 |
|
|
|
|
|
|
|
|
|
6148 |
#: widgets/premium-pricing-table.php:251 widgets/premium-pricing-table.php:1278
|
6149 |
msgid "Duration"
|
6150 |
msgstr ""
|
6165 |
msgid "Tooltip Text"
|
6166 |
msgstr ""
|
6167 |
|
|
|
|
|
|
|
|
|
|
|
6168 |
#: widgets/premium-pricing-table.php:397
|
6169 |
msgid "List Item #1"
|
6170 |
msgstr ""
|
6215 |
msgid "NEW"
|
6216 |
msgstr ""
|
6217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6218 |
#: widgets/premium-pricing-table.php:1150
|
6219 |
msgid "Unset"
|
6220 |
msgstr ""
|
6223 |
msgid "Vertical Spacing"
|
6224 |
msgstr ""
|
6225 |
|
6226 |
+
#: widgets/premium-pricing-table.php:1539 widgets/premium-vscroll.php:450
|
6227 |
msgid "Tooltips"
|
6228 |
msgstr ""
|
6229 |
|
6305 |
msgid "Labels Alignment"
|
6306 |
msgstr ""
|
6307 |
|
|
|
|
|
|
|
|
|
6308 |
#: widgets/premium-progressbar.php:433
|
6309 |
msgid "Striped"
|
6310 |
msgstr ""
|
6311 |
|
|
|
|
|
|
|
|
|
6312 |
#: widgets/premium-progressbar.php:444
|
6313 |
msgid "Speed (milliseconds)"
|
6314 |
msgstr ""
|
6389 |
msgid "Align"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
+
#: widgets/premium-testimonials.php:177 widgets/premium-testimonials.php:432
|
6393 |
msgid "Company"
|
6394 |
msgstr ""
|
6395 |
|
6433 |
"Donec id elit non mi porta gravida at eget metus."
|
6434 |
msgstr ""
|
6435 |
|
6436 |
+
#: widgets/premium-testimonials.php:325
|
6437 |
msgid "Border Width (PX)"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
+
#: widgets/premium-testimonials.php:368
|
6441 |
msgid "Author Color"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
+
#: widgets/premium-testimonials.php:384
|
6445 |
msgid "Name Typograhy"
|
6446 |
msgstr ""
|
6447 |
|
6448 |
+
#: widgets/premium-testimonials.php:420
|
|
|
|
|
|
|
|
|
6449 |
msgid "Separator Typograhy"
|
6450 |
msgstr ""
|
6451 |
|
6452 |
+
#: widgets/premium-testimonials.php:522
|
6453 |
msgid "Quotation Icon"
|
6454 |
msgstr ""
|
6455 |
|
6456 |
+
#: widgets/premium-testimonials.php:561
|
6457 |
msgid "Top Icon Position"
|
6458 |
msgstr ""
|
6459 |
|
6460 |
+
#: widgets/premium-testimonials.php:577
|
6461 |
msgid "Bottom Icon Position"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
+
#: widgets/premium-title.php:93
|
6465 |
msgid "Premium Title"
|
6466 |
msgstr ""
|
6467 |
|
6468 |
+
#: widgets/premium-title.php:109
|
6469 |
msgid "Style 5"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
+
#: widgets/premium-title.php:110
|
6473 |
msgid "Style 6"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
+
#: widgets/premium-title.php:111
|
6477 |
msgid "Style 7"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: widgets/premium-title.php:112
|
6481 |
+
msgid "Style 8"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: widgets/premium-title.php:113
|
6485 |
+
msgid "Style 9"
|
6486 |
+
msgstr ""
|
6487 |
+
|
6488 |
+
#: widgets/premium-title.php:144
|
6489 |
+
msgid "Font Awesome Icon"
|
6490 |
msgstr ""
|
6491 |
|
6492 |
+
#: widgets/premium-title.php:348
|
6493 |
msgid ""
|
6494 |
"Please note that left/right alignment is reversed when Icon Position is set "
|
6495 |
"to After."
|
6496 |
msgstr ""
|
6497 |
|
6498 |
+
#: widgets/premium-title.php:361
|
6499 |
msgid "Stripe Position"
|
6500 |
msgstr ""
|
6501 |
|
6502 |
+
#: widgets/premium-title.php:385
|
6503 |
msgid "Stripe Width (PX)"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
+
#: widgets/premium-title.php:404
|
6507 |
msgid "Stripe Height (PX)"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
+
#: widgets/premium-title.php:423
|
6511 |
msgid "Stripe Top Spacing (PX)"
|
6512 |
msgstr ""
|
6513 |
|
6514 |
+
#: widgets/premium-title.php:438
|
6515 |
msgid "Stripe Bottom Spacing (PX)"
|
6516 |
msgstr ""
|
6517 |
|
6518 |
+
#: widgets/premium-title.php:453
|
6519 |
msgid "Stripe Alignment"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
+
#: widgets/premium-title.php:673
|
6523 |
+
msgid "Blur Color"
|
6524 |
+
msgstr ""
|
6525 |
+
|
6526 |
+
#: widgets/premium-title.php:685
|
6527 |
+
msgid "Shiny Color"
|
6528 |
+
msgstr ""
|
6529 |
+
|
6530 |
+
#: widgets/premium-title.php:751 widgets/premium-title.php:779
|
6531 |
msgid "Line Color"
|
6532 |
msgstr ""
|
6533 |
|
6534 |
+
#: widgets/premium-title.php:796
|
6535 |
msgid "Triangle Color"
|
6536 |
msgstr ""
|
6537 |
|
6538 |
+
#: widgets/premium-title.php:813
|
6539 |
msgid "Stripe Color"
|
6540 |
msgstr ""
|
6541 |
|
6542 |
+
#: widgets/premium-title.php:839
|
6543 |
+
msgid "Blur Shadow Value (px)"
|
6544 |
+
msgstr ""
|
6545 |
+
|
6546 |
+
#: widgets/premium-title.php:853
|
6547 |
+
msgid "Animation Delay (s)"
|
6548 |
+
msgstr ""
|
6549 |
+
|
6550 |
+
#: widgets/premium-title.php:869
|
6551 |
+
msgid "Animation Duration (s)"
|
6552 |
+
msgstr ""
|
6553 |
+
|
6554 |
+
#: widgets/premium-videobox.php:88
|
6555 |
msgid "Video Type"
|
6556 |
msgstr ""
|
6557 |
|
6558 |
+
#: widgets/premium-videobox.php:92
|
6559 |
msgid "Youtube"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
+
#: widgets/premium-videobox.php:106 widgets/premium-videobox.php:128
|
6563 |
msgid "Embed URL"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
+
#: widgets/premium-videobox.php:116
|
6567 |
msgid "Video ID"
|
6568 |
msgstr ""
|
6569 |
|
6570 |
+
#: widgets/premium-videobox.php:117
|
6571 |
msgid ""
|
6572 |
"Enter the numbers and letters after the equal sign which located in your "
|
6573 |
"YouTube video link or after the slash sign in your Vimeo video link. For "
|
6574 |
"example, z1hQgVpfTKU"
|
6575 |
msgstr ""
|
6576 |
|
6577 |
+
#: widgets/premium-videobox.php:129
|
6578 |
msgid ""
|
6579 |
"Enter your YouTube/Vimeo video link. For example, https://www.youtube.com/"
|
6580 |
"embed/z1hQgVpfTKU"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
+
#: widgets/premium-videobox.php:140
|
6584 |
+
msgid "Get Videos From Channel/Playlist"
|
6585 |
+
msgstr ""
|
6586 |
+
|
6587 |
+
#: widgets/premium-videobox.php:195
|
6588 |
+
msgid "Playlist"
|
6589 |
+
msgstr ""
|
6590 |
+
|
6591 |
+
#: widgets/premium-videobox.php:196
|
6592 |
+
msgid "Channel"
|
6593 |
+
msgstr ""
|
6594 |
+
|
6595 |
+
#: widgets/premium-videobox.php:208
|
6596 |
+
msgid "Playlist ID"
|
6597 |
+
msgstr ""
|
6598 |
+
|
6599 |
+
#: widgets/premium-videobox.php:224
|
6600 |
+
msgid "Channel ID"
|
6601 |
+
msgstr ""
|
6602 |
+
|
6603 |
+
#: widgets/premium-videobox.php:240
|
6604 |
+
msgid "Videos/Row"
|
6605 |
+
msgstr ""
|
6606 |
+
|
6607 |
+
#: widgets/premium-videobox.php:266
|
6608 |
+
msgid "Number of Videos"
|
6609 |
+
msgstr ""
|
6610 |
+
|
6611 |
+
#: widgets/premium-videobox.php:270
|
6612 |
+
msgid "Set a number of videos to retrieve"
|
6613 |
+
msgstr ""
|
6614 |
+
|
6615 |
+
#: widgets/premium-videobox.php:280
|
6616 |
+
msgid "Featured The First Video"
|
6617 |
+
msgstr ""
|
6618 |
+
|
6619 |
+
#: widgets/premium-videobox.php:341
|
6620 |
msgid "Player Controls"
|
6621 |
msgstr ""
|
6622 |
|
6623 |
+
#: widgets/premium-videobox.php:343
|
6624 |
msgid "Show/hide player controls"
|
6625 |
msgstr ""
|
6626 |
|
6627 |
+
#: widgets/premium-videobox.php:357
|
6628 |
msgid "This will play the video muted"
|
6629 |
msgstr ""
|
6630 |
|
6631 |
+
#: widgets/premium-videobox.php:363
|
6632 |
msgid "Autoplay"
|
6633 |
msgstr ""
|
6634 |
|
6635 |
+
#: widgets/premium-videobox.php:375
|
6636 |
+
msgid "Autoplay On Viewport"
|
6637 |
+
msgstr ""
|
6638 |
+
|
6639 |
+
#: widgets/premium-videobox.php:391
|
6640 |
msgid ""
|
6641 |
"Please note that autoplay option works only when Overlay option is disabled"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: widgets/premium-videobox.php:418
|
6645 |
+
msgid "Download Button"
|
6646 |
+
msgstr ""
|
6647 |
+
|
6648 |
+
#: widgets/premium-videobox.php:429
|
6649 |
+
msgid "Sticky"
|
6650 |
+
msgstr ""
|
6651 |
+
|
6652 |
+
#: widgets/premium-videobox.php:453
|
6653 |
+
msgid "Sticky Only After Played"
|
6654 |
+
msgstr ""
|
6655 |
+
|
6656 |
+
#: widgets/premium-videobox.php:485
|
6657 |
+
msgid "Disable Sticky On"
|
6658 |
+
msgstr ""
|
6659 |
+
|
6660 |
+
#: widgets/premium-videobox.php:490
|
6661 |
+
msgid "Desktop"
|
6662 |
+
msgstr ""
|
6663 |
+
|
6664 |
+
#: widgets/premium-videobox.php:491
|
6665 |
+
msgid "Tablet"
|
6666 |
+
msgstr ""
|
6667 |
+
|
6668 |
+
#: widgets/premium-videobox.php:492
|
6669 |
+
msgid "Mobile"
|
6670 |
+
msgstr ""
|
6671 |
+
|
6672 |
+
#: widgets/premium-videobox.php:564 widgets/premium-videobox.php:1684
|
6673 |
+
msgid "Info Section"
|
6674 |
+
msgstr ""
|
6675 |
+
|
6676 |
+
#: widgets/premium-videobox.php:574
|
6677 |
+
msgid "Watching: Sticky Video"
|
6678 |
+
msgstr ""
|
6679 |
+
|
6680 |
+
#: widgets/premium-videobox.php:598
|
6681 |
msgid "Start Time"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: widgets/premium-videobox.php:601
|
6685 |
msgid "Specify a start time (in seconds)"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: widgets/premium-videobox.php:610
|
6689 |
msgid "End Time"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: widgets/premium-videobox.php:612
|
6693 |
msgid "Specify an end time (in seconds)"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: widgets/premium-videobox.php:622
|
6697 |
msgid "Suggested Videos From"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: widgets/premium-videobox.php:625
|
6701 |
msgid "Current Channel"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: widgets/premium-videobox.php:626
|
6705 |
msgid "Any Channel"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: widgets/premium-videobox.php:636
|
6709 |
msgid "Controls Color"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: widgets/premium-videobox.php:650
|
6713 |
msgid "Intro Title"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: widgets/premium-videobox.php:663
|
6717 |
msgid "Intro Portrait"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: widgets/premium-videobox.php:676
|
6721 |
msgid "Intro Byline"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: widgets/premium-videobox.php:689
|
6725 |
msgid "Aspect Ratio"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: widgets/premium-videobox.php:707
|
6729 |
+
msgid "Video Height (%)"
|
6730 |
+
msgstr ""
|
6731 |
+
|
6732 |
+
#: widgets/premium-videobox.php:736
|
6733 |
msgid "Thumbnail Size"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: widgets/premium-videobox.php:793
|
6737 |
+
msgid "Mask Video Shape"
|
6738 |
+
msgstr ""
|
6739 |
+
|
6740 |
+
#: widgets/premium-videobox.php:806
|
6741 |
+
msgid "Use PNG image with the shape you want to mask around feature video."
|
6742 |
+
msgstr ""
|
6743 |
+
|
6744 |
+
#: widgets/premium-videobox.php:882
|
6745 |
+
msgid "Mask Shadow"
|
6746 |
+
msgstr ""
|
6747 |
+
|
6748 |
+
#: widgets/premium-videobox.php:981
|
6749 |
msgid "Choose an image for the video box"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: widgets/premium-videobox.php:995 widgets/premium-videobox.php:1001
|
6753 |
+
#: widgets/premium-videobox.php:1288 widgets/premium-videobox.php:1576
|
6754 |
msgid "Play Icon"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
+
#: widgets/premium-videobox.php:1009 widgets/premium-videobox.php:1101
|
6758 |
+
#: widgets/premium-vscroll.php:271
|
6759 |
+
msgid "Horizontal Position"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
+
#: widgets/premium-videobox.php:1038 widgets/premium-videobox.php:1130
|
6763 |
+
#: widgets/premium-vscroll.php:286
|
6764 |
+
msgid "Vertical Position"
|
6765 |
msgstr ""
|
6766 |
|
6767 |
+
#: widgets/premium-videobox.php:1080 widgets/premium-videobox.php:1404
|
6768 |
msgid "Video Text"
|
6769 |
msgstr ""
|
6770 |
|
6771 |
+
#: widgets/premium-videobox.php:1090
|
6772 |
msgid "Play Video"
|
6773 |
msgstr ""
|
6774 |
|
6775 |
+
#: widgets/premium-videobox.php:1228
|
6776 |
+
msgid ""
|
6777 |
+
"Please note that in case Sticky and Mask Shape options are both enabled, "
|
6778 |
+
"image shadow will be applied only on sticky overlay image"
|
6779 |
+
msgstr ""
|
6780 |
+
|
6781 |
+
#: widgets/premium-videobox.php:1391
|
6782 |
msgid "Hover Padding"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
+
#: widgets/premium-videobox.php:1494
|
6786 |
+
msgid "Sticky Options"
|
6787 |
+
msgstr ""
|
6788 |
+
|
6789 |
+
#: widgets/premium-videobox.php:1502
|
6790 |
+
msgid "Video Size"
|
6791 |
+
msgstr ""
|
6792 |
+
|
6793 |
+
#: widgets/premium-videobox.php:1538
|
6794 |
+
msgid "Spaces Around"
|
6795 |
+
msgstr ""
|
6796 |
+
|
6797 |
+
#: widgets/premium-videobox.php:1565
|
6798 |
+
msgid "Shadow Color"
|
6799 |
+
msgstr ""
|
6800 |
+
|
6801 |
+
#: widgets/premium-videobox.php:1622
|
6802 |
+
msgid "Video Text Size"
|
6803 |
+
msgstr ""
|
6804 |
+
|
6805 |
+
#: widgets/premium-videobox.php:1636
|
6806 |
+
msgid "Close Icon"
|
6807 |
+
msgstr ""
|
6808 |
+
|
6809 |
+
#: widgets/premium-videobox.php:2392
|
6810 |
+
msgid "Please Enter a Valid API Key & Channel/Playlist ID"
|
6811 |
+
msgstr ""
|
6812 |
+
|
6813 |
+
#: widgets/premium-videobox.php:2414
|
6814 |
+
msgid ""
|
6815 |
+
"Something went wrong. It seems like the playlist you selected does not have "
|
6816 |
+
"any videos"
|
6817 |
+
msgstr ""
|
6818 |
+
|
6819 |
#: widgets/premium-vscroll.php:97
|
6820 |
msgid "Choose which method you prefer to insert sections."
|
6821 |
msgstr ""
|
6837 |
msgid "Navigation"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
+
#: widgets/premium-vscroll.php:172 widgets/premium-vscroll.php:680
|
6841 |
msgid "Navigation Menu"
|
6842 |
msgstr ""
|
6843 |
|
6865 |
msgid "Menu Items"
|
6866 |
msgstr ""
|
6867 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6868 |
#: widgets/premium-vscroll.php:302
|
6869 |
msgid "Shape"
|
6870 |
msgstr ""
|
6889 |
msgid "Add text for each navigation dot separated by ','"
|
6890 |
msgstr ""
|
6891 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6892 |
#: widgets/premium-vscroll.php:372
|
6893 |
msgid "Scroll Settings"
|
6894 |
msgstr ""
|
6922 |
msgid "Enable Full Section Scroll on Touch Devices"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
+
#: widgets/premium-vscroll.php:429
|
6926 |
+
#, php-format
|
6927 |
+
msgid ""
|
6928 |
+
"%1$s How to create an Elementor template to be used in Premium Vertical "
|
6929 |
+
"Scroll » %2$s"
|
6930 |
+
msgstr ""
|
6931 |
+
|
6932 |
+
#: widgets/premium-vscroll.php:459
|
6933 |
msgid "Tooltips Text Color"
|
6934 |
msgstr ""
|
6935 |
|
6936 |
+
#: widgets/premium-vscroll.php:488
|
6937 |
msgid "Tooltips Background"
|
6938 |
msgstr ""
|
6939 |
|
6940 |
+
#: widgets/premium-vscroll.php:579
|
6941 |
msgid "Dots Color"
|
6942 |
msgstr ""
|
6943 |
|
6944 |
+
#: widgets/premium-vscroll.php:593
|
6945 |
msgid "Active Dot Color"
|
6946 |
msgstr ""
|
6947 |
|
6948 |
+
#: widgets/premium-vscroll.php:607
|
6949 |
msgid "Dots Border Color"
|
6950 |
msgstr ""
|
premium-addons-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons for Elementor plugin includes widgets and addons like Blog Post Grid, Gallery, Carousel, Modal Popup, Google Maps, Pricing Tables, Lottie Animations, Countdown, Testimonials.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 4.0.
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
@@ -14,7 +14,7 @@ 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', '4.0.
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url( '/', __FILE__ ) );
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) );
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons for Elementor plugin includes widgets and addons like Blog Post Grid, Gallery, Carousel, Modal Popup, Google Maps, Pricing Tables, Lottie Animations, Countdown, Testimonials.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 4.0.4
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
+
define('PREMIUM_ADDONS_VERSION', '4.0.4');
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url( '/', __FILE__ ) );
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path( __FILE__ ) );
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate Link: https://premiumaddons.com/?utm_source=wp-repo&utm_medium=link&utm_c
|
|
5 |
Requires at least: 5.0
|
6 |
Tested Up To: 5.5.3
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable Tag: 4.0.
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
@@ -185,9 +185,18 @@ Premium Addons for Elementor is 100% Ads Free, Ads can only be detected from You
|
|
185 |
|
186 |
== Changelog ==
|
187 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
= 4.0.3 =
|
189 |
|
190 |
-
- Fixed: Issues after v4.0.0
|
191 |
|
192 |
= 4.0.1 =
|
193 |
|
5 |
Requires at least: 5.0
|
6 |
Tested Up To: 5.5.3
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable Tag: 4.0.4
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
185 |
|
186 |
== Changelog ==
|
187 |
|
188 |
+
= 4.0.4 =
|
189 |
+
|
190 |
+
- Tweak: Added responsive controls for Layout Type option in Bullet List widget.
|
191 |
+
- Tweak: Added responsive controls for Rotate option in Lottie Animations widget.
|
192 |
+
- Fixed: Rollback button is not working after v4.0.0.
|
193 |
+
- Fixed: Categories style tab showing with all Skins in Blog widget.
|
194 |
+
- Fixed: Support URL is not working in dashobar General tab.
|
195 |
+
- Fixed: Elements switchers are not saving after v4.0.0.
|
196 |
+
|
197 |
= 4.0.3 =
|
198 |
|
199 |
+
- Fixed: Issues after v4.0.0.
|
200 |
|
201 |
= 4.0.1 =
|
202 |
|
widgets/premium-blog.php
CHANGED
@@ -1418,6 +1418,10 @@ class Premium_Blog extends Widget_Base {
|
|
1418 |
[
|
1419 |
'label' => __('Categories', 'premium-addons-for-elementor'),
|
1420 |
'tab' => Controls_Manager::TAB_STYLE,
|
|
|
|
|
|
|
|
|
1421 |
]
|
1422 |
);
|
1423 |
|
@@ -1496,14 +1500,14 @@ class Premium_Blog extends Widget_Base {
|
|
1496 |
'label' => __('Categories', 'premium-addons-for-elementor'),
|
1497 |
'type' => Controls_Manager::REPEATER,
|
1498 |
'fields' => $repeater->get_controls(),
|
1499 |
-
'default'
|
1500 |
[
|
1501 |
'category_background_color' => '',
|
1502 |
],
|
1503 |
],
|
1504 |
'render_type' => 'ui',
|
1505 |
'condition' => [
|
1506 |
-
'premium_blog_skin' => ['side', 'banner'],
|
1507 |
'premium_blog_categories_meta' => 'yes'
|
1508 |
]
|
1509 |
]
|
1418 |
[
|
1419 |
'label' => __('Categories', 'premium-addons-for-elementor'),
|
1420 |
'tab' => Controls_Manager::TAB_STYLE,
|
1421 |
+
'condition' => [
|
1422 |
+
'premium_blog_skin' => [ 'side', 'banner' ],
|
1423 |
+
'premium_blog_categories_meta' => 'yes'
|
1424 |
+
]
|
1425 |
]
|
1426 |
);
|
1427 |
|
1500 |
'label' => __('Categories', 'premium-addons-for-elementor'),
|
1501 |
'type' => Controls_Manager::REPEATER,
|
1502 |
'fields' => $repeater->get_controls(),
|
1503 |
+
'default' => [
|
1504 |
[
|
1505 |
'category_background_color' => '',
|
1506 |
],
|
1507 |
],
|
1508 |
'render_type' => 'ui',
|
1509 |
'condition' => [
|
1510 |
+
'premium_blog_skin' => [ 'side', 'banner' ],
|
1511 |
'premium_blog_categories_meta' => 'yes'
|
1512 |
]
|
1513 |
]
|
widgets/premium-icon-list.php
CHANGED
@@ -682,7 +682,7 @@ class Premium_Icon_List extends Widget_Base {
|
|
682 |
);
|
683 |
|
684 |
// Check Layout inline/block
|
685 |
-
$this->
|
686 |
'layout_type',
|
687 |
[
|
688 |
'label' => __( 'Layout Type', 'premium-addons-for-elementor' ),
|
@@ -1815,7 +1815,7 @@ class Premium_Icon_List extends Widget_Base {
|
|
1815 |
|
1816 |
$delay+=$settings['premium_icon_list_animation_delay']*1000;
|
1817 |
}
|
1818 |
-
if ('row' === $settings['layout_type']){
|
1819 |
$this->add_render_attribute( $list_content_key, 'class',
|
1820 |
[
|
1821 |
'premium-icon-list-content-inline',
|
@@ -1823,7 +1823,7 @@ class Premium_Icon_List extends Widget_Base {
|
|
1823 |
);
|
1824 |
}
|
1825 |
|
1826 |
-
if ( 'grow' === $settings['hover_effect_type'] ){
|
1827 |
|
1828 |
$this->add_render_attribute( $list_content_key, 'class',
|
1829 |
[
|
@@ -1831,16 +1831,16 @@ class Premium_Icon_List extends Widget_Base {
|
|
1831 |
]
|
1832 |
);
|
1833 |
}
|
1834 |
-
if ( 'column' === $settings['layout_type']){
|
1835 |
|
1836 |
-
if('flex-start' === $settings['premium_icon_list_align'] ){
|
1837 |
$this->add_render_attribute( $list_content_key, 'class',
|
1838 |
[
|
1839 |
'premium-icon-list-content-grow-lc',
|
1840 |
]
|
1841 |
);
|
1842 |
}
|
1843 |
-
else if('flex-end' === $settings['premium_icon_list_align']){
|
1844 |
$this->add_render_attribute( $list_content_key, 'class',
|
1845 |
[
|
1846 |
'premium-icon-list-content-grow-rc',
|
@@ -1857,25 +1857,25 @@ class Premium_Icon_List extends Widget_Base {
|
|
1857 |
}
|
1858 |
?>
|
1859 |
|
1860 |
-
<li <?php echo $this->get_render_attribute_string( $list_content_key )
|
1861 |
<?php
|
1862 |
if ( 'yes' === $item['show_icon'] ) {
|
1863 |
|
1864 |
$wrapper_class = 'premium-icon-list-wrapper';
|
1865 |
|
1866 |
-
$this->add_render_attribute('wrapper','class'
|
1867 |
|
1868 |
if('column' === $settings['icon_postion']){
|
1869 |
|
1870 |
$wrapper_top_class = 'premium-icon-list-wrapper-top ';
|
1871 |
|
1872 |
-
$this->add_render_attribute('wrapper','class'
|
1873 |
|
1874 |
}
|
1875 |
|
1876 |
$gradient_effect_class = 'premium-icon-list-gradient-effect';
|
1877 |
|
1878 |
-
if ($settings['hover_effect_type'] === 'linear gradient'){
|
1879 |
$this->add_render_attribute( 'title', 'class',
|
1880 |
[
|
1881 |
$gradient_effect_class,
|
@@ -1936,12 +1936,12 @@ class Premium_Icon_List extends Widget_Base {
|
|
1936 |
</li>
|
1937 |
<?php
|
1938 |
if( 'yes' === $settings[ 'show_divider' ] ) {
|
1939 |
-
$layout= $settings['layout_type'];
|
1940 |
$divider_class = 'premium-icon-list-divider';
|
1941 |
-
if('row' === $layout)
|
1942 |
$divider_class .='-inline';
|
1943 |
|
1944 |
-
$this->add_render_attribute('divider','class'
|
1945 |
?>
|
1946 |
<div <?php echo $this->get_render_attribute_string('divider'); ?>></div>
|
1947 |
<?php
|
@@ -2077,15 +2077,15 @@ class Premium_Icon_List extends Widget_Base {
|
|
2077 |
);
|
2078 |
|
2079 |
}
|
2080 |
-
if ( 'column' === settings.layout_type){
|
2081 |
-
if('flex-start' === settings.premium_icon_list_align){
|
2082 |
view.addRenderAttribute( listContentKey, 'class',
|
2083 |
[
|
2084 |
'premium-icon-list-content-grow-lc'
|
2085 |
]
|
2086 |
);
|
2087 |
}
|
2088 |
-
else if( 'flex-end' === settings.premium_icon_list_align ){
|
2089 |
view.addRenderAttribute( listContentKey, 'class',
|
2090 |
[
|
2091 |
'premium-icon-list-content-grow-rc'
|
@@ -2195,7 +2195,7 @@ class Premium_Icon_List extends Widget_Base {
|
|
2195 |
<#
|
2196 |
if( 'yes' === settings.show_divider ) {
|
2197 |
var dividerClass ='premium-icon-list-divider';
|
2198 |
-
if( 'row' === settings.layout_type ){
|
2199 |
dividerClass += '-inline';
|
2200 |
}
|
2201 |
#>
|
682 |
);
|
683 |
|
684 |
// Check Layout inline/block
|
685 |
+
$this->add_responsive_control(
|
686 |
'layout_type',
|
687 |
[
|
688 |
'label' => __( 'Layout Type', 'premium-addons-for-elementor' ),
|
1815 |
|
1816 |
$delay+=$settings['premium_icon_list_animation_delay']*1000;
|
1817 |
}
|
1818 |
+
if ( 'row' === $settings['layout_type'] ) {
|
1819 |
$this->add_render_attribute( $list_content_key, 'class',
|
1820 |
[
|
1821 |
'premium-icon-list-content-inline',
|
1823 |
);
|
1824 |
}
|
1825 |
|
1826 |
+
if ( 'grow' === $settings['hover_effect_type'] ) {
|
1827 |
|
1828 |
$this->add_render_attribute( $list_content_key, 'class',
|
1829 |
[
|
1831 |
]
|
1832 |
);
|
1833 |
}
|
1834 |
+
if ( 'column' === $settings['layout_type']) {
|
1835 |
|
1836 |
+
if('flex-start' === $settings['premium_icon_list_align'] ) {
|
1837 |
$this->add_render_attribute( $list_content_key, 'class',
|
1838 |
[
|
1839 |
'premium-icon-list-content-grow-lc',
|
1840 |
]
|
1841 |
);
|
1842 |
}
|
1843 |
+
else if( 'flex-end' === $settings['premium_icon_list_align'] ) {
|
1844 |
$this->add_render_attribute( $list_content_key, 'class',
|
1845 |
[
|
1846 |
'premium-icon-list-content-grow-rc',
|
1857 |
}
|
1858 |
?>
|
1859 |
|
1860 |
+
<li <?php echo $this->get_render_attribute_string( $list_content_key ); ?> >
|
1861 |
<?php
|
1862 |
if ( 'yes' === $item['show_icon'] ) {
|
1863 |
|
1864 |
$wrapper_class = 'premium-icon-list-wrapper';
|
1865 |
|
1866 |
+
$this->add_render_attribute( 'wrapper', 'class', $wrapper_class );
|
1867 |
|
1868 |
if('column' === $settings['icon_postion']){
|
1869 |
|
1870 |
$wrapper_top_class = 'premium-icon-list-wrapper-top ';
|
1871 |
|
1872 |
+
$this->add_render_attribute( 'wrapper', 'class', $wrapper_top_class );
|
1873 |
|
1874 |
}
|
1875 |
|
1876 |
$gradient_effect_class = 'premium-icon-list-gradient-effect';
|
1877 |
|
1878 |
+
if ( $settings['hover_effect_type'] === 'linear gradient' ) {
|
1879 |
$this->add_render_attribute( 'title', 'class',
|
1880 |
[
|
1881 |
$gradient_effect_class,
|
1936 |
</li>
|
1937 |
<?php
|
1938 |
if( 'yes' === $settings[ 'show_divider' ] ) {
|
1939 |
+
$layout = $settings['layout_type'];
|
1940 |
$divider_class = 'premium-icon-list-divider';
|
1941 |
+
if( 'row' === $layout )
|
1942 |
$divider_class .='-inline';
|
1943 |
|
1944 |
+
$this->add_render_attribute( 'divider', 'class', $divider_class );
|
1945 |
?>
|
1946 |
<div <?php echo $this->get_render_attribute_string('divider'); ?>></div>
|
1947 |
<?php
|
2077 |
);
|
2078 |
|
2079 |
}
|
2080 |
+
if ( 'column' === settings.layout_type ) {
|
2081 |
+
if('flex-start' === settings.premium_icon_list_align) {
|
2082 |
view.addRenderAttribute( listContentKey, 'class',
|
2083 |
[
|
2084 |
'premium-icon-list-content-grow-lc'
|
2085 |
]
|
2086 |
);
|
2087 |
}
|
2088 |
+
else if( 'flex-end' === settings.premium_icon_list_align ) {
|
2089 |
view.addRenderAttribute( listContentKey, 'class',
|
2090 |
[
|
2091 |
'premium-icon-list-content-grow-rc'
|
2195 |
<#
|
2196 |
if( 'yes' === settings.show_divider ) {
|
2197 |
var dividerClass ='premium-icon-list-divider';
|
2198 |
+
if( 'row' === settings.layout_type ) {
|
2199 |
dividerClass += '-inline';
|
2200 |
}
|
2201 |
#>
|
widgets/premium-lottie.php
CHANGED
@@ -239,7 +239,7 @@ class Premium_Lottie extends Widget_Base {
|
|
239 |
]
|
240 |
);
|
241 |
|
242 |
-
$this->
|
243 |
[
|
244 |
'label' => __('Rotate (degrees)', 'premium-addons-for-elementor'),
|
245 |
'type' => Controls_Manager::SLIDER,
|
239 |
]
|
240 |
);
|
241 |
|
242 |
+
$this->add_responsive_control('lottie_rotate',
|
243 |
[
|
244 |
'label' => __('Rotate (degrees)', 'premium-addons-for-elementor'),
|
245 |
'type' => Controls_Manager::SLIDER,
|