Version Description
Download this release
Release Info
Code changes from version 2.1.3 to 2.1.5
- assets/css/woolentor-widgets.css +4 -1
- assets/js/woolentor-checkout.js +32 -8
- includes/addons/wb_archive_product.php +2 -2
- includes/admin/assets/css/woolentor-admin.css +1 -0
- includes/admin/assets/js/woolentor-admin.js +43 -4
- includes/admin/include/admin_field-manager.php +4 -3
- includes/admin/include/admin_fields.php +179 -0
- includes/custom-metabox.php +1 -0
- includes/helper-function.php +6 -7
- includes/modules/class.module-manager.php +10 -0
- includes/modules/flash-sale/assets/css/flash-sale.css +45 -0
- includes/modules/flash-sale/assets/js/flash-sale.js +20 -0
- includes/modules/flash-sale/assets/js/moment-timezone-with-data.js +1 -0
- includes/modules/flash-sale/assets/js/moment.min.js +1 -0
- includes/modules/flash-sale/class.flash-sale.php +323 -0
- includes/modules/shopify-like-checkout/assets/shopify-like-checkout.css +3 -0
- includes/modules/shopify-like-checkout/templates/form-checkout.php +1 -1
- includes/modules/shopify-like-checkout/templates/review-order.php +1 -1
- includes/wl_woo_shop.php +3 -0
- languages/woolentor.pot +666 -407
- readme.txt +17 -1
- woolentor-blocks/includes/classes/Scripts.php +2 -2
- woolentor_addons_elementor.php +4 -4
assets/css/woolentor-widgets.css
CHANGED
@@ -368,6 +368,9 @@ li.woolentor-cart .button:before {
|
|
368 |
opacity: 1;
|
369 |
filter: inherit;
|
370 |
}
|
|
|
|
|
|
|
371 |
|
372 |
/*Product Wrap*/
|
373 |
.ht-products {
|
@@ -4972,7 +4975,7 @@ div[class*="woolentor-single-select-drop"] .select2-results__option::before{
|
|
4972 |
}
|
4973 |
|
4974 |
/* blocksy */
|
4975 |
-
.woolentor_current_theme_blocksy form.woocommerce-checkout {
|
4976 |
display: block;
|
4977 |
}
|
4978 |
|
368 |
opacity: 1;
|
369 |
filter: inherit;
|
370 |
}
|
371 |
+
[dir=rtl] .slick-prev {
|
372 |
+
right: auto;
|
373 |
+
}
|
374 |
|
375 |
/*Product Wrap*/
|
376 |
.ht-products {
|
4975 |
}
|
4976 |
|
4977 |
/* blocksy */
|
4978 |
+
.woolentor_current_theme_blocksy .woolentor-page-template form.woocommerce-checkout {
|
4979 |
display: block;
|
4980 |
}
|
4981 |
|
assets/js/woolentor-checkout.js
CHANGED
@@ -122,16 +122,40 @@
|
|
122 |
}
|
123 |
});
|
124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
$.ajax({
|
126 |
type: 'POST',
|
127 |
-
url: wc_checkout_params.ajax_url,
|
128 |
-
data:
|
129 |
-
'action': 'woolentor_ajax_login',
|
130 |
-
'login': 'login',
|
131 |
-
'username': $( '.elementor-widget-wl-checkout-login-form').find('input[name="username"]').val(),
|
132 |
-
'password': $( '.elementor-widget-wl-checkout-login-form').find('input[name="password"]').val(),
|
133 |
-
'woocommerce-login-nonce': $( '.elementor-widget-wl-checkout-login-form').find('input[id="woocommerce-login-nonce"]').val()
|
134 |
-
},
|
135 |
success: function( response ){
|
136 |
if( response.data ){
|
137 |
$('.elementor-widget-wl-checkout-login-form').find('.woocommerce-error').remove();
|
122 |
}
|
123 |
});
|
124 |
|
125 |
+
// All Field value sent
|
126 |
+
var item = {};
|
127 |
+
var generateData = '';
|
128 |
+
var loginformArea = $( '.elementor-widget-wl-checkout-login-form');
|
129 |
+
loginformArea.find('input:text, input:password, input:file, input:hidden, select, textarea').each(function() {
|
130 |
+
var $thisitem = $( this ),
|
131 |
+
attributeName = $thisitem.attr( 'name' ),
|
132 |
+
attributevalue = $thisitem.val();
|
133 |
+
|
134 |
+
if ( attributevalue.length === 0 ) {
|
135 |
+
generateData = generateData + '&' + attributeName + '=' + '';
|
136 |
+
} else {
|
137 |
+
item[attributeName] = attributevalue;
|
138 |
+
generateData = generateData + '&' + attributeName + '=' + attributevalue;
|
139 |
+
}
|
140 |
+
|
141 |
+
});
|
142 |
+
loginformArea.find('input:radio, input:checkbox').each(function() {
|
143 |
+
var $thisitem = $( this ),
|
144 |
+
attributeName = $thisitem.attr( 'name' ),
|
145 |
+
attributevalue = $thisitem.val();
|
146 |
+
|
147 |
+
if( $thisitem.is(":checked") ){
|
148 |
+
generateData = generateData + '&' + attributeName + '=' + attributevalue;
|
149 |
+
}
|
150 |
+
|
151 |
+
});
|
152 |
+
|
153 |
+
var generateData = '&login=login&action=woolentor_ajax_login' + generateData;
|
154 |
+
|
155 |
$.ajax({
|
156 |
type: 'POST',
|
157 |
+
url: wc_checkout_params.ajax_url,
|
158 |
+
data: JSON.stringify( generateData ),
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
success: function( response ){
|
160 |
if( response.data ){
|
161 |
$('.elementor-widget-wl-checkout-login-form').find('.woocommerce-error').remove();
|
includes/addons/wb_archive_product.php
CHANGED
@@ -942,10 +942,10 @@ class Woolentor_Elementor_Widget_Archive_Product extends Widget_Base {
|
|
942 |
$shortcode = new \Archive_Products_Render( $settings );
|
943 |
|
944 |
$content = $shortcode->get_content();
|
945 |
-
if ( $content ) {
|
946 |
echo $content;
|
947 |
} else{
|
948 |
-
echo '<div class="products-not-found">' . esc_html__( '
|
949 |
}
|
950 |
|
951 |
}
|
942 |
$shortcode = new \Archive_Products_Render( $settings );
|
943 |
|
944 |
$content = $shortcode->get_content();
|
945 |
+
if ( strip_tags( trim( $content ) ) ) {
|
946 |
echo $content;
|
947 |
} else{
|
948 |
+
echo '<div class="products-not-found"><p class="woocommerce-info">' . esc_html__( 'No products were found matching your selection.','woolentor' ) . '</p></div>';
|
949 |
}
|
950 |
|
951 |
}
|
includes/admin/assets/css/woolentor-admin.css
CHANGED
@@ -488,6 +488,7 @@
|
|
488 |
border: 1px solid #d5dadf;
|
489 |
padding: 10px;
|
490 |
border-top: 0;
|
|
|
491 |
}
|
492 |
button.woolentor-repeater-item-add {
|
493 |
padding: 5px 15px;
|
488 |
border: 1px solid #d5dadf;
|
489 |
padding: 10px;
|
490 |
border-top: 0;
|
491 |
+
background-color: #ffffff;
|
492 |
}
|
493 |
button.woolentor-repeater-item-add {
|
494 |
padding: 5px 15px;
|
includes/admin/assets/js/woolentor-admin.js
CHANGED
@@ -235,17 +235,17 @@
|
|
235 |
function woolentor_module_ajax_reactive(){
|
236 |
|
237 |
// Select 2 Multiple selection
|
238 |
-
$('.woolentor-module-setting-popup .woolentor-admin-select select[multiple="multiple"]').each(function(){
|
239 |
const $this = $(this),
|
240 |
$parent = $this.parent();
|
241 |
$this.select2({
|
242 |
dropdownParent: $parent,
|
243 |
-
placeholder: "Select
|
244 |
});
|
245 |
});
|
246 |
|
247 |
//Initiate Color Picker
|
248 |
-
$('.wp-color-picker-field').wpColorPicker({
|
249 |
change: function (event, ui) {
|
250 |
$(this).closest('.woolentor-module-setting-popup-content').find('.woolentor-admin-module-save').removeClass('disabled').attr('disabled', false).text( WOOLENTOR_ADMIN.message.btntxt );
|
251 |
},
|
@@ -259,8 +259,20 @@
|
|
259 |
$(this).attr("disabled", true);
|
260 |
});
|
261 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
// Icon Picker
|
263 |
-
$('.woolentor_icon_picker .regular-text').fontIconPicker({
|
264 |
source: woolentor_fields.iconset,
|
265 |
emptyIcon: true,
|
266 |
hasSearch: true,
|
@@ -374,6 +386,30 @@
|
|
374 |
}
|
375 |
|
376 |
/* Repeater Item control */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
function woolentor_repeater_field(){
|
378 |
|
379 |
/* Add field */
|
@@ -389,6 +425,8 @@
|
|
389 |
$hidden.removeClass('woolentor-repeater-hidden').addClass('woolentor_active_repeater');
|
390 |
$hidden.insertAfter( '.woolentor-option-repeater-item-area div.woolentor-option-repeater-item:last' );
|
391 |
|
|
|
|
|
392 |
// Enable Button
|
393 |
$('.woolentor-admin-module-save').removeClass('disabled').attr('disabled', false).text( WOOLENTOR_ADMIN.message.btntxt );
|
394 |
|
@@ -404,6 +442,7 @@
|
|
404 |
$parentItem.removeClass('woolentor_active_repeater');
|
405 |
} else {
|
406 |
$parentItem.addClass('woolentor_active_repeater').siblings().removeClass('woolentor_active_repeater');
|
|
|
407 |
}
|
408 |
});
|
409 |
|
235 |
function woolentor_module_ajax_reactive(){
|
236 |
|
237 |
// Select 2 Multiple selection
|
238 |
+
$('.woolentor-module-setting-popup').find('.woolentor-admin-option:not(.woolentor-repeater-field) .woolentor-admin-select select[multiple="multiple"]').each(function(){
|
239 |
const $this = $(this),
|
240 |
$parent = $this.parent();
|
241 |
$this.select2({
|
242 |
dropdownParent: $parent,
|
243 |
+
placeholder: "Select Item"
|
244 |
});
|
245 |
});
|
246 |
|
247 |
//Initiate Color Picker
|
248 |
+
$('.woolentor-module-setting-popup').find('.woolentor-admin-option:not(.woolentor-repeater-field) .wp-color-picker-field').wpColorPicker({
|
249 |
change: function (event, ui) {
|
250 |
$(this).closest('.woolentor-module-setting-popup-content').find('.woolentor-admin-module-save').removeClass('disabled').attr('disabled', false).text( WOOLENTOR_ADMIN.message.btntxt );
|
251 |
},
|
259 |
$(this).attr("disabled", true);
|
260 |
});
|
261 |
|
262 |
+
/* Number Input */
|
263 |
+
$('.woolentor-admin-number-btn').on('click', function(e){
|
264 |
+
e.preventDefault()
|
265 |
+
const $this = $(this),
|
266 |
+
$input = $this.parent('.woolentor-admin-number').find('input[type="number"]')[0]
|
267 |
+
if($this.hasClass('increase')) {
|
268 |
+
$input.value = Number($input.value) + 1
|
269 |
+
} else if($this.hasClass('decrease') && Number($input.value) > 1) {
|
270 |
+
$input.value = Number($input.value) - 1
|
271 |
+
}
|
272 |
+
});
|
273 |
+
|
274 |
// Icon Picker
|
275 |
+
$('.woolentor-module-setting-popup').find('.woolentor-admin-option:not(.woolentor-repeater-field).woolentor_icon_picker .regular-text').fontIconPicker({
|
276 |
source: woolentor_fields.iconset,
|
277 |
emptyIcon: true,
|
278 |
hasSearch: true,
|
386 |
}
|
387 |
|
388 |
/* Repeater Item control */
|
389 |
+
$(document).on('repeater_field_added', function( e, hidden_repeater_elem ){
|
390 |
+
|
391 |
+
$( hidden_repeater_elem ).find('.woolentor-admin-select select[multiple="multiple"]').each(function(){
|
392 |
+
const $this = $(this),
|
393 |
+
$parent = $this.parent();
|
394 |
+
$this.select2({
|
395 |
+
dropdownParent: $parent,
|
396 |
+
placeholder: "Select template"
|
397 |
+
});
|
398 |
+
});
|
399 |
+
|
400 |
+
$( hidden_repeater_elem ).find('.wp-color-picker-field').each(function(){
|
401 |
+
$(this).wpColorPicker({
|
402 |
+
change: function (event, ui) {
|
403 |
+
$(this).closest('.woolentor-module-setting-popup-content').find('.woolentor-admin-module-save').removeClass('disabled').attr('disabled', false).text( WOOLENTOR_ADMIN.message.btntxt );
|
404 |
+
},
|
405 |
+
clear: function (event) {
|
406 |
+
$(this).closest('.woolentor-module-setting-popup-content').find('.woolentor-admin-module-save').removeClass('disabled').attr('disabled', false).text( WOOLENTOR_ADMIN.message.btntxt );
|
407 |
+
}
|
408 |
+
});
|
409 |
+
});
|
410 |
+
|
411 |
+
});
|
412 |
+
|
413 |
function woolentor_repeater_field(){
|
414 |
|
415 |
/* Add field */
|
425 |
$hidden.removeClass('woolentor-repeater-hidden').addClass('woolentor_active_repeater');
|
426 |
$hidden.insertAfter( '.woolentor-option-repeater-item-area div.woolentor-option-repeater-item:last' );
|
427 |
|
428 |
+
$(document).trigger('repeater_field_added', [ $('.woolentor-module-setting-data .woolentor-option-repeater-item.woolentor_active_repeater') ] );
|
429 |
+
|
430 |
// Enable Button
|
431 |
$('.woolentor-admin-module-save').removeClass('disabled').attr('disabled', false).text( WOOLENTOR_ADMIN.message.btntxt );
|
432 |
|
442 |
$parentItem.removeClass('woolentor_active_repeater');
|
443 |
} else {
|
444 |
$parentItem.addClass('woolentor_active_repeater').siblings().removeClass('woolentor_active_repeater');
|
445 |
+
$(document).trigger('repeater_field_added', [ $('.woolentor-module-setting-data .woolentor-option-repeater-item.woolentor_active_repeater') ] );
|
446 |
}
|
447 |
});
|
448 |
|
includes/admin/include/admin_field-manager.php
CHANGED
@@ -277,8 +277,9 @@ class Woolentor_Admin_Fields_Manager {
|
|
277 |
<div class="woolentor-option-repeater-fields">
|
278 |
<?php
|
279 |
foreach ( $args['fields'] as $field ) {
|
280 |
-
$field['option_id']
|
281 |
-
$field['
|
|
|
282 |
$this->add_field( $field, $args['section'] );
|
283 |
}
|
284 |
?>
|
@@ -304,7 +305,7 @@ class Woolentor_Admin_Fields_Manager {
|
|
304 |
<?php
|
305 |
foreach( $args['fields'] as $field ){
|
306 |
$field['option_id'] = '['.$args['id'].'][]['.$field['name'].']';
|
307 |
-
$field['
|
308 |
$this->add_field( $field, $args['section'] );
|
309 |
}
|
310 |
?>
|
277 |
<div class="woolentor-option-repeater-fields">
|
278 |
<?php
|
279 |
foreach ( $args['fields'] as $field ) {
|
280 |
+
$field['option_id'] = '['.$args['id'].'][]['.$field['name'].']';
|
281 |
+
$field['class'] = $field['class'].' woolentor-repeater-field';
|
282 |
+
$field['value'] = ( isset( $field['name'] ) && isset( $values[$key][$field['name']] ) ) ? $values[$key][$field['name']] : '';
|
283 |
$this->add_field( $field, $args['section'] );
|
284 |
}
|
285 |
?>
|
305 |
<?php
|
306 |
foreach( $args['fields'] as $field ){
|
307 |
$field['option_id'] = '['.$args['id'].'][]['.$field['name'].']';
|
308 |
+
$field['class'] = $field['class'].' woolentor-repeater-field';
|
309 |
$this->add_field( $field, $args['section'] );
|
310 |
}
|
311 |
?>
|
includes/admin/include/admin_fields.php
CHANGED
@@ -1353,6 +1353,175 @@ class Woolentor_Admin_Fields {
|
|
1353 |
)
|
1354 |
|
1355 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1356 |
|
1357 |
array(
|
1358 |
'name' => 'ajaxsearch',
|
@@ -1369,6 +1538,16 @@ class Woolentor_Admin_Fields {
|
|
1369 |
'type' => 'element',
|
1370 |
'default' => 'off',
|
1371 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1372 |
|
1373 |
array(
|
1374 |
'name' => 'single_product_sticky_add_to_cartp',
|
1353 |
)
|
1354 |
|
1355 |
),
|
1356 |
+
|
1357 |
+
array(
|
1358 |
+
'name' => 'woolentor_flash_sale_event_settings',
|
1359 |
+
'label' => esc_html__( 'Flash Sale Countdown', 'woolentor' ),
|
1360 |
+
'type' => 'module',
|
1361 |
+
'default' => 'off',
|
1362 |
+
'section' => 'woolentor_flash_sale_settings',
|
1363 |
+
'option_id'=> 'enable',
|
1364 |
+
'require_settings' => true,
|
1365 |
+
'setting_fields' => array(
|
1366 |
+
|
1367 |
+
array(
|
1368 |
+
'name' => 'enable',
|
1369 |
+
'label' => esc_html__( 'Enable / Disable', 'woolentor' ),
|
1370 |
+
'desc' => esc_html__( 'You can enable / disable flash sale from here.', 'woolentor' ),
|
1371 |
+
'type' => 'checkbox',
|
1372 |
+
'default' => 'off',
|
1373 |
+
'class' => 'woolentor-action-field-left'
|
1374 |
+
),
|
1375 |
+
|
1376 |
+
array(
|
1377 |
+
'name' => 'override_sale_price',
|
1378 |
+
'label' => esc_html__( 'Override Sale Price', 'woolentor' ),
|
1379 |
+
'type' => 'checkbox',
|
1380 |
+
'default' => 'off',
|
1381 |
+
'class' => 'woolentor-action-field-left'
|
1382 |
+
),
|
1383 |
+
|
1384 |
+
array(
|
1385 |
+
'name' => 'enable_countdown_on_product_details_page',
|
1386 |
+
'label' => esc_html__( 'Show Countdown On Product Details Page', 'woolentor' ),
|
1387 |
+
'type' => 'checkbox',
|
1388 |
+
'default' => 'on',
|
1389 |
+
'class' => 'woolentor-action-field-left'
|
1390 |
+
),
|
1391 |
+
|
1392 |
+
array(
|
1393 |
+
'name' => 'countdown_position',
|
1394 |
+
'label' => esc_html__( 'Countdown Position', 'woolentor' ),
|
1395 |
+
'type' => 'select',
|
1396 |
+
'options' => array(
|
1397 |
+
'woocommerce_before_add_to_cart_form' => esc_html__('Add to cart - Before', 'woolentor'),
|
1398 |
+
'woocommerce_after_add_to_cart_form' => esc_html__('Add to cart - After', 'woolentor'),
|
1399 |
+
'woocommerce_product_meta_start' => esc_html__('Product meta - Before', 'woolentor'),
|
1400 |
+
'woocommerce_product_meta_end' => esc_html__('Product meta - After', 'woolentor'),
|
1401 |
+
'woocommerce_single_product_summary' => esc_html__('Product summary - Before', 'woolentor'),
|
1402 |
+
'woocommerce_after_single_product_summary' => esc_html__('Product summary - After', 'woolentor'),
|
1403 |
+
),
|
1404 |
+
'class' => 'woolentor-action-field-left'
|
1405 |
+
),
|
1406 |
+
|
1407 |
+
array(
|
1408 |
+
'name' => 'countdown_timer_title',
|
1409 |
+
'label' => esc_html__( 'Countdown Timer Title', 'woolentor' ),
|
1410 |
+
'type' => 'text',
|
1411 |
+
'default' => esc_html__('Hurry Up! Offer ends in', 'woolentor'),
|
1412 |
+
'class' => 'woolentor-action-field-left'
|
1413 |
+
),
|
1414 |
+
|
1415 |
+
array(
|
1416 |
+
'name' => 'deals',
|
1417 |
+
'label' => esc_html__( 'Sale Events', 'woolentor' ),
|
1418 |
+
'desc' => esc_html__( 'Repeater field description', 'woolentor' ),
|
1419 |
+
'type' => 'repeater',
|
1420 |
+
'title_field' => 'title',
|
1421 |
+
'fields' => [
|
1422 |
+
|
1423 |
+
array(
|
1424 |
+
'name' => 'status',
|
1425 |
+
'label' => esc_html__( 'Enable', 'woolentor' ),
|
1426 |
+
'desc' => esc_html__( 'Enable / Disable', 'woolentor' ),
|
1427 |
+
'type' => 'checkbox',
|
1428 |
+
'default' => 'on',
|
1429 |
+
'class' => 'woolentor-action-field-left'
|
1430 |
+
),
|
1431 |
+
|
1432 |
+
array(
|
1433 |
+
'name' => 'title',
|
1434 |
+
'label' => esc_html__( 'Event Name', 'woolentor' ),
|
1435 |
+
'type' => 'text',
|
1436 |
+
'class' => 'woolentor-action-field-left'
|
1437 |
+
),
|
1438 |
+
|
1439 |
+
array(
|
1440 |
+
'name' => 'start_date',
|
1441 |
+
'label' => esc_html__( 'Valid From', 'woolentor' ),
|
1442 |
+
'desc' => __( 'The date and time the event should be enabled. Please set time based on your server time settings. Current Server Date / Time: '. current_time('Y M d, h:m a'), 'woolentor' ),
|
1443 |
+
'type' => 'date',
|
1444 |
+
'class' => 'woolentor-action-field-left'
|
1445 |
+
),
|
1446 |
+
|
1447 |
+
array(
|
1448 |
+
'name' => 'end_date',
|
1449 |
+
'label' => esc_html__( 'Valid To', 'woolentor' ),
|
1450 |
+
'desc' => esc_html__( 'The date and time the event should be disabled.', 'woolentor' ),
|
1451 |
+
'type' => 'date',
|
1452 |
+
'class' => 'woolentor-action-field-left'
|
1453 |
+
),
|
1454 |
+
|
1455 |
+
array(
|
1456 |
+
'name' => 'apply_on_all_products',
|
1457 |
+
'label' => esc_html__( 'Apply On All Products', 'woolentor' ),
|
1458 |
+
'type' => 'checkbox',
|
1459 |
+
'default' => 'off',
|
1460 |
+
'class' => 'woolentor-action-field-left'
|
1461 |
+
),
|
1462 |
+
|
1463 |
+
array(
|
1464 |
+
'name' => 'categories',
|
1465 |
+
'label' => esc_html__( 'Select Categories', 'woolentor' ),
|
1466 |
+
'desc' => esc_html__( 'Select the categories in wich products the discount will be applied.', 'woolentor' ),
|
1467 |
+
'type' => 'multiselect',
|
1468 |
+
'options' => woolentor_taxonomy_list('product_cat','term_id'),
|
1469 |
+
'class' => 'woolentor-action-field-left'
|
1470 |
+
),
|
1471 |
+
|
1472 |
+
array(
|
1473 |
+
'name' => 'products',
|
1474 |
+
'label' => esc_html__( 'Select Products', 'woolentor' ),
|
1475 |
+
'desc' => esc_html__( 'Select individual products in wich the discount will be applied.', 'woolentor' ),
|
1476 |
+
'type' => 'multiselect',
|
1477 |
+
'options' => woolentor_post_name( 'product' ),
|
1478 |
+
'class' => 'woolentor-action-field-left'
|
1479 |
+
),
|
1480 |
+
|
1481 |
+
array(
|
1482 |
+
'name' => 'exclude_products',
|
1483 |
+
'label' => esc_html__( 'Exclude Products', 'woolentor' ),
|
1484 |
+
'type' => 'multiselect',
|
1485 |
+
'options' => woolentor_post_name( 'product' ),
|
1486 |
+
'class' => 'woolentor-action-field-left'
|
1487 |
+
),
|
1488 |
+
|
1489 |
+
array(
|
1490 |
+
'name' => 'discount_type',
|
1491 |
+
'label' => esc_html__( 'Discount Type', 'woolentor' ),
|
1492 |
+
'type' => 'select',
|
1493 |
+
'options' => array(
|
1494 |
+
'fixed_discount' => esc_html__( 'Fixed Discount', 'woolentor' ),
|
1495 |
+
'percentage_discount' => esc_html__( 'Percentage Discount', 'woolentor' ),
|
1496 |
+
'fixed_price' => esc_html__( 'Fixed Price', 'woolentor' ),
|
1497 |
+
),
|
1498 |
+
'class' => 'woolentor-action-field-left'
|
1499 |
+
),
|
1500 |
+
|
1501 |
+
array(
|
1502 |
+
'name' => 'discount_value',
|
1503 |
+
'label' => esc_html__( 'Discount Value', 'woolentor-pro' ),
|
1504 |
+
'min' => 0.0,
|
1505 |
+
'step' => 0.01,
|
1506 |
+
'type' => 'number',
|
1507 |
+
'default' => '50',
|
1508 |
+
'sanitize_callback' => 'floatval',
|
1509 |
+
'class' => 'woolentor-action-field-left',
|
1510 |
+
),
|
1511 |
+
|
1512 |
+
array(
|
1513 |
+
'name' => 'apply_discount_only_for_registered_customers',
|
1514 |
+
'label' => esc_html__( 'Apply Discount Only For Registered Customers', 'woolentor' ),
|
1515 |
+
'type' => 'checkbox',
|
1516 |
+
'class' => 'woolentor-action-field-left'
|
1517 |
+
),
|
1518 |
+
|
1519 |
+
]
|
1520 |
+
),
|
1521 |
+
|
1522 |
+
)
|
1523 |
+
|
1524 |
+
),
|
1525 |
|
1526 |
array(
|
1527 |
'name' => 'ajaxsearch',
|
1538 |
'type' => 'element',
|
1539 |
'default' => 'off',
|
1540 |
),
|
1541 |
+
|
1542 |
+
array(
|
1543 |
+
'name' => 'partial_paymentp',
|
1544 |
+
'label' => esc_html__( 'Partial Payment', 'woolentor' ),
|
1545 |
+
'desc' => esc_html__( 'Sticky Add to Cart on Single Product page', 'woolentor' ),
|
1546 |
+
'type' => 'module',
|
1547 |
+
'default'=> 'off',
|
1548 |
+
'require_settings' => true,
|
1549 |
+
'is_pro' => true
|
1550 |
+
),
|
1551 |
|
1552 |
array(
|
1553 |
'name' => 'single_product_sticky_add_to_cartp',
|
includes/custom-metabox.php
CHANGED
@@ -24,6 +24,7 @@
|
|
24 |
'label' => __( 'Custom Product Badge Text', 'woolentor' ),
|
25 |
'placeholder' => __( 'New', 'woolentor' ),
|
26 |
'description' => __( 'Enter your preferred SaleFlash text. Ex: New / Free etc', 'woolentor' ),
|
|
|
27 |
) );
|
28 |
echo '</div>';
|
29 |
}
|
24 |
'label' => __( 'Custom Product Badge Text', 'woolentor' ),
|
25 |
'placeholder' => __( 'New', 'woolentor' ),
|
26 |
'description' => __( 'Enter your preferred SaleFlash text. Ex: New / Free etc', 'woolentor' ),
|
27 |
+
'desc_tip' => true
|
28 |
) );
|
29 |
echo '</div>';
|
30 |
}
|
includes/helper-function.php
CHANGED
@@ -213,14 +213,14 @@ function woolentor_get_all_create_menus() {
|
|
213 |
* Taxonomy List
|
214 |
* @return array
|
215 |
*/
|
216 |
-
function woolentor_taxonomy_list( $taxonomy = 'product_cat' ){
|
217 |
$terms = get_terms( array(
|
218 |
'taxonomy' => $taxonomy,
|
219 |
'hide_empty' => true,
|
220 |
));
|
221 |
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
|
222 |
foreach ( $terms as $term ) {
|
223 |
-
$options[ $term
|
224 |
}
|
225 |
return $options;
|
226 |
}
|
@@ -312,12 +312,11 @@ function woolentor_wltemplate_list( $type = [] ){
|
|
312 |
$templates = new WP_Query( $args );
|
313 |
|
314 |
if( $templates->have_posts() ){
|
315 |
-
|
316 |
-
$template_lists[
|
317 |
-
|
318 |
}
|
319 |
-
wp_reset_query();
|
320 |
-
|
321 |
return $template_lists;
|
322 |
|
323 |
}
|
213 |
* Taxonomy List
|
214 |
* @return array
|
215 |
*/
|
216 |
+
function woolentor_taxonomy_list( $taxonomy = 'product_cat', $option_value = 'slug' ){
|
217 |
$terms = get_terms( array(
|
218 |
'taxonomy' => $taxonomy,
|
219 |
'hide_empty' => true,
|
220 |
));
|
221 |
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
|
222 |
foreach ( $terms as $term ) {
|
223 |
+
$options[ $term->$option_value ] = $term->name;
|
224 |
}
|
225 |
return $options;
|
226 |
}
|
312 |
$templates = new WP_Query( $args );
|
313 |
|
314 |
if( $templates->have_posts() ){
|
315 |
+
foreach ( $templates->get_posts() as $post ) {
|
316 |
+
$template_lists[ $post->ID ] = $post->post_title;
|
317 |
+
}
|
318 |
}
|
319 |
+
wp_reset_query();
|
|
|
320 |
return $template_lists;
|
321 |
|
322 |
}
|
includes/modules/class.module-manager.php
CHANGED
@@ -32,6 +32,16 @@ class Woolentor_Module_Manager{
|
|
32 |
if( woolentor_get_option( 'enable', 'woolentor_shopify_checkout_settings', 'off' ) == 'on' ){
|
33 |
require( WOOLENTOR_ADDONS_PL_PATH .'includes/modules/shopify-like-checkout/class.shopify-like-checkout.php' );
|
34 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
}
|
37 |
|
32 |
if( woolentor_get_option( 'enable', 'woolentor_shopify_checkout_settings', 'off' ) == 'on' ){
|
33 |
require( WOOLENTOR_ADDONS_PL_PATH .'includes/modules/shopify-like-checkout/class.shopify-like-checkout.php' );
|
34 |
}
|
35 |
+
|
36 |
+
// Flash Sale
|
37 |
+
if( woolentor_get_option( 'enable', 'woolentor_flash_sale_settings', 'off' ) == 'on' ){
|
38 |
+
require( WOOLENTOR_ADDONS_PL_PATH .'includes/modules/flash-sale/class.flash-sale.php' );
|
39 |
+
}
|
40 |
+
|
41 |
+
// Partial payment
|
42 |
+
if( ( woolentor_get_option( 'enable', 'woolentor_partial_payment_settings', 'off' ) == 'on' ) && is_plugin_active('woolentor-addons-pro/woolentor_addons_pro.php') ){
|
43 |
+
require( WOOLENTOR_ADDONS_PL_PATH_PRO .'includes/modules/partial-payment/partial-payment.php' );
|
44 |
+
}
|
45 |
|
46 |
}
|
47 |
|
includes/modules/flash-sale/assets/css/flash-sale.css
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*Countdown*/
|
2 |
+
.ht-saleflash-countdown-wrap{
|
3 |
+
margin-bottom: 15px;
|
4 |
+
}
|
5 |
+
.ht-saleflash-countdown-wrap .ht-product-countdown {
|
6 |
+
display: -webkit-box;
|
7 |
+
display: -webkit-flex;
|
8 |
+
display: -ms-flexbox;
|
9 |
+
display: flex;
|
10 |
+
margin-left: -2px;
|
11 |
+
}
|
12 |
+
|
13 |
+
.ht-saleflash-countdown-wrap.ht-align--center .ht-product-countdown {
|
14 |
+
margin: auto;
|
15 |
+
justify-content: center;
|
16 |
+
}
|
17 |
+
|
18 |
+
.ht-saleflash-countdown-wrap.ht-align--center{
|
19 |
+
text-align: center;
|
20 |
+
}
|
21 |
+
|
22 |
+
.ht-saleflash-countdown-wrap .ht-saleflash-countdown-title{
|
23 |
+
font-weight: 500;
|
24 |
+
}
|
25 |
+
|
26 |
+
.ht-saleflash-countdown-wrap .ht-product-countdown .cd-single {
|
27 |
+
padding: 2px;
|
28 |
+
min-width: 60px;
|
29 |
+
}
|
30 |
+
|
31 |
+
.ht-saleflash-countdown-wrap .ht-product-countdown .cd-single .cd-single-inner {
|
32 |
+
text-align: center;
|
33 |
+
border: 1px solid;
|
34 |
+
}
|
35 |
+
|
36 |
+
.ht-saleflash-countdown-wrap .ht-product-countdown .cd-single .cd-single-inner h3 {
|
37 |
+
font-size: 15px;
|
38 |
+
font-weight: 700;
|
39 |
+
margin: 2px 0 2px;
|
40 |
+
}
|
41 |
+
|
42 |
+
.ht-saleflash-countdown-wrap .ht-product-countdown .cd-single .cd-single-inner p {
|
43 |
+
font-size: 12px;
|
44 |
+
margin: 0 0 2px;
|
45 |
+
}
|
includes/modules/flash-sale/assets/js/flash-sale.js
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
;(function($){
|
2 |
+
"use strict";
|
3 |
+
|
4 |
+
$(document).ready(function(){
|
5 |
+
|
6 |
+
// show countdown based on server timzone
|
7 |
+
var finalTime, daysTime, hours, minutes, second;
|
8 |
+
$('.ht-product-countdown').each(function() {
|
9 |
+
var $this = $(this),
|
10 |
+
finalDate = $(this).data('countdown'),
|
11 |
+
customlavel = $(this).data('customlavel');
|
12 |
+
|
13 |
+
$this.countdown(finalDate, function(event) {
|
14 |
+
$this.html(event.strftime('<div class="cd-single"><div class="cd-single-inner"><h3>%D</h3><p>'+customlavel.daytxt+'</p></div></div><div class="cd-single"><div class="cd-single-inner"><h3>%H</h3><p>'+customlavel.hourtxt+'</p></div></div><div class="cd-single"><div class="cd-single-inner"><h3>%M</h3><p>'+customlavel.minutestxt+'</p></div></div><div class="cd-single"><div class="cd-single-inner"><h3>%S</h3><p>'+customlavel.secondstxt+'</p></div></div>'));
|
15 |
+
});
|
16 |
+
});
|
17 |
+
|
18 |
+
});
|
19 |
+
|
20 |
+
})(jQuery);
|
includes/modules/flash-sale/assets/js/moment-timezone-with-data.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
!function(a,i){"use strict";"object"==typeof module&&module.exports?module.exports=i(require("moment")):"function"==typeof define&&define.amd?define(["moment"],i):i(a.moment)}(this,function(c){"use strict";void 0===c.version&&c.default&&(c=c.default);var i,A={},n={},t={},s={},u={};c&&"string"==typeof c.version||N("Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/");var a=c.version.split("."),e=+a[0],r=+a[1];function m(a){return 96<a?a-87:64<a?a-29:a-48}function o(a){var i=0,e=a.split("."),r=e[0],o=e[1]||"",c=1,A=0,n=1;for(45===a.charCodeAt(0)&&(n=-(i=1));i<r.length;i++)A=60*A+m(r.charCodeAt(i));for(i=0;i<o.length;i++)c/=60,A+=m(o.charCodeAt(i))*c;return A*n}function f(a){for(var i=0;i<a.length;i++)a[i]=o(a[i])}function l(a,i){var e,r=[];for(e=0;e<i.length;e++)r[e]=a[i[e]];return r}function p(a){var i=a.split("|"),e=i[2].split(" "),r=i[3].split(""),o=i[4].split(" ");return f(e),f(r),f(o),function(a,i){for(var e=0;e<i;e++)a[e]=Math.round((a[e-1]||0)+6e4*a[e]);a[i-1]=1/0}(o,r.length),{name:i[0],abbrs:l(i[1].split(" "),r),offsets:l(e,r),untils:o,population:0|i[5]}}function M(a){a&&this._set(p(a))}function d(a,i){this.name=a,this.zones=i}function b(a){var i=a.toTimeString(),e=i.match(/\([a-z ]+\)/i);"GMT"===(e=e&&e[0]?(e=e[0].match(/[A-Z]/g))?e.join(""):void 0:(e=i.match(/[A-Z]{3,5}/g))?e[0]:void 0)&&(e=void 0),this.at=+a,this.abbr=e,this.offset=a.getTimezoneOffset()}function h(a){this.zone=a,this.offsetScore=0,this.abbrScore=0}function E(a,i){for(var e,r;r=6e4*((i.at-a.at)/12e4|0);)(e=new b(new Date(a.at+r))).offset===a.offset?a=e:i=e;return a}function g(a,i){return a.offsetScore!==i.offsetScore?a.offsetScore-i.offsetScore:a.abbrScore!==i.abbrScore?a.abbrScore-i.abbrScore:a.zone.population!==i.zone.population?i.zone.population-a.zone.population:i.zone.name.localeCompare(a.zone.name)}function z(a,i){var e,r;for(f(i),e=0;e<i.length;e++)r=i[e],u[r]=u[r]||{},u[r][a]=!0}function P(){try{var a=Intl.DateTimeFormat().resolvedOptions().timeZone;if(a&&3<a.length){var i=s[T(a)];if(i)return i;N("Moment Timezone found "+a+" from the Intl api, but did not have that data loaded.")}}catch(a){}var e,r,o,c=function(){var a,i,e,r=(new Date).getFullYear()-2,o=new b(new Date(r,0,1)),c=[o];for(e=1;e<48;e++)(i=new b(new Date(r,e,1))).offset!==o.offset&&(a=E(o,i),c.push(a),c.push(new b(new Date(a.at+6e4)))),o=i;for(e=0;e<4;e++)c.push(new b(new Date(r+e,0,1))),c.push(new b(new Date(r+e,6,1)));return c}(),A=c.length,n=function(a){var i,e,r,o=a.length,c={},A=[];for(i=0;i<o;i++)for(e in r=u[a[i].offset]||{})r.hasOwnProperty(e)&&(c[e]=!0);for(i in c)c.hasOwnProperty(i)&&A.push(s[i]);return A}(c),t=[];for(r=0;r<n.length;r++){for(e=new h(_(n[r]),A),o=0;o<A;o++)e.scoreOffsetAt(c[o]);t.push(e)}return t.sort(g),0<t.length?t[0].zone.name:void 0}function T(a){return(a||"").toLowerCase().replace(/\//g,"_")}function S(a){var i,e,r,o;for("string"==typeof a&&(a=[a]),i=0;i<a.length;i++)o=T(e=(r=a[i].split("|"))[0]),A[o]=a[i],s[o]=e,z(o,r[2].split(" "))}function _(a,i){a=T(a);var e,r=A[a];return r instanceof M?r:"string"==typeof r?(r=new M(r),A[a]=r):n[a]&&i!==_&&(e=_(n[a],_))?((r=A[a]=new M)._set(e),r.name=s[a],r):null}function k(a){var i,e,r,o;for("string"==typeof a&&(a=[a]),i=0;i<a.length;i++)r=T((e=a[i].split("|"))[0]),o=T(e[1]),n[r]=o,s[r]=e[0],n[o]=r,s[o]=e[1]}function C(a){S(a.zones),k(a.links),function(a){var i,e,r,o;if(a&&a.length)for(i=0;i<a.length;i++)e=(o=a[i].split("|"))[0].toUpperCase(),r=o[1].split(" "),t[e]=new d(e,r)}(a.countries),G.dataVersion=a.version}function B(a){var i="X"===a._f||"x"===a._f;return!(!a._a||void 0!==a._tzm||i)}function N(a){"undefined"!=typeof console&&"function"==typeof console.error&&console.error(a)}function G(a){var i=Array.prototype.slice.call(arguments,0,-1),e=arguments[arguments.length-1],r=_(e),o=c.utc.apply(null,i);return r&&!c.isMoment(a)&&B(o)&&o.add(r.parse(o),"minutes"),o.tz(e),o}(e<2||2==e&&r<6)&&N("Moment Timezone requires Moment.js >= 2.6.0. You are using Moment.js "+c.version+". See momentjs.com"),M.prototype={_set:function(a){this.name=a.name,this.abbrs=a.abbrs,this.untils=a.untils,this.offsets=a.offsets,this.population=a.population},_index:function(a){var i,e=+a,r=this.untils;for(i=0;i<r.length;i++)if(e<r[i])return i},countries:function(){var i=this.name;return Object.keys(t).filter(function(a){return-1!==t[a].zones.indexOf(i)})},parse:function(a){var i,e,r,o,c=+a,A=this.offsets,n=this.untils,t=n.length-1;for(o=0;o<t;o++)if(i=A[o],e=A[o+1],r=A[o?o-1:o],i<e&&G.moveAmbiguousForward?i=e:r<i&&G.moveInvalidForward&&(i=r),c<n[o]-6e4*i)return A[o];return A[t]},abbr:function(a){return this.abbrs[this._index(a)]},offset:function(a){return N("zone.offset has been deprecated in favor of zone.utcOffset"),this.offsets[this._index(a)]},utcOffset:function(a){return this.offsets[this._index(a)]}},h.prototype.scoreOffsetAt=function(a){this.offsetScore+=Math.abs(this.zone.utcOffset(a.at)-a.offset),this.zone.abbr(a.at).replace(/[^A-Z]/g,"")!==a.abbr&&this.abbrScore++},G.version="0.5.34",G.dataVersion="",G._zones=A,G._links=n,G._names=s,G._countries=t,G.add=S,G.link=k,G.load=C,G.zone=_,G.zoneExists=function a(i){return a.didShowError||(a.didShowError=!0,N("moment.tz.zoneExists('"+i+"') has been deprecated in favor of !moment.tz.zone('"+i+"')")),!!_(i)},G.guess=function(a){return i&&!a||(i=P()),i},G.names=function(){var a,i=[];for(a in s)s.hasOwnProperty(a)&&(A[a]||A[n[a]])&&s[a]&&i.push(s[a]);return i.sort()},G.Zone=M,G.unpack=p,G.unpackBase60=o,G.needsOffset=B,G.moveInvalidForward=!0,G.moveAmbiguousForward=!1,G.countries=function(){return Object.keys(t)},G.zonesForCountry=function(a,i){if(!(a=function(a){return a=a.toUpperCase(),t[a]||null}(a)))return null;var e=a.zones.sort();return i?e.map(function(a){return{name:a,offset:_(a).utcOffset(new Date)}}):e};var y,L=c.fn;function O(a){return function(){return this._z?this._z.abbr(this):a.call(this)}}function D(a){return function(){return this._z=null,a.apply(this,arguments)}}c.tz=G,c.defaultZone=null,c.updateOffset=function(a,i){var e,r=c.defaultZone;if(void 0===a._z&&(r&&B(a)&&!a._isUTC&&(a._d=c.utc(a._a)._d,a.utc().add(r.parse(a),"minutes")),a._z=r),a._z)if(e=a._z.utcOffset(a),Math.abs(e)<16&&(e/=60),void 0!==a.utcOffset){var o=a._z;a.utcOffset(-e,i),a._z=o}else a.zone(e,i)},L.tz=function(a,i){if(a){if("string"!=typeof a)throw new Error("Time zone name must be a string, got "+a+" ["+typeof a+"]");return this._z=_(a),this._z?c.updateOffset(this,i):N("Moment Timezone has no data for "+a+". See http://momentjs.com/timezone/docs/#/data-loading/."),this}if(this._z)return this._z.name},L.zoneName=O(L.zoneName),L.zoneAbbr=O(L.zoneAbbr),L.utc=D(L.utc),L.local=D(L.local),L.utcOffset=(y=L.utcOffset,function(){return 0<arguments.length&&(this._z=null),y.apply(this,arguments)}),c.tz.setDefault=function(a){return(e<2||2==e&&r<9)&&N("Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js "+c.version+"."),c.defaultZone=a?_(a):null,c};var v=c.momentProperties;return"[object Array]"===Object.prototype.toString.call(v)?(v.push("_z"),v.push("_a")):v&&(v._z=null),C({version:"2021e",zones:["Africa/Abidjan|GMT|0|0||48e5","Africa/Nairobi|EAT|-30|0||47e5","Africa/Algiers|CET|-10|0||26e5","Africa/Lagos|WAT|-10|0||17e6","Africa/Maputo|CAT|-20|0||26e5","Africa/Cairo|EET EEST|-20 -30|01010|1M2m0 gL0 e10 mn0|15e6","Africa/Casablanca|+00 +01|0 -10|010101010101010101010101010101010101|1H3C0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0|32e5","Europe/Paris|CET CEST|-10 -20|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|11e6","Africa/Johannesburg|SAST|-20|0||84e5","Africa/Juba|EAT CAT|-30 -20|01|24nx0|","Africa/Khartoum|EAT CAT|-30 -20|01|1Usl0|51e5","Africa/Sao_Tome|GMT WAT|0 -10|010|1UQN0 2q00|","Africa/Tripoli|EET CET CEST|-20 -10 -20|0120|1IlA0 TA0 1o00|11e5","Africa/Windhoek|CAT WAT|-20 -10|0101010101010|1GQo0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|32e4","America/Adak|HST HDT|a0 90|01010101010101010101010|1GIc0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|326","America/Anchorage|AKST AKDT|90 80|01010101010101010101010|1GIb0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|30e4","America/Santo_Domingo|AST|40|0||29e5","America/Araguaina|-03 -02|30 20|010|1IdD0 Lz0|14e4","America/Fortaleza|-03|30|0||34e5","America/Asuncion|-03 -04|30 40|01010101010101010101010|1GTf0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0|28e5","America/Panama|EST|50|0||15e5","America/Mexico_City|CST CDT|60 50|01010101010101010101010|1GQw0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|20e6","America/Bahia|-02 -03|20 30|01|1GCq0|27e5","America/Managua|CST|60|0||22e5","America/La_Paz|-04|40|0||19e5","America/Lima|-05|50|0||11e6","America/Denver|MST MDT|70 60|01010101010101010101010|1GI90 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|26e5","America/Campo_Grande|-03 -04|30 40|0101010101010101|1GCr0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|77e4","America/Cancun|CST CDT EST|60 50 50|01010102|1GQw0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4","America/Caracas|-0430 -04|4u 40|01|1QMT0|29e5","America/Chicago|CST CDT|60 50|01010101010101010101010|1GI80 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|92e5","America/Chihuahua|MST MDT|70 60|01010101010101010101010|1GQx0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0|81e4","America/Phoenix|MST|70|0||42e5","America/Whitehorse|PST PDT MST|80 70 70|0101010101010101012|1GIa0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|23e3","America/New_York|EST EDT|50 40|01010101010101010101010|1GI70 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|21e6","America/Rio_Branco|-04 -05|40 50|01|1KLE0|31e4","America/Los_Angeles|PST PDT|80 70|01010101010101010101010|1GIa0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|15e6","America/Fort_Nelson|PST PDT MST|80 70 70|01010102|1GIa0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2","America/Halifax|AST ADT|40 30|01010101010101010101010|1GI60 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|39e4","America/Godthab|-03 -02|30 20|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|17e3","America/Grand_Turk|EST EDT AST|50 40 40|010101021010101010|1GI70 1zb0 Op0 1zb0 Op0 1zb0 Op0 7jA0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|37e2","America/Havana|CST CDT|50 40|01010101010101010101010|1GQt0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0|21e5","America/Metlakatla|PST AKST AKDT|80 90 80|01212120121212121|1PAa0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 uM0 jB0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|14e2","America/Miquelon|-03 -02|30 20|01010101010101010101010|1GI50 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|61e2","America/Montevideo|-02 -03|20 30|01010101|1GI40 1o10 11z0 1o10 11z0 1o10 11z0|17e5","America/Noronha|-02|20|0||30e2","America/Port-au-Prince|EST EDT|50 40|010101010101010101010|1GI70 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 3iN0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|23e5","Antarctica/Palmer|-03 -04|30 40|010101010|1H3D0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|40","America/Santiago|-03 -04|30 40|010101010101010101010|1H3D0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|62e5","America/Sao_Paulo|-02 -03|20 30|0101010101010101|1GCq0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|20e6","Atlantic/Azores|-01 +00|10 0|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|25e4","America/St_Johns|NST NDT|3u 2u|01010101010101010101010|1GI5u 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0|11e4","Antarctica/Casey|+11 +08|-b0 -80|010101010|1GAF0 blz0 3m10 1o30 14k0 1kr0 12l0 1o01|10","Antarctica/Davis|+05 +07|-50 -70|01|1GAI0|70","Pacific/Port_Moresby|+10|-a0|0||25e4","Australia/Sydney|AEDT AEST|-b0 -a0|01010101010101010101010|1GQg0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|40e5","Asia/Tashkent|+05|-50|0||23e5","Pacific/Auckland|NZDT NZST|-d0 -c0|01010101010101010101010|1GQe0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00|14e5","Asia/Baghdad|+03|-30|0||66e5","Antarctica/Troll|+00 +02|0 -20|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|40","Asia/Dhaka|+06|-60|0||16e6","Asia/Amman|EET EEST|-20 -30|010101010101010101010|1GPy0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 LA0 1C00|25e5","Asia/Kamchatka|+12|-c0|0||18e4","Asia/Baku|+04 +05|-40 -50|010101010|1GNA0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Asia/Bangkok|+07|-70|0||15e6","Asia/Barnaul|+07 +06|-70 -60|010|1N7v0 3rd0|","Asia/Beirut|EET EEST|-20 -30|01010101010101010101010|1GNy0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0|22e5","Asia/Kuala_Lumpur|+08|-80|0||71e5","Asia/Kolkata|IST|-5u|0||15e6","Asia/Chita|+10 +08 +09|-a0 -80 -90|012|1N7s0 3re0|33e4","Asia/Ulaanbaatar|+08 +09|-80 -90|01010|1O8G0 1cJ0 1cP0 1cJ0|12e5","Asia/Shanghai|CST|-80|0||23e6","Asia/Colombo|+0530|-5u|0||22e5","Asia/Damascus|EET EEST|-20 -30|01010101010101010101010|1GPy0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0|26e5","Asia/Dili|+09|-90|0||19e4","Asia/Dubai|+04|-40|0||39e5","Asia/Famagusta|EET EEST +03|-20 -30 -30|0101010101201010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0 2Ks0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|","Asia/Gaza|EET EEST|-20 -30|01010101010101010101010|1GPy0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qo0 Xc0 1qo0|18e5","Asia/Hong_Kong|HKT|-80|0||73e5","Asia/Hovd|+07 +08|-70 -80|01010|1O8H0 1cJ0 1cP0 1cJ0|81e3","Asia/Irkutsk|+09 +08|-90 -80|01|1N7t0|60e4","Europe/Istanbul|EET EEST +03|-20 -30 -30|01010101012|1GNB0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6","Asia/Jakarta|WIB|-70|0||31e6","Asia/Jayapura|WIT|-90|0||26e4","Asia/Jerusalem|IST IDT|-20 -30|01010101010101010101010|1GPA0 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0|81e4","Asia/Kabul|+0430|-4u|0||46e5","Asia/Karachi|PKT|-50|0||24e6","Asia/Kathmandu|+0545|-5J|0||12e5","Asia/Yakutsk|+10 +09|-a0 -90|01|1N7s0|28e4","Asia/Krasnoyarsk|+08 +07|-80 -70|01|1N7u0|10e5","Asia/Magadan|+12 +10 +11|-c0 -a0 -b0|012|1N7q0 3Cq0|95e3","Asia/Makassar|WITA|-80|0||15e5","Asia/Manila|PST|-80|0||24e6","Europe/Athens|EET EEST|-20 -30|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|35e5","Asia/Novosibirsk|+07 +06|-70 -60|010|1N7v0 4eN0|15e5","Asia/Omsk|+07 +06|-70 -60|01|1N7v0|12e5","Asia/Pyongyang|KST KST|-90 -8u|010|1P4D0 6BA0|29e5","Asia/Qyzylorda|+06 +05|-60 -50|01|1Xei0|73e4","Asia/Rangoon|+0630|-6u|0||48e5","Asia/Sakhalin|+11 +10|-b0 -a0|010|1N7r0 3rd0|58e4","Asia/Seoul|KST|-90|0||23e6","Asia/Srednekolymsk|+12 +11|-c0 -b0|01|1N7q0|35e2","Asia/Tehran|+0330 +0430|-3u -4u|01010101010101010101010|1GLUu 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0|14e6","Asia/Tokyo|JST|-90|0||38e6","Asia/Tomsk|+07 +06|-70 -60|010|1N7v0 3Qp0|10e5","Asia/Vladivostok|+11 +10|-b0 -a0|01|1N7r0|60e4","Asia/Yekaterinburg|+06 +05|-60 -50|01|1N7w0|14e5","Europe/Lisbon|WET WEST|0 -10|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|27e5","Atlantic/Cape_Verde|-01|10|0||50e4","Australia/Adelaide|ACDT ACST|-au -9u|01010101010101010101010|1GQgu 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|11e5","Australia/Brisbane|AEST|-a0|0||20e5","Australia/Darwin|ACST|-9u|0||12e4","Australia/Eucla|+0845|-8J|0||368","Australia/Lord_Howe|+11 +1030|-b0 -au|01010101010101010101010|1GQf0 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu|347","Australia/Perth|AWST|-80|0||18e5","Pacific/Easter|-05 -06|50 60|010101010101010101010|1H3D0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|30e2","Europe/Dublin|GMT IST|0 -10|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|12e5","Etc/GMT-1|+01|-10|0||","Pacific/Guadalcanal|+11|-b0|0||11e4","Pacific/Fakaofo|+13|-d0|0||483","Pacific/Kiritimati|+14|-e0|0||51e2","Etc/GMT-2|+02|-20|0||","Pacific/Tahiti|-10|a0|0||18e4","Pacific/Niue|-11|b0|0||12e2","Etc/GMT+12|-12|c0|0||","Pacific/Galapagos|-06|60|0||25e3","Etc/GMT+7|-07|70|0||","Pacific/Pitcairn|-08|80|0||56","Pacific/Gambier|-09|90|0||125","Etc/UTC|UTC|0|0||","Europe/Ulyanovsk|+04 +03|-40 -30|010|1N7y0 3rd0|13e5","Europe/London|GMT BST|0 -10|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|10e6","Europe/Chisinau|EET EEST|-20 -30|01010101010101010101010|1GNA0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|67e4","Europe/Kaliningrad|+03 EET|-30 -20|01|1N7z0|44e4","Europe/Kirov|+04 +03|-40 -30|01|1N7y0|48e4","Europe/Moscow|MSK MSK|-40 -30|01|1N7y0|16e6","Europe/Saratov|+04 +03|-40 -30|010|1N7y0 5810|","Europe/Simferopol|EET EEST MSK MSK|-20 -30 -40 -30|0101023|1GNB0 1qM0 11A0 1o00 11z0 1nW0|33e4","Europe/Volgograd|+04 +03|-40 -30|0101|1N7y0 9Jd0 5gn0|10e5","Pacific/Honolulu|HST|a0|0||37e4","MET|MET MEST|-10 -20|01010101010101010101010|1GNB0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|","Pacific/Chatham|+1345 +1245|-dJ -cJ|01010101010101010101010|1GQe0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00|600","Pacific/Apia|+14 +13|-e0 -d0|01010101010101010101|1GQe0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0|37e3","Pacific/Bougainville|+10 +11|-a0 -b0|01|1NwE0|18e4","Pacific/Fiji|+13 +12|-d0 -c0|010101010101010101010|1Goe0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 s00 20o0 pc0 2hc0 bc0 4q00|88e4","Pacific/Guam|ChST|-a0|0||17e4","Pacific/Marquesas|-0930|9u|0||86e2","Pacific/Pago_Pago|SST|b0|0||37e2","Pacific/Norfolk|+1130 +11 +12|-bu -b0 -c0|012121212|1PoCu 9Jcu 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0|25e4","Pacific/Tongatapu|+13 +14|-d0 -e0|010|1S4d0 s00|75e3"],links:["Africa/Abidjan|Africa/Accra","Africa/Abidjan|Africa/Bamako","Africa/Abidjan|Africa/Banjul","Africa/Abidjan|Africa/Bissau","Africa/Abidjan|Africa/Conakry","Africa/Abidjan|Africa/Dakar","Africa/Abidjan|Africa/Freetown","Africa/Abidjan|Africa/Lome","Africa/Abidjan|Africa/Monrovia","Africa/Abidjan|Africa/Nouakchott","Africa/Abidjan|Africa/Ouagadougou","Africa/Abidjan|Africa/Timbuktu","Africa/Abidjan|America/Danmarkshavn","Africa/Abidjan|Atlantic/Reykjavik","Africa/Abidjan|Atlantic/St_Helena","Africa/Abidjan|Etc/GMT","Africa/Abidjan|Etc/GMT+0","Africa/Abidjan|Etc/GMT-0","Africa/Abidjan|Etc/GMT0","Africa/Abidjan|Etc/Greenwich","Africa/Abidjan|GMT","Africa/Abidjan|GMT+0","Africa/Abidjan|GMT-0","Africa/Abidjan|GMT0","Africa/Abidjan|Greenwich","Africa/Abidjan|Iceland","Africa/Algiers|Africa/Tunis","Africa/Cairo|Egypt","Africa/Casablanca|Africa/El_Aaiun","Africa/Johannesburg|Africa/Maseru","Africa/Johannesburg|Africa/Mbabane","Africa/Lagos|Africa/Bangui","Africa/Lagos|Africa/Brazzaville","Africa/Lagos|Africa/Douala","Africa/Lagos|Africa/Kinshasa","Africa/Lagos|Africa/Libreville","Africa/Lagos|Africa/Luanda","Africa/Lagos|Africa/Malabo","Africa/Lagos|Africa/Ndjamena","Africa/Lagos|Africa/Niamey","Africa/Lagos|Africa/Porto-Novo","Africa/Maputo|Africa/Blantyre","Africa/Maputo|Africa/Bujumbura","Africa/Maputo|Africa/Gaborone","Africa/Maputo|Africa/Harare","Africa/Maputo|Africa/Kigali","Africa/Maputo|Africa/Lubumbashi","Africa/Maputo|Africa/Lusaka","Africa/Nairobi|Africa/Addis_Ababa","Africa/Nairobi|Africa/Asmara","Africa/Nairobi|Africa/Asmera","Africa/Nairobi|Africa/Dar_es_Salaam","Africa/Nairobi|Africa/Djibouti","Africa/Nairobi|Africa/Kampala","Africa/Nairobi|Africa/Mogadishu","Africa/Nairobi|Indian/Antananarivo","Africa/Nairobi|Indian/Comoro","Africa/Nairobi|Indian/Mayotte","Africa/Tripoli|Libya","America/Adak|America/Atka","America/Adak|US/Aleutian","America/Anchorage|America/Juneau","America/Anchorage|America/Nome","America/Anchorage|America/Sitka","America/Anchorage|America/Yakutat","America/Anchorage|US/Alaska","America/Campo_Grande|America/Cuiaba","America/Chicago|America/Indiana/Knox","America/Chicago|America/Indiana/Tell_City","America/Chicago|America/Knox_IN","America/Chicago|America/Matamoros","America/Chicago|America/Menominee","America/Chicago|America/North_Dakota/Beulah","America/Chicago|America/North_Dakota/Center","America/Chicago|America/North_Dakota/New_Salem","America/Chicago|America/Rainy_River","America/Chicago|America/Rankin_Inlet","America/Chicago|America/Resolute","America/Chicago|America/Winnipeg","America/Chicago|CST6CDT","America/Chicago|Canada/Central","America/Chicago|US/Central","America/Chicago|US/Indiana-Starke","America/Chihuahua|America/Mazatlan","America/Chihuahua|Mexico/BajaSur","America/Denver|America/Boise","America/Denver|America/Cambridge_Bay","America/Denver|America/Edmonton","America/Denver|America/Inuvik","America/Denver|America/Ojinaga","America/Denver|America/Shiprock","America/Denver|America/Yellowknife","America/Denver|Canada/Mountain","America/Denver|MST7MDT","America/Denver|Navajo","America/Denver|US/Mountain","America/Fortaleza|America/Argentina/Buenos_Aires","America/Fortaleza|America/Argentina/Catamarca","America/Fortaleza|America/Argentina/ComodRivadavia","America/Fortaleza|America/Argentina/Cordoba","America/Fortaleza|America/Argentina/Jujuy","America/Fortaleza|America/Argentina/La_Rioja","America/Fortaleza|America/Argentina/Mendoza","America/Fortaleza|America/Argentina/Rio_Gallegos","America/Fortaleza|America/Argentina/Salta","America/Fortaleza|America/Argentina/San_Juan","America/Fortaleza|America/Argentina/San_Luis","America/Fortaleza|America/Argentina/Tucuman","America/Fortaleza|America/Argentina/Ushuaia","America/Fortaleza|America/Belem","America/Fortaleza|America/Buenos_Aires","America/Fortaleza|America/Catamarca","America/Fortaleza|America/Cayenne","America/Fortaleza|America/Cordoba","America/Fortaleza|America/Jujuy","America/Fortaleza|America/Maceio","America/Fortaleza|America/Mendoza","America/Fortaleza|America/Paramaribo","America/Fortaleza|America/Recife","America/Fortaleza|America/Rosario","America/Fortaleza|America/Santarem","America/Fortaleza|Antarctica/Rothera","America/Fortaleza|Atlantic/Stanley","America/Fortaleza|Etc/GMT+3","America/Godthab|America/Nuuk","America/Halifax|America/Glace_Bay","America/Halifax|America/Goose_Bay","America/Halifax|America/Moncton","America/Halifax|America/Thule","America/Halifax|Atlantic/Bermuda","America/Halifax|Canada/Atlantic","America/Havana|Cuba","America/La_Paz|America/Boa_Vista","America/La_Paz|America/Guyana","America/La_Paz|America/Manaus","America/La_Paz|America/Porto_Velho","America/La_Paz|Brazil/West","America/La_Paz|Etc/GMT+4","America/Lima|America/Bogota","America/Lima|America/Guayaquil","America/Lima|Etc/GMT+5","America/Los_Angeles|America/Ensenada","America/Los_Angeles|America/Santa_Isabel","America/Los_Angeles|America/Tijuana","America/Los_Angeles|America/Vancouver","America/Los_Angeles|Canada/Pacific","America/Los_Angeles|Mexico/BajaNorte","America/Los_Angeles|PST8PDT","America/Los_Angeles|US/Pacific","America/Managua|America/Belize","America/Managua|America/Costa_Rica","America/Managua|America/El_Salvador","America/Managua|America/Guatemala","America/Managua|America/Regina","America/Managua|America/Swift_Current","America/Managua|America/Tegucigalpa","America/Managua|Canada/Saskatchewan","America/Mexico_City|America/Bahia_Banderas","America/Mexico_City|America/Merida","America/Mexico_City|America/Monterrey","America/Mexico_City|Mexico/General","America/New_York|America/Detroit","America/New_York|America/Fort_Wayne","America/New_York|America/Indiana/Indianapolis","America/New_York|America/Indiana/Marengo","America/New_York|America/Indiana/Petersburg","America/New_York|America/Indiana/Vevay","America/New_York|America/Indiana/Vincennes","America/New_York|America/Indiana/Winamac","America/New_York|America/Indianapolis","America/New_York|America/Iqaluit","America/New_York|America/Kentucky/Louisville","America/New_York|America/Kentucky/Monticello","America/New_York|America/Louisville","America/New_York|America/Montreal","America/New_York|America/Nassau","America/New_York|America/Nipigon","America/New_York|America/Pangnirtung","America/New_York|America/Thunder_Bay","America/New_York|America/Toronto","America/New_York|Canada/Eastern","America/New_York|EST5EDT","America/New_York|US/East-Indiana","America/New_York|US/Eastern","America/New_York|US/Michigan","America/Noronha|Atlantic/South_Georgia","America/Noronha|Brazil/DeNoronha","America/Noronha|Etc/GMT+2","America/Panama|America/Atikokan","America/Panama|America/Cayman","America/Panama|America/Coral_Harbour","America/Panama|America/Jamaica","America/Panama|EST","America/Panama|Jamaica","America/Phoenix|America/Creston","America/Phoenix|America/Dawson_Creek","America/Phoenix|America/Hermosillo","America/Phoenix|MST","America/Phoenix|US/Arizona","America/Rio_Branco|America/Eirunepe","America/Rio_Branco|America/Porto_Acre","America/Rio_Branco|Brazil/Acre","America/Santiago|Chile/Continental","America/Santo_Domingo|America/Anguilla","America/Santo_Domingo|America/Antigua","America/Santo_Domingo|America/Aruba","America/Santo_Domingo|America/Barbados","America/Santo_Domingo|America/Blanc-Sablon","America/Santo_Domingo|America/Curacao","America/Santo_Domingo|America/Dominica","America/Santo_Domingo|America/Grenada","America/Santo_Domingo|America/Guadeloupe","America/Santo_Domingo|America/Kralendijk","America/Santo_Domingo|America/Lower_Princes","America/Santo_Domingo|America/Marigot","America/Santo_Domingo|America/Martinique","America/Santo_Domingo|America/Montserrat","America/Santo_Domingo|America/Port_of_Spain","America/Santo_Domingo|America/Puerto_Rico","America/Santo_Domingo|America/St_Barthelemy","America/Santo_Domingo|America/St_Kitts","America/Santo_Domingo|America/St_Lucia","America/Santo_Domingo|America/St_Thomas","America/Santo_Domingo|America/St_Vincent","America/Santo_Domingo|America/Tortola","America/Santo_Domingo|America/Virgin","America/Sao_Paulo|Brazil/East","America/St_Johns|Canada/Newfoundland","America/Whitehorse|America/Dawson","America/Whitehorse|Canada/Yukon","Antarctica/Palmer|America/Punta_Arenas","Asia/Baghdad|Antarctica/Syowa","Asia/Baghdad|Asia/Aden","Asia/Baghdad|Asia/Bahrain","Asia/Baghdad|Asia/Kuwait","Asia/Baghdad|Asia/Qatar","Asia/Baghdad|Asia/Riyadh","Asia/Baghdad|Etc/GMT-3","Asia/Baghdad|Europe/Minsk","Asia/Bangkok|Asia/Ho_Chi_Minh","Asia/Bangkok|Asia/Novokuznetsk","Asia/Bangkok|Asia/Phnom_Penh","Asia/Bangkok|Asia/Saigon","Asia/Bangkok|Asia/Vientiane","Asia/Bangkok|Etc/GMT-7","Asia/Bangkok|Indian/Christmas","Asia/Dhaka|Antarctica/Vostok","Asia/Dhaka|Asia/Almaty","Asia/Dhaka|Asia/Bishkek","Asia/Dhaka|Asia/Dacca","Asia/Dhaka|Asia/Kashgar","Asia/Dhaka|Asia/Qostanay","Asia/Dhaka|Asia/Thimbu","Asia/Dhaka|Asia/Thimphu","Asia/Dhaka|Asia/Urumqi","Asia/Dhaka|Etc/GMT-6","Asia/Dhaka|Indian/Chagos","Asia/Dili|Etc/GMT-9","Asia/Dili|Pacific/Palau","Asia/Dubai|Asia/Muscat","Asia/Dubai|Asia/Tbilisi","Asia/Dubai|Asia/Yerevan","Asia/Dubai|Etc/GMT-4","Asia/Dubai|Europe/Samara","Asia/Dubai|Indian/Mahe","Asia/Dubai|Indian/Mauritius","Asia/Dubai|Indian/Reunion","Asia/Gaza|Asia/Hebron","Asia/Hong_Kong|Hongkong","Asia/Jakarta|Asia/Pontianak","Asia/Jerusalem|Asia/Tel_Aviv","Asia/Jerusalem|Israel","Asia/Kamchatka|Asia/Anadyr","Asia/Kamchatka|Etc/GMT-12","Asia/Kamchatka|Kwajalein","Asia/Kamchatka|Pacific/Funafuti","Asia/Kamchatka|Pacific/Kwajalein","Asia/Kamchatka|Pacific/Majuro","Asia/Kamchatka|Pacific/Nauru","Asia/Kamchatka|Pacific/Tarawa","Asia/Kamchatka|Pacific/Wake","Asia/Kamchatka|Pacific/Wallis","Asia/Kathmandu|Asia/Katmandu","Asia/Kolkata|Asia/Calcutta","Asia/Kuala_Lumpur|Asia/Brunei","Asia/Kuala_Lumpur|Asia/Kuching","Asia/Kuala_Lumpur|Asia/Singapore","Asia/Kuala_Lumpur|Etc/GMT-8","Asia/Kuala_Lumpur|Singapore","Asia/Makassar|Asia/Ujung_Pandang","Asia/Rangoon|Asia/Yangon","Asia/Rangoon|Indian/Cocos","Asia/Seoul|ROK","Asia/Shanghai|Asia/Chongqing","Asia/Shanghai|Asia/Chungking","Asia/Shanghai|Asia/Harbin","Asia/Shanghai|Asia/Macao","Asia/Shanghai|Asia/Macau","Asia/Shanghai|Asia/Taipei","Asia/Shanghai|PRC","Asia/Shanghai|ROC","Asia/Tashkent|Antarctica/Mawson","Asia/Tashkent|Asia/Aqtau","Asia/Tashkent|Asia/Aqtobe","Asia/Tashkent|Asia/Ashgabat","Asia/Tashkent|Asia/Ashkhabad","Asia/Tashkent|Asia/Atyrau","Asia/Tashkent|Asia/Dushanbe","Asia/Tashkent|Asia/Oral","Asia/Tashkent|Asia/Samarkand","Asia/Tashkent|Etc/GMT-5","Asia/Tashkent|Indian/Kerguelen","Asia/Tashkent|Indian/Maldives","Asia/Tehran|Iran","Asia/Tokyo|Japan","Asia/Ulaanbaatar|Asia/Choibalsan","Asia/Ulaanbaatar|Asia/Ulan_Bator","Asia/Vladivostok|Asia/Ust-Nera","Asia/Yakutsk|Asia/Khandyga","Atlantic/Azores|America/Scoresbysund","Atlantic/Cape_Verde|Etc/GMT+1","Australia/Adelaide|Australia/Broken_Hill","Australia/Adelaide|Australia/South","Australia/Adelaide|Australia/Yancowinna","Australia/Brisbane|Australia/Lindeman","Australia/Brisbane|Australia/Queensland","Australia/Darwin|Australia/North","Australia/Lord_Howe|Australia/LHI","Australia/Perth|Australia/West","Australia/Sydney|Antarctica/Macquarie","Australia/Sydney|Australia/ACT","Australia/Sydney|Australia/Canberra","Australia/Sydney|Australia/Currie","Australia/Sydney|Australia/Hobart","Australia/Sydney|Australia/Melbourne","Australia/Sydney|Australia/NSW","Australia/Sydney|Australia/Tasmania","Australia/Sydney|Australia/Victoria","Etc/UTC|Etc/UCT","Etc/UTC|Etc/Universal","Etc/UTC|Etc/Zulu","Etc/UTC|UCT","Etc/UTC|UTC","Etc/UTC|Universal","Etc/UTC|Zulu","Europe/Athens|Asia/Nicosia","Europe/Athens|EET","Europe/Athens|Europe/Bucharest","Europe/Athens|Europe/Helsinki","Europe/Athens|Europe/Kiev","Europe/Athens|Europe/Mariehamn","Europe/Athens|Europe/Nicosia","Europe/Athens|Europe/Riga","Europe/Athens|Europe/Sofia","Europe/Athens|Europe/Tallinn","Europe/Athens|Europe/Uzhgorod","Europe/Athens|Europe/Vilnius","Europe/Athens|Europe/Zaporozhye","Europe/Chisinau|Europe/Tiraspol","Europe/Dublin|Eire","Europe/Istanbul|Asia/Istanbul","Europe/Istanbul|Turkey","Europe/Lisbon|Atlantic/Canary","Europe/Lisbon|Atlantic/Faeroe","Europe/Lisbon|Atlantic/Faroe","Europe/Lisbon|Atlantic/Madeira","Europe/Lisbon|Portugal","Europe/Lisbon|WET","Europe/London|Europe/Belfast","Europe/London|Europe/Guernsey","Europe/London|Europe/Isle_of_Man","Europe/London|Europe/Jersey","Europe/London|GB","Europe/London|GB-Eire","Europe/Moscow|W-SU","Europe/Paris|Africa/Ceuta","Europe/Paris|Arctic/Longyearbyen","Europe/Paris|Atlantic/Jan_Mayen","Europe/Paris|CET","Europe/Paris|Europe/Amsterdam","Europe/Paris|Europe/Andorra","Europe/Paris|Europe/Belgrade","Europe/Paris|Europe/Berlin","Europe/Paris|Europe/Bratislava","Europe/Paris|Europe/Brussels","Europe/Paris|Europe/Budapest","Europe/Paris|Europe/Busingen","Europe/Paris|Europe/Copenhagen","Europe/Paris|Europe/Gibraltar","Europe/Paris|Europe/Ljubljana","Europe/Paris|Europe/Luxembourg","Europe/Paris|Europe/Madrid","Europe/Paris|Europe/Malta","Europe/Paris|Europe/Monaco","Europe/Paris|Europe/Oslo","Europe/Paris|Europe/Podgorica","Europe/Paris|Europe/Prague","Europe/Paris|Europe/Rome","Europe/Paris|Europe/San_Marino","Europe/Paris|Europe/Sarajevo","Europe/Paris|Europe/Skopje","Europe/Paris|Europe/Stockholm","Europe/Paris|Europe/Tirane","Europe/Paris|Europe/Vaduz","Europe/Paris|Europe/Vatican","Europe/Paris|Europe/Vienna","Europe/Paris|Europe/Warsaw","Europe/Paris|Europe/Zagreb","Europe/Paris|Europe/Zurich","Europe/Paris|Poland","Europe/Ulyanovsk|Europe/Astrakhan","Pacific/Auckland|Antarctica/McMurdo","Pacific/Auckland|Antarctica/South_Pole","Pacific/Auckland|NZ","Pacific/Chatham|NZ-CHAT","Pacific/Easter|Chile/EasterIsland","Pacific/Fakaofo|Etc/GMT-13","Pacific/Fakaofo|Pacific/Enderbury","Pacific/Fakaofo|Pacific/Kanton","Pacific/Galapagos|Etc/GMT+6","Pacific/Gambier|Etc/GMT+9","Pacific/Guadalcanal|Etc/GMT-11","Pacific/Guadalcanal|Pacific/Efate","Pacific/Guadalcanal|Pacific/Kosrae","Pacific/Guadalcanal|Pacific/Noumea","Pacific/Guadalcanal|Pacific/Pohnpei","Pacific/Guadalcanal|Pacific/Ponape","Pacific/Guam|Pacific/Saipan","Pacific/Honolulu|HST","Pacific/Honolulu|Pacific/Johnston","Pacific/Honolulu|US/Hawaii","Pacific/Kiritimati|Etc/GMT-14","Pacific/Niue|Etc/GMT+11","Pacific/Pago_Pago|Pacific/Midway","Pacific/Pago_Pago|Pacific/Samoa","Pacific/Pago_Pago|US/Samoa","Pacific/Pitcairn|Etc/GMT+8","Pacific/Port_Moresby|Antarctica/DumontDUrville","Pacific/Port_Moresby|Etc/GMT-10","Pacific/Port_Moresby|Pacific/Chuuk","Pacific/Port_Moresby|Pacific/Truk","Pacific/Port_Moresby|Pacific/Yap","Pacific/Tahiti|Etc/GMT+10","Pacific/Tahiti|Pacific/Rarotonga"],countries:["AD|Europe/Andorra","AE|Asia/Dubai","AF|Asia/Kabul","AG|America/Port_of_Spain America/Antigua","AI|America/Port_of_Spain America/Anguilla","AL|Europe/Tirane","AM|Asia/Yerevan","AO|Africa/Lagos Africa/Luanda","AQ|Antarctica/Casey Antarctica/Davis Antarctica/DumontDUrville Antarctica/Mawson Antarctica/Palmer Antarctica/Rothera Antarctica/Syowa Antarctica/Troll Antarctica/Vostok Pacific/Auckland Antarctica/McMurdo","AR|America/Argentina/Buenos_Aires America/Argentina/Cordoba America/Argentina/Salta America/Argentina/Jujuy America/Argentina/Tucuman America/Argentina/Catamarca America/Argentina/La_Rioja America/Argentina/San_Juan America/Argentina/Mendoza America/Argentina/San_Luis America/Argentina/Rio_Gallegos America/Argentina/Ushuaia","AS|Pacific/Pago_Pago","AT|Europe/Vienna","AU|Australia/Lord_Howe Antarctica/Macquarie Australia/Hobart Australia/Melbourne Australia/Sydney Australia/Broken_Hill Australia/Brisbane Australia/Lindeman Australia/Adelaide Australia/Darwin Australia/Perth Australia/Eucla","AW|America/Curacao America/Aruba","AX|Europe/Helsinki Europe/Mariehamn","AZ|Asia/Baku","BA|Europe/Belgrade Europe/Sarajevo","BB|America/Barbados","BD|Asia/Dhaka","BE|Europe/Brussels","BF|Africa/Abidjan Africa/Ouagadougou","BG|Europe/Sofia","BH|Asia/Qatar Asia/Bahrain","BI|Africa/Maputo Africa/Bujumbura","BJ|Africa/Lagos Africa/Porto-Novo","BL|America/Port_of_Spain America/St_Barthelemy","BM|Atlantic/Bermuda","BN|Asia/Brunei","BO|America/La_Paz","BQ|America/Curacao America/Kralendijk","BR|America/Noronha America/Belem America/Fortaleza America/Recife America/Araguaina America/Maceio America/Bahia America/Sao_Paulo America/Campo_Grande America/Cuiaba America/Santarem America/Porto_Velho America/Boa_Vista America/Manaus America/Eirunepe America/Rio_Branco","BS|America/Nassau","BT|Asia/Thimphu","BW|Africa/Maputo Africa/Gaborone","BY|Europe/Minsk","BZ|America/Belize","CA|America/St_Johns America/Halifax America/Glace_Bay America/Moncton America/Goose_Bay America/Blanc-Sablon America/Toronto America/Nipigon America/Thunder_Bay America/Iqaluit America/Pangnirtung America/Atikokan America/Winnipeg America/Rainy_River America/Resolute America/Rankin_Inlet America/Regina America/Swift_Current America/Edmonton America/Cambridge_Bay America/Yellowknife America/Inuvik America/Creston America/Dawson_Creek America/Fort_Nelson America/Whitehorse America/Dawson America/Vancouver","CC|Indian/Cocos","CD|Africa/Maputo Africa/Lagos Africa/Kinshasa Africa/Lubumbashi","CF|Africa/Lagos Africa/Bangui","CG|Africa/Lagos Africa/Brazzaville","CH|Europe/Zurich","CI|Africa/Abidjan","CK|Pacific/Rarotonga","CL|America/Santiago America/Punta_Arenas Pacific/Easter","CM|Africa/Lagos Africa/Douala","CN|Asia/Shanghai Asia/Urumqi","CO|America/Bogota","CR|America/Costa_Rica","CU|America/Havana","CV|Atlantic/Cape_Verde","CW|America/Curacao","CX|Indian/Christmas","CY|Asia/Nicosia Asia/Famagusta","CZ|Europe/Prague","DE|Europe/Zurich Europe/Berlin Europe/Busingen","DJ|Africa/Nairobi Africa/Djibouti","DK|Europe/Copenhagen","DM|America/Port_of_Spain America/Dominica","DO|America/Santo_Domingo","DZ|Africa/Algiers","EC|America/Guayaquil Pacific/Galapagos","EE|Europe/Tallinn","EG|Africa/Cairo","EH|Africa/El_Aaiun","ER|Africa/Nairobi Africa/Asmara","ES|Europe/Madrid Africa/Ceuta Atlantic/Canary","ET|Africa/Nairobi Africa/Addis_Ababa","FI|Europe/Helsinki","FJ|Pacific/Fiji","FK|Atlantic/Stanley","FM|Pacific/Chuuk Pacific/Pohnpei Pacific/Kosrae","FO|Atlantic/Faroe","FR|Europe/Paris","GA|Africa/Lagos Africa/Libreville","GB|Europe/London","GD|America/Port_of_Spain America/Grenada","GE|Asia/Tbilisi","GF|America/Cayenne","GG|Europe/London Europe/Guernsey","GH|Africa/Accra","GI|Europe/Gibraltar","GL|America/Nuuk America/Danmarkshavn America/Scoresbysund America/Thule","GM|Africa/Abidjan Africa/Banjul","GN|Africa/Abidjan Africa/Conakry","GP|America/Port_of_Spain America/Guadeloupe","GQ|Africa/Lagos Africa/Malabo","GR|Europe/Athens","GS|Atlantic/South_Georgia","GT|America/Guatemala","GU|Pacific/Guam","GW|Africa/Bissau","GY|America/Guyana","HK|Asia/Hong_Kong","HN|America/Tegucigalpa","HR|Europe/Belgrade Europe/Zagreb","HT|America/Port-au-Prince","HU|Europe/Budapest","ID|Asia/Jakarta Asia/Pontianak Asia/Makassar Asia/Jayapura","IE|Europe/Dublin","IL|Asia/Jerusalem","IM|Europe/London Europe/Isle_of_Man","IN|Asia/Kolkata","IO|Indian/Chagos","IQ|Asia/Baghdad","IR|Asia/Tehran","IS|Atlantic/Reykjavik","IT|Europe/Rome","JE|Europe/London Europe/Jersey","JM|America/Jamaica","JO|Asia/Amman","JP|Asia/Tokyo","KE|Africa/Nairobi","KG|Asia/Bishkek","KH|Asia/Bangkok Asia/Phnom_Penh","KI|Pacific/Tarawa Pacific/Enderbury Pacific/Kiritimati","KM|Africa/Nairobi Indian/Comoro","KN|America/Port_of_Spain America/St_Kitts","KP|Asia/Pyongyang","KR|Asia/Seoul","KW|Asia/Riyadh Asia/Kuwait","KY|America/Panama America/Cayman","KZ|Asia/Almaty Asia/Qyzylorda Asia/Qostanay Asia/Aqtobe Asia/Aqtau Asia/Atyrau Asia/Oral","LA|Asia/Bangkok Asia/Vientiane","LB|Asia/Beirut","LC|America/Port_of_Spain America/St_Lucia","LI|Europe/Zurich Europe/Vaduz","LK|Asia/Colombo","LR|Africa/Monrovia","LS|Africa/Johannesburg Africa/Maseru","LT|Europe/Vilnius","LU|Europe/Luxembourg","LV|Europe/Riga","LY|Africa/Tripoli","MA|Africa/Casablanca","MC|Europe/Monaco","MD|Europe/Chisinau","ME|Europe/Belgrade Europe/Podgorica","MF|America/Port_of_Spain America/Marigot","MG|Africa/Nairobi Indian/Antananarivo","MH|Pacific/Majuro Pacific/Kwajalein","MK|Europe/Belgrade Europe/Skopje","ML|Africa/Abidjan Africa/Bamako","MM|Asia/Yangon","MN|Asia/Ulaanbaatar Asia/Hovd Asia/Choibalsan","MO|Asia/Macau","MP|Pacific/Guam Pacific/Saipan","MQ|America/Martinique","MR|Africa/Abidjan Africa/Nouakchott","MS|America/Port_of_Spain America/Montserrat","MT|Europe/Malta","MU|Indian/Mauritius","MV|Indian/Maldives","MW|Africa/Maputo Africa/Blantyre","MX|America/Mexico_City America/Cancun America/Merida America/Monterrey America/Matamoros America/Mazatlan America/Chihuahua America/Ojinaga America/Hermosillo America/Tijuana America/Bahia_Banderas","MY|Asia/Kuala_Lumpur Asia/Kuching","MZ|Africa/Maputo","NA|Africa/Windhoek","NC|Pacific/Noumea","NE|Africa/Lagos Africa/Niamey","NF|Pacific/Norfolk","NG|Africa/Lagos","NI|America/Managua","NL|Europe/Amsterdam","NO|Europe/Oslo","NP|Asia/Kathmandu","NR|Pacific/Nauru","NU|Pacific/Niue","NZ|Pacific/Auckland Pacific/Chatham","OM|Asia/Dubai Asia/Muscat","PA|America/Panama","PE|America/Lima","PF|Pacific/Tahiti Pacific/Marquesas Pacific/Gambier","PG|Pacific/Port_Moresby Pacific/Bougainville","PH|Asia/Manila","PK|Asia/Karachi","PL|Europe/Warsaw","PM|America/Miquelon","PN|Pacific/Pitcairn","PR|America/Puerto_Rico","PS|Asia/Gaza Asia/Hebron","PT|Europe/Lisbon Atlantic/Madeira Atlantic/Azores","PW|Pacific/Palau","PY|America/Asuncion","QA|Asia/Qatar","RE|Indian/Reunion","RO|Europe/Bucharest","RS|Europe/Belgrade","RU|Europe/Kaliningrad Europe/Moscow Europe/Simferopol Europe/Kirov Europe/Volgograd Europe/Astrakhan Europe/Saratov Europe/Ulyanovsk Europe/Samara Asia/Yekaterinburg Asia/Omsk Asia/Novosibirsk Asia/Barnaul Asia/Tomsk Asia/Novokuznetsk Asia/Krasnoyarsk Asia/Irkutsk Asia/Chita Asia/Yakutsk Asia/Khandyga Asia/Vladivostok Asia/Ust-Nera Asia/Magadan Asia/Sakhalin Asia/Srednekolymsk Asia/Kamchatka Asia/Anadyr","RW|Africa/Maputo Africa/Kigali","SA|Asia/Riyadh","SB|Pacific/Guadalcanal","SC|Indian/Mahe","SD|Africa/Khartoum","SE|Europe/Stockholm","SG|Asia/Singapore","SH|Africa/Abidjan Atlantic/St_Helena","SI|Europe/Belgrade Europe/Ljubljana","SJ|Europe/Oslo Arctic/Longyearbyen","SK|Europe/Prague Europe/Bratislava","SL|Africa/Abidjan Africa/Freetown","SM|Europe/Rome Europe/San_Marino","SN|Africa/Abidjan Africa/Dakar","SO|Africa/Nairobi Africa/Mogadishu","SR|America/Paramaribo","SS|Africa/Juba","ST|Africa/Sao_Tome","SV|America/El_Salvador","SX|America/Curacao America/Lower_Princes","SY|Asia/Damascus","SZ|Africa/Johannesburg Africa/Mbabane","TC|America/Grand_Turk","TD|Africa/Ndjamena","TF|Indian/Reunion Indian/Kerguelen","TG|Africa/Abidjan Africa/Lome","TH|Asia/Bangkok","TJ|Asia/Dushanbe","TK|Pacific/Fakaofo","TL|Asia/Dili","TM|Asia/Ashgabat","TN|Africa/Tunis","TO|Pacific/Tongatapu","TR|Europe/Istanbul","TT|America/Port_of_Spain","TV|Pacific/Funafuti","TW|Asia/Taipei","TZ|Africa/Nairobi Africa/Dar_es_Salaam","UA|Europe/Simferopol Europe/Kiev Europe/Uzhgorod Europe/Zaporozhye","UG|Africa/Nairobi Africa/Kampala","UM|Pacific/Pago_Pago Pacific/Wake Pacific/Honolulu Pacific/Midway","US|America/New_York America/Detroit America/Kentucky/Louisville America/Kentucky/Monticello America/Indiana/Indianapolis America/Indiana/Vincennes America/Indiana/Winamac America/Indiana/Marengo America/Indiana/Petersburg America/Indiana/Vevay America/Chicago America/Indiana/Tell_City America/Indiana/Knox America/Menominee America/North_Dakota/Center America/North_Dakota/New_Salem America/North_Dakota/Beulah America/Denver America/Boise America/Phoenix America/Los_Angeles America/Anchorage America/Juneau America/Sitka America/Metlakatla America/Yakutat America/Nome America/Adak Pacific/Honolulu","UY|America/Montevideo","UZ|Asia/Samarkand Asia/Tashkent","VA|Europe/Rome Europe/Vatican","VC|America/Port_of_Spain America/St_Vincent","VE|America/Caracas","VG|America/Port_of_Spain America/Tortola","VI|America/Port_of_Spain America/St_Thomas","VN|Asia/Bangkok Asia/Ho_Chi_Minh","VU|Pacific/Efate","WF|Pacific/Wallis","WS|Pacific/Apia","YE|Asia/Riyadh Asia/Aden","YT|Africa/Nairobi Indian/Mayotte","ZA|Africa/Johannesburg","ZM|Africa/Maputo Africa/Lusaka","ZW|Africa/Maputo Africa/Harare"]}),c});
|
includes/modules/flash-sale/assets/js/moment.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.moment=t()}(this,function(){"use strict";var e,i;function f(){return e.apply(null,arguments)}function o(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function u(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function m(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function l(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;for(var t in e)if(m(e,t))return;return 1}function r(e){return void 0===e}function h(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function a(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function d(e,t){for(var n=[],s=0;s<e.length;++s)n.push(t(e[s],s));return n}function c(e,t){for(var n in t)m(t,n)&&(e[n]=t[n]);return m(t,"toString")&&(e.toString=t.toString),m(t,"valueOf")&&(e.valueOf=t.valueOf),e}function _(e,t,n,s){return xt(e,t,n,s,!0).utc()}function y(e){return null==e._pf&&(e._pf={empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidEra:null,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],era:null,meridiem:null,rfc2822:!1,weekdayMismatch:!1}),e._pf}function g(e){if(null==e._isValid){var t=y(e),n=i.call(t.parsedDateParts,function(e){return null!=e}),s=!isNaN(e._d.getTime())&&t.overflow<0&&!t.empty&&!t.invalidEra&&!t.invalidMonth&&!t.invalidWeekday&&!t.weekdayMismatch&&!t.nullInput&&!t.invalidFormat&&!t.userInvalidated&&(!t.meridiem||t.meridiem&&n);if(e._strict&&(s=s&&0===t.charsLeftOver&&0===t.unusedTokens.length&&void 0===t.bigHour),null!=Object.isFrozen&&Object.isFrozen(e))return s;e._isValid=s}return e._isValid}function w(e){var t=_(NaN);return null!=e?c(y(t),e):y(t).userInvalidated=!0,t}i=Array.prototype.some?Array.prototype.some:function(e){for(var t=Object(this),n=t.length>>>0,s=0;s<n;s++)if(s in t&&e.call(this,t[s],s,t))return!0;return!1};var p=f.momentProperties=[],t=!1;function v(e,t){var n,s,i;if(r(t._isAMomentObject)||(e._isAMomentObject=t._isAMomentObject),r(t._i)||(e._i=t._i),r(t._f)||(e._f=t._f),r(t._l)||(e._l=t._l),r(t._strict)||(e._strict=t._strict),r(t._tzm)||(e._tzm=t._tzm),r(t._isUTC)||(e._isUTC=t._isUTC),r(t._offset)||(e._offset=t._offset),r(t._pf)||(e._pf=y(t)),r(t._locale)||(e._locale=t._locale),0<p.length)for(n=0;n<p.length;n++)r(i=t[s=p[n]])||(e[s]=i);return e}function k(e){v(this,e),this._d=new Date(null!=e._d?e._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),!1===t&&(t=!0,f.updateOffset(this),t=!1)}function M(e){return e instanceof k||null!=e&&null!=e._isAMomentObject}function D(e){!1===f.suppressDeprecationWarnings&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+e)}function n(i,r){var a=!0;return c(function(){if(null!=f.deprecationHandler&&f.deprecationHandler(null,i),a){for(var e,t,n=[],s=0;s<arguments.length;s++){if(e="","object"==typeof arguments[s]){for(t in e+="\n["+s+"] ",arguments[0])m(arguments[0],t)&&(e+=t+": "+arguments[0][t]+", ");e=e.slice(0,-2)}else e=arguments[s];n.push(e)}D(i+"\nArguments: "+Array.prototype.slice.call(n).join("")+"\n"+(new Error).stack),a=!1}return r.apply(this,arguments)},r)}var s,S={};function Y(e,t){null!=f.deprecationHandler&&f.deprecationHandler(e,t),S[e]||(D(t),S[e]=!0)}function O(e){return"undefined"!=typeof Function&&e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}function b(e,t){var n,s=c({},e);for(n in t)m(t,n)&&(u(e[n])&&u(t[n])?(s[n]={},c(s[n],e[n]),c(s[n],t[n])):null!=t[n]?s[n]=t[n]:delete s[n]);for(n in e)m(e,n)&&!m(t,n)&&u(e[n])&&(s[n]=c({},s[n]));return s}function x(e){null!=e&&this.set(e)}f.suppressDeprecationWarnings=!1,f.deprecationHandler=null,s=Object.keys?Object.keys:function(e){var t,n=[];for(t in e)m(e,t)&&n.push(t);return n};function T(e,t,n){var s=""+Math.abs(e),i=t-s.length;return(0<=e?n?"+":"":"-")+Math.pow(10,Math.max(0,i)).toString().substr(1)+s}var N=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,P=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,R={},W={};function C(e,t,n,s){var i="string"==typeof s?function(){return this[s]()}:s;e&&(W[e]=i),t&&(W[t[0]]=function(){return T(i.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function U(e,t){return e.isValid()?(t=H(t,e.localeData()),R[t]=R[t]||function(s){for(var e,i=s.match(N),t=0,r=i.length;t<r;t++)W[i[t]]?i[t]=W[i[t]]:i[t]=(e=i[t]).match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"");return function(e){for(var t="",n=0;n<r;n++)t+=O(i[n])?i[n].call(e,s):i[n];return t}}(t),R[t](e)):e.localeData().invalidDate()}function H(e,t){var n=5;function s(e){return t.longDateFormat(e)||e}for(P.lastIndex=0;0<=n&&P.test(e);)e=e.replace(P,s),P.lastIndex=0,--n;return e}var F={};function L(e,t){var n=e.toLowerCase();F[n]=F[n+"s"]=F[t]=e}function V(e){return"string"==typeof e?F[e]||F[e.toLowerCase()]:void 0}function G(e){var t,n,s={};for(n in e)m(e,n)&&(t=V(n))&&(s[t]=e[n]);return s}var E={};function A(e,t){E[e]=t}function j(e){return e%4==0&&e%100!=0||e%400==0}function I(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function Z(e){var t=+e,n=0;return 0!=t&&isFinite(t)&&(n=I(t)),n}function z(t,n){return function(e){return null!=e?(q(this,t,e),f.updateOffset(this,n),this):$(this,t)}}function $(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function q(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&j(e.year())&&1===e.month()&&29===e.date()?(n=Z(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),xe(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}var B,J=/\d/,Q=/\d\d/,X=/\d{3}/,K=/\d{4}/,ee=/[+-]?\d{6}/,te=/\d\d?/,ne=/\d\d\d\d?/,se=/\d\d\d\d\d\d?/,ie=/\d{1,3}/,re=/\d{1,4}/,ae=/[+-]?\d{1,6}/,oe=/\d+/,ue=/[+-]?\d+/,le=/Z|[+-]\d\d:?\d\d/gi,he=/Z|[+-]\d\d(?::?\d\d)?/gi,de=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;function ce(e,n,s){B[e]=O(n)?n:function(e,t){return e&&s?s:n}}function fe(e,t){return m(B,e)?B[e](t._strict,t._locale):new RegExp(me(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(e,t,n,s,i){return t||n||s||i})))}function me(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}B={};var _e={};function ye(e,n){var t,s=n;for("string"==typeof e&&(e=[e]),h(n)&&(s=function(e,t){t[n]=Z(e)}),t=0;t<e.length;t++)_e[e[t]]=s}function ge(e,i){ye(e,function(e,t,n,s){n._w=n._w||{},i(e,n._w,n,s)})}var we,pe=0,ve=1,ke=2,Me=3,De=4,Se=5,Ye=6,Oe=7,be=8;function xe(e,t){if(isNaN(e)||isNaN(t))return NaN;var n,s=(t%(n=12)+n)%n;return e+=(t-s)/12,1==s?j(e)?29:28:31-s%7%2}we=Array.prototype.indexOf?Array.prototype.indexOf:function(e){for(var t=0;t<this.length;++t)if(this[t]===e)return t;return-1},C("M",["MM",2],"Mo",function(){return this.month()+1}),C("MMM",0,0,function(e){return this.localeData().monthsShort(this,e)}),C("MMMM",0,0,function(e){return this.localeData().months(this,e)}),L("month","M"),A("month",8),ce("M",te),ce("MM",te,Q),ce("MMM",function(e,t){return t.monthsShortRegex(e)}),ce("MMMM",function(e,t){return t.monthsRegex(e)}),ye(["M","MM"],function(e,t){t[ve]=Z(e)-1}),ye(["MMM","MMMM"],function(e,t,n,s){var i=n._locale.monthsParse(e,s,n._strict);null!=i?t[ve]=i:y(n).invalidMonth=e});var Te="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),Ne="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),Pe=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,Re=de,We=de;function Ce(e,t){var n;if(!e.isValid())return e;if("string"==typeof t)if(/^\d+$/.test(t))t=Z(t);else if(!h(t=e.localeData().monthsParse(t)))return e;return n=Math.min(e.date(),xe(e.year(),t)),e._d["set"+(e._isUTC?"UTC":"")+"Month"](t,n),e}function Ue(e){return null!=e?(Ce(this,e),f.updateOffset(this,!0),this):$(this,"Month")}function He(){function e(e,t){return t.length-e.length}for(var t,n=[],s=[],i=[],r=0;r<12;r++)t=_([2e3,r]),n.push(this.monthsShort(t,"")),s.push(this.months(t,"")),i.push(this.months(t,"")),i.push(this.monthsShort(t,""));for(n.sort(e),s.sort(e),i.sort(e),r=0;r<12;r++)n[r]=me(n[r]),s[r]=me(s[r]);for(r=0;r<24;r++)i[r]=me(i[r]);this._monthsRegex=new RegExp("^("+i.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+n.join("|")+")","i")}function Fe(e){return j(e)?366:365}C("Y",0,0,function(){var e=this.year();return e<=9999?T(e,4):"+"+e}),C(0,["YY",2],0,function(){return this.year()%100}),C(0,["YYYY",4],0,"year"),C(0,["YYYYY",5],0,"year"),C(0,["YYYYYY",6,!0],0,"year"),L("year","y"),A("year",1),ce("Y",ue),ce("YY",te,Q),ce("YYYY",re,K),ce("YYYYY",ae,ee),ce("YYYYYY",ae,ee),ye(["YYYYY","YYYYYY"],pe),ye("YYYY",function(e,t){t[pe]=2===e.length?f.parseTwoDigitYear(e):Z(e)}),ye("YY",function(e,t){t[pe]=f.parseTwoDigitYear(e)}),ye("Y",function(e,t){t[pe]=parseInt(e,10)}),f.parseTwoDigitYear=function(e){return Z(e)+(68<Z(e)?1900:2e3)};var Le=z("FullYear",!0);function Ve(e){var t,n;return e<100&&0<=e?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function Ge(e,t,n){var s=7+t-n;return s-(7+Ve(e,0,s).getUTCDay()-t)%7-1}function Ee(e,t,n,s,i){var r,a=1+7*(t-1)+(7+n-s)%7+Ge(e,s,i),o=a<=0?Fe(r=e-1)+a:a>Fe(e)?(r=e+1,a-Fe(e)):(r=e,a);return{year:r,dayOfYear:o}}function Ae(e,t,n){var s,i,r=Ge(e.year(),t,n),a=Math.floor((e.dayOfYear()-r-1)/7)+1;return a<1?s=a+je(i=e.year()-1,t,n):a>je(e.year(),t,n)?(s=a-je(e.year(),t,n),i=e.year()+1):(i=e.year(),s=a),{week:s,year:i}}function je(e,t,n){var s=Ge(e,t,n),i=Ge(e+1,t,n);return(Fe(e)-s+i)/7}C("w",["ww",2],"wo","week"),C("W",["WW",2],"Wo","isoWeek"),L("week","w"),L("isoWeek","W"),A("week",5),A("isoWeek",5),ce("w",te),ce("ww",te,Q),ce("W",te),ce("WW",te,Q),ge(["w","ww","W","WW"],function(e,t,n,s){t[s.substr(0,1)]=Z(e)});function Ie(e,t){return e.slice(t,7).concat(e.slice(0,t))}C("d",0,"do","day"),C("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)}),C("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)}),C("dddd",0,0,function(e){return this.localeData().weekdays(this,e)}),C("e",0,0,"weekday"),C("E",0,0,"isoWeekday"),L("day","d"),L("weekday","e"),L("isoWeekday","E"),A("day",11),A("weekday",11),A("isoWeekday",11),ce("d",te),ce("e",te),ce("E",te),ce("dd",function(e,t){return t.weekdaysMinRegex(e)}),ce("ddd",function(e,t){return t.weekdaysShortRegex(e)}),ce("dddd",function(e,t){return t.weekdaysRegex(e)}),ge(["dd","ddd","dddd"],function(e,t,n,s){var i=n._locale.weekdaysParse(e,s,n._strict);null!=i?t.d=i:y(n).invalidWeekday=e}),ge(["d","e","E"],function(e,t,n,s){t[s]=Z(e)});var Ze="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),ze="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),$e="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),qe=de,Be=de,Je=de;function Qe(){function e(e,t){return t.length-e.length}for(var t,n,s,i,r=[],a=[],o=[],u=[],l=0;l<7;l++)t=_([2e3,1]).day(l),n=me(this.weekdaysMin(t,"")),s=me(this.weekdaysShort(t,"")),i=me(this.weekdays(t,"")),r.push(n),a.push(s),o.push(i),u.push(n),u.push(s),u.push(i);r.sort(e),a.sort(e),o.sort(e),u.sort(e),this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+o.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+r.join("|")+")","i")}function Xe(){return this.hours()%12||12}function Ke(e,t){C(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}function et(e,t){return t._meridiemParse}C("H",["HH",2],0,"hour"),C("h",["hh",2],0,Xe),C("k",["kk",2],0,function(){return this.hours()||24}),C("hmm",0,0,function(){return""+Xe.apply(this)+T(this.minutes(),2)}),C("hmmss",0,0,function(){return""+Xe.apply(this)+T(this.minutes(),2)+T(this.seconds(),2)}),C("Hmm",0,0,function(){return""+this.hours()+T(this.minutes(),2)}),C("Hmmss",0,0,function(){return""+this.hours()+T(this.minutes(),2)+T(this.seconds(),2)}),Ke("a",!0),Ke("A",!1),L("hour","h"),A("hour",13),ce("a",et),ce("A",et),ce("H",te),ce("h",te),ce("k",te),ce("HH",te,Q),ce("hh",te,Q),ce("kk",te,Q),ce("hmm",ne),ce("hmmss",se),ce("Hmm",ne),ce("Hmmss",se),ye(["H","HH"],Me),ye(["k","kk"],function(e,t,n){var s=Z(e);t[Me]=24===s?0:s}),ye(["a","A"],function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e}),ye(["h","hh"],function(e,t,n){t[Me]=Z(e),y(n).bigHour=!0}),ye("hmm",function(e,t,n){var s=e.length-2;t[Me]=Z(e.substr(0,s)),t[De]=Z(e.substr(s)),y(n).bigHour=!0}),ye("hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[Me]=Z(e.substr(0,s)),t[De]=Z(e.substr(s,2)),t[Se]=Z(e.substr(i)),y(n).bigHour=!0}),ye("Hmm",function(e,t,n){var s=e.length-2;t[Me]=Z(e.substr(0,s)),t[De]=Z(e.substr(s))}),ye("Hmmss",function(e,t,n){var s=e.length-4,i=e.length-2;t[Me]=Z(e.substr(0,s)),t[De]=Z(e.substr(s,2)),t[Se]=Z(e.substr(i))});var tt=z("Hours",!0);var nt,st={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Te,monthsShort:Ne,week:{dow:0,doy:6},weekdays:Ze,weekdaysMin:$e,weekdaysShort:ze,meridiemParse:/[ap]\.?m?\.?/i},it={},rt={};function at(e){return e?e.toLowerCase().replace("_","-"):e}function ot(e){for(var t,n,s,i,r=0;r<e.length;){for(t=(i=at(e[r]).split("-")).length,n=(n=at(e[r+1]))?n.split("-"):null;0<t;){if(s=ut(i.slice(0,t).join("-")))return s;if(n&&n.length>=t&&function(e,t){for(var n=Math.min(e.length,t.length),s=0;s<n;s+=1)if(e[s]!==t[s])return s;return n}(i,n)>=t-1)break;t--}r++}return nt}function ut(t){var e;if(void 0===it[t]&&"undefined"!=typeof module&&module&&module.exports)try{e=nt._abbr,require("./locale/"+t),lt(e)}catch(e){it[t]=null}return it[t]}function lt(e,t){var n;return e&&((n=r(t)?dt(e):ht(e,t))?nt=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),nt._abbr}function ht(e,t){if(null===t)return delete it[e],null;var n,s=st;if(t.abbr=e,null!=it[e])Y("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),s=it[e]._config;else if(null!=t.parentLocale)if(null!=it[t.parentLocale])s=it[t.parentLocale]._config;else{if(null==(n=ut(t.parentLocale)))return rt[t.parentLocale]||(rt[t.parentLocale]=[]),rt[t.parentLocale].push({name:e,config:t}),null;s=n._config}return it[e]=new x(b(s,t)),rt[e]&&rt[e].forEach(function(e){ht(e.name,e.config)}),lt(e),it[e]}function dt(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return nt;if(!o(e)){if(t=ut(e))return t;e=[e]}return ot(e)}function ct(e){var t,n=e._a;return n&&-2===y(e).overflow&&(t=n[ve]<0||11<n[ve]?ve:n[ke]<1||n[ke]>xe(n[pe],n[ve])?ke:n[Me]<0||24<n[Me]||24===n[Me]&&(0!==n[De]||0!==n[Se]||0!==n[Ye])?Me:n[De]<0||59<n[De]?De:n[Se]<0||59<n[Se]?Se:n[Ye]<0||999<n[Ye]?Ye:-1,y(e)._overflowDayOfYear&&(t<pe||ke<t)&&(t=ke),y(e)._overflowWeeks&&-1===t&&(t=Oe),y(e)._overflowWeekday&&-1===t&&(t=be),y(e).overflow=t),e}var ft=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,mt=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,_t=/Z|[+-]\d\d(?::?\d\d)?/,yt=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],gt=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],wt=/^\/?Date\((-?\d+)/i,pt=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,vt={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function kt(e){var t,n,s,i,r,a,o=e._i,u=ft.exec(o)||mt.exec(o);if(u){for(y(e).iso=!0,t=0,n=yt.length;t<n;t++)if(yt[t][1].exec(u[1])){i=yt[t][0],s=!1!==yt[t][2];break}if(null==i)return void(e._isValid=!1);if(u[3]){for(t=0,n=gt.length;t<n;t++)if(gt[t][1].exec(u[3])){r=(u[2]||" ")+gt[t][0];break}if(null==r)return void(e._isValid=!1)}if(!s&&null!=r)return void(e._isValid=!1);if(u[4]){if(!_t.exec(u[4]))return void(e._isValid=!1);a="Z"}e._f=i+(r||"")+(a||""),Ot(e)}else e._isValid=!1}function Mt(e,t,n,s,i,r){var a=[function(e){var t=parseInt(e,10);{if(t<=49)return 2e3+t;if(t<=999)return 1900+t}return t}(e),Ne.indexOf(t),parseInt(n,10),parseInt(s,10),parseInt(i,10)];return r&&a.push(parseInt(r,10)),a}function Dt(e){var t,n,s,i,r=pt.exec(e._i.replace(/\([^)]*\)|[\n\t]/g," ").replace(/(\s\s+)/g," ").replace(/^\s\s*/,"").replace(/\s\s*$/,""));if(r){if(t=Mt(r[4],r[3],r[2],r[5],r[6],r[7]),n=r[1],s=t,i=e,n&&ze.indexOf(n)!==new Date(s[0],s[1],s[2]).getDay()&&(y(i).weekdayMismatch=!0,!void(i._isValid=!1)))return;e._a=t,e._tzm=function(e,t,n){if(e)return vt[e];if(t)return 0;var s=parseInt(n,10),i=s%100;return 60*((s-i)/100)+i}(r[8],r[9],r[10]),e._d=Ve.apply(null,e._a),e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),y(e).rfc2822=!0}else e._isValid=!1}function St(e,t,n){return null!=e?e:null!=t?t:n}function Yt(e){var t,n,s,i,r,a,o,u=[];if(!e._d){for(a=e,o=new Date(f.now()),s=a._useUTC?[o.getUTCFullYear(),o.getUTCMonth(),o.getUTCDate()]:[o.getFullYear(),o.getMonth(),o.getDate()],e._w&&null==e._a[ke]&&null==e._a[ve]&&function(e){var t,n,s,i,r,a,o,u,l;null!=(t=e._w).GG||null!=t.W||null!=t.E?(r=1,a=4,n=St(t.GG,e._a[pe],Ae(Tt(),1,4).year),s=St(t.W,1),((i=St(t.E,1))<1||7<i)&&(u=!0)):(r=e._locale._week.dow,a=e._locale._week.doy,l=Ae(Tt(),r,a),n=St(t.gg,e._a[pe],l.year),s=St(t.w,l.week),null!=t.d?((i=t.d)<0||6<i)&&(u=!0):null!=t.e?(i=t.e+r,(t.e<0||6<t.e)&&(u=!0)):i=r);s<1||s>je(n,r,a)?y(e)._overflowWeeks=!0:null!=u?y(e)._overflowWeekday=!0:(o=Ee(n,s,i,r,a),e._a[pe]=o.year,e._dayOfYear=o.dayOfYear)}(e),null!=e._dayOfYear&&(r=St(e._a[pe],s[pe]),(e._dayOfYear>Fe(r)||0===e._dayOfYear)&&(y(e)._overflowDayOfYear=!0),n=Ve(r,0,e._dayOfYear),e._a[ve]=n.getUTCMonth(),e._a[ke]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=u[t]=s[t];for(;t<7;t++)e._a[t]=u[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[Me]&&0===e._a[De]&&0===e._a[Se]&&0===e._a[Ye]&&(e._nextDay=!0,e._a[Me]=0),e._d=(e._useUTC?Ve:function(e,t,n,s,i,r,a){var o;return e<100&&0<=e?(o=new Date(e+400,t,n,s,i,r,a),isFinite(o.getFullYear())&&o.setFullYear(e)):o=new Date(e,t,n,s,i,r,a),o}).apply(null,u),i=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[Me]=24),e._w&&void 0!==e._w.d&&e._w.d!==i&&(y(e).weekdayMismatch=!0)}}function Ot(e){if(e._f!==f.ISO_8601)if(e._f!==f.RFC_2822){e._a=[],y(e).empty=!0;for(var t,n,s,i,r,a,o,u=""+e._i,l=u.length,h=0,d=H(e._f,e._locale).match(N)||[],c=0;c<d.length;c++)n=d[c],(t=(u.match(fe(n,e))||[])[0])&&(0<(s=u.substr(0,u.indexOf(t))).length&&y(e).unusedInput.push(s),u=u.slice(u.indexOf(t)+t.length),h+=t.length),W[n]?(t?y(e).empty=!1:y(e).unusedTokens.push(n),r=n,o=e,null!=(a=t)&&m(_e,r)&&_e[r](a,o._a,o,r)):e._strict&&!t&&y(e).unusedTokens.push(n);y(e).charsLeftOver=l-h,0<u.length&&y(e).unusedInput.push(u),e._a[Me]<=12&&!0===y(e).bigHour&&0<e._a[Me]&&(y(e).bigHour=void 0),y(e).parsedDateParts=e._a.slice(0),y(e).meridiem=e._meridiem,e._a[Me]=function(e,t,n){var s;if(null==n)return t;return null!=e.meridiemHour?e.meridiemHour(t,n):(null!=e.isPM&&((s=e.isPM(n))&&t<12&&(t+=12),s||12!==t||(t=0)),t)}(e._locale,e._a[Me],e._meridiem),null!==(i=y(e).era)&&(e._a[pe]=e._locale.erasConvertYear(i,e._a[pe])),Yt(e),ct(e)}else Dt(e);else kt(e)}function bt(e){var t,n,s=e._i,i=e._f;return e._locale=e._locale||dt(e._l),null===s||void 0===i&&""===s?w({nullInput:!0}):("string"==typeof s&&(e._i=s=e._locale.preparse(s)),M(s)?new k(ct(s)):(a(s)?e._d=s:o(i)?function(e){var t,n,s,i,r,a,o=!1;if(0===e._f.length)return y(e).invalidFormat=!0,e._d=new Date(NaN);for(i=0;i<e._f.length;i++)r=0,a=!1,t=v({},e),null!=e._useUTC&&(t._useUTC=e._useUTC),t._f=e._f[i],Ot(t),g(t)&&(a=!0),r+=y(t).charsLeftOver,r+=10*y(t).unusedTokens.length,y(t).score=r,o?r<s&&(s=r,n=t):(null==s||r<s||a)&&(s=r,n=t,a&&(o=!0));c(e,n||t)}(e):i?Ot(e):r(n=(t=e)._i)?t._d=new Date(f.now()):a(n)?t._d=new Date(n.valueOf()):"string"==typeof n?function(e){var t=wt.exec(e._i);null===t?(kt(e),!1===e._isValid&&(delete e._isValid,Dt(e),!1===e._isValid&&(delete e._isValid,e._strict?e._isValid=!1:f.createFromInputFallback(e)))):e._d=new Date(+t[1])}(t):o(n)?(t._a=d(n.slice(0),function(e){return parseInt(e,10)}),Yt(t)):u(n)?function(e){var t,n;e._d||(n=void 0===(t=G(e._i)).day?t.date:t.day,e._a=d([t.year,t.month,n,t.hour,t.minute,t.second,t.millisecond],function(e){return e&&parseInt(e,10)}),Yt(e))}(t):h(n)?t._d=new Date(n):f.createFromInputFallback(t),g(e)||(e._d=null),e))}function xt(e,t,n,s,i){var r,a={};return!0!==t&&!1!==t||(s=t,t=void 0),!0!==n&&!1!==n||(s=n,n=void 0),(u(e)&&l(e)||o(e)&&0===e.length)&&(e=void 0),a._isAMomentObject=!0,a._useUTC=a._isUTC=i,a._l=n,a._i=e,a._f=t,a._strict=s,(r=new k(ct(bt(a))))._nextDay&&(r.add(1,"d"),r._nextDay=void 0),r}function Tt(e,t,n,s){return xt(e,t,n,s,!1)}f.createFromInputFallback=n("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(e){e._d=new Date(e._i+(e._useUTC?" UTC":""))}),f.ISO_8601=function(){},f.RFC_2822=function(){};var Nt=n("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=Tt.apply(null,arguments);return this.isValid()&&e.isValid()?e<this?this:e:w()}),Pt=n("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var e=Tt.apply(null,arguments);return this.isValid()&&e.isValid()?this<e?this:e:w()});function Rt(e,t){var n,s;if(1===t.length&&o(t[0])&&(t=t[0]),!t.length)return Tt();for(n=t[0],s=1;s<t.length;++s)t[s].isValid()&&!t[s][e](n)||(n=t[s]);return n}var Wt=["year","quarter","month","week","day","hour","minute","second","millisecond"];function Ct(e){var t=G(e),n=t.year||0,s=t.quarter||0,i=t.month||0,r=t.week||t.isoWeek||0,a=t.day||0,o=t.hour||0,u=t.minute||0,l=t.second||0,h=t.millisecond||0;this._isValid=function(e){var t,n,s=!1;for(t in e)if(m(e,t)&&(-1===we.call(Wt,t)||null!=e[t]&&isNaN(e[t])))return!1;for(n=0;n<Wt.length;++n)if(e[Wt[n]]){if(s)return!1;parseFloat(e[Wt[n]])!==Z(e[Wt[n]])&&(s=!0)}return!0}(t),this._milliseconds=+h+1e3*l+6e4*u+1e3*o*60*60,this._days=+a+7*r,this._months=+i+3*s+12*n,this._data={},this._locale=dt(),this._bubble()}function Ut(e){return e instanceof Ct}function Ht(e){return e<0?-1*Math.round(-1*e):Math.round(e)}function Ft(e,n){C(e,0,0,function(){var e=this.utcOffset(),t="+";return e<0&&(e=-e,t="-"),t+T(~~(e/60),2)+n+T(~~e%60,2)})}Ft("Z",":"),Ft("ZZ",""),ce("Z",he),ce("ZZ",he),ye(["Z","ZZ"],function(e,t,n){n._useUTC=!0,n._tzm=Vt(he,e)});var Lt=/([\+\-]|\d\d)/gi;function Vt(e,t){var n,s,i=(t||"").match(e);return null===i?null:0===(s=60*(n=((i[i.length-1]||[])+"").match(Lt)||["-",0,0])[1]+Z(n[2]))?0:"+"===n[0]?s:-s}function Gt(e,t){var n,s;return t._isUTC?(n=t.clone(),s=(M(e)||a(e)?e.valueOf():Tt(e).valueOf())-n.valueOf(),n._d.setTime(n._d.valueOf()+s),f.updateOffset(n,!1),n):Tt(e).local()}function Et(e){return-Math.round(e._d.getTimezoneOffset())}function At(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}f.updateOffset=function(){};var jt=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,It=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function Zt(e,t){var n,s,i,r=e,a=null;return Ut(e)?r={ms:e._milliseconds,d:e._days,M:e._months}:h(e)||!isNaN(+e)?(r={},t?r[t]=+e:r.milliseconds=+e):(a=jt.exec(e))?(n="-"===a[1]?-1:1,r={y:0,d:Z(a[ke])*n,h:Z(a[Me])*n,m:Z(a[De])*n,s:Z(a[Se])*n,ms:Z(Ht(1e3*a[Ye]))*n}):(a=It.exec(e))?(n="-"===a[1]?-1:1,r={y:zt(a[2],n),M:zt(a[3],n),w:zt(a[4],n),d:zt(a[5],n),h:zt(a[6],n),m:zt(a[7],n),s:zt(a[8],n)}):null==r?r={}:"object"==typeof r&&("from"in r||"to"in r)&&(i=function(e,t){var n;if(!e.isValid()||!t.isValid())return{milliseconds:0,months:0};t=Gt(t,e),e.isBefore(t)?n=$t(e,t):((n=$t(t,e)).milliseconds=-n.milliseconds,n.months=-n.months);return n}(Tt(r.from),Tt(r.to)),(r={}).ms=i.milliseconds,r.M=i.months),s=new Ct(r),Ut(e)&&m(e,"_locale")&&(s._locale=e._locale),Ut(e)&&m(e,"_isValid")&&(s._isValid=e._isValid),s}function zt(e,t){var n=e&&parseFloat(e.replace(",","."));return(isNaN(n)?0:n)*t}function $t(e,t){var n={};return n.months=t.month()-e.month()+12*(t.year()-e.year()),e.clone().add(n.months,"M").isAfter(t)&&--n.months,n.milliseconds=t-e.clone().add(n.months,"M"),n}function qt(s,i){return function(e,t){var n;return null===t||isNaN(+t)||(Y(i,"moment()."+i+"(period, number) is deprecated. Please use moment()."+i+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),n=e,e=t,t=n),Bt(this,Zt(e,t),s),this}}function Bt(e,t,n,s){var i=t._milliseconds,r=Ht(t._days),a=Ht(t._months);e.isValid()&&(s=null==s||s,a&&Ce(e,$(e,"Month")+a*n),r&&q(e,"Date",$(e,"Date")+r*n),i&&e._d.setTime(e._d.valueOf()+i*n),s&&f.updateOffset(e,r||a))}Zt.fn=Ct.prototype,Zt.invalid=function(){return Zt(NaN)};var Jt=qt(1,"add"),Qt=qt(-1,"subtract");function Xt(e){return"string"==typeof e||e instanceof String}function Kt(e){return M(e)||a(e)||Xt(e)||h(e)||function(t){var e=o(t),n=!1;e&&(n=0===t.filter(function(e){return!h(e)&&Xt(t)}).length);return e&&n}(e)||function(e){var t,n,s=u(e)&&!l(e),i=!1,r=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"];for(t=0;t<r.length;t+=1)n=r[t],i=i||m(e,n);return s&&i}(e)||null==e}function en(e,t){if(e.date()<t.date())return-en(t,e);var n=12*(t.year()-e.year())+(t.month()-e.month()),s=e.clone().add(n,"months"),i=t-s<0?(t-s)/(s-e.clone().add(n-1,"months")):(t-s)/(e.clone().add(1+n,"months")-s);return-(n+i)||0}function tn(e){var t;return void 0===e?this._locale._abbr:(null!=(t=dt(e))&&(this._locale=t),this)}f.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",f.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var nn=n("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return void 0===e?this.localeData():this.locale(e)});function sn(){return this._locale}var rn=126227808e5;function an(e,t){return(e%t+t)%t}function on(e,t,n){return e<100&&0<=e?new Date(e+400,t,n)-rn:new Date(e,t,n).valueOf()}function un(e,t,n){return e<100&&0<=e?Date.UTC(e+400,t,n)-rn:Date.UTC(e,t,n)}function ln(e,t){return t.erasAbbrRegex(e)}function hn(){for(var e=[],t=[],n=[],s=[],i=this.eras(),r=0,a=i.length;r<a;++r)t.push(me(i[r].name)),e.push(me(i[r].abbr)),n.push(me(i[r].narrow)),s.push(me(i[r].name)),s.push(me(i[r].abbr)),s.push(me(i[r].narrow));this._erasRegex=new RegExp("^("+s.join("|")+")","i"),this._erasNameRegex=new RegExp("^("+t.join("|")+")","i"),this._erasAbbrRegex=new RegExp("^("+e.join("|")+")","i"),this._erasNarrowRegex=new RegExp("^("+n.join("|")+")","i")}function dn(e,t){C(0,[e,e.length],0,t)}function cn(e,t,n,s,i){var r;return null==e?Ae(this,s,i).year:((r=je(e,s,i))<t&&(t=r),function(e,t,n,s,i){var r=Ee(e,t,n,s,i),a=Ve(r.year,0,r.dayOfYear);return this.year(a.getUTCFullYear()),this.month(a.getUTCMonth()),this.date(a.getUTCDate()),this}.call(this,e,t,n,s,i))}C("N",0,0,"eraAbbr"),C("NN",0,0,"eraAbbr"),C("NNN",0,0,"eraAbbr"),C("NNNN",0,0,"eraName"),C("NNNNN",0,0,"eraNarrow"),C("y",["y",1],"yo","eraYear"),C("y",["yy",2],0,"eraYear"),C("y",["yyy",3],0,"eraYear"),C("y",["yyyy",4],0,"eraYear"),ce("N",ln),ce("NN",ln),ce("NNN",ln),ce("NNNN",function(e,t){return t.erasNameRegex(e)}),ce("NNNNN",function(e,t){return t.erasNarrowRegex(e)}),ye(["N","NN","NNN","NNNN","NNNNN"],function(e,t,n,s){var i=n._locale.erasParse(e,s,n._strict);i?y(n).era=i:y(n).invalidEra=e}),ce("y",oe),ce("yy",oe),ce("yyy",oe),ce("yyyy",oe),ce("yo",function(e,t){return t._eraYearOrdinalRegex||oe}),ye(["y","yy","yyy","yyyy"],pe),ye(["yo"],function(e,t,n,s){var i;n._locale._eraYearOrdinalRegex&&(i=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[pe]=n._locale.eraYearOrdinalParse(e,i):t[pe]=parseInt(e,10)}),C(0,["gg",2],0,function(){return this.weekYear()%100}),C(0,["GG",2],0,function(){return this.isoWeekYear()%100}),dn("gggg","weekYear"),dn("ggggg","weekYear"),dn("GGGG","isoWeekYear"),dn("GGGGG","isoWeekYear"),L("weekYear","gg"),L("isoWeekYear","GG"),A("weekYear",1),A("isoWeekYear",1),ce("G",ue),ce("g",ue),ce("GG",te,Q),ce("gg",te,Q),ce("GGGG",re,K),ce("gggg",re,K),ce("GGGGG",ae,ee),ce("ggggg",ae,ee),ge(["gggg","ggggg","GGGG","GGGGG"],function(e,t,n,s){t[s.substr(0,2)]=Z(e)}),ge(["gg","GG"],function(e,t,n,s){t[s]=f.parseTwoDigitYear(e)}),C("Q",0,"Qo","quarter"),L("quarter","Q"),A("quarter",7),ce("Q",J),ye("Q",function(e,t){t[ve]=3*(Z(e)-1)}),C("D",["DD",2],"Do","date"),L("date","D"),A("date",9),ce("D",te),ce("DD",te,Q),ce("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient}),ye(["D","DD"],ke),ye("Do",function(e,t){t[ke]=Z(e.match(te)[0])});var fn=z("Date",!0);C("DDD",["DDDD",3],"DDDo","dayOfYear"),L("dayOfYear","DDD"),A("dayOfYear",4),ce("DDD",ie),ce("DDDD",X),ye(["DDD","DDDD"],function(e,t,n){n._dayOfYear=Z(e)}),C("m",["mm",2],0,"minute"),L("minute","m"),A("minute",14),ce("m",te),ce("mm",te,Q),ye(["m","mm"],De);var mn=z("Minutes",!1);C("s",["ss",2],0,"second"),L("second","s"),A("second",15),ce("s",te),ce("ss",te,Q),ye(["s","ss"],Se);var _n,yn,gn=z("Seconds",!1);for(C("S",0,0,function(){return~~(this.millisecond()/100)}),C(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),C(0,["SSS",3],0,"millisecond"),C(0,["SSSS",4],0,function(){return 10*this.millisecond()}),C(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),C(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),C(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),C(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),C(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),L("millisecond","ms"),A("millisecond",16),ce("S",ie,J),ce("SS",ie,Q),ce("SSS",ie,X),_n="SSSS";_n.length<=9;_n+="S")ce(_n,oe);function wn(e,t){t[Ye]=Z(1e3*("0."+e))}for(_n="S";_n.length<=9;_n+="S")ye(_n,wn);yn=z("Milliseconds",!1),C("z",0,0,"zoneAbbr"),C("zz",0,0,"zoneName");var pn=k.prototype;function vn(e){return e}pn.add=Jt,pn.calendar=function(e,t){1===arguments.length&&(arguments[0]?Kt(arguments[0])?(e=arguments[0],t=void 0):function(e){for(var t=u(e)&&!l(e),n=!1,s=["sameDay","nextDay","lastDay","nextWeek","lastWeek","sameElse"],i=0;i<s.length;i+=1)n=n||m(e,s[i]);return t&&n}(arguments[0])&&(t=arguments[0],e=void 0):t=e=void 0);var n=e||Tt(),s=Gt(n,this).startOf("day"),i=f.calendarFormat(this,s)||"sameElse",r=t&&(O(t[i])?t[i].call(this,n):t[i]);return this.format(r||this.localeData().calendar(i,this,Tt(n)))},pn.clone=function(){return new k(this)},pn.diff=function(e,t,n){var s,i,r;if(!this.isValid())return NaN;if(!(s=Gt(e,this)).isValid())return NaN;switch(i=6e4*(s.utcOffset()-this.utcOffset()),t=V(t)){case"year":r=en(this,s)/12;break;case"month":r=en(this,s);break;case"quarter":r=en(this,s)/3;break;case"second":r=(this-s)/1e3;break;case"minute":r=(this-s)/6e4;break;case"hour":r=(this-s)/36e5;break;case"day":r=(this-s-i)/864e5;break;case"week":r=(this-s-i)/6048e5;break;default:r=this-s}return n?r:I(r)},pn.endOf=function(e){var t,n;if(void 0===(e=V(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?un:on,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=36e5-an(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case"minute":t=this._d.valueOf(),t+=6e4-an(t,6e4)-1;break;case"second":t=this._d.valueOf(),t+=1e3-an(t,1e3)-1;break}return this._d.setTime(t),f.updateOffset(this,!0),this},pn.format=function(e){e=e||(this.isUtc()?f.defaultFormatUtc:f.defaultFormat);var t=U(this,e);return this.localeData().postformat(t)},pn.from=function(e,t){return this.isValid()&&(M(e)&&e.isValid()||Tt(e).isValid())?Zt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},pn.fromNow=function(e){return this.from(Tt(),e)},pn.to=function(e,t){return this.isValid()&&(M(e)&&e.isValid()||Tt(e).isValid())?Zt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},pn.toNow=function(e){return this.to(Tt(),e)},pn.get=function(e){return O(this[e=V(e)])?this[e]():this},pn.invalidAt=function(){return y(this).overflow},pn.isAfter=function(e,t){var n=M(e)?e:Tt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=V(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()<this.clone().startOf(t).valueOf())},pn.isBefore=function(e,t){var n=M(e)?e:Tt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=V(t)||"millisecond")?this.valueOf()<n.valueOf():this.clone().endOf(t).valueOf()<n.valueOf())},pn.isBetween=function(e,t,n,s){var i=M(e)?e:Tt(e),r=M(t)?t:Tt(t);return!!(this.isValid()&&i.isValid()&&r.isValid())&&(("("===(s=s||"()")[0]?this.isAfter(i,n):!this.isBefore(i,n))&&(")"===s[1]?this.isBefore(r,n):!this.isAfter(r,n)))},pn.isSame=function(e,t){var n,s=M(e)?e:Tt(e);return!(!this.isValid()||!s.isValid())&&("millisecond"===(t=V(t)||"millisecond")?this.valueOf()===s.valueOf():(n=s.valueOf(),this.clone().startOf(t).valueOf()<=n&&n<=this.clone().endOf(t).valueOf()))},pn.isSameOrAfter=function(e,t){return this.isSame(e,t)||this.isAfter(e,t)},pn.isSameOrBefore=function(e,t){return this.isSame(e,t)||this.isBefore(e,t)},pn.isValid=function(){return g(this)},pn.lang=nn,pn.locale=tn,pn.localeData=sn,pn.max=Pt,pn.min=Nt,pn.parsingFlags=function(){return c({},y(this))},pn.set=function(e,t){if("object"==typeof e)for(var n=function(e){var t,n=[];for(t in e)m(e,t)&&n.push({unit:t,priority:E[t]});return n.sort(function(e,t){return e.priority-t.priority}),n}(e=G(e)),s=0;s<n.length;s++)this[n[s].unit](e[n[s].unit]);else if(O(this[e=V(e)]))return this[e](t);return this},pn.startOf=function(e){var t,n;if(void 0===(e=V(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?un:on,e){case"year":t=n(this.year(),0,1);break;case"quarter":t=n(this.year(),this.month()-this.month()%3,1);break;case"month":t=n(this.year(),this.month(),1);break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=n(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=an(t+(this._isUTC?0:6e4*this.utcOffset()),36e5);break;case"minute":t=this._d.valueOf(),t-=an(t,6e4);break;case"second":t=this._d.valueOf(),t-=an(t,1e3);break}return this._d.setTime(t),f.updateOffset(this,!0),this},pn.subtract=Qt,pn.toArray=function(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]},pn.toObject=function(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}},pn.toDate=function(){return new Date(this.valueOf())},pn.toISOString=function(e){if(!this.isValid())return null;var t=!0!==e,n=t?this.clone().utc():this;return n.year()<0||9999<n.year()?U(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):O(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(n,"Z")):U(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},pn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,s="moment",i="";return this.isLocal()||(s=0===this.utcOffset()?"moment.utc":"moment.parseZone",i="Z"),e="["+s+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n=i+'[")]',this.format(e+t+"-MM-DD[T]HH:mm:ss.SSS"+n)},"undefined"!=typeof Symbol&&null!=Symbol.for&&(pn[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),pn.toJSON=function(){return this.isValid()?this.toISOString():null},pn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},pn.unix=function(){return Math.floor(this.valueOf()/1e3)},pn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},pn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},pn.eraName=function(){for(var e,t=this.localeData().eras(),n=0,s=t.length;n<s;++n){if(e=this.clone().startOf("day").valueOf(),t[n].since<=e&&e<=t[n].until)return t[n].name;if(t[n].until<=e&&e<=t[n].since)return t[n].name}return""},pn.eraNarrow=function(){for(var e,t=this.localeData().eras(),n=0,s=t.length;n<s;++n){if(e=this.clone().startOf("day").valueOf(),t[n].since<=e&&e<=t[n].until)return t[n].narrow;if(t[n].until<=e&&e<=t[n].since)return t[n].narrow}return""},pn.eraAbbr=function(){for(var e,t=this.localeData().eras(),n=0,s=t.length;n<s;++n){if(e=this.clone().startOf("day").valueOf(),t[n].since<=e&&e<=t[n].until)return t[n].abbr;if(t[n].until<=e&&e<=t[n].since)return t[n].abbr}return""},pn.eraYear=function(){for(var e,t,n=this.localeData().eras(),s=0,i=n.length;s<i;++s)if(e=n[s].since<=n[s].until?1:-1,t=this.clone().startOf("day").valueOf(),n[s].since<=t&&t<=n[s].until||n[s].until<=t&&t<=n[s].since)return(this.year()-f(n[s].since).year())*e+n[s].offset;return this.year()},pn.year=Le,pn.isLeapYear=function(){return j(this.year())},pn.weekYear=function(e){return cn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},pn.isoWeekYear=function(e){return cn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},pn.quarter=pn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},pn.month=Ue,pn.daysInMonth=function(){return xe(this.year(),this.month())},pn.week=pn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),"d")},pn.isoWeek=pn.isoWeeks=function(e){var t=Ae(this,1,4).week;return null==e?t:this.add(7*(e-t),"d")},pn.weeksInYear=function(){var e=this.localeData()._week;return je(this.year(),e.dow,e.doy)},pn.weeksInWeekYear=function(){var e=this.localeData()._week;return je(this.weekYear(),e.dow,e.doy)},pn.isoWeeksInYear=function(){return je(this.year(),1,4)},pn.isoWeeksInISOWeekYear=function(){return je(this.isoWeekYear(),1,4)},pn.date=fn,pn.day=pn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t,n,s=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(t=e,n=this.localeData(),e="string"!=typeof t?t:isNaN(t)?"number"==typeof(t=n.weekdaysParse(t))?t:null:parseInt(t,10),this.add(e-s,"d")):s},pn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,"d")},pn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null==e)return this.day()||7;var t,n,s=(t=e,n=this.localeData(),"string"==typeof t?n.weekdaysParse(t)%7||7:isNaN(t)?null:t);return this.day(this.day()%7?s:s-7)},pn.dayOfYear=function(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"d")},pn.hour=pn.hours=tt,pn.minute=pn.minutes=mn,pn.second=pn.seconds=gn,pn.millisecond=pn.milliseconds=yn,pn.utcOffset=function(e,t,n){var s,i=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null==e)return this._isUTC?i:Et(this);if("string"==typeof e){if(null===(e=Vt(he,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(s=Et(this)),this._offset=e,this._isUTC=!0,null!=s&&this.add(s,"m"),i!==e&&(!t||this._changeInProgress?Bt(this,Zt(e-i,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,f.updateOffset(this,!0),this._changeInProgress=null)),this},pn.utc=function(e){return this.utcOffset(0,e)},pn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Et(this),"m")),this},pn.parseZone=function(){var e;return null!=this._tzm?this.utcOffset(this._tzm,!1,!0):"string"==typeof this._i&&(null!=(e=Vt(le,this._i))?this.utcOffset(e):this.utcOffset(0,!0)),this},pn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Tt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},pn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},pn.isLocal=function(){return!!this.isValid()&&!this._isUTC},pn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},pn.isUtc=At,pn.isUTC=At,pn.zoneAbbr=function(){return this._isUTC?"UTC":""},pn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},pn.dates=n("dates accessor is deprecated. Use date instead.",fn),pn.months=n("months accessor is deprecated. Use month instead",Ue),pn.years=n("years accessor is deprecated. Use year instead",Le),pn.zone=n("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()}),pn.isDSTShifted=n("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!r(this._isDSTShifted))return this._isDSTShifted;var e,t={};return v(t,this),(t=bt(t))._a?(e=(t._isUTC?_:Tt)(t._a),this._isDSTShifted=this.isValid()&&0<function(e,t,n){for(var s=Math.min(e.length,t.length),i=Math.abs(e.length-t.length),r=0,a=0;a<s;a++)(n&&e[a]!==t[a]||!n&&Z(e[a])!==Z(t[a]))&&r++;return r+i}(t._a,e.toArray())):this._isDSTShifted=!1,this._isDSTShifted});var kn=x.prototype;function Mn(e,t,n,s){var i=dt(),r=_().set(s,t);return i[n](r,e)}function Dn(e,t,n){if(h(e)&&(t=e,e=void 0),e=e||"",null!=t)return Mn(e,t,n,"month");for(var s=[],i=0;i<12;i++)s[i]=Mn(e,i,n,"month");return s}function Sn(e,t,n,s){t=("boolean"==typeof e?h(t)&&(n=t,t=void 0):(t=e,e=!1,h(n=t)&&(n=t,t=void 0)),t||"");var i,r=dt(),a=e?r._week.dow:0,o=[];if(null!=n)return Mn(t,(n+a)%7,s,"day");for(i=0;i<7;i++)o[i]=Mn(t,(i+a)%7,s,"day");return o}kn.calendar=function(e,t,n){var s=this._calendar[e]||this._calendar.sameElse;return O(s)?s.call(t,n):s},kn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(N).map(function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e}).join(""),this._longDateFormat[e])},kn.invalidDate=function(){return this._invalidDate},kn.ordinal=function(e){return this._ordinal.replace("%d",e)},kn.preparse=vn,kn.postformat=vn,kn.relativeTime=function(e,t,n,s){var i=this._relativeTime[n];return O(i)?i(e,t,n,s):i.replace(/%d/i,e)},kn.pastFuture=function(e,t){var n=this._relativeTime[0<e?"future":"past"];return O(n)?n(t):n.replace(/%s/i,t)},kn.set=function(e){var t,n;for(n in e)m(e,n)&&(O(t=e[n])?this[n]=t:this["_"+n]=t);this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},kn.eras=function(e,t){for(var n,s=this._eras||dt("en")._eras,i=0,r=s.length;i<r;++i){switch(typeof s[i].since){case"string":n=f(s[i].since).startOf("day"),s[i].since=n.valueOf();break}switch(typeof s[i].until){case"undefined":s[i].until=1/0;break;case"string":n=f(s[i].until).startOf("day").valueOf(),s[i].until=n.valueOf();break}}return s},kn.erasParse=function(e,t,n){var s,i,r,a,o,u=this.eras();for(e=e.toUpperCase(),s=0,i=u.length;s<i;++s)if(r=u[s].name.toUpperCase(),a=u[s].abbr.toUpperCase(),o=u[s].narrow.toUpperCase(),n)switch(t){case"N":case"NN":case"NNN":if(a===e)return u[s];break;case"NNNN":if(r===e)return u[s];break;case"NNNNN":if(o===e)return u[s];break}else if(0<=[r,a,o].indexOf(e))return u[s]},kn.erasConvertYear=function(e,t){var n=e.since<=e.until?1:-1;return void 0===t?f(e.since).year():f(e.since).year()+(t-e.offset)*n},kn.erasAbbrRegex=function(e){return m(this,"_erasAbbrRegex")||hn.call(this),e?this._erasAbbrRegex:this._erasRegex},kn.erasNameRegex=function(e){return m(this,"_erasNameRegex")||hn.call(this),e?this._erasNameRegex:this._erasRegex},kn.erasNarrowRegex=function(e){return m(this,"_erasNarrowRegex")||hn.call(this),e?this._erasNarrowRegex:this._erasRegex},kn.months=function(e,t){return e?o(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Pe).test(t)?"format":"standalone"][e.month()]:o(this._months)?this._months:this._months.standalone},kn.monthsShort=function(e,t){return e?o(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Pe.test(t)?"format":"standalone"][e.month()]:o(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},kn.monthsParse=function(e,t,n){var s,i,r;if(this._monthsParseExact)return function(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._monthsParse)for(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],s=0;s<12;++s)r=_([2e3,s]),this._shortMonthsParse[s]=this.monthsShort(r,"").toLocaleLowerCase(),this._longMonthsParse[s]=this.months(r,"").toLocaleLowerCase();return n?"MMM"===t?-1!==(i=we.call(this._shortMonthsParse,a))?i:null:-1!==(i=we.call(this._longMonthsParse,a))?i:null:"MMM"===t?-1!==(i=we.call(this._shortMonthsParse,a))||-1!==(i=we.call(this._longMonthsParse,a))?i:null:-1!==(i=we.call(this._longMonthsParse,a))||-1!==(i=we.call(this._shortMonthsParse,a))?i:null}.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),s=0;s<12;s++){if(i=_([2e3,s]),n&&!this._longMonthsParse[s]&&(this._longMonthsParse[s]=new RegExp("^"+this.months(i,"").replace(".","")+"$","i"),this._shortMonthsParse[s]=new RegExp("^"+this.monthsShort(i,"").replace(".","")+"$","i")),n||this._monthsParse[s]||(r="^"+this.months(i,"")+"|^"+this.monthsShort(i,""),this._monthsParse[s]=new RegExp(r.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[s].test(e))return s;if(n&&"MMM"===t&&this._shortMonthsParse[s].test(e))return s;if(!n&&this._monthsParse[s].test(e))return s}},kn.monthsRegex=function(e){return this._monthsParseExact?(m(this,"_monthsRegex")||He.call(this),e?this._monthsStrictRegex:this._monthsRegex):(m(this,"_monthsRegex")||(this._monthsRegex=We),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},kn.monthsShortRegex=function(e){return this._monthsParseExact?(m(this,"_monthsRegex")||He.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(m(this,"_monthsShortRegex")||(this._monthsShortRegex=Re),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},kn.week=function(e){return Ae(e,this._week.dow,this._week.doy).week},kn.firstDayOfYear=function(){return this._week.doy},kn.firstDayOfWeek=function(){return this._week.dow},kn.weekdays=function(e,t){var n=o(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?Ie(n,this._week.dow):e?n[e.day()]:n},kn.weekdaysMin=function(e){return!0===e?Ie(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},kn.weekdaysShort=function(e){return!0===e?Ie(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},kn.weekdaysParse=function(e,t,n){var s,i,r;if(this._weekdaysParseExact)return function(e,t,n){var s,i,r,a=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],s=0;s<7;++s)r=_([2e3,1]).day(s),this._minWeekdaysParse[s]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[s]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[s]=this.weekdays(r,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(i=we.call(this._weekdaysParse,a))?i:null:"ddd"===t?-1!==(i=we.call(this._shortWeekdaysParse,a))?i:null:-1!==(i=we.call(this._minWeekdaysParse,a))?i:null:"dddd"===t?-1!==(i=we.call(this._weekdaysParse,a))||-1!==(i=we.call(this._shortWeekdaysParse,a))||-1!==(i=we.call(this._minWeekdaysParse,a))?i:null:"ddd"===t?-1!==(i=we.call(this._shortWeekdaysParse,a))||-1!==(i=we.call(this._weekdaysParse,a))||-1!==(i=we.call(this._minWeekdaysParse,a))?i:null:-1!==(i=we.call(this._minWeekdaysParse,a))||-1!==(i=we.call(this._weekdaysParse,a))||-1!==(i=we.call(this._shortWeekdaysParse,a))?i:null}.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),s=0;s<7;s++){if(i=_([2e3,1]).day(s),n&&!this._fullWeekdaysParse[s]&&(this._fullWeekdaysParse[s]=new RegExp("^"+this.weekdays(i,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[s]=new RegExp("^"+this.weekdaysShort(i,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[s]=new RegExp("^"+this.weekdaysMin(i,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[s]||(r="^"+this.weekdays(i,"")+"|^"+this.weekdaysShort(i,"")+"|^"+this.weekdaysMin(i,""),this._weekdaysParse[s]=new RegExp(r.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[s].test(e))return s;if(n&&"ddd"===t&&this._shortWeekdaysParse[s].test(e))return s;if(n&&"dd"===t&&this._minWeekdaysParse[s].test(e))return s;if(!n&&this._weekdaysParse[s].test(e))return s}},kn.weekdaysRegex=function(e){return this._weekdaysParseExact?(m(this,"_weekdaysRegex")||Qe.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(m(this,"_weekdaysRegex")||(this._weekdaysRegex=qe),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},kn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(m(this,"_weekdaysRegex")||Qe.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(m(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Be),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},kn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(m(this,"_weekdaysRegex")||Qe.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(m(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Je),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},kn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},kn.meridiem=function(e,t,n){return 11<e?n?"pm":"PM":n?"am":"AM"},lt("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===Z(e%100/10)?"th":1==t?"st":2==t?"nd":3==t?"rd":"th")}}),f.lang=n("moment.lang is deprecated. Use moment.locale instead.",lt),f.langData=n("moment.langData is deprecated. Use moment.localeData instead.",dt);var Yn=Math.abs;function On(e,t,n,s){var i=Zt(t,n);return e._milliseconds+=s*i._milliseconds,e._days+=s*i._days,e._months+=s*i._months,e._bubble()}function bn(e){return e<0?Math.floor(e):Math.ceil(e)}function xn(e){return 4800*e/146097}function Tn(e){return 146097*e/4800}function Nn(e){return function(){return this.as(e)}}var Pn=Nn("ms"),Rn=Nn("s"),Wn=Nn("m"),Cn=Nn("h"),Un=Nn("d"),Hn=Nn("w"),Fn=Nn("M"),Ln=Nn("Q"),Vn=Nn("y");function Gn(e){return function(){return this.isValid()?this._data[e]:NaN}}var En=Gn("milliseconds"),An=Gn("seconds"),jn=Gn("minutes"),In=Gn("hours"),Zn=Gn("days"),zn=Gn("months"),$n=Gn("years");var qn=Math.round,Bn={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function Jn(e,t,n,s){var i=Zt(e).abs(),r=qn(i.as("s")),a=qn(i.as("m")),o=qn(i.as("h")),u=qn(i.as("d")),l=qn(i.as("M")),h=qn(i.as("w")),d=qn(i.as("y")),c=(r<=n.ss?["s",r]:r<n.s&&["ss",r])||a<=1&&["m"]||a<n.m&&["mm",a]||o<=1&&["h"]||o<n.h&&["hh",o]||u<=1&&["d"]||u<n.d&&["dd",u];return null!=n.w&&(c=c||h<=1&&["w"]||h<n.w&&["ww",h]),(c=c||l<=1&&["M"]||l<n.M&&["MM",l]||d<=1&&["y"]||["yy",d])[2]=t,c[3]=0<+e,c[4]=s,function(e,t,n,s,i){return i.relativeTime(t||1,!!n,e,s)}.apply(null,c)}var Qn=Math.abs;function Xn(e){return(0<e)-(e<0)||+e}function Kn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,s,i,r,a,o,u=Qn(this._milliseconds)/1e3,l=Qn(this._days),h=Qn(this._months),d=this.asSeconds();return d?(e=I(u/60),t=I(e/60),u%=60,e%=60,n=I(h/12),h%=12,s=u?u.toFixed(3).replace(/\.?0+$/,""):"",i=d<0?"-":"",r=Xn(this._months)!==Xn(d)?"-":"",a=Xn(this._days)!==Xn(d)?"-":"",o=Xn(this._milliseconds)!==Xn(d)?"-":"",i+"P"+(n?r+n+"Y":"")+(h?r+h+"M":"")+(l?a+l+"D":"")+(t||e||u?"T":"")+(t?o+t+"H":"")+(e?o+e+"M":"")+(u?o+s+"S":"")):"P0D"}var es=Ct.prototype;return es.isValid=function(){return this._isValid},es.abs=function(){var e=this._data;return this._milliseconds=Yn(this._milliseconds),this._days=Yn(this._days),this._months=Yn(this._months),e.milliseconds=Yn(e.milliseconds),e.seconds=Yn(e.seconds),e.minutes=Yn(e.minutes),e.hours=Yn(e.hours),e.months=Yn(e.months),e.years=Yn(e.years),this},es.add=function(e,t){return On(this,e,t,1)},es.subtract=function(e,t){return On(this,e,t,-1)},es.as=function(e){if(!this.isValid())return NaN;var t,n,s=this._milliseconds;if("month"===(e=V(e))||"quarter"===e||"year"===e)switch(t=this._days+s/864e5,n=this._months+xn(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(Tn(this._months)),e){case"week":return t/7+s/6048e5;case"day":return t+s/864e5;case"hour":return 24*t+s/36e5;case"minute":return 1440*t+s/6e4;case"second":return 86400*t+s/1e3;case"millisecond":return Math.floor(864e5*t)+s;default:throw new Error("Unknown unit "+e)}},es.asMilliseconds=Pn,es.asSeconds=Rn,es.asMinutes=Wn,es.asHours=Cn,es.asDays=Un,es.asWeeks=Hn,es.asMonths=Fn,es.asQuarters=Ln,es.asYears=Vn,es.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*Z(this._months/12):NaN},es._bubble=function(){var e,t,n,s,i,r=this._milliseconds,a=this._days,o=this._months,u=this._data;return 0<=r&&0<=a&&0<=o||r<=0&&a<=0&&o<=0||(r+=864e5*bn(Tn(o)+a),o=a=0),u.milliseconds=r%1e3,e=I(r/1e3),u.seconds=e%60,t=I(e/60),u.minutes=t%60,n=I(t/60),u.hours=n%24,a+=I(n/24),o+=i=I(xn(a)),a-=bn(Tn(i)),s=I(o/12),o%=12,u.days=a,u.months=o,u.years=s,this},es.clone=function(){return Zt(this)},es.get=function(e){return e=V(e),this.isValid()?this[e+"s"]():NaN},es.milliseconds=En,es.seconds=An,es.minutes=jn,es.hours=In,es.days=Zn,es.weeks=function(){return I(this.days()/7)},es.months=zn,es.years=$n,es.humanize=function(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,s,i=!1,r=Bn;return"object"==typeof e&&(t=e,e=!1),"boolean"==typeof e&&(i=e),"object"==typeof t&&(r=Object.assign({},Bn,t),null!=t.s&&null==t.ss&&(r.ss=t.s-1)),n=this.localeData(),s=Jn(this,!i,r,n),i&&(s=n.pastFuture(+this,s)),n.postformat(s)},es.toISOString=Kn,es.toString=Kn,es.toJSON=Kn,es.locale=tn,es.localeData=sn,es.toIsoString=n("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Kn),es.lang=nn,C("X",0,0,"unix"),C("x",0,0,"valueOf"),ce("x",ue),ce("X",/[+-]?\d+(\.\d{1,3})?/),ye("X",function(e,t,n){n._d=new Date(1e3*parseFloat(e))}),ye("x",function(e,t,n){n._d=new Date(Z(e))}),f.version="2.29.1",e=Tt,f.fn=pn,f.min=function(){return Rt("isBefore",[].slice.call(arguments,0))},f.max=function(){return Rt("isAfter",[].slice.call(arguments,0))},f.now=function(){return Date.now?Date.now():+new Date},f.utc=_,f.unix=function(e){return Tt(1e3*e)},f.months=function(e,t){return Dn(e,t,"months")},f.isDate=a,f.locale=lt,f.invalid=w,f.duration=Zt,f.isMoment=M,f.weekdays=function(e,t,n){return Sn(e,t,n,"weekdays")},f.parseZone=function(){return Tt.apply(null,arguments).parseZone()},f.localeData=dt,f.isDuration=Ut,f.monthsShort=function(e,t){return Dn(e,t,"monthsShort")},f.weekdaysMin=function(e,t,n){return Sn(e,t,n,"weekdaysMin")},f.defineLocale=ht,f.updateLocale=function(e,t){var n,s,i;return null!=t?(i=st,null!=it[e]&&null!=it[e].parentLocale?it[e].set(b(it[e]._config,t)):(null!=(s=ut(e))&&(i=s._config),t=b(i,t),null==s&&(t.abbr=e),(n=new x(t)).parentLocale=it[e],it[e]=n),lt(e)):null!=it[e]&&(null!=it[e].parentLocale?(it[e]=it[e].parentLocale,e===lt()&<(e)):null!=it[e]&&delete it[e]),it[e]},f.locales=function(){return s(it)},f.weekdaysShort=function(e,t,n){return Sn(e,t,n,"weekdaysShort")},f.normalizeUnits=V,f.relativeTimeRounding=function(e){return void 0===e?qn:"function"==typeof e&&(qn=e,!0)},f.relativeTimeThreshold=function(e,t){return void 0!==Bn[e]&&(void 0===t?Bn[e]:(Bn[e]=t,"s"===e&&(Bn.ss=t-1),!0))},f.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},f.prototype=pn,f.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},f});
|
includes/modules/flash-sale/class.flash-sale.php
ADDED
@@ -0,0 +1,323 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
+
|
4 |
+
class Woolentor_Flash_Sale{
|
5 |
+
|
6 |
+
private static $_instance = null;
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Get Instance
|
10 |
+
*/
|
11 |
+
public static function get_instance(){
|
12 |
+
if( is_null( self::$_instance ) ){
|
13 |
+
self::$_instance = new self();
|
14 |
+
}
|
15 |
+
return self::$_instance;
|
16 |
+
}
|
17 |
+
|
18 |
+
public $options = array();
|
19 |
+
|
20 |
+
public $the_product = '';
|
21 |
+
|
22 |
+
/**
|
23 |
+
* Constructor
|
24 |
+
*/
|
25 |
+
public function __construct(){
|
26 |
+
|
27 |
+
// Enqueue scripts
|
28 |
+
add_action('wp_enqueue_scripts', [ $this, 'enqueue_scripts' ] );
|
29 |
+
|
30 |
+
// Change display price for loop product and product details
|
31 |
+
add_filter( 'woocommerce_get_price_html', [ $this, 'alter_display_price' ], 10, 2 );
|
32 |
+
|
33 |
+
// Change price in cart
|
34 |
+
add_action( 'woocommerce_before_calculate_totals', [ $this, 'alter_price_in_cart' ], 9999 );
|
35 |
+
|
36 |
+
// Countdown position
|
37 |
+
$position = woolentor_get_option( 'countdown_position', 'woolentor_flash_sale_settings', 'woocommerce_before_add_to_cart_form' );
|
38 |
+
add_action( $position, [ $this, 'render_countdown' ] );
|
39 |
+
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Enqueue scripts
|
44 |
+
*/
|
45 |
+
public function enqueue_scripts(){
|
46 |
+
|
47 |
+
if( is_product() ){
|
48 |
+
|
49 |
+
wp_enqueue_script( 'moment', plugin_dir_url( __FILE__ ) . '/assets/js/moment.min.js', array('jquery'), '2.29.1' );
|
50 |
+
wp_enqueue_script( 'moment-timezone-with-data', plugin_dir_url( __FILE__ ) . '/assets/js/moment-timezone-with-data.js', array('jquery','moment'), '0.5.34' );
|
51 |
+
|
52 |
+
wp_enqueue_script( 'woolentor-flash-sale-module', plugin_dir_url( __FILE__ ) . '/assets/js/flash-sale.js', array('countdown-min'), WOOLENTOR_VERSION );
|
53 |
+
wp_enqueue_style( 'woolentor-flash-sale-module', plugin_dir_url( __FILE__ ) . '/assets/css/flash-sale.css', '', WOOLENTOR_VERSION, 'all' );
|
54 |
+
|
55 |
+
wp_localize_script( 'woolentor-flash-sale-module', 'woolentor_flash_sale_module', array(
|
56 |
+
'timeZone' => wp_timezone_string()
|
57 |
+
) );
|
58 |
+
|
59 |
+
}
|
60 |
+
|
61 |
+
}
|
62 |
+
|
63 |
+
/**
|
64 |
+
* Validate user previllage
|
65 |
+
*/
|
66 |
+
public static function user_validity( $deal ){
|
67 |
+
$validity = false;
|
68 |
+
$apply_only_for_registered_customers = !empty($deal['apply_discount_only_for_registered_customers']) ? $deal['apply_discount_only_for_registered_customers'] : '';
|
69 |
+
$allowed_user_roles = !empty($deal['allowed_user_roles']) ? explode(',', $deal['allowed_user_roles']) : array();
|
70 |
+
|
71 |
+
if( $apply_only_for_registered_customers ){
|
72 |
+
if( is_user_logged_in() && !$allowed_user_roles ){
|
73 |
+
$validity = true;
|
74 |
+
}
|
75 |
+
|
76 |
+
if( is_user_logged_in() && $allowed_user_roles ){
|
77 |
+
$current_user_obj = get_user_by( 'id', get_current_user_id() );
|
78 |
+
$current_user_roles = $current_user_obj->roles;
|
79 |
+
|
80 |
+
if( array_intersect( $current_user_roles, $allowed_user_roles) ){
|
81 |
+
$validity = true;
|
82 |
+
}
|
83 |
+
}
|
84 |
+
} else{
|
85 |
+
$validity = true;
|
86 |
+
}
|
87 |
+
|
88 |
+
return $validity;
|
89 |
+
}
|
90 |
+
|
91 |
+
/**
|
92 |
+
* Validate offer date & time
|
93 |
+
*/
|
94 |
+
public static function datetime_validity( $deal ){
|
95 |
+
$validity = false;
|
96 |
+
$current_time = current_time('timestamp');
|
97 |
+
$deal_time_began = strtotime( $deal['start_date'] );
|
98 |
+
$deal_time_end = strtotime( $deal["end_date"] );
|
99 |
+
$deal_time_end = $deal_time_end + 86399; // 23 hours + 59 minutes as the end date
|
100 |
+
|
101 |
+
// if any one of the time is defined
|
102 |
+
if( $deal_time_began || $deal_time_end ){
|
103 |
+
|
104 |
+
// if began datetime is set but end time not set
|
105 |
+
if( $deal_time_began && empty($deal_time_end) ){
|
106 |
+
if( $deal_time_began <= $current_time ){
|
107 |
+
$validity = true;
|
108 |
+
}
|
109 |
+
}
|
110 |
+
// if end datetime is set but start datetime not set
|
111 |
+
elseif( $deal_time_end && empty($deal_time_began) ) {
|
112 |
+
if( $current_time <= $deal_time_end ){
|
113 |
+
$validity = true;
|
114 |
+
}
|
115 |
+
// if both time is set
|
116 |
+
} else {
|
117 |
+
if( ($current_time >= $deal_time_began) && ($current_time <= $deal_time_end) ){
|
118 |
+
$validity = true;
|
119 |
+
}
|
120 |
+
}
|
121 |
+
|
122 |
+
} else {
|
123 |
+
$validity = true;
|
124 |
+
}
|
125 |
+
|
126 |
+
return $validity;
|
127 |
+
}
|
128 |
+
|
129 |
+
/**
|
130 |
+
* Check & validate if a product has any deal or not
|
131 |
+
*/
|
132 |
+
public static function products_validity( $product, $deal ){
|
133 |
+
$validity = false;
|
134 |
+
|
135 |
+
$apply_on_all_products = !empty( $deal['apply_on_all_products'] ) ? $deal['apply_on_all_products'] : '';
|
136 |
+
$applicable_categories = !empty( $deal['categories'] ) ? $deal['categories'] : array();
|
137 |
+
$applicable_products = !empty( $deal['products'] ) ? $deal['products'] : array();
|
138 |
+
$exclude_products = !empty( $deal['exclude_products'] ) ? $deal['exclude_products'] : array();
|
139 |
+
|
140 |
+
if( ! $product ){
|
141 |
+
return false;
|
142 |
+
}
|
143 |
+
|
144 |
+
// Exlcude products
|
145 |
+
if( in_array( $product->get_id(), $exclude_products ) ){
|
146 |
+
return false;
|
147 |
+
}
|
148 |
+
|
149 |
+
if( $apply_on_all_products ){
|
150 |
+
return true;
|
151 |
+
} elseif( $applicable_categories || $applicable_products ) {
|
152 |
+
$current_product_categories = wc_get_product_term_ids( $product->get_id(), 'product_cat' );
|
153 |
+
if( array_intersect( $applicable_categories, $current_product_categories ) ){
|
154 |
+
return true;
|
155 |
+
} elseif( in_array($product->get_id(), $applicable_products) ){
|
156 |
+
return true;
|
157 |
+
}
|
158 |
+
}
|
159 |
+
|
160 |
+
return $validity;
|
161 |
+
}
|
162 |
+
|
163 |
+
/**
|
164 |
+
* Loop through each deals and get the first matched deal for the given product
|
165 |
+
*/
|
166 |
+
public static function get_deal( $product ){
|
167 |
+
$flash_sale_settings = get_option('woolentor_flash_sale_settings');
|
168 |
+
|
169 |
+
foreach( $flash_sale_settings['deals'] as $key => $deal ){
|
170 |
+
$status = !empty($deal['status']) ? $deal['status'] : 'off';
|
171 |
+
if( $status != 'on' ){
|
172 |
+
continue;
|
173 |
+
}
|
174 |
+
|
175 |
+
if( self::user_validity($deal) && self::datetime_validity($deal) && self::products_validity($product, $deal) ){
|
176 |
+
return $deal;
|
177 |
+
break;
|
178 |
+
}
|
179 |
+
|
180 |
+
}
|
181 |
+
|
182 |
+
return array();
|
183 |
+
}
|
184 |
+
|
185 |
+
/**
|
186 |
+
* One a deal found for the given product
|
187 |
+
* Calculate the the price based on the discount/deal matched with the given product
|
188 |
+
*/
|
189 |
+
public function get_calculated_price( $product, $deal ){
|
190 |
+
$orig_price = (float) $product->get_regular_price();
|
191 |
+
|
192 |
+
$discount_type = !empty($deal['discount_type']) ? $deal['discount_type'] : 'fixed_discount';
|
193 |
+
$discount_value = !empty($deal['discount_value']) ? $deal['discount_value'] : '';
|
194 |
+
|
195 |
+
$override_sale_price = woolentor_get_option('override_sale_price', 'woolentor_flash_sale_settings');
|
196 |
+
if( $override_sale_price && $product->is_on_sale() ){
|
197 |
+
$orig_price = wc_get_price_to_display( $product );
|
198 |
+
}
|
199 |
+
|
200 |
+
// prepare discounted price
|
201 |
+
if( $discount_type == 'fixed_discount' ){
|
202 |
+
|
203 |
+
return $orig_price - (float) $discount_value;
|
204 |
+
|
205 |
+
} elseif( $discount_type == 'percentage_discount' ){
|
206 |
+
|
207 |
+
return $orig_price * (1 - (float) $discount_value / 100);
|
208 |
+
|
209 |
+
} elseif( $discount_type == 'fixed_price' ){
|
210 |
+
|
211 |
+
return (float) $discount_value;
|
212 |
+
|
213 |
+
}
|
214 |
+
}
|
215 |
+
|
216 |
+
/**
|
217 |
+
* Alter the display price of the given product by the new discounted price
|
218 |
+
* Altering product price does not apply when a customer add to cart the product
|
219 |
+
* This process just for showing discounted price to the customers
|
220 |
+
*/
|
221 |
+
public function alter_display_price( $price_html, $product ){
|
222 |
+
// Only on frontend includeing elementor editor
|
223 |
+
if( is_admin() && !\Elementor\Plugin::$instance->editor->is_edit_mode() ) {
|
224 |
+
return $price_html;
|
225 |
+
}
|
226 |
+
|
227 |
+
// Only if price is not null
|
228 |
+
if( '' === $product->get_price() ){
|
229 |
+
return $price_html;
|
230 |
+
}
|
231 |
+
|
232 |
+
if( $product->get_type() != 'variation' ){
|
233 |
+
$this->the_product = $product;
|
234 |
+
}
|
235 |
+
|
236 |
+
$deal = self::get_deal( $this->the_product );
|
237 |
+
$discount_value = !empty($deal['discount_value']) ? $deal['discount_value'] : '';
|
238 |
+
|
239 |
+
if( $deal && self::datetime_validity($deal) && $discount_value ){
|
240 |
+
|
241 |
+
if( $product->get_type() == 'simple' || $product->get_type() == 'external' ){
|
242 |
+
|
243 |
+
$calculated_price = $this->get_calculated_price( $product, $deal );
|
244 |
+
$price_html = wc_format_sale_price( wc_get_price_to_display( $product, array( 'price' => $product->get_regular_price() ) ), $calculated_price ) . $product->get_price_suffix();
|
245 |
+
}
|
246 |
+
|
247 |
+
}
|
248 |
+
|
249 |
+
return $price_html;
|
250 |
+
}
|
251 |
+
|
252 |
+
/**
|
253 |
+
* Loop throguh each products in cart
|
254 |
+
* get the discounted price by the given product and
|
255 |
+
* apply the new price customers should pay
|
256 |
+
*/
|
257 |
+
public function alter_price_in_cart( $cart ){
|
258 |
+
if( is_admin() && ! defined( 'DOING_AJAX' ) ){
|
259 |
+
return;
|
260 |
+
}
|
261 |
+
|
262 |
+
if( did_action( 'woocommerce_before_calculate_totals' ) >= 2 ){
|
263 |
+
return;
|
264 |
+
}
|
265 |
+
|
266 |
+
// Loop through cart items & apply discount
|
267 |
+
foreach( $cart->get_cart() as $cart_item_key => $cart_item ){
|
268 |
+
$product = $cart_item['data'];
|
269 |
+
$price = $product->get_price();
|
270 |
+
$deal = $this->get_deal( $product );
|
271 |
+
$discount_value = !empty($deal['discount_value']) ? $deal['discount_value'] : '';
|
272 |
+
|
273 |
+
if( $deal && $discount_value ){
|
274 |
+
|
275 |
+
if($product->get_type() == 'simple' || $product->get_type() == 'external' ){
|
276 |
+
$price = $this->get_calculated_price( $product, $deal );
|
277 |
+
}
|
278 |
+
|
279 |
+
}
|
280 |
+
|
281 |
+
$cart_item['data']->set_price( $price );
|
282 |
+
}
|
283 |
+
}
|
284 |
+
|
285 |
+
/**
|
286 |
+
* Render countdown
|
287 |
+
*/
|
288 |
+
public function render_countdown(){
|
289 |
+
if( !is_product() ){
|
290 |
+
return;
|
291 |
+
}
|
292 |
+
|
293 |
+
global $product;
|
294 |
+
$flash_sale_settings = get_option('woolentor_flash_sale_settings');
|
295 |
+
$countdown_heading = woolentor_get_option('countdown_timer_title', 'woolentor_flash_sale_settings', esc_html__('Hurry Up! Offer ends in', 'woolentor'));
|
296 |
+
$deal = self::get_deal($product);
|
297 |
+
$countdown_status = woolentor_get_option('enable_countdown_on_product_details_page', 'woolentor_flash_sale_settings', 'on');
|
298 |
+
$deal_time_end = !empty($deal['end_date']) ? date('Y-m-d', strtotime($deal['end_date']) + 86400) : ''; // formate datetime for moment timezone like this 2021-12-19 19:20, otherwise the moment timezone produce a deperecated notice
|
299 |
+
|
300 |
+
// Right now support only simple product
|
301 |
+
if( $product->get_type() != 'simple' ){
|
302 |
+
return;
|
303 |
+
}
|
304 |
+
|
305 |
+
if( $deal && $deal_time_end && $countdown_status == 'on' ):
|
306 |
+
|
307 |
+
$custom_labels = apply_filters('woolentor_countdown_custom_labels', array(
|
308 |
+
'daytxt' => esc_html__('Days', 'woolentor'),
|
309 |
+
'hourtxt' => esc_html__('Hours', 'woolentor'),
|
310 |
+
'minutestxt' => esc_html__('Min', 'woolentor'),
|
311 |
+
'secondstxt' => esc_html__('Sec', 'woolentor')
|
312 |
+
));
|
313 |
+
?>
|
314 |
+
<div class="ht-saleflash-countdown-wrap ht-align--left">
|
315 |
+
<span class="ht-saleflash-countdown-title"><?php echo wp_kses_post( $countdown_heading ) ?></span>
|
316 |
+
<div class="ht-product-countdown" data-countdown="<?php echo esc_attr( $deal_time_end ) ?>" data-customlavel='<?php echo json_encode( $custom_labels ) ?>'></div>
|
317 |
+
</div>
|
318 |
+
<?php
|
319 |
+
endif;
|
320 |
+
}
|
321 |
+
}
|
322 |
+
|
323 |
+
Woolentor_Flash_Sale::get_instance();
|
includes/modules/shopify-like-checkout/assets/shopify-like-checkout.css
CHANGED
@@ -1354,6 +1354,9 @@
|
|
1354 |
max-width: 100%;
|
1355 |
height: auto;
|
1356 |
}
|
|
|
|
|
|
|
1357 |
|
1358 |
/*Small devices (normal/smart phone)*/
|
1359 |
@media (max-width: 767px) {
|
1354 |
max-width: 100%;
|
1355 |
height: auto;
|
1356 |
}
|
1357 |
+
.woolentor-checkout__box .woocommerce-billing-fields__field-wrapper{
|
1358 |
+
overflow: hidden;
|
1359 |
+
}
|
1360 |
|
1361 |
/*Small devices (normal/smart phone)*/
|
1362 |
@media (max-width: 767px) {
|
includes/modules/shopify-like-checkout/templates/form-checkout.php
CHANGED
@@ -46,7 +46,7 @@ if( !empty( $get_custom_menu_id ) ){
|
|
46 |
</div>
|
47 |
<ul class="woolentor-checkout__breadcrumb">
|
48 |
<li class="woolentor-checkout__breadcrumb-item">
|
49 |
-
<a class="woolentor-checkout__breadcrumb-link" href="<?php echo esc_url(wc_get_cart_url()) ?>"><?php echo esc_html__('Cart','woolentor')
|
50 |
</li>
|
51 |
<li class="woolentor-checkout__breadcrumb-item active" data-step="step--info">
|
52 |
<span class="woolentor-checkout__breadcrumb-text"><?php echo esc_html__('Informations', 'woolentor') ?></span>
|
46 |
</div>
|
47 |
<ul class="woolentor-checkout__breadcrumb">
|
48 |
<li class="woolentor-checkout__breadcrumb-item">
|
49 |
+
<a class="woolentor-checkout__breadcrumb-link" href="<?php echo esc_url(wc_get_cart_url()) ?>"><?php echo esc_html__('Cart','woolentor') ?></a>
|
50 |
</li>
|
51 |
<li class="woolentor-checkout__breadcrumb-item active" data-step="step--info">
|
52 |
<span class="woolentor-checkout__breadcrumb-text"><?php echo esc_html__('Informations', 'woolentor') ?></span>
|
includes/modules/shopify-like-checkout/templates/review-order.php
CHANGED
@@ -23,7 +23,7 @@ defined( 'ABSPATH' ) || exit;
|
|
23 |
<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>
|
24 |
|
25 |
<tr class="woolentor-shipping-cost">
|
26 |
-
<th><?php echo
|
27 |
<td><span class="woolentor-order-reivew-shipping-cost"><?php echo wc_price( Woolentor_Shopify_Like_Checkout::get_cart_totals_shipping_cost() ) ?></span></td>
|
28 |
</tr>
|
29 |
|
23 |
<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>
|
24 |
|
25 |
<tr class="woolentor-shipping-cost">
|
26 |
+
<th><?php echo esc_html__('Shipping', 'woolentor') ?></th>
|
27 |
<td><span class="woolentor-order-reivew-shipping-cost"><?php echo wc_price( Woolentor_Shopify_Like_Checkout::get_cart_totals_shipping_cost() ) ?></span></td>
|
28 |
</tr>
|
29 |
|
includes/wl_woo_shop.php
CHANGED
@@ -72,6 +72,9 @@ class Woolentor_Woo_Custom_Template_Layout{
|
|
72 |
if( false !== $this->has_template( 'productemptycartpage' ) ){
|
73 |
$classes[] = $class_prefix.$this->has_template( 'productemptycartpage' );
|
74 |
}
|
|
|
|
|
|
|
75 |
}
|
76 |
}
|
77 |
|
72 |
if( false !== $this->has_template( 'productemptycartpage' ) ){
|
73 |
$classes[] = $class_prefix.$this->has_template( 'productemptycartpage' );
|
74 |
}
|
75 |
+
if( WC()->cart && WC()->cart->is_empty() ){
|
76 |
+
$classes[] = 'woolentor-empty-cart';
|
77 |
+
}
|
78 |
}
|
79 |
}
|
80 |
|
languages/woolentor.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: WooLentor - WooCommerce Elementor Addons + Builder\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
"X-Domain: woolentor"
|
18 |
|
19 |
#. 1: Plugin name 2: PHP 3: Required PHP version
|
20 |
-
#: includes/base.php:
|
21 |
#, php-format
|
22 |
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
23 |
msgstr ""
|
@@ -28,28 +28,28 @@ msgstr ""
|
|
28 |
msgid "#"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: includes/base.php:
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"%1$sWooLentor Addons for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin "
|
35 |
"to be active. Please activate Elementor to continue."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: includes/base.php:
|
39 |
#, php-format
|
40 |
msgid ""
|
41 |
"%1$sWooLentor Addons for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin "
|
42 |
"to be installed and activated. Please install Elementor to continue."
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: includes/base.php:
|
46 |
#, php-format
|
47 |
msgid ""
|
48 |
"%1$sWooLentor Addons for Elementor%2$s requires %1$s\"WooCommerce\"%2$s "
|
49 |
"plugin to be active. Please activate WooCommerce to continue."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: includes/base.php:
|
53 |
#, php-format
|
54 |
msgid ""
|
55 |
"%1$sWooLentor Addons for Elementor%2$s requires %1$s\"WooCommerce\"%2$s "
|
@@ -72,23 +72,23 @@ msgstr ""
|
|
72 |
msgid "1"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: includes/admin/include/admin_fields.php:
|
76 |
msgid "1 day"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: includes/admin/include/admin_fields.php:
|
80 |
-
#: includes/admin/include/admin_fields.php:
|
81 |
-
#: includes/admin/include/admin_fields.php:
|
82 |
msgid "1 minute"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: includes/admin/include/admin_fields.php:
|
86 |
msgid "1 week"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: includes/admin/include/admin_fields.php:
|
90 |
-
#: includes/admin/include/admin_fields.php:
|
91 |
-
#: includes/admin/include/admin_fields.php:
|
92 |
msgid "1.5 minutes"
|
93 |
msgstr ""
|
94 |
|
@@ -96,13 +96,13 @@ msgstr ""
|
|
96 |
msgid "10 Custom Shop Page Templates"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: includes/admin/include/admin_fields.php:
|
100 |
msgid "10 days"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/admin/include/admin_fields.php:
|
104 |
-
#: includes/admin/include/admin_fields.php:
|
105 |
-
#: includes/admin/include/admin_fields.php:
|
106 |
msgid "10 seconds"
|
107 |
msgstr ""
|
108 |
|
@@ -120,29 +120,29 @@ msgstr ""
|
|
120 |
msgid "2"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: includes/admin/include/admin_fields.php:
|
124 |
msgid "2 days"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/admin/include/admin_fields.php:
|
128 |
-
#: includes/admin/include/admin_fields.php:
|
129 |
-
#: includes/admin/include/admin_fields.php:
|
130 |
msgid "2 minutes"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: includes/admin/include/admin_fields.php:
|
134 |
-
#: includes/admin/include/admin_fields.php:
|
135 |
-
#: includes/admin/include/admin_fields.php:
|
136 |
msgid "2 seconds"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/admin/include/admin_fields.php:
|
140 |
msgid "2 weeks"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/admin/include/admin_fields.php:
|
144 |
-
#: includes/admin/include/admin_fields.php:
|
145 |
-
#: includes/admin/include/admin_fields.php:
|
146 |
msgid "20 seconds"
|
147 |
msgstr ""
|
148 |
|
@@ -150,21 +150,21 @@ msgstr ""
|
|
150 |
msgid "3"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/admin/include/admin_fields.php:
|
154 |
msgid "3 days"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/admin/include/admin_fields.php:
|
158 |
msgid "3 seconds"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/admin/include/admin_fields.php:
|
162 |
msgid "3 weeks"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: includes/admin/include/admin_fields.php:
|
166 |
-
#: includes/admin/include/admin_fields.php:
|
167 |
-
#: includes/admin/include/admin_fields.php:
|
168 |
msgid "30 seconds"
|
169 |
msgstr ""
|
170 |
|
@@ -172,23 +172,23 @@ msgstr ""
|
|
172 |
msgid "4"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/admin/include/admin_fields.php:
|
176 |
msgid "4 days"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/admin/include/admin_fields.php:
|
180 |
-
#: includes/admin/include/admin_fields.php:
|
181 |
-
#: includes/admin/include/admin_fields.php:
|
182 |
msgid "4 seconds"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/admin/include/admin_fields.php:
|
186 |
msgid "4 weeks"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/admin/include/admin_fields.php:
|
190 |
-
#: includes/admin/include/admin_fields.php:
|
191 |
-
#: includes/admin/include/admin_fields.php:
|
192 |
msgid "40 seconds"
|
193 |
msgstr ""
|
194 |
|
@@ -196,7 +196,7 @@ msgstr ""
|
|
196 |
msgid "5"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/admin/include/admin_fields.php:
|
200 |
msgid "5 days"
|
201 |
msgstr ""
|
202 |
|
@@ -204,19 +204,19 @@ msgstr ""
|
|
204 |
msgid "5 Premium WooCommerce Themes included. (Save $200)"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/admin/include/admin_fields.php:
|
208 |
-
#: includes/admin/include/admin_fields.php:
|
209 |
-
#: includes/admin/include/admin_fields.php:
|
210 |
msgid "5 seconds"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: includes/admin/include/admin_fields.php:
|
214 |
msgid "5 weeks"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: includes/admin/include/admin_fields.php:
|
218 |
-
#: includes/admin/include/admin_fields.php:
|
219 |
-
#: includes/admin/include/admin_fields.php:
|
220 |
msgid "50 seconds"
|
221 |
msgstr ""
|
222 |
|
@@ -224,8 +224,8 @@ msgstr ""
|
|
224 |
msgid "50%"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/admin/include/admin_fields.php:
|
228 |
-
#: includes/admin/include/admin_fields.php:
|
229 |
msgid "550px"
|
230 |
msgstr ""
|
231 |
|
@@ -233,27 +233,27 @@ msgstr ""
|
|
233 |
msgid "6"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/admin/include/admin_fields.php:
|
237 |
msgid "6 days"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/admin/include/admin_fields.php:
|
241 |
-
#: includes/admin/include/admin_fields.php:
|
242 |
-
#: includes/admin/include/admin_fields.php:
|
243 |
msgid "6 seconds"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/admin/include/admin_fields.php:
|
247 |
msgid "6 weeks"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/admin/include/admin_fields.php:
|
251 |
-
#: includes/admin/include/admin_fields.php:
|
252 |
-
#: includes/admin/include/admin_fields.php:
|
253 |
msgid "7 seconds"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/admin/include/admin_fields.php:
|
257 |
msgid "7 weeks"
|
258 |
msgstr ""
|
259 |
|
@@ -261,24 +261,24 @@ msgstr ""
|
|
261 |
msgid "76 Elementor Elements"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/admin/include/admin_fields.php:
|
265 |
-
#: includes/admin/include/admin_fields.php:
|
266 |
-
#: includes/admin/include/admin_fields.php:
|
267 |
msgid "8 seconds"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/admin/include/admin_fields.php:
|
271 |
msgid "8 weeks"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/admin/include/admin_fields.php:
|
275 |
-
#: includes/admin/include/admin_fields.php:
|
276 |
-
#: includes/admin/include/admin_fields.php:
|
277 |
msgid "9 seconds"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/admin/include/admin_fields.php:
|
281 |
-
#: includes/admin/include/admin_fields.php:
|
282 |
msgid "90%"
|
283 |
msgstr ""
|
284 |
|
@@ -301,23 +301,23 @@ msgstr ""
|
|
301 |
msgid "Action Button Style"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/admin/include/template-library.php:
|
305 |
-
#: includes/admin/include/template-library.php:
|
306 |
#: includes/admin/include/class.extension-manager.php:182
|
307 |
#: includes/admin/include/class.extension-manager.php:249
|
308 |
msgid "Activate"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/base.php:
|
312 |
msgid "Activate Elementor"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/base.php:
|
316 |
msgid "Activate WooCommerce"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/admin/include/template-library.php:
|
320 |
-
#: includes/admin/include/template-library.php:
|
321 |
#: includes/admin/include/class.extension-manager.php:193
|
322 |
#: includes/admin/include/class.extension-manager.php:260
|
323 |
msgid "Activated"
|
@@ -343,6 +343,10 @@ msgstr ""
|
|
343 |
msgid "Add ID Manually"
|
344 |
msgstr ""
|
345 |
|
|
|
|
|
|
|
|
|
346 |
#: includes/admin/include/class.template_cpt.php:32
|
347 |
msgid "Add New"
|
348 |
msgstr ""
|
@@ -351,11 +355,19 @@ msgstr ""
|
|
351 |
msgid "Add New Template"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/admin/include/admin_fields.php:
|
355 |
-
#: includes/admin/include/admin_fields.php:
|
356 |
msgid "Add to Cart"
|
357 |
msgstr ""
|
358 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
#: includes/addons/wb_archive_product.php:539
|
360 |
msgid "Add To Cart Button"
|
361 |
msgstr ""
|
@@ -372,13 +384,13 @@ msgstr ""
|
|
372 |
|
373 |
#: includes/addons/product_image_accordion.php:185
|
374 |
#: includes/addons/product_accordion.php:205
|
375 |
-
#: includes/admin/include/admin_fields.php:
|
376 |
-
#: includes/admin/include/admin_fields.php:
|
377 |
msgid "Add to Cart Button Text"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: includes/helper-function.php:
|
381 |
-
#: includes/helper-function.php:
|
382 |
#: woolentor-blocks/includes/helper-functions.php:312
|
383 |
#: woolentor-blocks/includes/helper-functions.php:313
|
384 |
#: woolentor-blocks/includes/helper-functions.php:329
|
@@ -390,11 +402,11 @@ msgid "Add Youtube / Vimeo URL"
|
|
390 |
msgstr ""
|
391 |
|
392 |
#: includes/admin/include/admin_fields.php:408
|
393 |
-
#: includes/admin/include/admin_fields.php:
|
394 |
msgid "Additional Information"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: includes/admin/include/admin_fields.php:
|
398 |
#: includes/modules/shopify-like-checkout/templates/form-shipping.php:44
|
399 |
msgid "Additional information"
|
400 |
msgstr ""
|
@@ -405,6 +417,10 @@ msgstr ""
|
|
405 |
msgid "Additional Options"
|
406 |
msgstr ""
|
407 |
|
|
|
|
|
|
|
|
|
408 |
#: includes/addons/wb_product_suggest_price.php:87
|
409 |
#: includes/addons/wb_product_suggest_price.php:88
|
410 |
msgid "admin@domain.com"
|
@@ -414,7 +430,7 @@ msgstr ""
|
|
414 |
msgid "Ads Banner"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/admin/include/admin_fields.php:
|
418 |
msgid "Advance Product Image"
|
419 |
msgstr ""
|
420 |
|
@@ -426,15 +442,15 @@ msgstr ""
|
|
426 |
msgid "After Title"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/admin/include/admin_fields.php:
|
430 |
msgid "AJAX Add to Cart on Single Product page"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/admin/include/admin_fields.php:
|
434 |
msgid "AJAX Search Widget"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/admin/include/admin_fields.php:
|
438 |
msgid "Ajax Search Widget"
|
439 |
msgstr ""
|
440 |
|
@@ -493,15 +509,15 @@ msgstr ""
|
|
493 |
msgid "Already have an account?"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: includes/admin/include/admin_fields.php:
|
497 |
msgid "Animation"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: includes/admin/include/admin_fields.php:
|
501 |
msgid "Animation In"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: includes/admin/include/admin_fields.php:
|
505 |
msgid "Animation Out"
|
506 |
msgstr ""
|
507 |
|
@@ -517,12 +533,24 @@ msgstr ""
|
|
517 |
msgid "Apply coupon"
|
518 |
msgstr ""
|
519 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
520 |
#: includes/admin/include/class.template-manager.php:175
|
521 |
#: includes/admin/include/class.template-manager.php:199
|
522 |
msgid "Archive"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#:
|
|
|
|
|
|
|
|
|
526 |
msgid "Archive List View Action Button"
|
527 |
msgstr ""
|
528 |
|
@@ -671,7 +699,7 @@ msgstr ""
|
|
671 |
#: includes/addons/wl_category_grid.php:715
|
672 |
#: includes/addons/wl_category_grid.php:789
|
673 |
#: includes/addons/wl_category_grid.php:889
|
674 |
-
#: includes/admin/include/admin_fields.php:
|
675 |
msgid "Background Color"
|
676 |
msgstr ""
|
677 |
|
@@ -681,7 +709,7 @@ msgstr ""
|
|
681 |
msgid "Background Type"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/admin/include/admin_fields.php:
|
685 |
msgid "Badge color"
|
686 |
msgstr ""
|
687 |
|
@@ -883,15 +911,15 @@ msgstr ""
|
|
883 |
msgid "Bottom"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: includes/admin/include/admin_fields.php:
|
887 |
msgid "Bottom Left"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: includes/admin/include/admin_fields.php:
|
891 |
msgid "Bottom Menu"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: includes/admin/include/admin_fields.php:
|
895 |
msgid "Bottom Right"
|
896 |
msgstr ""
|
897 |
|
@@ -900,48 +928,48 @@ msgstr ""
|
|
900 |
msgid "Bottom Space"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: includes/admin/include/admin_fields.php:
|
904 |
-
#: includes/admin/include/admin_fields.php:
|
905 |
msgid "bounce"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: includes/admin/include/admin_fields.php:
|
909 |
msgid "bounceIn"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: includes/admin/include/admin_fields.php:
|
913 |
msgid "bounceInDown"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: includes/admin/include/admin_fields.php:
|
917 |
msgid "bounceInLeft"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: includes/admin/include/admin_fields.php:
|
921 |
msgid "bounceInRight"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: includes/admin/include/admin_fields.php:
|
925 |
msgid "bounceInUp"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: includes/admin/include/admin_fields.php:
|
929 |
msgid "bounceOut"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: includes/admin/include/admin_fields.php:
|
933 |
msgid "bounceOutDown"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: includes/admin/include/admin_fields.php:
|
937 |
msgid "bounceOutLeft"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: includes/admin/include/admin_fields.php:
|
941 |
msgid "bounceOutRight"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: includes/admin/include/admin_fields.php:
|
945 |
msgid "bounceOutUp"
|
946 |
msgstr ""
|
947 |
|
@@ -959,7 +987,7 @@ msgstr ""
|
|
959 |
msgid "Box Shadow"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: includes/addons/wl_brand.php:237
|
963 |
msgid "Brand"
|
964 |
msgstr ""
|
965 |
|
@@ -993,11 +1021,11 @@ msgstr ""
|
|
993 |
msgid "Button"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: includes/admin/include/admin_fields.php:
|
997 |
msgid "Button color"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: includes/admin/include/admin_fields.php:
|
1001 |
msgid "Button hover color"
|
1002 |
msgstr ""
|
1003 |
|
@@ -1024,8 +1052,8 @@ msgid "Buy"
|
|
1024 |
msgstr ""
|
1025 |
|
1026 |
#: classes/class.assest_management.php:345
|
1027 |
-
#: includes/admin/include/template-library.php:
|
1028 |
-
#: includes/admin/include/template-library.php:
|
1029 |
#: includes/admin/include/class.extension-manager.php:213
|
1030 |
#: includes/admin/templates/dashboard-popup.php:14
|
1031 |
msgid "Buy Now"
|
@@ -1058,6 +1086,10 @@ msgstr ""
|
|
1058 |
msgid "Carolina Monntoya"
|
1059 |
msgstr ""
|
1060 |
|
|
|
|
|
|
|
|
|
1061 |
#: includes/addons/wb_ever_compare_table.php:168
|
1062 |
#: includes/addons/wb_ever_compare_table.php:174
|
1063 |
msgid "Cart Button Background"
|
@@ -1077,7 +1109,8 @@ msgid ""
|
|
1077 |
"layout template"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#:
|
|
|
1081 |
msgid "Category"
|
1082 |
msgstr ""
|
1083 |
|
@@ -1085,7 +1118,7 @@ msgstr ""
|
|
1085 |
msgid "Category Color"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: includes/admin/include/admin_fields.php:
|
1089 |
msgid "Category color"
|
1090 |
msgstr ""
|
1091 |
|
@@ -1093,6 +1126,7 @@ msgstr ""
|
|
1093 |
msgid "Category Display Type"
|
1094 |
msgstr ""
|
1095 |
|
|
|
1096 |
#: includes/addons/wl_category_grid.php:40
|
1097 |
#: includes/admin/include/admin_fields.php:324
|
1098 |
msgid "Category Grid"
|
@@ -1102,7 +1136,7 @@ msgstr ""
|
|
1102 |
msgid "Category Hover Color"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/admin/include/admin_fields.php:
|
1106 |
msgid "Category hover color"
|
1107 |
msgstr ""
|
1108 |
|
@@ -1140,27 +1174,27 @@ msgstr ""
|
|
1140 |
msgid "Change address"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: includes/admin/include/admin_fields.php:
|
1144 |
msgid "Change the Add to Cart button text for the Product details page."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: includes/admin/include/admin_fields.php:
|
1148 |
msgid "Change the Add to Cart button text for the Shop page."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/admin/include/admin_fields.php:
|
1152 |
msgid "Change the label for the Place order field."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: includes/admin/include/admin_fields.php:
|
1156 |
msgid "Change the tab title for the product additional information"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/admin/include/admin_fields.php:
|
1160 |
msgid "Change the tab title for the product description."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/admin/include/admin_fields.php:
|
1164 |
msgid "Change the tab title for the product review"
|
1165 |
msgstr ""
|
1166 |
|
@@ -1184,7 +1218,7 @@ msgstr ""
|
|
1184 |
msgid "Checkout Order Review"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/admin/include/admin_fields.php:
|
1188 |
msgid "Checkout Page"
|
1189 |
msgstr ""
|
1190 |
|
@@ -1204,24 +1238,24 @@ msgstr ""
|
|
1204 |
msgid "Choose a Payment Gateway"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/admin/include/admin_fields.php:
|
1208 |
msgid "Choose entrance animation."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/admin/include/admin_fields.php:
|
1212 |
msgid "Choose exit animation."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
#: includes/addons/wl_brand.php:80
|
1216 |
-
#: includes/admin/include/admin_field-manager.php:
|
1217 |
msgid "Choose Image"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: includes/admin/include/admin_fields.php:
|
1221 |
msgid "Choose Template"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/admin/include/admin_fields.php:
|
1225 |
msgid "Choose template for manual notification."
|
1226 |
msgstr ""
|
1227 |
|
@@ -1354,14 +1388,14 @@ msgstr ""
|
|
1354 |
msgid "Columns"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: includes/helper-function.php:
|
1358 |
#: includes/addons/product_image_accordion.php:146
|
1359 |
#: includes/addons/product_accordion.php:167
|
1360 |
#: includes/addons/product_curvy.php:202 includes/addons/product_tabs.php:166
|
1361 |
msgid "Comment count"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: includes/helper-function.php:
|
1365 |
#: woolentor-blocks/includes/helper-functions.php:329
|
1366 |
msgid "Compare"
|
1367 |
msgstr ""
|
@@ -1389,14 +1423,14 @@ msgstr ""
|
|
1389 |
msgid "Content Area"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: includes/admin/include/admin_fields.php:
|
1393 |
msgid "Content area background"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
#: includes/addons/product_accordion.php:461
|
1397 |
#: includes/addons/product_curvy.php:596 includes/addons/product_curvy.php:610
|
1398 |
#: includes/addons/wb_ever_compare_table.php:134
|
1399 |
-
#: includes/admin/include/admin_fields.php:
|
1400 |
msgid "Content Color"
|
1401 |
msgstr ""
|
1402 |
|
@@ -1437,11 +1471,19 @@ msgstr ""
|
|
1437 |
msgid "Count"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: includes/admin/include/admin_fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1441 |
msgid "Counter Timer"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: includes/admin/include/admin_fields.php:
|
1445 |
msgid "Counter timer color"
|
1446 |
msgstr ""
|
1447 |
|
@@ -1458,7 +1500,7 @@ msgstr ""
|
|
1458 |
msgid "Create an account?"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: includes/admin/include/admin_fields.php:
|
1462 |
msgid "Cross Icon Color"
|
1463 |
msgstr ""
|
1464 |
|
@@ -1493,11 +1535,12 @@ msgstr ""
|
|
1493 |
msgid "Customer"
|
1494 |
msgstr ""
|
1495 |
|
|
|
1496 |
#: includes/admin/include/admin_fields.php:303
|
1497 |
msgid "Customer Review"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: includes/admin/admin-init.php:
|
1501 |
msgid "Data Fetch successfully!"
|
1502 |
msgstr ""
|
1503 |
|
@@ -1505,7 +1548,7 @@ msgstr ""
|
|
1505 |
msgid "Data Saved successfully!"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: includes/helper-function.php:
|
1509 |
#: includes/addons/wb_archive_product.php:127
|
1510 |
#: includes/addons/product_image_accordion.php:143
|
1511 |
#: includes/addons/wb_product_related.php:77
|
@@ -1514,34 +1557,38 @@ msgstr ""
|
|
1514 |
msgid "Date"
|
1515 |
msgstr ""
|
1516 |
|
|
|
|
|
|
|
|
|
1517 |
#: includes/addons/wl_brand.php:58
|
1518 |
#: includes/admin/include/class.template-manager.php:87
|
1519 |
msgid "Default"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: includes/admin/include/admin_fields.php:
|
1523 |
-
#: includes/admin/include/admin_fields.php:
|
1524 |
-
#: includes/admin/include/admin_fields.php:
|
1525 |
-
#: includes/admin/include/admin_fields.php:
|
1526 |
-
#: includes/admin/include/admin_fields.php:
|
1527 |
-
#: includes/admin/include/admin_fields.php:
|
1528 |
-
#: includes/admin/include/admin_fields.php:
|
1529 |
-
#: includes/admin/include/admin_fields.php:
|
1530 |
-
#: includes/admin/include/admin_fields.php:
|
1531 |
-
#: includes/admin/include/admin_fields.php:
|
1532 |
-
#: includes/admin/include/admin_fields.php:
|
1533 |
-
#: includes/admin/include/admin_fields.php:
|
1534 |
-
#: includes/admin/include/admin_fields.php:
|
1535 |
-
#: includes/admin/include/admin_fields.php:
|
1536 |
-
#: includes/admin/include/admin_fields.php:
|
1537 |
-
#: includes/admin/include/admin_fields.php:
|
1538 |
-
#: includes/admin/include/admin_fields.php:
|
1539 |
-
#: includes/admin/include/admin_fields.php:
|
1540 |
-
#: includes/admin/include/admin_fields.php:
|
1541 |
msgid "Default Color for universal layout."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: includes/helper-function.php:
|
1545 |
msgid "Default sorting"
|
1546 |
msgstr ""
|
1547 |
|
@@ -1568,12 +1615,12 @@ msgstr ""
|
|
1568 |
#: includes/addons/special_day_offer.php:104
|
1569 |
#: includes/addons/special_day_offer.php:443
|
1570 |
#: includes/addons/wb_image_marker.php:361
|
1571 |
-
#: includes/admin/include/admin_fields.php:
|
1572 |
-
#: includes/admin/include/admin_fields.php:
|
1573 |
msgid "Description"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: includes/admin/include/admin_fields.php:
|
1577 |
msgid "Description color"
|
1578 |
msgstr ""
|
1579 |
|
@@ -1601,11 +1648,15 @@ msgstr ""
|
|
1601 |
msgid "Disable all"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: includes/
|
|
|
|
|
|
|
|
|
1605 |
msgid "div"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: includes/admin/include/admin_fields.php:
|
1609 |
msgid "Do not show purchases older than."
|
1610 |
msgstr ""
|
1611 |
|
@@ -1613,17 +1664,17 @@ msgstr ""
|
|
1613 |
msgid "Do you want to individual icon ?"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: includes/admin/include/admin_field-manager.php:
|
1617 |
-
#: includes/admin/include/admin_field-manager.php:
|
1618 |
#: includes/admin/templates/dashboard-welcome.php:19
|
1619 |
msgid "Documentation"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: includes/admin/include/template-library.php:
|
1623 |
msgid "Edit Page"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: includes/admin/include/template-library.php:
|
1627 |
#: includes/admin/include/class.template_cpt.php:34
|
1628 |
msgid "Edit Template"
|
1629 |
msgstr ""
|
@@ -1693,7 +1744,7 @@ msgstr ""
|
|
1693 |
msgid "Empty Rating Color"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: includes/admin/include/admin_fields.php:
|
1697 |
msgid "Empty rating color"
|
1698 |
msgstr ""
|
1699 |
|
@@ -1706,9 +1757,15 @@ msgstr ""
|
|
1706 |
msgid "Empty table text"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/admin/include/admin_fields.php:
|
1710 |
-
|
1711 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1712 |
msgid "Enable / Disable"
|
1713 |
msgstr ""
|
1714 |
|
@@ -1750,15 +1807,24 @@ msgstr ""
|
|
1750 |
msgid "Even Heading Background"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: includes/admin/include/admin_fields.php:
|
|
|
|
|
|
|
|
|
1754 |
msgid "Ever Compare"
|
1755 |
msgstr ""
|
1756 |
|
|
|
1757 |
#: includes/addons/wb_ever_compare_table.php:45
|
1758 |
#: includes/admin/include/class.extension-manager.php:71
|
1759 |
msgid "EverCompare"
|
1760 |
msgstr ""
|
1761 |
|
|
|
|
|
|
|
|
|
1762 |
#: includes/admin/include/class.extension-manager.php:26
|
1763 |
#: includes/admin/include/class.extension-manager.php:27
|
1764 |
msgid "Extension"
|
@@ -1772,78 +1838,79 @@ msgstr ""
|
|
1772 |
msgid "Extra Option"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: includes/admin/include/admin_fields.php:
|
1776 |
msgid "fadeIn"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: includes/admin/include/admin_fields.php:
|
1780 |
msgid "fadeInDown"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: includes/admin/include/admin_fields.php:
|
1784 |
msgid "fadeInDownBig"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: includes/admin/include/admin_fields.php:
|
1788 |
msgid "fadeInLeft"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: includes/admin/include/admin_fields.php:
|
1792 |
msgid "fadeInLeftBig"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: includes/admin/include/admin_fields.php:
|
1796 |
msgid "fadeInRight"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: includes/admin/include/admin_fields.php:
|
1800 |
msgid "fadeInRightBig"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: includes/admin/include/admin_fields.php:
|
1804 |
msgid "fadeInUp"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: includes/admin/include/admin_fields.php:
|
1808 |
msgid "fadeInUpBig"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: includes/admin/include/admin_fields.php:
|
1812 |
msgid "fadeOut"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: includes/admin/include/admin_fields.php:
|
1816 |
msgid "fadeOutDown"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: includes/admin/include/admin_fields.php:
|
1820 |
msgid "fadeOutDownBig"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: includes/admin/include/admin_fields.php:
|
1824 |
msgid "fadeOutLeft"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: includes/admin/include/admin_fields.php:
|
1828 |
msgid "fadeOutLeftBig"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: includes/admin/include/admin_fields.php:
|
1832 |
msgid "fadeOutRight"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: includes/admin/include/admin_fields.php:
|
1836 |
msgid "fadeOutRightBig"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: includes/admin/include/admin_fields.php:
|
1840 |
msgid "fadeOutUp"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: includes/admin/include/admin_fields.php:
|
1844 |
msgid "fadeOutUpBig"
|
1845 |
msgstr ""
|
1846 |
|
|
|
1847 |
#: includes/admin/include/admin_fields.php:352
|
1848 |
msgid "Faq"
|
1849 |
msgstr ""
|
@@ -1852,7 +1919,7 @@ msgstr ""
|
|
1852 |
msgid "FAQ Title"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: includes/helper-function.php:
|
1856 |
msgid "Featured"
|
1857 |
msgstr ""
|
1858 |
|
@@ -1913,7 +1980,7 @@ msgstr ""
|
|
1913 |
msgid "Filter Type"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: includes/admin/include/admin_fields.php:
|
1917 |
msgid "First loading time"
|
1918 |
msgstr ""
|
1919 |
|
@@ -1923,33 +1990,45 @@ msgstr ""
|
|
1923 |
msgid "Five"
|
1924 |
msgstr ""
|
1925 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1926 |
#: includes/addons/wb_wc_multicurrency.php:55
|
1927 |
msgid "Flag only"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: includes/admin/include/admin_fields.php:
|
1931 |
-
#: includes/admin/include/admin_fields.php:
|
1932 |
msgid "flash"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: includes/admin/include/admin_fields.php:
|
1936 |
-
|
|
|
|
|
|
|
|
|
1937 |
msgid "flip"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: includes/admin/include/admin_fields.php:
|
1941 |
msgid "flipInX"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: includes/admin/include/admin_fields.php:
|
1945 |
msgid "flipInY"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: includes/admin/include/admin_fields.php:
|
1949 |
msgid "flipOutX"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: includes/admin/include/admin_fields.php:
|
1953 |
msgid "flipOutY"
|
1954 |
msgstr ""
|
1955 |
|
@@ -2002,7 +2081,7 @@ msgstr ""
|
|
2002 |
msgid "Get Support"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: includes/base.php:
|
2006 |
#: includes/addons/wl_brand.php:225 includes/addons/wl_brand.php:368
|
2007 |
msgid "Go Pro"
|
2008 |
msgstr ""
|
@@ -2011,27 +2090,27 @@ msgstr ""
|
|
2011 |
msgid "Gradient Color"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: includes/helper-function.php:
|
2015 |
msgid "H1"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: includes/helper-function.php:
|
2019 |
msgid "H2"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: includes/helper-function.php:
|
2023 |
msgid "H3"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: includes/helper-function.php:
|
2027 |
msgid "H4"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: includes/helper-function.php:
|
2031 |
msgid "H5"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: includes/helper-function.php:
|
2035 |
msgid "H6"
|
2036 |
msgstr ""
|
2037 |
|
@@ -2070,7 +2149,7 @@ msgstr ""
|
|
2070 |
#: includes/addons/wb_just_table.php:71
|
2071 |
#: includes/addons/wb_wishsuite_table.php:72
|
2072 |
#: includes/addons/wb_ever_compare_table.php:72
|
2073 |
-
#: includes/admin/include/admin_fields.php:
|
2074 |
msgid "Heading Color"
|
2075 |
msgstr ""
|
2076 |
|
@@ -2082,8 +2161,8 @@ msgstr ""
|
|
2082 |
msgid "Heading Typography"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: includes/admin/include/admin_fields.php:
|
2086 |
-
#: includes/admin/include/admin_fields.php:
|
2087 |
msgid "heartBeat"
|
2088 |
msgstr ""
|
2089 |
|
@@ -2098,7 +2177,7 @@ msgstr ""
|
|
2098 |
msgid "Helping Screenshot"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: includes/helper-function.php:
|
2102 |
msgid "here"
|
2103 |
msgstr ""
|
2104 |
|
@@ -2139,8 +2218,8 @@ msgstr ""
|
|
2139 |
msgid "Hierarchical"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: includes/admin/include/admin_fields.php:
|
2143 |
-
#: includes/admin/include/admin_fields.php:
|
2144 |
msgid "hinge"
|
2145 |
msgstr ""
|
2146 |
|
@@ -2152,6 +2231,14 @@ msgstr ""
|
|
2152 |
msgid "Horizontal Position"
|
2153 |
msgstr ""
|
2154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2155 |
#: includes/addons/wl_product_horizontal_filter.php:627
|
2156 |
#: includes/addons/wl_product_horizontal_filter.php:819
|
2157 |
#: includes/addons/special_day_offer.php:720
|
@@ -2201,7 +2288,7 @@ msgstr ""
|
|
2201 |
msgid "Hover Color"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: includes/admin/include/admin_fields.php:
|
2205 |
msgid "How long to keep the notification."
|
2206 |
msgstr ""
|
2207 |
|
@@ -2218,6 +2305,11 @@ msgstr ""
|
|
2218 |
msgid "https://your-link.com"
|
2219 |
msgstr ""
|
2220 |
|
|
|
|
|
|
|
|
|
|
|
2221 |
#: includes/addons/wl_faq.php:609 includes/addons/wl_store_features.php:64
|
2222 |
#: includes/addons/wl_store_features.php:80
|
2223 |
#: includes/addons/wl_product_filter.php:110
|
@@ -2259,7 +2351,7 @@ msgstr ""
|
|
2259 |
msgid "Icon Width"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: includes/helper-function.php:
|
2263 |
#: includes/addons/product_image_accordion.php:142
|
2264 |
#: includes/addons/product_accordion.php:163
|
2265 |
#: includes/addons/product_curvy.php:198 includes/addons/product_tabs.php:162
|
@@ -2297,19 +2389,20 @@ msgstr ""
|
|
2297 |
msgid "Image Area Border Color"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: includes/admin/include/admin_fields.php:
|
2301 |
msgid "Image Left"
|
2302 |
msgstr ""
|
2303 |
|
|
|
2304 |
#: includes/admin/include/admin_fields.php:310
|
2305 |
msgid "Image Marker"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: includes/admin/include/admin_fields.php:
|
2309 |
msgid "Image Position"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: includes/admin/include/admin_fields.php:
|
2313 |
msgid "Image Right"
|
2314 |
msgstr ""
|
2315 |
|
@@ -2362,18 +2455,18 @@ msgstr ""
|
|
2362 |
msgid "Insert into Template"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: includes/base.php:
|
2366 |
msgid "Install Elementor"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: includes/admin/include/template-library.php:
|
2370 |
-
#: includes/admin/include/template-library.php:
|
2371 |
#: includes/admin/include/class.extension-manager.php:188
|
2372 |
#: includes/admin/include/class.extension-manager.php:255
|
2373 |
msgid "Install Now"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: includes/base.php:
|
2377 |
msgid "Install WooCommerce"
|
2378 |
msgstr ""
|
2379 |
|
@@ -2400,12 +2493,12 @@ msgstr ""
|
|
2400 |
msgid "Item Spacing"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: includes/admin/include/admin_fields.php:
|
2404 |
msgid "jackInTheBox"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: includes/admin/include/admin_fields.php:
|
2408 |
-
#: includes/admin/include/admin_fields.php:
|
2409 |
msgid "jello"
|
2410 |
msgstr ""
|
2411 |
|
@@ -2420,8 +2513,8 @@ msgstr ""
|
|
2420 |
msgid "Justified"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: includes/addons/wb_just_table.php:44
|
2424 |
-
#: includes/admin/include/admin_fields.php:
|
2425 |
msgid "JustTable"
|
2426 |
msgstr ""
|
2427 |
|
@@ -2515,15 +2608,15 @@ msgstr ""
|
|
2515 |
msgid "Left"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: includes/admin/include/admin_fields.php:
|
2519 |
msgid "lightSpeedIn"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: includes/admin/include/admin_fields.php:
|
2523 |
msgid "lightSpeedOut"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: includes/admin/include/admin_fields.php:
|
2527 |
msgid "Limit"
|
2528 |
msgstr ""
|
2529 |
|
@@ -2544,23 +2637,23 @@ msgstr ""
|
|
2544 |
msgid "List Item"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: includes/admin/include/admin_fields.php:
|
2548 |
msgid "List View Button background color"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: includes/admin/include/admin_fields.php:
|
2552 |
msgid "List View Button color"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: includes/admin/include/admin_fields.php:
|
2556 |
msgid "List View Button hover background color"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: includes/admin/include/admin_fields.php:
|
2560 |
msgid "List View Button Hover color"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: includes/admin/include/admin_fields.php:
|
2564 |
msgid "Load Products in Elementor Addons"
|
2565 |
msgstr ""
|
2566 |
|
@@ -2572,11 +2665,11 @@ msgstr ""
|
|
2572 |
msgid "Login"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: includes/admin/include/admin_fields.php:
|
2576 |
msgid "Login Form"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: includes/admin/include/admin_fields.php:
|
2580 |
msgid "Logo"
|
2581 |
msgstr ""
|
2582 |
|
@@ -2604,7 +2697,7 @@ msgstr ""
|
|
2604 |
msgid "Main Video Area"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: includes/admin/include/admin_fields.php:
|
2608 |
msgid "Manage show all product from each order."
|
2609 |
msgstr ""
|
2610 |
|
@@ -2617,7 +2710,7 @@ msgstr ""
|
|
2617 |
msgid "Managing Director"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: includes/admin/include/admin_fields.php:
|
2621 |
msgid "Manual"
|
2622 |
msgstr ""
|
2623 |
|
@@ -2737,6 +2830,10 @@ msgstr ""
|
|
2737 |
msgid "Meta"
|
2738 |
msgstr ""
|
2739 |
|
|
|
|
|
|
|
|
|
2740 |
#: includes/addons/wl_product_horizontal_filter.php:137
|
2741 |
msgid "Min Price"
|
2742 |
msgstr ""
|
@@ -2745,7 +2842,7 @@ msgstr ""
|
|
2745 |
msgid "Min price"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: includes/admin/include/admin_fields.php:
|
2749 |
msgid "Mini Cart"
|
2750 |
msgstr ""
|
2751 |
|
@@ -2776,7 +2873,7 @@ msgstr ""
|
|
2776 |
msgid "More Details"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: includes/admin/include/admin_fields.php:
|
2780 |
#: includes/admin/include/class.extension-manager.php:91
|
2781 |
msgid "Multi Currency"
|
2782 |
msgstr ""
|
@@ -2785,7 +2882,7 @@ msgstr ""
|
|
2785 |
msgid "Multi Currency Pro for WooCommerce"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: includes/admin/include/admin_fields.php:
|
2789 |
msgid "Multi Step Checkout"
|
2790 |
msgstr ""
|
2791 |
|
@@ -2808,19 +2905,19 @@ msgstr ""
|
|
2808 |
msgid "My Account"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: includes/admin/include/admin_fields.php:
|
2812 |
msgid "My Account Address"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: includes/admin/include/admin_fields.php:
|
2816 |
msgid "My Account Dashboard"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: includes/admin/include/admin_fields.php:
|
2820 |
msgid "My Account Download"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: includes/admin/include/admin_fields.php:
|
2824 |
msgid "My Account Edit"
|
2825 |
msgstr ""
|
2826 |
|
@@ -2828,11 +2925,15 @@ msgstr ""
|
|
2828 |
msgid "My Account Login page Template"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: includes/admin/include/admin_fields.php:
|
2832 |
msgid "My Account Logout"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: includes/admin/include/admin_fields.php:
|
|
|
|
|
|
|
|
|
2836 |
msgid "My Account Order"
|
2837 |
msgstr ""
|
2838 |
|
@@ -2844,7 +2945,7 @@ msgstr ""
|
|
2844 |
msgid "N/A"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: includes/helper-function.php:
|
2848 |
#: includes/addons/wl_testimonial.php:572
|
2849 |
#: includes/addons/product_image_accordion.php:144
|
2850 |
#: includes/addons/product_accordion.php:165
|
@@ -2913,10 +3014,14 @@ msgstr ""
|
|
2913 |
msgid "No Gutters"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: includes/modules/shopify-like-checkout/class.shopify-like-checkout.php:
|
2917 |
msgid "No naughty business please!"
|
2918 |
msgstr ""
|
2919 |
|
|
|
|
|
|
|
|
|
2920 |
#: classes/class.default_data.php:267
|
2921 |
msgid "No Rating Available"
|
2922 |
msgstr ""
|
@@ -2950,7 +3055,7 @@ msgstr ""
|
|
2950 |
msgid "Nonce Varification Faild !"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: includes/helper-function.php:
|
2954 |
#: includes/addons/product_image_accordion.php:141
|
2955 |
#: includes/addons/product_accordion.php:162
|
2956 |
#: includes/addons/product_curvy.php:197
|
@@ -2999,15 +3104,15 @@ msgstr ""
|
|
2999 |
msgid "Nothing Found"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: includes/admin/include/admin_fields.php:
|
3003 |
msgid "Notification Content Type"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: includes/admin/include/admin_fields.php:
|
3007 |
msgid "Notification showing time"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: includes/admin/include/admin_fields.php:
|
3011 |
msgid "Notification Timing"
|
3012 |
msgstr ""
|
3013 |
|
@@ -3048,6 +3153,10 @@ msgstr ""
|
|
3048 |
msgid "One"
|
3049 |
msgstr ""
|
3050 |
|
|
|
|
|
|
|
|
|
3051 |
#: includes/admin/include/admin_fields.php:331
|
3052 |
msgid "One page slider"
|
3053 |
msgstr ""
|
@@ -3102,7 +3211,7 @@ msgstr ""
|
|
3102 |
msgid "Order by"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: includes/admin/include/admin_fields.php:
|
3106 |
msgid "Order Upto"
|
3107 |
msgstr ""
|
3108 |
|
@@ -3113,11 +3222,15 @@ msgid ""
|
|
3113 |
"the pro version."
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: includes/helper-function.php:
|
3117 |
msgid "Out of stock"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: includes/
|
|
|
|
|
|
|
|
|
3121 |
msgid "p"
|
3122 |
msgstr ""
|
3123 |
|
@@ -3183,6 +3296,10 @@ msgstr ""
|
|
3183 |
msgid "Parent Item:"
|
3184 |
msgstr ""
|
3185 |
|
|
|
|
|
|
|
|
|
3186 |
#: includes/modules/shopify-like-checkout/templates/form-login.php:28
|
3187 |
#: includes/modules/shopify-like-checkout/templates/form-login.php:29
|
3188 |
msgid "Password"
|
@@ -3197,16 +3314,20 @@ msgstr ""
|
|
3197 |
msgid "Payment"
|
3198 |
msgstr ""
|
3199 |
|
|
|
|
|
|
|
|
|
3200 |
#: includes/addons/wb_customer_review.php:146
|
3201 |
msgid "Peter Rose"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: includes/base.php:
|
3205 |
msgid "PHP"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: includes/admin/include/admin_fields.php:
|
3209 |
-
#: includes/admin/include/admin_fields.php:
|
3210 |
#: includes/modules/shopify-like-checkout/templates/form-checkout.php:167
|
3211 |
msgid "Place order"
|
3212 |
msgstr ""
|
@@ -3252,11 +3373,11 @@ msgstr ""
|
|
3252 |
msgid "Please Select Filter Type"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: includes/admin/include/template-library.php:
|
3256 |
msgid "Plugin Not Found"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
-
#: includes/admin/include/template-library.php:
|
3260 |
msgid "Plugin Successfully Activated"
|
3261 |
msgstr ""
|
3262 |
|
@@ -3271,11 +3392,11 @@ msgstr ""
|
|
3271 |
#: includes/addons/wb_archive_product.php:891
|
3272 |
#: includes/addons/wl_category_grid.php:681
|
3273 |
#: includes/addons/wl_category_grid.php:766
|
3274 |
-
#: includes/admin/include/admin_fields.php:
|
3275 |
msgid "Position"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: includes/admin/include/admin_fields.php:
|
3279 |
msgid "Post Duplicator Condition"
|
3280 |
msgstr ""
|
3281 |
|
@@ -3294,8 +3415,8 @@ msgid "Template Builder"
|
|
3294 |
msgstr ""
|
3295 |
|
3296 |
#: classes/class.assest_management.php:346
|
3297 |
-
#: includes/admin/include/admin_field-manager.php:
|
3298 |
-
#: includes/admin/include/admin_field-manager.php:
|
3299 |
msgid "Preview"
|
3300 |
msgstr ""
|
3301 |
|
@@ -3306,7 +3427,7 @@ msgstr ""
|
|
3306 |
#: includes/addons/wb_archive_product.php:402
|
3307 |
#: includes/addons/wb_product_related.php:79
|
3308 |
#: includes/addons/wl_product_filter.php:40
|
3309 |
-
#: includes/admin/include/admin_fields.php:
|
3310 |
msgid "Price"
|
3311 |
msgstr ""
|
3312 |
|
@@ -3351,9 +3472,9 @@ msgstr ""
|
|
3351 |
|
3352 |
#: classes/class.assest_management.php:334
|
3353 |
#: includes/admin/include/class.template-manager.php:374
|
3354 |
-
#: includes/admin/include/admin_field-manager.php:
|
3355 |
-
#: includes/admin/include/admin_field-manager.php:
|
3356 |
-
#: includes/admin/include/admin_field-manager.php:
|
3357 |
#: includes/admin/include/templates_list.php:53
|
3358 |
msgid "Pro"
|
3359 |
msgstr ""
|
@@ -3366,11 +3487,19 @@ msgstr ""
|
|
3366 |
msgid "Producing Perfume From Home"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#:
|
|
|
|
|
|
|
|
|
3370 |
#: woolentor-blocks/includes/helper-functions.php:314
|
3371 |
msgid "Product Added"
|
3372 |
msgstr ""
|
3373 |
|
|
|
|
|
|
|
|
|
3374 |
#: includes/admin/include/admin_fields.php:366
|
3375 |
msgid "Product Archive"
|
3376 |
msgstr ""
|
@@ -3383,10 +3512,14 @@ msgstr ""
|
|
3383 |
msgid "Product Archive Page Template"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: includes/custom-metabox.php:7 includes/admin/include/admin_fields.php:
|
3387 |
msgid "Product Badge"
|
3388 |
msgstr ""
|
3389 |
|
|
|
|
|
|
|
|
|
3390 |
#: includes/admin/include/admin_fields.php:545
|
3391 |
msgid "Product Cart Table"
|
3392 |
msgstr ""
|
@@ -3431,15 +3564,24 @@ msgstr ""
|
|
3431 |
msgid "Product Cross Sell"
|
3432 |
msgstr ""
|
3433 |
|
|
|
|
|
|
|
|
|
3434 |
#: includes/admin/include/admin_fields.php:415
|
3435 |
msgid "Product Data Tab"
|
3436 |
msgstr ""
|
3437 |
|
|
|
|
|
|
|
|
|
|
|
3438 |
#: includes/admin/include/admin_fields.php:422
|
3439 |
msgid "Product Description"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: includes/admin/include/admin_fields.php:
|
3443 |
msgid "Product Details Page"
|
3444 |
msgstr ""
|
3445 |
|
@@ -3447,6 +3589,7 @@ msgstr ""
|
|
3447 |
msgid "Product Expanding Grid"
|
3448 |
msgstr ""
|
3449 |
|
|
|
3450 |
#: includes/admin/include/admin_fields.php:373
|
3451 |
msgid "Product Filter"
|
3452 |
msgstr ""
|
@@ -3473,10 +3616,15 @@ msgstr ""
|
|
3473 |
msgid "Product IDs"
|
3474 |
msgstr ""
|
3475 |
|
|
|
3476 |
#: includes/admin/include/admin_fields.php:457
|
3477 |
msgid "Product Image"
|
3478 |
msgstr ""
|
3479 |
|
|
|
|
|
|
|
|
|
3480 |
#: includes/addons/product_tabs.php:894
|
3481 |
msgid "Product Image Area Padding"
|
3482 |
msgstr ""
|
@@ -3497,15 +3645,23 @@ msgstr ""
|
|
3497 |
msgid "Product Limit"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#:
|
3501 |
-
msgid "Product Meta
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: includes/
|
3505 |
-
msgid "Product
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3509 |
#: includes/addons/product_image_accordion.php:407
|
3510 |
#: includes/addons/product_accordion.php:485
|
3511 |
#: includes/addons/product_curvy.php:478 includes/addons/product_tabs.php:1000
|
@@ -3513,7 +3669,11 @@ msgstr ""
|
|
3513 |
msgid "Product Price"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#:
|
|
|
|
|
|
|
|
|
3517 |
msgid "Product Query Option"
|
3518 |
msgstr ""
|
3519 |
|
@@ -3524,12 +3684,20 @@ msgstr ""
|
|
3524 |
msgid "Product Rating"
|
3525 |
msgstr ""
|
3526 |
|
|
|
|
|
|
|
|
|
3527 |
#: includes/addons/wb_product_reviews.php:39
|
3528 |
#: includes/admin/include/admin_fields.php:450
|
3529 |
msgid "Product Reviews"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#:
|
|
|
|
|
|
|
|
|
3533 |
msgid "Product Sale Schedule"
|
3534 |
msgstr ""
|
3535 |
|
@@ -3545,18 +3713,26 @@ msgstr ""
|
|
3545 |
msgid "Product Short Description"
|
3546 |
msgstr ""
|
3547 |
|
|
|
|
|
|
|
|
|
3548 |
#: includes/addons/product_tabs.php:204
|
3549 |
msgid "Product Slider"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: includes/admin/include/admin_fields.php:
|
3553 |
msgid "Product Social Share"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: includes/admin/include/admin_fields.php:
|
3557 |
msgid "Product sticky Add to cart"
|
3558 |
msgstr ""
|
3559 |
|
|
|
|
|
|
|
|
|
3560 |
#: includes/admin/include/admin_fields.php:478
|
3561 |
msgid "Product Stock Status"
|
3562 |
msgstr ""
|
@@ -3565,6 +3741,18 @@ msgstr ""
|
|
3565 |
msgid "Product Style"
|
3566 |
msgstr ""
|
3567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3568 |
#: includes/addons/product_tabs.php:194
|
3569 |
#: includes/admin/include/admin_fields.php:250
|
3570 |
msgid "Product Tab"
|
@@ -3574,6 +3762,11 @@ msgstr ""
|
|
3574 |
msgid "Product tab menu background"
|
3575 |
msgstr ""
|
3576 |
|
|
|
|
|
|
|
|
|
|
|
3577 |
#: includes/addons/product_image_accordion.php:353
|
3578 |
#: includes/addons/product_curvy.php:406
|
3579 |
#: includes/addons/wb_product_title.php:41
|
@@ -3582,10 +3775,12 @@ msgstr ""
|
|
3582 |
msgid "Product Title"
|
3583 |
msgstr ""
|
3584 |
|
|
|
3585 |
#: includes/admin/include/admin_fields.php:471
|
3586 |
msgid "Product Upsell"
|
3587 |
msgstr ""
|
3588 |
|
|
|
3589 |
#: includes/admin/include/admin_fields.php:464
|
3590 |
msgid "Product Video Gallery"
|
3591 |
msgstr ""
|
@@ -3598,7 +3793,7 @@ msgid ""
|
|
3598 |
"href=\"%s\" target=\"_blank\">Purchase WooLentor Pro</a>"
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: includes/admin/include/admin_fields.php:
|
3602 |
msgid "Product Zoom"
|
3603 |
msgstr ""
|
3604 |
|
@@ -3610,12 +3805,12 @@ msgstr ""
|
|
3610 |
msgid "Products reviews"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
-
#: includes/base.php:
|
3614 |
msgid "Promo Banner"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: includes/admin/include/admin_fields.php:
|
3618 |
-
#: includes/admin/include/admin_fields.php:
|
3619 |
msgid "pulse"
|
3620 |
msgstr ""
|
3621 |
|
@@ -3638,7 +3833,7 @@ msgstr ""
|
|
3638 |
msgid "Query Settings"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#: includes/admin/include/admin_fields.php:
|
3642 |
msgid "Quick Action Button"
|
3643 |
msgstr ""
|
3644 |
|
@@ -3646,7 +3841,7 @@ msgstr ""
|
|
3646 |
msgid "Quick View Template"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
-
#: includes/helper-function.php:
|
3650 |
#: includes/addons/wb_archive_product.php:132
|
3651 |
#: includes/addons/product_image_accordion.php:147
|
3652 |
#: includes/addons/wb_product_related.php:82
|
@@ -3671,7 +3866,7 @@ msgstr ""
|
|
3671 |
#: includes/addons/wb_archive_product.php:478
|
3672 |
#: includes/addons/wb_product_related.php:81
|
3673 |
#: includes/addons/wb_customer_review.php:557
|
3674 |
-
#: includes/admin/include/admin_fields.php:
|
3675 |
msgid "Rating"
|
3676 |
msgstr ""
|
3677 |
|
@@ -3681,7 +3876,7 @@ msgstr ""
|
|
3681 |
msgid "Rating Color"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: includes/admin/include/admin_fields.php:
|
3685 |
msgid "Rating color"
|
3686 |
msgstr ""
|
3687 |
|
@@ -3697,7 +3892,7 @@ msgstr ""
|
|
3697 |
msgid "Rating Star Color"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
-
#: includes/admin/include/admin_fields.php:
|
3701 |
msgid "Real"
|
3702 |
msgstr ""
|
3703 |
|
@@ -3712,7 +3907,7 @@ msgstr ""
|
|
3712 |
msgid "Redirect Custom URL"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
#: includes/admin/include/admin_fields.php:
|
3716 |
msgid "Registration Form"
|
3717 |
msgstr ""
|
3718 |
|
@@ -3726,14 +3921,15 @@ msgstr ""
|
|
3726 |
msgid "Regular Price Color"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: includes/admin/include/admin_fields.php:
|
3730 |
msgid "Regular price color"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: includes/admin/include/admin_fields.php:
|
3734 |
msgid "Related Pro..( Custom )"
|
3735 |
msgstr ""
|
3736 |
|
|
|
3737 |
#: includes/addons/wb_product_related.php:41
|
3738 |
#: includes/admin/include/admin_fields.php:394
|
3739 |
msgid "Related Product"
|
@@ -3743,7 +3939,7 @@ msgstr ""
|
|
3743 |
msgid "Remember me"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: includes/admin/include/admin_fields.php:
|
3747 |
msgid "Remove"
|
3748 |
msgstr ""
|
3749 |
|
@@ -3751,10 +3947,14 @@ msgstr ""
|
|
3751 |
msgid "Remove featured image"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: includes/admin/include/admin_fields.php:
|
3755 |
msgid "Rename Label"
|
3756 |
msgstr ""
|
3757 |
|
|
|
|
|
|
|
|
|
3758 |
#: includes/admin/templates/dashboard-welcome.php:54
|
3759 |
msgid "Request"
|
3760 |
msgstr ""
|
@@ -3776,8 +3976,8 @@ msgstr ""
|
|
3776 |
msgid "Review Type"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: includes/admin/include/admin_fields.php:
|
3780 |
-
#: includes/admin/include/admin_fields.php:
|
3781 |
msgid "Reviews"
|
3782 |
msgstr ""
|
3783 |
|
@@ -3802,51 +4002,51 @@ msgstr ""
|
|
3802 |
msgid "Right"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: includes/admin/include/admin_fields.php:
|
3806 |
msgid "rollIn"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: includes/admin/include/admin_fields.php:
|
3810 |
msgid "rollOut"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: includes/admin/include/admin_fields.php:
|
3814 |
msgid "rotateIn"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: includes/admin/include/admin_fields.php:
|
3818 |
msgid "rotateInDownLeft"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: includes/admin/include/admin_fields.php:
|
3822 |
msgid "rotateInDownRight"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
-
#: includes/admin/include/admin_fields.php:
|
3826 |
msgid "rotateInUpLeft"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#: includes/admin/include/admin_fields.php:
|
3830 |
msgid "rotateInUpRight"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: includes/admin/include/admin_fields.php:
|
3834 |
msgid "rotateOut"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: includes/admin/include/admin_fields.php:
|
3838 |
msgid "rotateOutDownLeft"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: includes/admin/include/admin_fields.php:
|
3842 |
msgid "rotateOutDownRight"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: includes/admin/include/admin_fields.php:
|
3846 |
msgid "rotateOutUpLeft"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: includes/admin/include/admin_fields.php:
|
3850 |
msgid "rotateOutUpRight"
|
3851 |
msgstr ""
|
3852 |
|
@@ -3855,8 +4055,8 @@ msgstr ""
|
|
3855 |
msgid "Rows"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: includes/admin/include/admin_fields.php:
|
3859 |
-
#: includes/admin/include/admin_fields.php:
|
3860 |
msgid "rubberBand"
|
3861 |
msgstr ""
|
3862 |
|
@@ -3868,6 +4068,10 @@ msgstr ""
|
|
3868 |
msgid "Ruth Pierce"
|
3869 |
msgstr ""
|
3870 |
|
|
|
|
|
|
|
|
|
3871 |
#: includes/addons/wb_archive_product.php:801
|
3872 |
msgid "Sale Flash"
|
3873 |
msgstr ""
|
@@ -3882,7 +4086,7 @@ msgstr ""
|
|
3882 |
msgid "Sale Price Color"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: includes/admin/include/admin_fields.php:
|
3886 |
msgid "Sale price color"
|
3887 |
msgstr ""
|
3888 |
|
@@ -3896,11 +4100,11 @@ msgstr ""
|
|
3896 |
msgid "Sale Tag"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: includes/helper-function.php:
|
3900 |
msgid "Sale!"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: includes/admin/include/admin_fields.php:
|
3904 |
msgid "Sales Notification"
|
3905 |
msgstr ""
|
3906 |
|
@@ -3950,6 +4154,10 @@ msgstr ""
|
|
3950 |
msgid "Search.."
|
3951 |
msgstr ""
|
3952 |
|
|
|
|
|
|
|
|
|
3953 |
#: includes/helper-function.php:259
|
3954 |
msgid "Select"
|
3955 |
msgstr ""
|
@@ -3995,6 +4203,10 @@ msgstr ""
|
|
3995 |
msgid "Select a template for the Thank you page layout"
|
3996 |
msgstr ""
|
3997 |
|
|
|
|
|
|
|
|
|
3998 |
#: includes/addons/wl_category_grid.php:80
|
3999 |
#: includes/addons/wl_category_grid.php:93
|
4000 |
msgid "Select categories"
|
@@ -4004,15 +4216,19 @@ msgstr ""
|
|
4004 |
msgid "Select Content Source"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
-
#: includes/admin/include/admin_fields.php:
|
4008 |
msgid "Select Content Type"
|
4009 |
msgstr ""
|
4010 |
|
|
|
|
|
|
|
|
|
4011 |
#: includes/addons/wl_category.php:50 includes/addons/wl_brand.php:54
|
4012 |
msgid "Select Layout"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
-
#: includes/admin/include/admin_fields.php:
|
4016 |
msgid "Select Menu"
|
4017 |
msgstr ""
|
4018 |
|
@@ -4022,6 +4238,10 @@ msgstr ""
|
|
4022 |
msgid "Select Product"
|
4023 |
msgstr ""
|
4024 |
|
|
|
|
|
|
|
|
|
4025 |
#: includes/addons/wl_category_grid.php:47
|
4026 |
msgid "Select Style"
|
4027 |
msgstr ""
|
@@ -4034,6 +4254,10 @@ msgstr ""
|
|
4034 |
msgid "Select Template"
|
4035 |
msgstr ""
|
4036 |
|
|
|
|
|
|
|
|
|
4037 |
#: includes/addons/wb_product_suggest_price.php:85
|
4038 |
msgid "Send To Mail"
|
4039 |
msgstr ""
|
@@ -4046,47 +4270,47 @@ msgstr ""
|
|
4046 |
msgid "Set featured image"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
-
#: includes/admin/include/admin_fields.php:
|
4050 |
msgid "Set the background color of the notification."
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
#: includes/admin/include/admin_fields.php:
|
4054 |
msgid "Set the content color of the notification."
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#: includes/admin/include/admin_fields.php:
|
4058 |
msgid "Set the cross icon color of the notification."
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#: includes/admin/include/admin_fields.php:
|
4062 |
msgid "Set the heading color of the notification."
|
4063 |
msgstr ""
|
4064 |
|
4065 |
-
#: includes/admin/include/admin_fields.php:
|
4066 |
msgid "Set the image position of the notification."
|
4067 |
msgstr ""
|
4068 |
|
4069 |
-
#: includes/helper-function.php:
|
4070 |
msgid "Set the initial stock amount from"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
-
#: includes/admin/include/admin_fields.php:
|
4074 |
msgid "Set the interval time between notifications."
|
4075 |
msgstr ""
|
4076 |
|
4077 |
-
#: includes/admin/include/admin_fields.php:
|
4078 |
msgid "Set the number of notifications to display."
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#: includes/admin/include/admin_fields.php:
|
4082 |
msgid "Set the number of products to load in Elementor Addons"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
-
#: includes/admin/include/admin_fields.php:
|
4086 |
msgid "Set the position of the Sales Notification Position on frontend."
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#: includes/base.php:
|
4090 |
#: includes/admin/admin-init.php:97
|
4091 |
msgid "Settings"
|
4092 |
msgstr ""
|
@@ -4097,8 +4321,8 @@ msgstr ""
|
|
4097 |
msgid "Seven"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: includes/admin/include/admin_fields.php:
|
4101 |
-
#: includes/admin/include/admin_fields.php:
|
4102 |
msgid "shake"
|
4103 |
msgstr ""
|
4104 |
|
@@ -4106,6 +4330,7 @@ msgstr ""
|
|
4106 |
msgid "Ship to a different address?"
|
4107 |
msgstr ""
|
4108 |
|
|
|
4109 |
#: includes/modules/shopify-like-checkout/templates/form-checkout.php:56
|
4110 |
msgid "Shipping"
|
4111 |
msgstr ""
|
@@ -4139,15 +4364,15 @@ msgstr ""
|
|
4139 |
msgid "Shop now"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: includes/admin/include/admin_fields.php:
|
4143 |
msgid "Shop Page"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: includes/admin/include/admin_fields.php:
|
4147 |
msgid "Shopify Style Checkout"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: includes/admin/include/admin_fields.php:
|
4151 |
msgid "Short Description"
|
4152 |
msgstr ""
|
4153 |
|
@@ -4172,6 +4397,10 @@ msgstr ""
|
|
4172 |
msgid "Show Count"
|
4173 |
msgstr ""
|
4174 |
|
|
|
|
|
|
|
|
|
4175 |
#: includes/addons/wl_product_horizontal_filter.php:233
|
4176 |
msgid "Show Filter Button"
|
4177 |
msgstr ""
|
@@ -4196,11 +4425,11 @@ msgstr ""
|
|
4196 |
msgid "Show Result Count"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: includes/admin/include/admin_fields.php:
|
4200 |
msgid "Show/Display all products from each order"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: includes/admin/include/admin_fields.php:
|
4204 |
msgid "Side Mini Cart"
|
4205 |
msgstr ""
|
4206 |
|
@@ -4219,7 +4448,7 @@ msgstr ""
|
|
4219 |
msgid "Single Category"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
-
#: includes/admin/include/admin_fields.php:
|
4223 |
msgid "Single Product Ajax Add To Cart"
|
4224 |
msgstr ""
|
4225 |
|
@@ -4242,35 +4471,35 @@ msgstr ""
|
|
4242 |
msgid "SKU:"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: includes/admin/include/admin_fields.php:
|
4246 |
msgid "slideInDown"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#: includes/admin/include/admin_fields.php:
|
4250 |
msgid "slideInLeft"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: includes/admin/include/admin_fields.php:
|
4254 |
msgid "slideInRight"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: includes/admin/include/admin_fields.php:
|
4258 |
msgid "slideInUp"
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: includes/admin/include/admin_fields.php:
|
4262 |
msgid "slideOutDown"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: includes/admin/include/admin_fields.php:
|
4266 |
msgid "slideOutLeft"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: includes/admin/include/admin_fields.php:
|
4270 |
msgid "slideOutRight"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: includes/admin/include/admin_fields.php:
|
4274 |
msgid "slideOutUp"
|
4275 |
msgstr ""
|
4276 |
|
@@ -4341,7 +4570,7 @@ msgstr ""
|
|
4341 |
msgid "Slider Option"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: includes/helper-function.php:
|
4345 |
msgid "Sold"
|
4346 |
msgstr ""
|
4347 |
|
@@ -4364,7 +4593,7 @@ msgid ""
|
|
4364 |
"arrangements."
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: includes/admin/include/template-library.php:
|
4368 |
msgid "Sorry, you are not allowed to install themes on this site."
|
4369 |
msgstr ""
|
4370 |
|
@@ -4375,23 +4604,23 @@ msgstr ""
|
|
4375 |
msgid "Sort By"
|
4376 |
msgstr ""
|
4377 |
|
4378 |
-
#: includes/helper-function.php:
|
4379 |
msgid "Sort by average rating"
|
4380 |
msgstr ""
|
4381 |
|
4382 |
-
#: includes/helper-function.php:
|
4383 |
msgid "Sort by latest"
|
4384 |
msgstr ""
|
4385 |
|
4386 |
-
#: includes/helper-function.php:
|
4387 |
msgid "Sort by popularity"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
-
#: includes/helper-function.php:
|
4391 |
msgid "Sort by price: high to low"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: includes/helper-function.php:
|
4395 |
msgid "Sort by price: low to high"
|
4396 |
msgstr ""
|
4397 |
|
@@ -4405,10 +4634,11 @@ msgstr ""
|
|
4405 |
msgid "Spacing"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
-
#: includes/helper-function.php:
|
4409 |
msgid "span"
|
4410 |
msgstr ""
|
4411 |
|
|
|
4412 |
#: includes/admin/include/admin_fields.php:296
|
4413 |
msgid "Special Day Offer"
|
4414 |
msgstr ""
|
@@ -4425,7 +4655,8 @@ msgstr ""
|
|
4425 |
msgid "Start from $100"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: includes/admin/include/admin_fields.php:
|
|
|
4429 |
msgid "Sticky Add to Cart on Single Product page"
|
4430 |
msgstr ""
|
4431 |
|
@@ -4433,7 +4664,7 @@ msgstr ""
|
|
4433 |
msgid "Stock availability does not exist this product."
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: includes/admin/include/admin_fields.php:
|
4437 |
msgid "Stock Progress Bar"
|
4438 |
msgstr ""
|
4439 |
|
@@ -4441,6 +4672,7 @@ msgstr ""
|
|
4441 |
msgid "Store Feature"
|
4442 |
msgstr ""
|
4443 |
|
|
|
4444 |
#: includes/admin/include/admin_fields.php:345
|
4445 |
msgid "Store Features"
|
4446 |
msgstr ""
|
@@ -4461,7 +4693,7 @@ msgstr ""
|
|
4461 |
#: includes/addons/wb_product_stock.php:40 includes/addons/product_tabs.php:854
|
4462 |
#: includes/addons/add_banner.php:50 includes/addons/add_banner.php:139
|
4463 |
#: includes/admin/include/admin_fields.php:57
|
4464 |
-
#: includes/admin/include/admin_fields.php:
|
4465 |
msgid "Style"
|
4466 |
msgstr ""
|
4467 |
|
@@ -4562,8 +4794,8 @@ msgstr ""
|
|
4562 |
msgid "Swatchly"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: includes/admin/include/admin_fields.php:
|
4566 |
-
#: includes/admin/include/admin_fields.php:
|
4567 |
msgid "swing"
|
4568 |
msgstr ""
|
4569 |
|
@@ -4605,8 +4837,8 @@ msgstr ""
|
|
4605 |
msgid "Tablet Resolution"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: includes/admin/include/admin_fields.php:
|
4609 |
-
#: includes/admin/include/admin_fields.php:
|
4610 |
msgid "tada"
|
4611 |
msgstr ""
|
4612 |
|
@@ -4658,7 +4890,7 @@ msgid "Template Settings"
|
|
4658 |
msgstr ""
|
4659 |
|
4660 |
#: includes/admin/include/class.template_cpt.php:30
|
4661 |
-
#: includes/admin/include/admin_fields.php:
|
4662 |
#: includes/admin/include/templates_list.php:33
|
4663 |
msgid "Templates"
|
4664 |
msgstr ""
|
@@ -4677,7 +4909,7 @@ msgstr ""
|
|
4677 |
msgid "Ten"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
-
#: includes/addons/wl_testimonial.php:41
|
4681 |
#: includes/admin/include/admin_fields.php:338
|
4682 |
msgid "Testimonial"
|
4683 |
msgstr ""
|
@@ -4707,7 +4939,7 @@ msgstr ""
|
|
4707 |
msgid "Textarea"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
-
#: includes/admin/include/admin_fields.php:
|
4711 |
msgid "Thank You Cus.. Address"
|
4712 |
msgstr ""
|
4713 |
|
@@ -4716,11 +4948,11 @@ msgstr ""
|
|
4716 |
msgid "Thank you for contacting with us"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
-
#: includes/admin/include/admin_fields.php:
|
4720 |
msgid "Thank You Order"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
-
#: includes/admin/include/admin_fields.php:
|
4724 |
msgid "Thank You Order Details"
|
4725 |
msgstr ""
|
4726 |
|
@@ -4732,6 +4964,10 @@ msgstr ""
|
|
4732 |
msgid "The Basics Of Western Astrology Explained"
|
4733 |
msgstr ""
|
4734 |
|
|
|
|
|
|
|
|
|
4735 |
#: includes/addons/wl_testimonial.php:459 includes/addons/product_tabs.php:604
|
4736 |
#: includes/addons/wl_category_grid.php:425
|
4737 |
msgid "The resolution to mobile."
|
@@ -4748,7 +4984,7 @@ msgid ""
|
|
4748 |
"WordPress."
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: includes/admin/include/template-library.php:
|
4752 |
msgid "Theme Activated"
|
4753 |
msgstr ""
|
4754 |
|
@@ -4777,11 +5013,11 @@ msgstr ""
|
|
4777 |
msgid "Thumbnails Position"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
-
#: includes/admin/include/admin_fields.php:
|
4781 |
msgid "Time Interval"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
-
#: includes/helper-function.php:
|
4785 |
#: includes/addons/wl_faq.php:338
|
4786 |
#: includes/addons/wl_product_horizontal_filter.php:193
|
4787 |
#: includes/addons/wl_product_horizontal_filter.php:366
|
@@ -4803,7 +5039,7 @@ msgstr ""
|
|
4803 |
#: includes/addons/wb_image_marker.php:300 includes/addons/product_tabs.php:165
|
4804 |
#: includes/addons/product_tabs.php:942 includes/addons/add_banner.php:147
|
4805 |
#: includes/addons/wl_category_grid.php:539
|
4806 |
-
#: includes/admin/include/admin_fields.php:
|
4807 |
msgid "Title"
|
4808 |
msgstr ""
|
4809 |
|
@@ -4819,7 +5055,7 @@ msgid "Title Color"
|
|
4819 |
msgstr ""
|
4820 |
|
4821 |
#: includes/addons/product_tabs.php:988 includes/addons/product_tabs.php:1070
|
4822 |
-
#: includes/admin/include/admin_fields.php:
|
4823 |
msgid "Title color"
|
4824 |
msgstr ""
|
4825 |
|
@@ -4828,7 +5064,7 @@ msgstr ""
|
|
4828 |
msgid "Title Hover Color"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: includes/admin/include/admin_fields.php:
|
4832 |
msgid "Title hover color"
|
4833 |
msgstr ""
|
4834 |
|
@@ -4845,7 +5081,7 @@ msgstr ""
|
|
4845 |
msgid "to"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: includes/admin/include/admin_fields.php:
|
4849 |
msgid "Tool tip color"
|
4850 |
msgstr ""
|
4851 |
|
@@ -4856,11 +5092,11 @@ msgstr ""
|
|
4856 |
msgid "Top"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: includes/admin/include/admin_fields.php:
|
4860 |
msgid "Top Left"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#: includes/helper-function.php:
|
4864 |
msgid "Top Rated"
|
4865 |
msgstr ""
|
4866 |
|
@@ -4870,11 +5106,11 @@ msgstr ""
|
|
4870 |
msgid "Top Rated Products"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: includes/admin/include/admin_fields.php:
|
4874 |
msgid "Top Right"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: includes/helper-function.php:
|
4878 |
msgid "Top Seller"
|
4879 |
msgstr ""
|
4880 |
|
@@ -4964,10 +5200,11 @@ msgstr ""
|
|
4964 |
msgid "Typography"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: includes/admin/include/admin_fields.php:
|
4968 |
msgid "Universal layout style options"
|
4969 |
msgstr ""
|
4970 |
|
|
|
4971 |
#: includes/admin/include/admin_fields.php:261
|
4972 |
msgid "Universal Product"
|
4973 |
msgstr ""
|
@@ -4976,7 +5213,7 @@ msgstr ""
|
|
4976 |
msgid "Update Template"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
-
#: includes/admin/include/admin_fields.php:
|
4980 |
msgid "Upload"
|
4981 |
msgstr ""
|
4982 |
|
@@ -4984,7 +5221,7 @@ msgstr ""
|
|
4984 |
msgid "Uploaded to this Template"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
-
#: includes/admin/include/admin_fields.php:
|
4988 |
msgid "Upsell Pro..( Custom )"
|
4989 |
msgstr ""
|
4990 |
|
@@ -5001,6 +5238,14 @@ msgstr ""
|
|
5001 |
msgid "Username or email"
|
5002 |
msgstr ""
|
5003 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5004 |
#: includes/addons/special_day_offer.php:227
|
5005 |
msgid "Vertical Position"
|
5006 |
msgstr ""
|
@@ -5039,6 +5284,10 @@ msgstr ""
|
|
5039 |
msgid "View Templates"
|
5040 |
msgstr ""
|
5041 |
|
|
|
|
|
|
|
|
|
5042 |
#: includes/admin/templates/dashboard-welcome.php:31
|
5043 |
msgid ""
|
5044 |
"We create videos to make our customers comprehend the product quickly. Using "
|
@@ -5064,11 +5313,12 @@ msgstr ""
|
|
5064 |
msgid "When the product tab is off, Then working slider."
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: includes/admin/include/admin_fields.php:
|
5068 |
msgid "When to start notification load duration."
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#:
|
|
|
5072 |
#: includes/admin/include/class.extension-manager.php:81
|
5073 |
msgid "Whols"
|
5074 |
msgstr ""
|
@@ -5091,11 +5341,11 @@ msgstr ""
|
|
5091 |
#: includes/addons/wl_onepage_slider.php:429
|
5092 |
#: includes/addons/wl_onepage_slider.php:503
|
5093 |
#: includes/addons/special_day_offer.php:173
|
5094 |
-
#: includes/admin/include/admin_fields.php:
|
5095 |
msgid "Width"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
-
#: includes/admin/include/admin_fields.php:
|
5099 |
msgid "Width for mobile"
|
5100 |
msgstr ""
|
5101 |
|
@@ -5104,7 +5354,8 @@ msgstr ""
|
|
5104 |
msgid "WishSuite"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#:
|
|
|
5108 |
msgid "WishSuite Table"
|
5109 |
msgstr ""
|
5110 |
|
@@ -5275,8 +5526,8 @@ msgstr ""
|
|
5275 |
msgid "WL: WishSuite Table"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: includes/admin/include/admin_fields.php:
|
5279 |
-
#: includes/admin/include/admin_fields.php:
|
5280 |
msgid "wobble"
|
5281 |
msgstr ""
|
5282 |
|
@@ -5284,7 +5535,7 @@ msgstr ""
|
|
5284 |
msgid "WooCommerce Template"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: includes/base.php:
|
5288 |
#: includes/admin/admin-init.php:86 includes/admin/include/admin_fields.php:112
|
5289 |
#: includes/admin/include/admin_fields.php:133
|
5290 |
#: includes/admin/include/admin_fields.php:154
|
@@ -5295,7 +5546,7 @@ msgstr ""
|
|
5295 |
msgid "WooLentor - WooCommerce Elementor Addons + Builder"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: classes/class.widgets_control.php:
|
5299 |
msgid "Woolentor Addons"
|
5300 |
msgstr ""
|
5301 |
|
@@ -5347,6 +5598,10 @@ msgstr ""
|
|
5347 |
msgid "Write your message"
|
5348 |
msgstr ""
|
5349 |
|
|
|
|
|
|
|
|
|
5350 |
#: includes/addons/wb_image_marker.php:114
|
5351 |
msgid "X Position"
|
5352 |
msgstr ""
|
@@ -5371,27 +5626,31 @@ msgstr ""
|
|
5371 |
msgid "Yes"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: includes/admin/include/template-library.php:
|
5375 |
msgid "You are not permitted to import the template."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: includes/admin/include/admin_fields.php:
|
5379 |
msgid "You can choose menu for shopify style checkout page."
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: includes/admin/include/admin_fields.php:
|
|
|
|
|
|
|
|
|
5383 |
msgid "You can enable / disable rename label from here."
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: includes/admin/include/admin_fields.php:
|
5387 |
msgid "You can enable / disable sales notification from here."
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: includes/admin/include/admin_fields.php:
|
5391 |
msgid "You can enable / disable shopify style checkout page from here."
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#: includes/admin/include/admin_fields.php:
|
5395 |
msgid "You can enable duplicator for individual post."
|
5396 |
msgstr ""
|
5397 |
|
@@ -5404,8 +5663,8 @@ msgstr ""
|
|
5404 |
msgid "You can enable/disable template builder from here."
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: includes/admin/include/admin_fields.php:
|
5408 |
-
#: includes/admin/include/admin_fields.php:
|
5409 |
msgid "You can handle the notificaton width."
|
5410 |
msgstr ""
|
5411 |
|
@@ -5433,7 +5692,7 @@ msgstr ""
|
|
5433 |
msgid "You can select a template for the Checkout page layout"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: includes/admin/include/admin_fields.php:
|
5437 |
msgid "You can upload your logo for shopify style checkout page from here."
|
5438 |
msgstr ""
|
5439 |
|
@@ -5441,43 +5700,43 @@ msgstr ""
|
|
5441 |
msgid "Zippers cotton jogger"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#: includes/admin/include/admin_fields.php:
|
5445 |
msgid "zoomIn"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: includes/admin/include/admin_fields.php:
|
5449 |
msgid "zoomInDown"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: includes/admin/include/admin_fields.php:
|
5453 |
msgid "zoomInLeft"
|
5454 |
msgstr ""
|
5455 |
|
5456 |
-
#: includes/admin/include/admin_fields.php:
|
5457 |
msgid "zoomInRight"
|
5458 |
msgstr ""
|
5459 |
|
5460 |
-
#: includes/admin/include/admin_fields.php:
|
5461 |
msgid "zoomInUp"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: includes/admin/include/admin_fields.php:
|
5465 |
msgid "zoomOut"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: includes/admin/include/admin_fields.php:
|
5469 |
msgid "zoomOutDown"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: includes/admin/include/admin_fields.php:
|
5473 |
msgid "zoomOutLeft"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: includes/admin/include/admin_fields.php:
|
5477 |
msgid "zoomOutRight"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#: includes/admin/include/admin_fields.php:
|
5481 |
msgid "zoomOutUp"
|
5482 |
msgstr ""
|
5483 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: WooLentor - WooCommerce Elementor Addons + Builder\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2021-12-30 10:28+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
17 |
"X-Domain: woolentor"
|
18 |
|
19 |
#. 1: Plugin name 2: PHP 3: Required PHP version
|
20 |
+
#: includes/base.php:190
|
21 |
#, php-format
|
22 |
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
23 |
msgstr ""
|
28 |
msgid "#"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: includes/base.php:143
|
32 |
#, php-format
|
33 |
msgid ""
|
34 |
"%1$sWooLentor Addons for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin "
|
35 |
"to be active. Please activate Elementor to continue."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: includes/base.php:150
|
39 |
#, php-format
|
40 |
msgid ""
|
41 |
"%1$sWooLentor Addons for Elementor%2$s requires %1$s\"Elementor\"%2$s plugin "
|
42 |
"to be installed and activated. Please install Elementor to continue."
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: includes/base.php:168
|
46 |
#, php-format
|
47 |
msgid ""
|
48 |
"%1$sWooLentor Addons for Elementor%2$s requires %1$s\"WooCommerce\"%2$s "
|
49 |
"plugin to be active. Please activate WooCommerce to continue."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: includes/base.php:175
|
53 |
#, php-format
|
54 |
msgid ""
|
55 |
"%1$sWooLentor Addons for Elementor%2$s requires %1$s\"WooCommerce\"%2$s "
|
72 |
msgid "1"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: includes/admin/include/admin_fields.php:1111
|
76 |
msgid "1 day"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: includes/admin/include/admin_fields.php:1015
|
80 |
+
#: includes/admin/include/admin_fields.php:1041
|
81 |
+
#: includes/admin/include/admin_fields.php:1067
|
82 |
msgid "1 minute"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: includes/admin/include/admin_fields.php:1117
|
86 |
msgid "1 week"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: includes/admin/include/admin_fields.php:1016
|
90 |
+
#: includes/admin/include/admin_fields.php:1042
|
91 |
+
#: includes/admin/include/admin_fields.php:1068
|
92 |
msgid "1.5 minutes"
|
93 |
msgstr ""
|
94 |
|
96 |
msgid "10 Custom Shop Page Templates"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: includes/admin/include/admin_fields.php:1118
|
100 |
msgid "10 days"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/admin/include/admin_fields.php:1010
|
104 |
+
#: includes/admin/include/admin_fields.php:1036
|
105 |
+
#: includes/admin/include/admin_fields.php:1062
|
106 |
msgid "10 seconds"
|
107 |
msgstr ""
|
108 |
|
120 |
msgid "2"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/admin/include/admin_fields.php:1112
|
124 |
msgid "2 days"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/admin/include/admin_fields.php:1017
|
128 |
+
#: includes/admin/include/admin_fields.php:1043
|
129 |
+
#: includes/admin/include/admin_fields.php:1069
|
130 |
msgid "2 minutes"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/admin/include/admin_fields.php:1002
|
134 |
+
#: includes/admin/include/admin_fields.php:1029
|
135 |
+
#: includes/admin/include/admin_fields.php:1055
|
136 |
msgid "2 seconds"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/admin/include/admin_fields.php:1119
|
140 |
msgid "2 weeks"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/admin/include/admin_fields.php:1011
|
144 |
+
#: includes/admin/include/admin_fields.php:1037
|
145 |
+
#: includes/admin/include/admin_fields.php:1063
|
146 |
msgid "20 seconds"
|
147 |
msgstr ""
|
148 |
|
150 |
msgid "3"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/admin/include/admin_fields.php:1113
|
154 |
msgid "3 days"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/admin/include/admin_fields.php:1003
|
158 |
msgid "3 seconds"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/admin/include/admin_fields.php:1120
|
162 |
msgid "3 weeks"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/admin/include/admin_fields.php:1012
|
166 |
+
#: includes/admin/include/admin_fields.php:1038
|
167 |
+
#: includes/admin/include/admin_fields.php:1064
|
168 |
msgid "30 seconds"
|
169 |
msgstr ""
|
170 |
|
172 |
msgid "4"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/admin/include/admin_fields.php:1114
|
176 |
msgid "4 days"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/admin/include/admin_fields.php:1004
|
180 |
+
#: includes/admin/include/admin_fields.php:1030
|
181 |
+
#: includes/admin/include/admin_fields.php:1056
|
182 |
msgid "4 seconds"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/admin/include/admin_fields.php:1121
|
186 |
msgid "4 weeks"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/admin/include/admin_fields.php:1013
|
190 |
+
#: includes/admin/include/admin_fields.php:1039
|
191 |
+
#: includes/admin/include/admin_fields.php:1065
|
192 |
msgid "40 seconds"
|
193 |
msgstr ""
|
194 |
|
196 |
msgid "5"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: includes/admin/include/admin_fields.php:1115
|
200 |
msgid "5 days"
|
201 |
msgstr ""
|
202 |
|
204 |
msgid "5 Premium WooCommerce Themes included. (Save $200)"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: includes/admin/include/admin_fields.php:1005
|
208 |
+
#: includes/admin/include/admin_fields.php:1031
|
209 |
+
#: includes/admin/include/admin_fields.php:1057
|
210 |
msgid "5 seconds"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/admin/include/admin_fields.php:1122
|
214 |
msgid "5 weeks"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/admin/include/admin_fields.php:1014
|
218 |
+
#: includes/admin/include/admin_fields.php:1040
|
219 |
+
#: includes/admin/include/admin_fields.php:1066
|
220 |
msgid "50 seconds"
|
221 |
msgstr ""
|
222 |
|
224 |
msgid "50%"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: includes/admin/include/admin_fields.php:1262
|
228 |
+
#: includes/admin/include/admin_fields.php:1263
|
229 |
msgid "550px"
|
230 |
msgstr ""
|
231 |
|
233 |
msgid "6"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/admin/include/admin_fields.php:1116
|
237 |
msgid "6 days"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/admin/include/admin_fields.php:1006
|
241 |
+
#: includes/admin/include/admin_fields.php:1032
|
242 |
+
#: includes/admin/include/admin_fields.php:1058
|
243 |
msgid "6 seconds"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: includes/admin/include/admin_fields.php:1123
|
247 |
msgid "6 weeks"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: includes/admin/include/admin_fields.php:1007
|
251 |
+
#: includes/admin/include/admin_fields.php:1033
|
252 |
+
#: includes/admin/include/admin_fields.php:1059
|
253 |
msgid "7 seconds"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/admin/include/admin_fields.php:1124
|
257 |
msgid "7 weeks"
|
258 |
msgstr ""
|
259 |
|
261 |
msgid "76 Elementor Elements"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: includes/admin/include/admin_fields.php:1008
|
265 |
+
#: includes/admin/include/admin_fields.php:1034
|
266 |
+
#: includes/admin/include/admin_fields.php:1060
|
267 |
msgid "8 seconds"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/admin/include/admin_fields.php:1125
|
271 |
msgid "8 weeks"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/admin/include/admin_fields.php:1009
|
275 |
+
#: includes/admin/include/admin_fields.php:1035
|
276 |
+
#: includes/admin/include/admin_fields.php:1061
|
277 |
msgid "9 seconds"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: includes/admin/include/admin_fields.php:1272
|
281 |
+
#: includes/admin/include/admin_fields.php:1273
|
282 |
msgid "90%"
|
283 |
msgstr ""
|
284 |
|
301 |
msgid "Action Button Style"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/admin/include/template-library.php:262
|
305 |
+
#: includes/admin/include/template-library.php:314
|
306 |
#: includes/admin/include/class.extension-manager.php:182
|
307 |
#: includes/admin/include/class.extension-manager.php:249
|
308 |
msgid "Activate"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/base.php:144
|
312 |
msgid "Activate Elementor"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/base.php:169
|
316 |
msgid "Activate WooCommerce"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/admin/include/template-library.php:273
|
320 |
+
#: includes/admin/include/template-library.php:325
|
321 |
#: includes/admin/include/class.extension-manager.php:193
|
322 |
#: includes/admin/include/class.extension-manager.php:260
|
323 |
msgid "Activated"
|
343 |
msgid "Add ID Manually"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/admin/include/admin_field-manager.php:315
|
347 |
+
msgid "Add Item"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
#: includes/admin/include/class.template_cpt.php:32
|
351 |
msgid "Add New"
|
352 |
msgstr ""
|
355 |
msgid "Add New Template"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/admin/include/admin_fields.php:851
|
359 |
+
#: includes/admin/include/admin_fields.php:867
|
360 |
msgid "Add to Cart"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: includes/admin/include/admin_fields.php:1398
|
364 |
+
msgid "Add to cart - After"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: includes/admin/include/admin_fields.php:1397
|
368 |
+
msgid "Add to cart - Before"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
#: includes/addons/wb_archive_product.php:539
|
372 |
msgid "Add To Cart Button"
|
373 |
msgstr ""
|
384 |
|
385 |
#: includes/addons/product_image_accordion.php:185
|
386 |
#: includes/addons/product_accordion.php:205
|
387 |
+
#: includes/admin/include/admin_fields.php:848
|
388 |
+
#: includes/admin/include/admin_fields.php:864
|
389 |
msgid "Add to Cart Button Text"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: includes/helper-function.php:811 includes/helper-function.php:812
|
393 |
+
#: includes/helper-function.php:828
|
394 |
#: woolentor-blocks/includes/helper-functions.php:312
|
395 |
#: woolentor-blocks/includes/helper-functions.php:313
|
396 |
#: woolentor-blocks/includes/helper-functions.php:329
|
402 |
msgstr ""
|
403 |
|
404 |
#: includes/admin/include/admin_fields.php:408
|
405 |
+
#: includes/admin/include/admin_fields.php:882
|
406 |
msgid "Additional Information"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: includes/admin/include/admin_fields.php:885
|
410 |
#: includes/modules/shopify-like-checkout/templates/form-shipping.php:44
|
411 |
msgid "Additional information"
|
412 |
msgstr ""
|
417 |
msgid "Additional Options"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: classes/class.widgets_control.php:193
|
421 |
+
msgid "Adds Banner"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
#: includes/addons/wb_product_suggest_price.php:87
|
425 |
#: includes/addons/wb_product_suggest_price.php:88
|
426 |
msgid "admin@domain.com"
|
430 |
msgid "Ads Banner"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/admin/include/admin_fields.php:753
|
434 |
msgid "Advance Product Image"
|
435 |
msgstr ""
|
436 |
|
442 |
msgid "After Title"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/admin/include/admin_fields.php:1537
|
446 |
msgid "AJAX Add to Cart on Single Product page"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/admin/include/admin_fields.php:1529
|
450 |
msgid "AJAX Search Widget"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/admin/include/admin_fields.php:1528
|
454 |
msgid "Ajax Search Widget"
|
455 |
msgstr ""
|
456 |
|
509 |
msgid "Already have an account?"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/admin/include/admin_fields.php:1132
|
513 |
msgid "Animation"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/admin/include/admin_fields.php:1140
|
517 |
msgid "Animation In"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: includes/admin/include/admin_fields.php:1197
|
521 |
msgid "Animation Out"
|
522 |
msgstr ""
|
523 |
|
533 |
msgid "Apply coupon"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: includes/admin/include/admin_fields.php:1514
|
537 |
+
msgid "Apply Discount Only For Registered Customers"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: includes/admin/include/admin_fields.php:1457
|
541 |
+
msgid "Apply On All Products"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
#: includes/admin/include/class.template-manager.php:175
|
545 |
#: includes/admin/include/class.template-manager.php:199
|
546 |
msgid "Archive"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: classes/class.widgets_control.php:341
|
550 |
+
msgid "Archive Layout Default"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: includes/admin/include/admin_fields.php:1765
|
554 |
msgid "Archive List View Action Button"
|
555 |
msgstr ""
|
556 |
|
699 |
#: includes/addons/wl_category_grid.php:715
|
700 |
#: includes/addons/wl_category_grid.php:789
|
701 |
#: includes/addons/wl_category_grid.php:889
|
702 |
+
#: includes/admin/include/admin_fields.php:1279
|
703 |
msgid "Background Color"
|
704 |
msgstr ""
|
705 |
|
709 |
msgid "Background Type"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/admin/include/admin_fields.php:1728
|
713 |
msgid "Badge color"
|
714 |
msgstr ""
|
715 |
|
911 |
msgid "Bottom"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: includes/admin/include/admin_fields.php:968
|
915 |
msgid "Bottom Left"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/admin/include/admin_fields.php:1345
|
919 |
msgid "Bottom Menu"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/admin/include/admin_fields.php:969
|
923 |
msgid "Bottom Right"
|
924 |
msgstr ""
|
925 |
|
928 |
msgid "Bottom Space"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: includes/admin/include/admin_fields.php:1145
|
932 |
+
#: includes/admin/include/admin_fields.php:1202
|
933 |
msgid "bounce"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/admin/include/admin_fields.php:1155
|
937 |
msgid "bounceIn"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/admin/include/admin_fields.php:1156
|
941 |
msgid "bounceInDown"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: includes/admin/include/admin_fields.php:1157
|
945 |
msgid "bounceInLeft"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: includes/admin/include/admin_fields.php:1158
|
949 |
msgid "bounceInRight"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: includes/admin/include/admin_fields.php:1159
|
953 |
msgid "bounceInUp"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/admin/include/admin_fields.php:1212
|
957 |
msgid "bounceOut"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: includes/admin/include/admin_fields.php:1213
|
961 |
msgid "bounceOutDown"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: includes/admin/include/admin_fields.php:1214
|
965 |
msgid "bounceOutLeft"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: includes/admin/include/admin_fields.php:1215
|
969 |
msgid "bounceOutRight"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/admin/include/admin_fields.php:1216
|
973 |
msgid "bounceOutUp"
|
974 |
msgstr ""
|
975 |
|
987 |
msgid "Box Shadow"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: classes/class.widgets_control.php:237 includes/addons/wl_brand.php:237
|
991 |
msgid "Brand"
|
992 |
msgstr ""
|
993 |
|
1021 |
msgid "Button"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: includes/admin/include/admin_fields.php:1749
|
1025 |
msgid "Button color"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: includes/admin/include/admin_fields.php:1756
|
1029 |
msgid "Button hover color"
|
1030 |
msgstr ""
|
1031 |
|
1052 |
msgstr ""
|
1053 |
|
1054 |
#: classes/class.assest_management.php:345
|
1055 |
+
#: includes/admin/include/template-library.php:281
|
1056 |
+
#: includes/admin/include/template-library.php:333
|
1057 |
#: includes/admin/include/class.extension-manager.php:213
|
1058 |
#: includes/admin/templates/dashboard-popup.php:14
|
1059 |
msgid "Buy Now"
|
1086 |
msgid "Carolina Monntoya"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: includes/modules/shopify-like-checkout/templates/form-checkout.php:49
|
1090 |
+
msgid "Cart"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
#: includes/addons/wb_ever_compare_table.php:168
|
1094 |
#: includes/addons/wb_ever_compare_table.php:174
|
1095 |
msgid "Cart Button Background"
|
1109 |
"layout template"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: classes/class.widgets_control.php:233
|
1113 |
+
#: includes/admin/include/admin_fields.php:1667
|
1114 |
msgid "Category"
|
1115 |
msgstr ""
|
1116 |
|
1118 |
msgid "Category Color"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/admin/include/admin_fields.php:1672
|
1122 |
msgid "Category color"
|
1123 |
msgstr ""
|
1124 |
|
1126 |
msgid "Category Display Type"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: classes/class.widgets_control.php:213
|
1130 |
#: includes/addons/wl_category_grid.php:40
|
1131 |
#: includes/admin/include/admin_fields.php:324
|
1132 |
msgid "Category Grid"
|
1136 |
msgid "Category Hover Color"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/admin/include/admin_fields.php:1679
|
1140 |
msgid "Category hover color"
|
1141 |
msgstr ""
|
1142 |
|
1174 |
msgid "Change address"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/admin/include/admin_fields.php:865
|
1178 |
msgid "Change the Add to Cart button text for the Product details page."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/admin/include/admin_fields.php:849
|
1182 |
msgid "Change the Add to Cart button text for the Shop page."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/admin/include/admin_fields.php:908
|
1186 |
msgid "Change the label for the Place order field."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/admin/include/admin_fields.php:883
|
1190 |
msgid "Change the tab title for the product additional information"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/admin/include/admin_fields.php:874
|
1194 |
msgid "Change the tab title for the product description."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: includes/admin/include/admin_fields.php:892
|
1198 |
msgid "Change the tab title for the product review"
|
1199 |
msgstr ""
|
1200 |
|
1218 |
msgid "Checkout Order Review"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/admin/include/admin_fields.php:900
|
1222 |
msgid "Checkout Page"
|
1223 |
msgstr ""
|
1224 |
|
1238 |
msgid "Choose a Payment Gateway"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/admin/include/admin_fields.php:1141
|
1242 |
msgid "Choose entrance animation."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: includes/admin/include/admin_fields.php:1198
|
1246 |
msgid "Choose exit animation."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
#: includes/addons/wl_brand.php:80
|
1250 |
+
#: includes/admin/include/admin_field-manager.php:184
|
1251 |
msgid "Choose Image"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/admin/include/admin_fields.php:951
|
1255 |
msgid "Choose Template"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/admin/include/admin_fields.php:952
|
1259 |
msgid "Choose template for manual notification."
|
1260 |
msgstr ""
|
1261 |
|
1388 |
msgid "Columns"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: includes/helper-function.php:773
|
1392 |
#: includes/addons/product_image_accordion.php:146
|
1393 |
#: includes/addons/product_accordion.php:167
|
1394 |
#: includes/addons/product_curvy.php:202 includes/addons/product_tabs.php:166
|
1395 |
msgid "Comment count"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: includes/helper-function.php:828
|
1399 |
#: woolentor-blocks/includes/helper-functions.php:329
|
1400 |
msgid "Compare"
|
1401 |
msgstr ""
|
1423 |
msgid "Content Area"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: includes/admin/include/admin_fields.php:1616
|
1427 |
msgid "Content area background"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
#: includes/addons/product_accordion.php:461
|
1431 |
#: includes/addons/product_curvy.php:596 includes/addons/product_curvy.php:610
|
1432 |
#: includes/addons/wb_ever_compare_table.php:134
|
1433 |
+
#: includes/admin/include/admin_fields.php:1295
|
1434 |
msgid "Content Color"
|
1435 |
msgstr ""
|
1436 |
|
1471 |
msgid "Count"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: includes/admin/include/admin_fields.php:1394
|
1475 |
+
msgid "Countdown Position"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: includes/admin/include/admin_fields.php:1409
|
1479 |
+
msgid "Countdown Timer Title"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: includes/admin/include/admin_fields.php:1800
|
1483 |
msgid "Counter Timer"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: includes/admin/include/admin_fields.php:1805
|
1487 |
msgid "Counter timer color"
|
1488 |
msgstr ""
|
1489 |
|
1500 |
msgid "Create an account?"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: includes/admin/include/admin_fields.php:1303
|
1504 |
msgid "Cross Icon Color"
|
1505 |
msgstr ""
|
1506 |
|
1535 |
msgid "Customer"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: classes/class.widgets_control.php:241
|
1539 |
#: includes/admin/include/admin_fields.php:303
|
1540 |
msgid "Customer Review"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: includes/admin/admin-init.php:305
|
1544 |
msgid "Data Fetch successfully!"
|
1545 |
msgstr ""
|
1546 |
|
1548 |
msgid "Data Saved successfully!"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: includes/helper-function.php:770 includes/addons/wb_product_upsell.php:62
|
1552 |
#: includes/addons/wb_archive_product.php:127
|
1553 |
#: includes/addons/product_image_accordion.php:143
|
1554 |
#: includes/addons/wb_product_related.php:77
|
1557 |
msgid "Date"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: includes/modules/flash-sale/class.flash-sale.php:309
|
1561 |
+
msgid "Days"
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
#: includes/addons/wl_brand.php:58
|
1565 |
#: includes/admin/include/class.template-manager.php:87
|
1566 |
msgid "Default"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: includes/admin/include/admin_fields.php:1617
|
1570 |
+
#: includes/admin/include/admin_fields.php:1631
|
1571 |
+
#: includes/admin/include/admin_fields.php:1638
|
1572 |
+
#: includes/admin/include/admin_fields.php:1652
|
1573 |
+
#: includes/admin/include/admin_fields.php:1659
|
1574 |
+
#: includes/admin/include/admin_fields.php:1673
|
1575 |
+
#: includes/admin/include/admin_fields.php:1680
|
1576 |
+
#: includes/admin/include/admin_fields.php:1694
|
1577 |
+
#: includes/admin/include/admin_fields.php:1708
|
1578 |
+
#: includes/admin/include/admin_fields.php:1715
|
1579 |
+
#: includes/admin/include/admin_fields.php:1729
|
1580 |
+
#: includes/admin/include/admin_fields.php:1743
|
1581 |
+
#: includes/admin/include/admin_fields.php:1750
|
1582 |
+
#: includes/admin/include/admin_fields.php:1757
|
1583 |
+
#: includes/admin/include/admin_fields.php:1771
|
1584 |
+
#: includes/admin/include/admin_fields.php:1778
|
1585 |
+
#: includes/admin/include/admin_fields.php:1785
|
1586 |
+
#: includes/admin/include/admin_fields.php:1792
|
1587 |
+
#: includes/admin/include/admin_fields.php:1806
|
1588 |
msgid "Default Color for universal layout."
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: includes/helper-function.php:584
|
1592 |
msgid "Default sorting"
|
1593 |
msgstr ""
|
1594 |
|
1615 |
#: includes/addons/special_day_offer.php:104
|
1616 |
#: includes/addons/special_day_offer.php:443
|
1617 |
#: includes/addons/wb_image_marker.php:361
|
1618 |
+
#: includes/admin/include/admin_fields.php:873
|
1619 |
+
#: includes/admin/include/admin_fields.php:876
|
1620 |
msgid "Description"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: includes/admin/include/admin_fields.php:1693
|
1624 |
msgid "Description color"
|
1625 |
msgstr ""
|
1626 |
|
1648 |
msgid "Disable all"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: includes/admin/include/admin_fields.php:1491
|
1652 |
+
msgid "Discount Type"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: includes/helper-function.php:424
|
1656 |
msgid "div"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: includes/admin/include/admin_fields.php:1107
|
1660 |
msgid "Do not show purchases older than."
|
1661 |
msgstr ""
|
1662 |
|
1664 |
msgid "Do you want to individual icon ?"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: includes/admin/include/admin_field-manager.php:236
|
1668 |
+
#: includes/admin/include/admin_field-manager.php:353
|
1669 |
#: includes/admin/templates/dashboard-welcome.php:19
|
1670 |
msgid "Documentation"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: includes/admin/include/template-library.php:201
|
1674 |
msgid "Edit Page"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: includes/admin/include/template-library.php:201
|
1678 |
#: includes/admin/include/class.template_cpt.php:34
|
1679 |
msgid "Edit Template"
|
1680 |
msgstr ""
|
1744 |
msgid "Empty Rating Color"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: includes/admin/include/admin_fields.php:1707
|
1748 |
msgid "Empty rating color"
|
1749 |
msgstr ""
|
1750 |
|
1757 |
msgid "Empty table text"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: includes/admin/include/admin_fields.php:1425
|
1761 |
+
msgid "Enable"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: includes/admin/include/admin_fields.php:832
|
1765 |
+
#: includes/admin/include/admin_fields.php:929
|
1766 |
+
#: includes/admin/include/admin_fields.php:1324
|
1767 |
+
#: includes/admin/include/admin_fields.php:1369
|
1768 |
+
#: includes/admin/include/admin_fields.php:1426
|
1769 |
msgid "Enable / Disable"
|
1770 |
msgstr ""
|
1771 |
|
1807 |
msgid "Even Heading Background"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: includes/admin/include/admin_fields.php:1434
|
1811 |
+
msgid "Event Name"
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: includes/admin/include/admin_fields.php:1859
|
1815 |
msgid "Ever Compare"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: classes/class.widgets_control.php:357
|
1819 |
#: includes/addons/wb_ever_compare_table.php:45
|
1820 |
#: includes/admin/include/class.extension-manager.php:71
|
1821 |
msgid "EverCompare"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: includes/admin/include/admin_fields.php:1483
|
1825 |
+
msgid "Exclude Products"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
#: includes/admin/include/class.extension-manager.php:26
|
1829 |
#: includes/admin/include/class.extension-manager.php:27
|
1830 |
msgid "Extension"
|
1838 |
msgid "Extra Option"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: includes/admin/include/admin_fields.php:1160
|
1842 |
msgid "fadeIn"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: includes/admin/include/admin_fields.php:1161
|
1846 |
msgid "fadeInDown"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: includes/admin/include/admin_fields.php:1162
|
1850 |
msgid "fadeInDownBig"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: includes/admin/include/admin_fields.php:1163
|
1854 |
msgid "fadeInLeft"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: includes/admin/include/admin_fields.php:1164
|
1858 |
msgid "fadeInLeftBig"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: includes/admin/include/admin_fields.php:1165
|
1862 |
msgid "fadeInRight"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: includes/admin/include/admin_fields.php:1166
|
1866 |
msgid "fadeInRightBig"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: includes/admin/include/admin_fields.php:1167
|
1870 |
msgid "fadeInUp"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: includes/admin/include/admin_fields.php:1168
|
1874 |
msgid "fadeInUpBig"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: includes/admin/include/admin_fields.php:1217
|
1878 |
msgid "fadeOut"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
#: includes/admin/include/admin_fields.php:1218
|
1882 |
msgid "fadeOutDown"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: includes/admin/include/admin_fields.php:1219
|
1886 |
msgid "fadeOutDownBig"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: includes/admin/include/admin_fields.php:1220
|
1890 |
msgid "fadeOutLeft"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: includes/admin/include/admin_fields.php:1221
|
1894 |
msgid "fadeOutLeftBig"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: includes/admin/include/admin_fields.php:1222
|
1898 |
msgid "fadeOutRight"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: includes/admin/include/admin_fields.php:1223
|
1902 |
msgid "fadeOutRightBig"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: includes/admin/include/admin_fields.php:1224
|
1906 |
msgid "fadeOutUp"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: includes/admin/include/admin_fields.php:1225
|
1910 |
msgid "fadeOutUpBig"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: classes/class.widgets_control.php:209
|
1914 |
#: includes/admin/include/admin_fields.php:352
|
1915 |
msgid "Faq"
|
1916 |
msgstr ""
|
1919 |
msgid "FAQ Title"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: includes/helper-function.php:775
|
1923 |
msgid "Featured"
|
1924 |
msgstr ""
|
1925 |
|
1980 |
msgid "Filter Type"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: includes/admin/include/admin_fields.php:997
|
1984 |
msgid "First loading time"
|
1985 |
msgstr ""
|
1986 |
|
1990 |
msgid "Five"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: includes/admin/include/admin_fields.php:1494
|
1994 |
+
msgid "Fixed Discount"
|
1995 |
+
msgstr ""
|
1996 |
+
|
1997 |
+
#: includes/admin/include/admin_fields.php:1496
|
1998 |
+
msgid "Fixed Price"
|
1999 |
+
msgstr ""
|
2000 |
+
|
2001 |
#: includes/addons/wb_wc_multicurrency.php:55
|
2002 |
msgid "Flag only"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: includes/admin/include/admin_fields.php:1146
|
2006 |
+
#: includes/admin/include/admin_fields.php:1203
|
2007 |
msgid "flash"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: includes/admin/include/admin_fields.php:1359
|
2011 |
+
msgid "Flash Sale Event"
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: includes/admin/include/admin_fields.php:1169
|
2015 |
+
#: includes/admin/include/admin_fields.php:1226
|
2016 |
msgid "flip"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: includes/admin/include/admin_fields.php:1170
|
2020 |
msgid "flipInX"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: includes/admin/include/admin_fields.php:1171
|
2024 |
msgid "flipInY"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: includes/admin/include/admin_fields.php:1227
|
2028 |
msgid "flipOutX"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: includes/admin/include/admin_fields.php:1228
|
2032 |
msgid "flipOutY"
|
2033 |
msgstr ""
|
2034 |
|
2081 |
msgid "Get Support"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: includes/base.php:275 includes/addons/wl_category.php:192
|
2085 |
#: includes/addons/wl_brand.php:225 includes/addons/wl_brand.php:368
|
2086 |
msgid "Go Pro"
|
2087 |
msgstr ""
|
2090 |
msgid "Gradient Color"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: includes/helper-function.php:417
|
2094 |
msgid "H1"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: includes/helper-function.php:418
|
2098 |
msgid "H2"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: includes/helper-function.php:419
|
2102 |
msgid "H3"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: includes/helper-function.php:420
|
2106 |
msgid "H4"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: includes/helper-function.php:421
|
2110 |
msgid "H5"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: includes/helper-function.php:422
|
2114 |
msgid "H6"
|
2115 |
msgstr ""
|
2116 |
|
2149 |
#: includes/addons/wb_just_table.php:71
|
2150 |
#: includes/addons/wb_wishsuite_table.php:72
|
2151 |
#: includes/addons/wb_ever_compare_table.php:72
|
2152 |
+
#: includes/admin/include/admin_fields.php:1287
|
2153 |
msgid "Heading Color"
|
2154 |
msgstr ""
|
2155 |
|
2161 |
msgid "Heading Typography"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: includes/admin/include/admin_fields.php:1154
|
2165 |
+
#: includes/admin/include/admin_fields.php:1211
|
2166 |
msgid "heartBeat"
|
2167 |
msgstr ""
|
2168 |
|
2177 |
msgid "Helping Screenshot"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: includes/helper-function.php:703 includes/helper-function.php:721
|
2181 |
msgid "here"
|
2182 |
msgstr ""
|
2183 |
|
2218 |
msgid "Hierarchical"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: includes/admin/include/admin_fields.php:1187
|
2222 |
+
#: includes/admin/include/admin_fields.php:1244
|
2223 |
msgid "hinge"
|
2224 |
msgstr ""
|
2225 |
|
2231 |
msgid "Horizontal Position"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: classes/class.widgets_control.php:258
|
2235 |
+
msgid "Horizontal Product Filter"
|
2236 |
+
msgstr ""
|
2237 |
+
|
2238 |
+
#: includes/modules/flash-sale/class.flash-sale.php:310
|
2239 |
+
msgid "Hours"
|
2240 |
+
msgstr ""
|
2241 |
+
|
2242 |
#: includes/addons/wl_product_horizontal_filter.php:627
|
2243 |
#: includes/addons/wl_product_horizontal_filter.php:819
|
2244 |
#: includes/addons/special_day_offer.php:720
|
2288 |
msgid "Hover Color"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: includes/admin/include/admin_fields.php:1025
|
2292 |
msgid "How long to keep the notification."
|
2293 |
msgstr ""
|
2294 |
|
2305 |
msgid "https://your-link.com"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: includes/admin/include/admin_fields.php:1411
|
2309 |
+
#: includes/modules/flash-sale/class.flash-sale.php:296
|
2310 |
+
msgid "Hurry Up! Offer ends in"
|
2311 |
+
msgstr ""
|
2312 |
+
|
2313 |
#: includes/addons/wl_faq.php:609 includes/addons/wl_store_features.php:64
|
2314 |
#: includes/addons/wl_store_features.php:80
|
2315 |
#: includes/addons/wl_product_filter.php:110
|
2351 |
msgid "Icon Width"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: includes/helper-function.php:769
|
2355 |
#: includes/addons/product_image_accordion.php:142
|
2356 |
#: includes/addons/product_accordion.php:163
|
2357 |
#: includes/addons/product_curvy.php:198 includes/addons/product_tabs.php:162
|
2389 |
msgid "Image Area Border Color"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: includes/admin/include/admin_fields.php:981
|
2393 |
msgid "Image Left"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: classes/class.widgets_control.php:201
|
2397 |
#: includes/admin/include/admin_fields.php:310
|
2398 |
msgid "Image Marker"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: includes/admin/include/admin_fields.php:976
|
2402 |
msgid "Image Position"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: includes/admin/include/admin_fields.php:982
|
2406 |
msgid "Image Right"
|
2407 |
msgstr ""
|
2408 |
|
2455 |
msgid "Insert into Template"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: includes/base.php:151
|
2459 |
msgid "Install Elementor"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: includes/admin/include/template-library.php:268
|
2463 |
+
#: includes/admin/include/template-library.php:320
|
2464 |
#: includes/admin/include/class.extension-manager.php:188
|
2465 |
#: includes/admin/include/class.extension-manager.php:255
|
2466 |
msgid "Install Now"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: includes/base.php:176
|
2470 |
msgid "Install WooCommerce"
|
2471 |
msgstr ""
|
2472 |
|
2493 |
msgid "Item Spacing"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: includes/admin/include/admin_fields.php:1188
|
2497 |
msgid "jackInTheBox"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: includes/admin/include/admin_fields.php:1153
|
2501 |
+
#: includes/admin/include/admin_fields.php:1210
|
2502 |
msgid "jello"
|
2503 |
msgstr ""
|
2504 |
|
2513 |
msgid "Justified"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: classes/class.widgets_control.php:364 includes/addons/wb_just_table.php:44
|
2517 |
+
#: includes/admin/include/admin_fields.php:1869
|
2518 |
msgid "JustTable"
|
2519 |
msgstr ""
|
2520 |
|
2608 |
msgid "Left"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: includes/admin/include/admin_fields.php:1172
|
2612 |
msgid "lightSpeedIn"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: includes/admin/include/admin_fields.php:1229
|
2616 |
msgid "lightSpeedOut"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: includes/admin/include/admin_fields.php:1084
|
2620 |
msgid "Limit"
|
2621 |
msgstr ""
|
2622 |
|
2637 |
msgid "List Item"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: includes/admin/include/admin_fields.php:1784
|
2641 |
msgid "List View Button background color"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: includes/admin/include/admin_fields.php:1770
|
2645 |
msgid "List View Button color"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: includes/admin/include/admin_fields.php:1791
|
2649 |
msgid "List View Button hover background color"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: includes/admin/include/admin_fields.php:1777
|
2653 |
msgid "List View Button Hover color"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: includes/admin/include/admin_fields.php:1591
|
2657 |
msgid "Load Products in Elementor Addons"
|
2658 |
msgstr ""
|
2659 |
|
2665 |
msgid "Login"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: includes/admin/include/admin_fields.php:697
|
2669 |
msgid "Login Form"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: includes/admin/include/admin_fields.php:1333
|
2673 |
msgid "Logo"
|
2674 |
msgstr ""
|
2675 |
|
2697 |
msgid "Main Video Area"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: includes/admin/include/admin_fields.php:1098
|
2701 |
msgid "Manage show all product from each order."
|
2702 |
msgstr ""
|
2703 |
|
2710 |
msgid "Managing Director"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: includes/admin/include/admin_fields.php:944
|
2714 |
msgid "Manual"
|
2715 |
msgstr ""
|
2716 |
|
2830 |
msgid "Meta"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: includes/modules/flash-sale/class.flash-sale.php:311
|
2834 |
+
msgid "Min"
|
2835 |
+
msgstr ""
|
2836 |
+
|
2837 |
#: includes/addons/wl_product_horizontal_filter.php:137
|
2838 |
msgid "Min Price"
|
2839 |
msgstr ""
|
2842 |
msgid "Min price"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: includes/admin/include/admin_fields.php:808
|
2846 |
msgid "Mini Cart"
|
2847 |
msgstr ""
|
2848 |
|
2873 |
msgid "More Details"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: includes/admin/include/admin_fields.php:1889
|
2877 |
#: includes/admin/include/class.extension-manager.php:91
|
2878 |
msgid "Multi Currency"
|
2879 |
msgstr ""
|
2882 |
msgid "Multi Currency Pro for WooCommerce"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: includes/admin/include/admin_fields.php:1579
|
2886 |
msgid "Multi Step Checkout"
|
2887 |
msgstr ""
|
2888 |
|
2905 |
msgid "My Account"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: includes/admin/include/admin_fields.php:689
|
2909 |
msgid "My Account Address"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: includes/admin/include/admin_fields.php:665
|
2913 |
msgid "My Account Dashboard"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: includes/admin/include/admin_fields.php:673
|
2917 |
msgid "My Account Download"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: includes/admin/include/admin_fields.php:681
|
2921 |
msgid "My Account Edit"
|
2922 |
msgstr ""
|
2923 |
|
2925 |
msgid "My Account Login page Template"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: includes/admin/include/admin_fields.php:713
|
2929 |
msgid "My Account Logout"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: includes/admin/include/admin_fields.php:657
|
2933 |
+
msgid "My Account Navigation"
|
2934 |
+
msgstr ""
|
2935 |
+
|
2936 |
+
#: includes/admin/include/admin_fields.php:721
|
2937 |
msgid "My Account Order"
|
2938 |
msgstr ""
|
2939 |
|
2945 |
msgid "N/A"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: includes/helper-function.php:771 includes/addons/wl_testimonial.php:78
|
2949 |
#: includes/addons/wl_testimonial.php:572
|
2950 |
#: includes/addons/product_image_accordion.php:144
|
2951 |
#: includes/addons/product_accordion.php:165
|
3014 |
msgid "No Gutters"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: includes/modules/shopify-like-checkout/class.shopify-like-checkout.php:333
|
3018 |
msgid "No naughty business please!"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: includes/addons/wb_archive_product.php:948
|
3022 |
+
msgid "No products were found matching your selection."
|
3023 |
+
msgstr ""
|
3024 |
+
|
3025 |
#: classes/class.default_data.php:267
|
3026 |
msgid "No Rating Available"
|
3027 |
msgstr ""
|
3055 |
msgid "Nonce Varification Faild !"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: includes/helper-function.php:768
|
3059 |
#: includes/addons/product_image_accordion.php:141
|
3060 |
#: includes/addons/product_accordion.php:162
|
3061 |
#: includes/addons/product_curvy.php:197
|
3104 |
msgid "Nothing Found"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: includes/admin/include/admin_fields.php:938
|
3108 |
msgid "Notification Content Type"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: includes/admin/include/admin_fields.php:1024
|
3112 |
msgid "Notification showing time"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: includes/admin/include/admin_fields.php:989
|
3116 |
msgid "Notification Timing"
|
3117 |
msgstr ""
|
3118 |
|
3153 |
msgid "One"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: classes/class.widgets_control.php:217
|
3157 |
+
msgid "One Page Slider"
|
3158 |
+
msgstr ""
|
3159 |
+
|
3160 |
#: includes/admin/include/admin_fields.php:331
|
3161 |
msgid "One page slider"
|
3162 |
msgstr ""
|
3211 |
msgid "Order by"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: includes/admin/include/admin_fields.php:1106
|
3215 |
msgid "Order Upto"
|
3216 |
msgstr ""
|
3217 |
|
3222 |
"the pro version."
|
3223 |
msgstr ""
|
3224 |
|
3225 |
+
#: includes/helper-function.php:511 includes/helper-function.php:555
|
3226 |
msgid "Out of stock"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
+
#: includes/admin/include/admin_fields.php:1378
|
3230 |
+
msgid "Override Sale Price"
|
3231 |
+
msgstr ""
|
3232 |
+
|
3233 |
+
#: includes/helper-function.php:423
|
3234 |
msgid "p"
|
3235 |
msgstr ""
|
3236 |
|
3296 |
msgid "Parent Item:"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: includes/admin/include/admin_fields.php:1544
|
3300 |
+
msgid "Partial Payment"
|
3301 |
+
msgstr ""
|
3302 |
+
|
3303 |
#: includes/modules/shopify-like-checkout/templates/form-login.php:28
|
3304 |
#: includes/modules/shopify-like-checkout/templates/form-login.php:29
|
3305 |
msgid "Password"
|
3314 |
msgid "Payment"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: includes/admin/include/admin_fields.php:1495
|
3318 |
+
msgid "Percentage Discount"
|
3319 |
+
msgstr ""
|
3320 |
+
|
3321 |
#: includes/addons/wb_customer_review.php:146
|
3322 |
msgid "Peter Rose"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: includes/base.php:192
|
3326 |
msgid "PHP"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: includes/admin/include/admin_fields.php:907
|
3330 |
+
#: includes/admin/include/admin_fields.php:910
|
3331 |
#: includes/modules/shopify-like-checkout/templates/form-checkout.php:167
|
3332 |
msgid "Place order"
|
3333 |
msgstr ""
|
3373 |
msgid "Please Select Filter Type"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: includes/admin/include/template-library.php:356
|
3377 |
msgid "Plugin Not Found"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: includes/admin/include/template-library.php:376
|
3381 |
msgid "Plugin Successfully Activated"
|
3382 |
msgstr ""
|
3383 |
|
3392 |
#: includes/addons/wb_archive_product.php:891
|
3393 |
#: includes/addons/wl_category_grid.php:681
|
3394 |
#: includes/addons/wl_category_grid.php:766
|
3395 |
+
#: includes/admin/include/admin_fields.php:961
|
3396 |
msgid "Position"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: includes/admin/include/admin_fields.php:1833
|
3400 |
msgid "Post Duplicator Condition"
|
3401 |
msgstr ""
|
3402 |
|
3415 |
msgstr ""
|
3416 |
|
3417 |
#: classes/class.assest_management.php:346
|
3418 |
+
#: includes/admin/include/admin_field-manager.php:235
|
3419 |
+
#: includes/admin/include/admin_field-manager.php:352
|
3420 |
msgid "Preview"
|
3421 |
msgstr ""
|
3422 |
|
3427 |
#: includes/addons/wb_archive_product.php:402
|
3428 |
#: includes/addons/wb_product_related.php:79
|
3429 |
#: includes/addons/wl_product_filter.php:40
|
3430 |
+
#: includes/admin/include/admin_fields.php:1646
|
3431 |
msgid "Price"
|
3432 |
msgstr ""
|
3433 |
|
3472 |
|
3473 |
#: classes/class.assest_management.php:334
|
3474 |
#: includes/admin/include/class.template-manager.php:374
|
3475 |
+
#: includes/admin/include/admin_field-manager.php:99
|
3476 |
+
#: includes/admin/include/admin_field-manager.php:218
|
3477 |
+
#: includes/admin/include/admin_field-manager.php:333
|
3478 |
#: includes/admin/include/templates_list.php:53
|
3479 |
msgid "Pro"
|
3480 |
msgstr ""
|
3487 |
msgid "Producing Perfume From Home"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: classes/class.widgets_control.php:282
|
3491 |
+
msgid "Product Add To Cart"
|
3492 |
+
msgstr ""
|
3493 |
+
|
3494 |
+
#: includes/helper-function.php:813
|
3495 |
#: woolentor-blocks/includes/helper-functions.php:314
|
3496 |
msgid "Product Added"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: classes/class.widgets_control.php:286
|
3500 |
+
msgid "Product Additional Info"
|
3501 |
+
msgstr ""
|
3502 |
+
|
3503 |
#: includes/admin/include/admin_fields.php:366
|
3504 |
msgid "Product Archive"
|
3505 |
msgstr ""
|
3512 |
msgid "Product Archive Page Template"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: includes/custom-metabox.php:7 includes/admin/include/admin_fields.php:1723
|
3516 |
msgid "Product Badge"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: classes/class.widgets_control.php:262
|
3520 |
+
msgid "Product Call for Price"
|
3521 |
+
msgstr ""
|
3522 |
+
|
3523 |
#: includes/admin/include/admin_fields.php:545
|
3524 |
msgid "Product Cart Table"
|
3525 |
msgstr ""
|
3564 |
msgid "Product Cross Sell"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: classes/class.widgets_control.php:221
|
3568 |
+
msgid "Product Curvy"
|
3569 |
+
msgstr ""
|
3570 |
+
|
3571 |
#: includes/admin/include/admin_fields.php:415
|
3572 |
msgid "Product Data Tab"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: classes/class.widgets_control.php:290
|
3576 |
+
msgid "Product Data tabs"
|
3577 |
+
msgstr ""
|
3578 |
+
|
3579 |
+
#: classes/class.widgets_control.php:294
|
3580 |
#: includes/admin/include/admin_fields.php:422
|
3581 |
msgid "Product Description"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: includes/admin/include/admin_fields.php:857
|
3585 |
msgid "Product Details Page"
|
3586 |
msgstr ""
|
3587 |
|
3589 |
msgid "Product Expanding Grid"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: classes/class.widgets_control.php:254
|
3593 |
#: includes/admin/include/admin_fields.php:373
|
3594 |
msgid "Product Filter"
|
3595 |
msgstr ""
|
3616 |
msgid "Product IDs"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: classes/class.widgets_control.php:314
|
3620 |
#: includes/admin/include/admin_fields.php:457
|
3621 |
msgid "Product Image"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: classes/class.widgets_control.php:225
|
3625 |
+
msgid "Product Image Accordion"
|
3626 |
+
msgstr ""
|
3627 |
+
|
3628 |
#: includes/addons/product_tabs.php:894
|
3629 |
msgid "Product Image Area Padding"
|
3630 |
msgstr ""
|
3645 |
msgid "Product Limit"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: classes/class.widgets_control.php:330
|
3649 |
+
msgid "Product Meta"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: includes/admin/include/admin_fields.php:1400
|
3653 |
+
msgid "Product meta - After"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: includes/admin/include/admin_fields.php:1399
|
3657 |
+
msgid "Product meta - Before"
|
3658 |
+
msgstr ""
|
3659 |
+
|
3660 |
+
#: includes/admin/include/admin_fields.php:485
|
3661 |
+
msgid "Product Meta Info"
|
3662 |
+
msgstr ""
|
3663 |
+
|
3664 |
+
#: classes/class.widgets_control.php:302 includes/helper-function.php:776
|
3665 |
#: includes/addons/product_image_accordion.php:407
|
3666 |
#: includes/addons/product_accordion.php:485
|
3667 |
#: includes/addons/product_curvy.php:478 includes/addons/product_tabs.php:1000
|
3669 |
msgid "Product Price"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: classes/class.widgets_control.php:334
|
3673 |
+
msgid "Product QR Code"
|
3674 |
+
msgstr ""
|
3675 |
+
|
3676 |
+
#: includes/admin/include/admin_fields.php:1076
|
3677 |
msgid "Product Query Option"
|
3678 |
msgstr ""
|
3679 |
|
3684 |
msgid "Product Rating"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: classes/class.widgets_control.php:306
|
3688 |
+
msgid "Product rating"
|
3689 |
+
msgstr ""
|
3690 |
+
|
3691 |
#: includes/addons/wb_product_reviews.php:39
|
3692 |
#: includes/admin/include/admin_fields.php:450
|
3693 |
msgid "Product Reviews"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: classes/class.widgets_control.php:310
|
3697 |
+
msgid "Product reviews"
|
3698 |
+
msgstr ""
|
3699 |
+
|
3700 |
+
#: includes/admin/include/admin_fields.php:784
|
3701 |
msgid "Product Sale Schedule"
|
3702 |
msgstr ""
|
3703 |
|
3713 |
msgid "Product Short Description"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: classes/class.widgets_control.php:298
|
3717 |
+
msgid "Product short description"
|
3718 |
+
msgstr ""
|
3719 |
+
|
3720 |
#: includes/addons/product_tabs.php:204
|
3721 |
msgid "Product Slider"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: includes/admin/include/admin_fields.php:769
|
3725 |
msgid "Product Social Share"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: includes/admin/include/admin_fields.php:1554
|
3729 |
msgid "Product sticky Add to cart"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: classes/class.widgets_control.php:326
|
3733 |
+
msgid "Product Stock"
|
3734 |
+
msgstr ""
|
3735 |
+
|
3736 |
#: includes/admin/include/admin_fields.php:478
|
3737 |
msgid "Product Stock Status"
|
3738 |
msgstr ""
|
3741 |
msgid "Product Style"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: classes/class.widgets_control.php:266
|
3745 |
+
msgid "Product suggest price"
|
3746 |
+
msgstr ""
|
3747 |
+
|
3748 |
+
#: includes/admin/include/admin_fields.php:1402
|
3749 |
+
msgid "Product summary - After"
|
3750 |
+
msgstr ""
|
3751 |
+
|
3752 |
+
#: includes/admin/include/admin_fields.php:1401
|
3753 |
+
msgid "Product summary - Before"
|
3754 |
+
msgstr ""
|
3755 |
+
|
3756 |
#: includes/addons/product_tabs.php:194
|
3757 |
#: includes/admin/include/admin_fields.php:250
|
3758 |
msgid "Product Tab"
|
3762 |
msgid "Product tab menu background"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: classes/class.widgets_control.php:189
|
3766 |
+
msgid "Product Tabs"
|
3767 |
+
msgstr ""
|
3768 |
+
|
3769 |
+
#: classes/class.widgets_control.php:274
|
3770 |
#: includes/addons/product_image_accordion.php:353
|
3771 |
#: includes/addons/product_curvy.php:406
|
3772 |
#: includes/addons/wb_product_title.php:41
|
3775 |
msgid "Product Title"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: classes/class.widgets_control.php:322
|
3779 |
#: includes/admin/include/admin_fields.php:471
|
3780 |
msgid "Product Upsell"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: classes/class.widgets_control.php:318
|
3784 |
#: includes/admin/include/admin_fields.php:464
|
3785 |
msgid "Product Video Gallery"
|
3786 |
msgstr ""
|
3793 |
"href=\"%s\" target=\"_blank\">Purchase WooLentor Pro</a>"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: includes/admin/include/admin_fields.php:761
|
3797 |
msgid "Product Zoom"
|
3798 |
msgstr ""
|
3799 |
|
3805 |
msgid "Products reviews"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: includes/base.php:247
|
3809 |
msgid "Promo Banner"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: includes/admin/include/admin_fields.php:1147
|
3813 |
+
#: includes/admin/include/admin_fields.php:1204
|
3814 |
msgid "pulse"
|
3815 |
msgstr ""
|
3816 |
|
3833 |
msgid "Query Settings"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: includes/admin/include/admin_fields.php:1737
|
3837 |
msgid "Quick Action Button"
|
3838 |
msgstr ""
|
3839 |
|
3841 |
msgid "Quick View Template"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: includes/helper-function.php:774 includes/addons/wb_product_upsell.php:67
|
3845 |
#: includes/addons/wb_archive_product.php:132
|
3846 |
#: includes/addons/product_image_accordion.php:147
|
3847 |
#: includes/addons/wb_product_related.php:82
|
3866 |
#: includes/addons/wb_archive_product.php:478
|
3867 |
#: includes/addons/wb_product_related.php:81
|
3868 |
#: includes/addons/wb_customer_review.php:557
|
3869 |
+
#: includes/admin/include/admin_fields.php:1702
|
3870 |
msgid "Rating"
|
3871 |
msgstr ""
|
3872 |
|
3876 |
msgid "Rating Color"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: includes/admin/include/admin_fields.php:1714
|
3880 |
msgid "Rating color"
|
3881 |
msgstr ""
|
3882 |
|
3892 |
msgid "Rating Star Color"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: includes/admin/include/admin_fields.php:943
|
3896 |
msgid "Real"
|
3897 |
msgstr ""
|
3898 |
|
3907 |
msgid "Redirect Custom URL"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: includes/admin/include/admin_fields.php:705
|
3911 |
msgid "Registration Form"
|
3912 |
msgstr ""
|
3913 |
|
3921 |
msgid "Regular Price Color"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: includes/admin/include/admin_fields.php:1658
|
3925 |
msgid "Regular price color"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: includes/admin/include/admin_fields.php:792
|
3929 |
msgid "Related Pro..( Custom )"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: classes/class.widgets_control.php:278
|
3933 |
#: includes/addons/wb_product_related.php:41
|
3934 |
#: includes/admin/include/admin_fields.php:394
|
3935 |
msgid "Related Product"
|
3939 |
msgid "Remember me"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: includes/admin/include/admin_fields.php:1338
|
3943 |
msgid "Remove"
|
3944 |
msgstr ""
|
3945 |
|
3947 |
msgid "Remove featured image"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: includes/admin/include/admin_fields.php:822
|
3951 |
msgid "Rename Label"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: includes/admin/include/admin_fields.php:1418
|
3955 |
+
msgid "Repeater field description"
|
3956 |
+
msgstr ""
|
3957 |
+
|
3958 |
#: includes/admin/templates/dashboard-welcome.php:54
|
3959 |
msgid "Request"
|
3960 |
msgstr ""
|
3976 |
msgid "Review Type"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: includes/admin/include/admin_fields.php:891
|
3980 |
+
#: includes/admin/include/admin_fields.php:894
|
3981 |
msgid "Reviews"
|
3982 |
msgstr ""
|
3983 |
|
4002 |
msgid "Right"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: includes/admin/include/admin_fields.php:1189
|
4006 |
msgid "rollIn"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: includes/admin/include/admin_fields.php:1190
|
4010 |
msgid "rollOut"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: includes/admin/include/admin_fields.php:1173
|
4014 |
msgid "rotateIn"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: includes/admin/include/admin_fields.php:1174
|
4018 |
msgid "rotateInDownLeft"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: includes/admin/include/admin_fields.php:1175
|
4022 |
msgid "rotateInDownRight"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: includes/admin/include/admin_fields.php:1176
|
4026 |
msgid "rotateInUpLeft"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
+
#: includes/admin/include/admin_fields.php:1177
|
4030 |
msgid "rotateInUpRight"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: includes/admin/include/admin_fields.php:1230
|
4034 |
msgid "rotateOut"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: includes/admin/include/admin_fields.php:1231
|
4038 |
msgid "rotateOutDownLeft"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
+
#: includes/admin/include/admin_fields.php:1232
|
4042 |
msgid "rotateOutDownRight"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: includes/admin/include/admin_fields.php:1233
|
4046 |
msgid "rotateOutUpLeft"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: includes/admin/include/admin_fields.php:1234
|
4050 |
msgid "rotateOutUpRight"
|
4051 |
msgstr ""
|
4052 |
|
4055 |
msgid "Rows"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: includes/admin/include/admin_fields.php:1148
|
4059 |
+
#: includes/admin/include/admin_fields.php:1205
|
4060 |
msgid "rubberBand"
|
4061 |
msgstr ""
|
4062 |
|
4068 |
msgid "Ruth Pierce"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: includes/admin/include/admin_fields.php:1417
|
4072 |
+
msgid "Sale Events"
|
4073 |
+
msgstr ""
|
4074 |
+
|
4075 |
#: includes/addons/wb_archive_product.php:801
|
4076 |
msgid "Sale Flash"
|
4077 |
msgstr ""
|
4086 |
msgid "Sale Price Color"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: includes/admin/include/admin_fields.php:1651
|
4090 |
msgid "Sale price color"
|
4091 |
msgstr ""
|
4092 |
|
4100 |
msgid "Sale Tag"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#: includes/helper-function.php:508 includes/helper-function.php:550
|
4104 |
msgid "Sale!"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
+
#: includes/admin/include/admin_fields.php:919
|
4108 |
msgid "Sales Notification"
|
4109 |
msgstr ""
|
4110 |
|
4154 |
msgid "Search.."
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: includes/modules/flash-sale/class.flash-sale.php:312
|
4158 |
+
msgid "Sec"
|
4159 |
+
msgstr ""
|
4160 |
+
|
4161 |
#: includes/helper-function.php:259
|
4162 |
msgid "Select"
|
4163 |
msgstr ""
|
4203 |
msgid "Select a template for the Thank you page layout"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: includes/admin/include/admin_fields.php:1465
|
4207 |
+
msgid "Select Categories"
|
4208 |
+
msgstr ""
|
4209 |
+
|
4210 |
#: includes/addons/wl_category_grid.php:80
|
4211 |
#: includes/addons/wl_category_grid.php:93
|
4212 |
msgid "Select categories"
|
4216 |
msgid "Select Content Source"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: includes/admin/include/admin_fields.php:939
|
4220 |
msgid "Select Content Type"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: includes/admin/include/admin_fields.php:1475
|
4224 |
+
msgid "Select individual products in wich the discount will be applied."
|
4225 |
+
msgstr ""
|
4226 |
+
|
4227 |
#: includes/addons/wl_category.php:50 includes/addons/wl_brand.php:54
|
4228 |
msgid "Select Layout"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
+
#: includes/admin/include/admin_fields.php:1349
|
4232 |
msgid "Select Menu"
|
4233 |
msgstr ""
|
4234 |
|
4238 |
msgid "Select Product"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: includes/admin/include/admin_fields.php:1474
|
4242 |
+
msgid "Select Products"
|
4243 |
+
msgstr ""
|
4244 |
+
|
4245 |
#: includes/addons/wl_category_grid.php:47
|
4246 |
msgid "Select Style"
|
4247 |
msgstr ""
|
4254 |
msgid "Select Template"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
+
#: includes/admin/include/admin_fields.php:1466
|
4258 |
+
msgid "Select the categories in wich products the discount will be applied."
|
4259 |
+
msgstr ""
|
4260 |
+
|
4261 |
#: includes/addons/wb_product_suggest_price.php:85
|
4262 |
msgid "Send To Mail"
|
4263 |
msgstr ""
|
4270 |
msgid "Set featured image"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
+
#: includes/admin/include/admin_fields.php:1280
|
4274 |
msgid "Set the background color of the notification."
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: includes/admin/include/admin_fields.php:1296
|
4278 |
msgid "Set the content color of the notification."
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: includes/admin/include/admin_fields.php:1304
|
4282 |
msgid "Set the cross icon color of the notification."
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: includes/admin/include/admin_fields.php:1288
|
4286 |
msgid "Set the heading color of the notification."
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: includes/admin/include/admin_fields.php:977
|
4290 |
msgid "Set the image position of the notification."
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: includes/helper-function.php:703 includes/helper-function.php:721
|
4294 |
msgid "Set the initial stock amount from"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: includes/admin/include/admin_fields.php:1051
|
4298 |
msgid "Set the interval time between notifications."
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: includes/admin/include/admin_fields.php:1085
|
4302 |
msgid "Set the number of notifications to display."
|
4303 |
msgstr ""
|
4304 |
|
4305 |
+
#: includes/admin/include/admin_fields.php:1592
|
4306 |
msgid "Set the number of products to load in Elementor Addons"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
#: includes/admin/include/admin_fields.php:962
|
4310 |
msgid "Set the position of the Sales Notification Position on frontend."
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: includes/base.php:272 includes/admin/admin-init.php:96
|
4314 |
#: includes/admin/admin-init.php:97
|
4315 |
msgid "Settings"
|
4316 |
msgstr ""
|
4321 |
msgid "Seven"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: includes/admin/include/admin_fields.php:1149
|
4325 |
+
#: includes/admin/include/admin_fields.php:1206
|
4326 |
msgid "shake"
|
4327 |
msgstr ""
|
4328 |
|
4330 |
msgid "Ship to a different address?"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: includes/modules/shopify-like-checkout/templates/review-order.php:26
|
4334 |
#: includes/modules/shopify-like-checkout/templates/form-checkout.php:56
|
4335 |
msgid "Shipping"
|
4336 |
msgstr ""
|
4364 |
msgid "Shop now"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
+
#: includes/admin/include/admin_fields.php:841
|
4368 |
msgid "Shop Page"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
+
#: includes/admin/include/admin_fields.php:1314
|
4372 |
msgid "Shopify Style Checkout"
|
4373 |
msgstr ""
|
4374 |
|
4375 |
+
#: includes/admin/include/admin_fields.php:1688
|
4376 |
msgid "Short Description"
|
4377 |
msgstr ""
|
4378 |
|
4397 |
msgid "Show Count"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
+
#: includes/admin/include/admin_fields.php:1386
|
4401 |
+
msgid "Show Countdown On Product Details Page"
|
4402 |
+
msgstr ""
|
4403 |
+
|
4404 |
#: includes/addons/wl_product_horizontal_filter.php:233
|
4405 |
msgid "Show Filter Button"
|
4406 |
msgstr ""
|
4425 |
msgid "Show Result Count"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: includes/admin/include/admin_fields.php:1097
|
4429 |
msgid "Show/Display all products from each order"
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: includes/admin/include/admin_fields.php:1563
|
4433 |
msgid "Side Mini Cart"
|
4434 |
msgstr ""
|
4435 |
|
4448 |
msgid "Single Category"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: includes/admin/include/admin_fields.php:1536
|
4452 |
msgid "Single Product Ajax Add To Cart"
|
4453 |
msgstr ""
|
4454 |
|
4471 |
msgid "SKU:"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: includes/admin/include/admin_fields.php:1179
|
4475 |
msgid "slideInDown"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: includes/admin/include/admin_fields.php:1180
|
4479 |
msgid "slideInLeft"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: includes/admin/include/admin_fields.php:1181
|
4483 |
msgid "slideInRight"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: includes/admin/include/admin_fields.php:1178
|
4487 |
msgid "slideInUp"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: includes/admin/include/admin_fields.php:1236
|
4491 |
msgid "slideOutDown"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: includes/admin/include/admin_fields.php:1237
|
4495 |
msgid "slideOutLeft"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: includes/admin/include/admin_fields.php:1238
|
4499 |
msgid "slideOutRight"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: includes/admin/include/admin_fields.php:1235
|
4503 |
msgid "slideOutUp"
|
4504 |
msgstr ""
|
4505 |
|
4570 |
msgid "Slider Option"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
+
#: includes/helper-function.php:716
|
4574 |
msgid "Sold"
|
4575 |
msgstr ""
|
4576 |
|
4593 |
"arrangements."
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: includes/admin/include/template-library.php:391
|
4597 |
msgid "Sorry, you are not allowed to install themes on this site."
|
4598 |
msgstr ""
|
4599 |
|
4604 |
msgid "Sort By"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
+
#: includes/helper-function.php:586
|
4608 |
msgid "Sort by average rating"
|
4609 |
msgstr ""
|
4610 |
|
4611 |
+
#: includes/helper-function.php:587
|
4612 |
msgid "Sort by latest"
|
4613 |
msgstr ""
|
4614 |
|
4615 |
+
#: includes/helper-function.php:585
|
4616 |
msgid "Sort by popularity"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
+
#: includes/helper-function.php:589
|
4620 |
msgid "Sort by price: high to low"
|
4621 |
msgstr ""
|
4622 |
|
4623 |
+
#: includes/helper-function.php:588
|
4624 |
msgid "Sort by price: low to high"
|
4625 |
msgstr ""
|
4626 |
|
4634 |
msgid "Spacing"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: includes/helper-function.php:425
|
4638 |
msgid "span"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: classes/class.widgets_control.php:197
|
4642 |
#: includes/admin/include/admin_fields.php:296
|
4643 |
msgid "Special Day Offer"
|
4644 |
msgstr ""
|
4655 |
msgid "Start from $100"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: includes/admin/include/admin_fields.php:1545
|
4659 |
+
#: includes/admin/include/admin_fields.php:1555
|
4660 |
msgid "Sticky Add to Cart on Single Product page"
|
4661 |
msgstr ""
|
4662 |
|
4664 |
msgid "Stock availability does not exist this product."
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: includes/admin/include/admin_fields.php:777
|
4668 |
msgid "Stock Progress Bar"
|
4669 |
msgstr ""
|
4670 |
|
4672 |
msgid "Store Feature"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: classes/class.widgets_control.php:205
|
4676 |
#: includes/admin/include/admin_fields.php:345
|
4677 |
msgid "Store Features"
|
4678 |
msgstr ""
|
4693 |
#: includes/addons/wb_product_stock.php:40 includes/addons/product_tabs.php:854
|
4694 |
#: includes/addons/add_banner.php:50 includes/addons/add_banner.php:139
|
4695 |
#: includes/admin/include/admin_fields.php:57
|
4696 |
+
#: includes/admin/include/admin_fields.php:1251
|
4697 |
msgid "Style"
|
4698 |
msgstr ""
|
4699 |
|
4794 |
msgid "Swatchly"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: includes/admin/include/admin_fields.php:1150
|
4798 |
+
#: includes/admin/include/admin_fields.php:1207
|
4799 |
msgid "swing"
|
4800 |
msgstr ""
|
4801 |
|
4837 |
msgid "Tablet Resolution"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: includes/admin/include/admin_fields.php:1151
|
4841 |
+
#: includes/admin/include/admin_fields.php:1208
|
4842 |
msgid "tada"
|
4843 |
msgstr ""
|
4844 |
|
4890 |
msgstr ""
|
4891 |
|
4892 |
#: includes/admin/include/class.template_cpt.php:30
|
4893 |
+
#: includes/admin/include/admin_fields.php:1820
|
4894 |
#: includes/admin/include/templates_list.php:33
|
4895 |
msgid "Templates"
|
4896 |
msgstr ""
|
4909 |
msgid "Ten"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: classes/class.widgets_control.php:245 includes/addons/wl_testimonial.php:41
|
4913 |
#: includes/admin/include/admin_fields.php:338
|
4914 |
msgid "Testimonial"
|
4915 |
msgstr ""
|
4939 |
msgid "Textarea"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#: includes/admin/include/admin_fields.php:737
|
4943 |
msgid "Thank You Cus.. Address"
|
4944 |
msgstr ""
|
4945 |
|
4948 |
msgid "Thank you for contacting with us"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: includes/admin/include/admin_fields.php:729
|
4952 |
msgid "Thank You Order"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: includes/admin/include/admin_fields.php:745
|
4956 |
msgid "Thank You Order Details"
|
4957 |
msgstr ""
|
4958 |
|
4964 |
msgid "The Basics Of Western Astrology Explained"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: includes/admin/include/admin_fields.php:1450
|
4968 |
+
msgid "The date and time the event should be disabled."
|
4969 |
+
msgstr ""
|
4970 |
+
|
4971 |
#: includes/addons/wl_testimonial.php:459 includes/addons/product_tabs.php:604
|
4972 |
#: includes/addons/wl_category_grid.php:425
|
4973 |
msgid "The resolution to mobile."
|
4984 |
"WordPress."
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: includes/admin/include/template-library.php:402
|
4988 |
msgid "Theme Activated"
|
4989 |
msgstr ""
|
4990 |
|
5013 |
msgid "Thumbnails Position"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
+
#: includes/admin/include/admin_fields.php:1050
|
5017 |
msgid "Time Interval"
|
5018 |
msgstr ""
|
5019 |
|
5020 |
+
#: includes/helper-function.php:772 includes/addons/wl_faq.php:64
|
5021 |
#: includes/addons/wl_faq.php:338
|
5022 |
#: includes/addons/wl_product_horizontal_filter.php:193
|
5023 |
#: includes/addons/wl_product_horizontal_filter.php:366
|
5039 |
#: includes/addons/wb_image_marker.php:300 includes/addons/product_tabs.php:165
|
5040 |
#: includes/addons/product_tabs.php:942 includes/addons/add_banner.php:147
|
5041 |
#: includes/addons/wl_category_grid.php:539
|
5042 |
+
#: includes/admin/include/admin_fields.php:1625
|
5043 |
msgid "Title"
|
5044 |
msgstr ""
|
5045 |
|
5055 |
msgstr ""
|
5056 |
|
5057 |
#: includes/addons/product_tabs.php:988 includes/addons/product_tabs.php:1070
|
5058 |
+
#: includes/admin/include/admin_fields.php:1630
|
5059 |
msgid "Title color"
|
5060 |
msgstr ""
|
5061 |
|
5064 |
msgid "Title Hover Color"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
+
#: includes/admin/include/admin_fields.php:1637
|
5068 |
msgid "Title hover color"
|
5069 |
msgstr ""
|
5070 |
|
5081 |
msgid "to"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: includes/admin/include/admin_fields.php:1742
|
5085 |
msgid "Tool tip color"
|
5086 |
msgstr ""
|
5087 |
|
5092 |
msgid "Top"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: includes/admin/include/admin_fields.php:966
|
5096 |
msgid "Top Left"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
+
#: includes/helper-function.php:778
|
5100 |
msgid "Top Rated"
|
5101 |
msgstr ""
|
5102 |
|
5106 |
msgid "Top Rated Products"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
+
#: includes/admin/include/admin_fields.php:967
|
5110 |
msgid "Top Right"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
+
#: includes/helper-function.php:777
|
5114 |
msgid "Top Seller"
|
5115 |
msgstr ""
|
5116 |
|
5200 |
msgid "Typography"
|
5201 |
msgstr ""
|
5202 |
|
5203 |
+
#: includes/admin/include/admin_fields.php:1610
|
5204 |
msgid "Universal layout style options"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
+
#: classes/class.widgets_control.php:185
|
5208 |
#: includes/admin/include/admin_fields.php:261
|
5209 |
msgid "Universal Product"
|
5210 |
msgstr ""
|
5213 |
msgid "Update Template"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
+
#: includes/admin/include/admin_fields.php:1337
|
5217 |
msgid "Upload"
|
5218 |
msgstr ""
|
5219 |
|
5221 |
msgid "Uploaded to this Template"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: includes/admin/include/admin_fields.php:800
|
5225 |
msgid "Upsell Pro..( Custom )"
|
5226 |
msgstr ""
|
5227 |
|
5238 |
msgid "Username or email"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
+
#: includes/admin/include/admin_fields.php:1441
|
5242 |
+
msgid "Valid From"
|
5243 |
+
msgstr ""
|
5244 |
+
|
5245 |
+
#: includes/admin/include/admin_fields.php:1449
|
5246 |
+
msgid "Valid To"
|
5247 |
+
msgstr ""
|
5248 |
+
|
5249 |
#: includes/addons/special_day_offer.php:227
|
5250 |
msgid "Vertical Position"
|
5251 |
msgstr ""
|
5284 |
msgid "View Templates"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
+
#: classes/class.widgets_control.php:378
|
5288 |
+
msgid "WC Multicurrency"
|
5289 |
+
msgstr ""
|
5290 |
+
|
5291 |
#: includes/admin/templates/dashboard-welcome.php:31
|
5292 |
msgid ""
|
5293 |
"We create videos to make our customers comprehend the product quickly. Using "
|
5313 |
msgid "When the product tab is off, Then working slider."
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: includes/admin/include/admin_fields.php:998
|
5317 |
msgid "When to start notification load duration."
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: classes/class.widgets_control.php:371
|
5321 |
+
#: includes/admin/include/admin_fields.php:1879
|
5322 |
#: includes/admin/include/class.extension-manager.php:81
|
5323 |
msgid "Whols"
|
5324 |
msgstr ""
|
5341 |
#: includes/addons/wl_onepage_slider.php:429
|
5342 |
#: includes/addons/wl_onepage_slider.php:503
|
5343 |
#: includes/addons/special_day_offer.php:173
|
5344 |
+
#: includes/admin/include/admin_fields.php:1259
|
5345 |
msgid "Width"
|
5346 |
msgstr ""
|
5347 |
|
5348 |
+
#: includes/admin/include/admin_fields.php:1269
|
5349 |
msgid "Width for mobile"
|
5350 |
msgstr ""
|
5351 |
|
5354 |
msgid "WishSuite"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
+
#: classes/class.widgets_control.php:350
|
5358 |
+
#: includes/admin/include/admin_fields.php:1849
|
5359 |
msgid "WishSuite Table"
|
5360 |
msgstr ""
|
5361 |
|
5526 |
msgid "WL: WishSuite Table"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: includes/admin/include/admin_fields.php:1152
|
5530 |
+
#: includes/admin/include/admin_fields.php:1209
|
5531 |
msgid "wobble"
|
5532 |
msgstr ""
|
5533 |
|
5535 |
msgid "WooCommerce Template"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: includes/base.php:191 includes/admin/admin-init.php:85
|
5539 |
#: includes/admin/admin-init.php:86 includes/admin/include/admin_fields.php:112
|
5540 |
#: includes/admin/include/admin_fields.php:133
|
5541 |
#: includes/admin/include/admin_fields.php:154
|
5546 |
msgid "WooLentor - WooCommerce Elementor Addons + Builder"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: classes/class.widgets_control.php:40
|
5550 |
msgid "Woolentor Addons"
|
5551 |
msgstr ""
|
5552 |
|
5598 |
msgid "Write your message"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
+
#: classes/class.quickview_manage.php:25
|
5602 |
+
msgid "X"
|
5603 |
+
msgstr ""
|
5604 |
+
|
5605 |
#: includes/addons/wb_image_marker.php:114
|
5606 |
msgid "X Position"
|
5607 |
msgstr ""
|
5626 |
msgid "Yes"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: includes/admin/include/template-library.php:161
|
5630 |
msgid "You are not permitted to import the template."
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: includes/admin/include/admin_fields.php:1346
|
5634 |
msgid "You can choose menu for shopify style checkout page."
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: includes/admin/include/admin_fields.php:1370
|
5638 |
+
msgid "You can enable / disable flash sale from here."
|
5639 |
+
msgstr ""
|
5640 |
+
|
5641 |
+
#: includes/admin/include/admin_fields.php:833
|
5642 |
msgid "You can enable / disable rename label from here."
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: includes/admin/include/admin_fields.php:930
|
5646 |
msgid "You can enable / disable sales notification from here."
|
5647 |
msgstr ""
|
5648 |
|
5649 |
+
#: includes/admin/include/admin_fields.php:1325
|
5650 |
msgid "You can enable / disable shopify style checkout page from here."
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: includes/admin/include/admin_fields.php:1834
|
5654 |
msgid "You can enable duplicator for individual post."
|
5655 |
msgstr ""
|
5656 |
|
5663 |
msgid "You can enable/disable template builder from here."
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: includes/admin/include/admin_fields.php:1260
|
5667 |
+
#: includes/admin/include/admin_fields.php:1270
|
5668 |
msgid "You can handle the notificaton width."
|
5669 |
msgstr ""
|
5670 |
|
5692 |
msgid "You can select a template for the Checkout page layout"
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: includes/admin/include/admin_fields.php:1334
|
5696 |
msgid "You can upload your logo for shopify style checkout page from here."
|
5697 |
msgstr ""
|
5698 |
|
5700 |
msgid "Zippers cotton jogger"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
+
#: includes/admin/include/admin_fields.php:1182
|
5704 |
msgid "zoomIn"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
+
#: includes/admin/include/admin_fields.php:1183
|
5708 |
msgid "zoomInDown"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
+
#: includes/admin/include/admin_fields.php:1184
|
5712 |
msgid "zoomInLeft"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: includes/admin/include/admin_fields.php:1185
|
5716 |
msgid "zoomInRight"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: includes/admin/include/admin_fields.php:1186
|
5720 |
msgid "zoomInUp"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: includes/admin/include/admin_fields.php:1239
|
5724 |
msgid "zoomOut"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: includes/admin/include/admin_fields.php:1240
|
5728 |
msgid "zoomOutDown"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: includes/admin/include/admin_fields.php:1241
|
5732 |
msgid "zoomOutLeft"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: includes/admin/include/admin_fields.php:1242
|
5736 |
msgid "zoomOutRight"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: includes/admin/include/admin_fields.php:1243
|
5740 |
msgid "zoomOutUp"
|
5741 |
msgstr ""
|
5742 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: hasthemes, htplugins, devitemsllc, tarekht
|
|
3 |
Tags: Elementor, WooCommerce, WooCommerce Elementor, WooCommerce Builder, WooCommerce Product
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.8.2
|
6 |
-
Stable tag: 2.1.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -236,12 +236,18 @@ WooLentor Pro allows us to customize the checkout page to reduce the bounce rate
|
|
236 |
<strong>[Customize WooCommerce Single Product Template](https://hasthemes.com/how-to-build-a-custom-product-template-using-woolentor-plugin/)</strong>
|
237 |
WooLentor allows us to create a custom single product template. Create a unique design for your product page. Free version has the option to create a common product page template, the pro version allows to create a different design for each product page.
|
238 |
|
|
|
|
|
|
|
239 |
<strong>Shopify Style Checkout Page in WooCommerce</strong>
|
240 |
When it comes to the Checkout page, customers always prefer a clean and simple one rather than a complicated one with lots of fields. A lengthy Checkout form can even increase cart abandonment while also negatively affecting the conversion rates. With this in mind, we have added a fantastic feature, which will enable you to create a Shopify style Checkout page that is pretty straightforward. Furthermore, it will provide the customers with an amazing Checkout experience.
|
241 |
|
242 |
<strong>Multi-Step Checkout (Pro)</strong>
|
243 |
The checkout process is the most important step in your customer’s journey, and it should be as easy and seamless as possible. That’s why we created our Multi-Step Checkout feature that allows you to create a more effective and organized checkout page by dividing the process into several simpler steps.
|
244 |
|
|
|
|
|
|
|
245 |
== Extensions: ==
|
246 |
|
247 |
<strong>❤️ [WishSuite for WooCommerce Wishlist](https://wordpress.org/plugins/wishsuite/)</strong>
|
@@ -325,6 +331,16 @@ Elementor Pro is not required. But you can use wooLentor with Elementor free & P
|
|
325 |
|
326 |
== Changelog ==
|
327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
= Version: 2.1.3 - Date: 2021-12-21 =
|
329 |
* Solved : Post Duplicator security issue.
|
330 |
* Solved : Template library pop style issue.
|
3 |
Tags: Elementor, WooCommerce, WooCommerce Elementor, WooCommerce Builder, WooCommerce Product
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.8.2
|
6 |
+
Stable tag: 2.1.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
236 |
<strong>[Customize WooCommerce Single Product Template](https://hasthemes.com/how-to-build-a-custom-product-template-using-woolentor-plugin/)</strong>
|
237 |
WooLentor allows us to create a custom single product template. Create a unique design for your product page. Free version has the option to create a common product page template, the pro version allows to create a different design for each product page.
|
238 |
|
239 |
+
<strong>Flash Sale Countdown</strong>
|
240 |
+
Flash Sale Countdown module allows you to show discounts available for a limited time. Short-term sales can be a fantastic way to sell a large number of items in a few hours. If your company expects an exceptional rise in your checkout counts, you ought to use the Flash Sale Countdown module on New Year's Eve, Black Friday, Christmas, and other holiday sales.
|
241 |
+
|
242 |
<strong>Shopify Style Checkout Page in WooCommerce</strong>
|
243 |
When it comes to the Checkout page, customers always prefer a clean and simple one rather than a complicated one with lots of fields. A lengthy Checkout form can even increase cart abandonment while also negatively affecting the conversion rates. With this in mind, we have added a fantastic feature, which will enable you to create a Shopify style Checkout page that is pretty straightforward. Furthermore, it will provide the customers with an amazing Checkout experience.
|
244 |
|
245 |
<strong>Multi-Step Checkout (Pro)</strong>
|
246 |
The checkout process is the most important step in your customer’s journey, and it should be as easy and seamless as possible. That’s why we created our Multi-Step Checkout feature that allows you to create a more effective and organized checkout page by dividing the process into several simpler steps.
|
247 |
|
248 |
+
<strong>Partial Payment (Pro)</strong>
|
249 |
+
Customers may utilize the partial payment option to make a part payment since they just don't have enough money on hand to pay the invoice in full. Store owners can handle partial payments and decide whether or not consumers can get the product right away or only after they pay full price.
|
250 |
+
|
251 |
== Extensions: ==
|
252 |
|
253 |
<strong>❤️ [WishSuite for WooCommerce Wishlist](https://wordpress.org/plugins/wishsuite/)</strong>
|
331 |
|
332 |
== Changelog ==
|
333 |
|
334 |
+
= Version: 2.1.5 - Date: 2022-01-03 =
|
335 |
+
* Solved : Gutenberg Blocks Console Error issue.
|
336 |
+
|
337 |
+
= Version: 2.1.4 - Date: 2022-01-02 =
|
338 |
+
* Added : Flash Sale Event Module.
|
339 |
+
* Improved : Gutenberg Blocks Assets load.
|
340 |
+
* Solved : Product not found message showing issue.
|
341 |
+
* Solved : Country, State selection issue in shopify style checkout page.
|
342 |
+
* Solved : Translate issue in shopify style checkout page.
|
343 |
+
|
344 |
= Version: 2.1.3 - Date: 2021-12-21 =
|
345 |
* Solved : Post Duplicator security issue.
|
346 |
* Solved : Template library pop style issue.
|
woolentor-blocks/includes/classes/Scripts.php
CHANGED
@@ -55,8 +55,8 @@ class Scripts {
|
|
55 |
wp_enqueue_script(
|
56 |
'woolentor-block-main',
|
57 |
WOOLENTOR_BLOCK_URL . '/src/assets/js/script.js',
|
58 |
-
|
59 |
-
|
60 |
true
|
61 |
);
|
62 |
|
55 |
wp_enqueue_script(
|
56 |
'woolentor-block-main',
|
57 |
WOOLENTOR_BLOCK_URL . '/src/assets/js/script.js',
|
58 |
+
array(),
|
59 |
+
WOOLENTOR_VERSION,
|
60 |
true
|
61 |
);
|
62 |
|
woolentor_addons_elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WooLentor - WooCommerce Elementor Addons + Builder
|
4 |
* Description: The WooCommerce elements library for Elementor page builder plugin for WordPress.
|
5 |
* Plugin URI: https://woolentor.com/
|
6 |
-
* Version: 2.1.
|
7 |
* Author: HasThemes
|
8 |
* Author URI: https://hasthemes.com/plugins/woolentor-pro/
|
9 |
* License: GPL-2.0+
|
@@ -11,13 +11,13 @@
|
|
11 |
* Text Domain: woolentor
|
12 |
* Domain Path: /languages
|
13 |
* WC tested up to: 6.0.0
|
14 |
-
* Elementor tested up to: 3.5.
|
15 |
-
* Elementor Pro tested up to: 3.5.
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
19 |
|
20 |
-
define( 'WOOLENTOR_VERSION', '2.1.
|
21 |
define( 'WOOLENTOR_ADDONS_PL_ROOT', __FILE__ );
|
22 |
define( 'WOOLENTOR_ADDONS_PL_URL', plugins_url( '/', WOOLENTOR_ADDONS_PL_ROOT ) );
|
23 |
define( 'WOOLENTOR_ADDONS_PL_PATH', plugin_dir_path( WOOLENTOR_ADDONS_PL_ROOT ) );
|
3 |
* Plugin Name: WooLentor - WooCommerce Elementor Addons + Builder
|
4 |
* Description: The WooCommerce elements library for Elementor page builder plugin for WordPress.
|
5 |
* Plugin URI: https://woolentor.com/
|
6 |
+
* Version: 2.1.5
|
7 |
* Author: HasThemes
|
8 |
* Author URI: https://hasthemes.com/plugins/woolentor-pro/
|
9 |
* License: GPL-2.0+
|
11 |
* Text Domain: woolentor
|
12 |
* Domain Path: /languages
|
13 |
* WC tested up to: 6.0.0
|
14 |
+
* Elementor tested up to: 3.5.2
|
15 |
+
* Elementor Pro tested up to: 3.5.2
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
19 |
|
20 |
+
define( 'WOOLENTOR_VERSION', '2.1.5' );
|
21 |
define( 'WOOLENTOR_ADDONS_PL_ROOT', __FILE__ );
|
22 |
define( 'WOOLENTOR_ADDONS_PL_URL', plugins_url( '/', WOOLENTOR_ADDONS_PL_ROOT ) );
|
23 |
define( 'WOOLENTOR_ADDONS_PL_PATH', plugin_dir_path( WOOLENTOR_ADDONS_PL_ROOT ) );
|