Advanced AJAX Product Filters - Version 1.4.0.5

Version Description

  • Enhancement - Compatibility version: Wordpress 5.3 and WooCommerce 3.8
  • Fix - Additional tables: stuck and do not generate tables
  • Fix - Additional tables: slow generating of the data for categories
  • Fix - Product Category Value Limitation do not work
Download this release

Release Info

Developer RazyRx
Plugin Icon wp plugin Advanced AJAX Product Filters
Version 1.4.0.5
Comparing to
See all releases

Code changes from version 1.4.0.4 to 1.4.0.5

addons/additional_tables/add_table.php CHANGED
@@ -218,24 +218,48 @@ class BeRocket_aapf_variations_tables {
218
  $newmd5 = apply_filters('BRaapf_cache_check_md5', $newmd5, 'br_generate_child_relation', $taxonomy);
219
  $md5 = get_option(apply_filters('br_aapf_md5_cache_text', 'br_custom_table_hierarhical_'.$taxonomy));
220
  if($md5 != $newmd5) {
 
 
 
 
 
 
 
 
 
221
  $table_name = $wpdb->prefix . 'braapf_term_taxonomy_hierarchical';
222
  $wpdb->query("DELETE FROM $table_name WHERE taxonomy = '$taxonomy';");
223
  $hierarchy = br_get_taxonomy_hierarchy(array('taxonomy' => $taxonomy, 'return' => 'child'));
224
- $join_query = "INSERT IGNORE INTO $table_name
225
- SELECT tt1.term_taxonomy_id as term_taxonomy_id, tt1.term_id as term_id,
226
- tt2.term_taxonomy_id as term_taxonomy_child_id, tt2.term_id as term_child_id,
227
- tt1.taxonomy as taxonomy
228
- FROM {$wpdb->term_taxonomy} as tt1
229
- JOIN {$wpdb->term_taxonomy} as tt2 ON (";
230
  $join_list = array();
231
- foreach($hierarchy as $term_id => $term_child) {
232
- $join_list[] = "(tt1.term_id = '{$term_id}' AND tt2.term_id IN('".implode("','", $term_child)."'))";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  }
234
- $join_query .= implode('
235
- OR
236
- ', $join_list);
237
- $join_query .= ")";
238
- $wpdb->query($join_query);
239
  update_option(apply_filters('br_aapf_md5_cache_text', 'br_custom_table_hierarhical_'.$taxonomy), $newmd5);
240
  }
241
  }
218
  $newmd5 = apply_filters('BRaapf_cache_check_md5', $newmd5, 'br_generate_child_relation', $taxonomy);
219
  $md5 = get_option(apply_filters('br_aapf_md5_cache_text', 'br_custom_table_hierarhical_'.$taxonomy));
220
  if($md5 != $newmd5) {
221
+ $categories_ids = get_terms(array('taxonomy' => $taxonomy, 'hide_empty' => false));
222
+ if( empty($categories_ids) || is_wp_error($categories_ids) ) {
223
+ return;
224
+ }
225
+ $new_categories = array();
226
+ foreach($categories_ids as $categories_id) {
227
+ $new_categories[$categories_id->term_id] = $categories_id;
228
+ }
229
+ unset($categories_ids);
230
  $table_name = $wpdb->prefix . 'braapf_term_taxonomy_hierarchical';
231
  $wpdb->query("DELETE FROM $table_name WHERE taxonomy = '$taxonomy';");
232
  $hierarchy = br_get_taxonomy_hierarchy(array('taxonomy' => $taxonomy, 'return' => 'child'));
233
+ $join_query = "INSERT IGNORE INTO $table_name VALUES ";
 
 
 
 
 
234
  $join_list = array();
235
+ $drop_query = array();
236
+ $count = 0;
237
+ foreach($hierarchy as $term_id => $term_childs) {
238
+ foreach($term_childs as $term_child) {
239
+ if( ! empty($new_categories[$term_id]) && ! empty($new_categories[$term_child]) ) {
240
+ $drop_query[] = sprintf("(%d,%d,%d,%d,'%s')",
241
+ $new_categories[$term_id]->term_taxonomy_id,
242
+ $new_categories[$term_id]->term_id,
243
+ $new_categories[$term_child]->term_taxonomy_id,
244
+ $new_categories[$term_child]->term_id,
245
+ $new_categories[$term_id]->taxonomy);
246
+ $count++;
247
+ if( $count > 100 ) {
248
+ $join_list[] = $drop_query;
249
+ $drop_query = array();
250
+ $count = 0;
251
+ }
252
+ }
253
+ }
254
+ }
255
+ $join_list[] = $drop_query;
256
+ unset($drop_query, $count);
257
+ foreach($join_list as $drop_query) {
258
+ if( empty($drop_query) ) continue;
259
+ $drop_query = implode(',', $drop_query);
260
+ $drop_query = $join_query . $drop_query;
261
+ $wpdb->query($drop_query);
262
  }
 
 
 
 
 
263
  update_option(apply_filters('br_aapf_md5_cache_text', 'br_custom_table_hierarhical_'.$taxonomy), $newmd5);
264
  }
265
  }
addons/additional_tables/additional_tables.php CHANGED
@@ -173,6 +173,18 @@ class BeRocket_aapf_variations_tables_addon extends BeRocket_framework_addon_lib
173
  if ( function_exists( 'fastcgi_finish_request' ) && version_compare( phpversion(), '7.0.16', '>=' ) ) {
174
  fastcgi_finish_request();
175
  }
 
 
 
 
 
 
 
 
 
 
 
 
176
  $this->activate(-1, true);
177
  wp_die();
178
  }
173
  if ( function_exists( 'fastcgi_finish_request' ) && version_compare( phpversion(), '7.0.16', '>=' ) ) {
174
  fastcgi_finish_request();
175
  }
176
+ $run_data = $this->get_current_create_position_data();
177
+ if( ! empty($run_data) && ! empty($run_data['run']) ) {
178
+ if( ! empty($run_data['ajax_status_check']) ) {
179
+ if( intval($run_data['ajax_status_check']) > time() ) {
180
+ $run_data['run'] = false;
181
+ unset($run_data['ajax_status_check']);
182
+ }
183
+ } else {
184
+ $run_data['ajax_status_check'] = time() + 30;
185
+ }
186
+ $this->set_current_create_position_data($run_data);
187
+ }
188
  $this->activate(-1, true);
189
  wp_die();
190
  }
css/widget.css CHANGED
@@ -1251,6 +1251,225 @@ div.berocket_single_filter_widget div.berocket_aapf_widget-wrapper * {
1251
  .berocket_aapf_widget select {
1252
  overflow: auto!important;
1253
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1254
  /* COMPATIBILITY WITH THEMES */
1255
  /* FLATSOME */
1256
  .berocket_aapf_widget-wrapper .slider:not(.flickity-enabled) {
1251
  .berocket_aapf_widget select {
1252
  overflow: auto!important;
1253
  }
1254
+ .berocket_element_above_products_after {
1255
+ clear:both;
1256
+ }
1257
+
1258
+ ul.berocket_aapf_widget li > span > input + .berocket_label_widgets::before {
1259
+ margin-right: 6px;
1260
+ }
1261
+
1262
+ /* HIDDEN FILTERS UNDER ICON */
1263
+
1264
+ .berocket_element_above_products_is_hide {
1265
+ overflow: hidden !important;
1266
+ }
1267
+ .berocket_element_above_products_is_hide.br_is_hidden {
1268
+ opacity: 0;
1269
+ max-height: 1px;
1270
+ position: relative;
1271
+ }
1272
+ .berocket_element_above_products_is_hide_toggle {
1273
+ height: 20px;
1274
+ width: 200px;
1275
+ margin: 40px 0;
1276
+ display: inline-block;
1277
+ position: relative;
1278
+ padding-left: 25px;
1279
+ outline: 0 none !important;
1280
+ color: #2a2a2a;
1281
+ font-weight: 600;
1282
+ }
1283
+ .berocket_element_above_products_is_hide_toggle span,
1284
+ .berocket_element_above_products_is_hide_toggle span:before,
1285
+ .berocket_element_above_products_is_hide_toggle span:after {
1286
+ position: absolute;
1287
+ left: 0;
1288
+ width: 17px;
1289
+ height: 2px;
1290
+ background: #ababab;
1291
+ display: block;
1292
+ transition: all 0.2s;
1293
+ }
1294
+ .berocket_element_above_products_is_hide_toggle span {
1295
+ top: 13px;
1296
+ }
1297
+ .berocket_element_above_products_is_hide_toggle span:before {
1298
+ content: "";
1299
+ top: -6px;
1300
+ }
1301
+ .berocket_element_above_products_is_hide_toggle span:after {
1302
+ content: "";
1303
+ bottom: -6px;
1304
+ }
1305
+ .berocket_element_above_products_is_hide_toggle:hover span,
1306
+ .berocket_element_above_products_is_hide_toggle:hover span:before,
1307
+ .berocket_element_above_products_is_hide_toggle:hover span:after,
1308
+ .berocket_element_above_products_is_hide_toggle.active span,
1309
+ .berocket_element_above_products_is_hide_toggle.active span:before,
1310
+ .berocket_element_above_products_is_hide_toggle.active span:after {
1311
+ background: #2a2a2a;
1312
+ }
1313
+ .berocket_element_above_products_is_hide_toggle:hover span:before {
1314
+ width: 14px;
1315
+ }
1316
+ .berocket_element_above_products_is_hide_toggle:hover span:after {
1317
+ width: 11px;
1318
+ }
1319
+
1320
+ .berocket_element_above_products_is_hide_toggle.active span{
1321
+ background: transparent;
1322
+ }
1323
+ .berocket_element_above_products_is_hide_toggle.active span:before {
1324
+ transform: rotate(45deg);
1325
+ width: 17px;
1326
+ top:0;
1327
+ }
1328
+ .berocket_element_above_products_is_hide_toggle.active span:after {
1329
+ transform: rotate(135deg);
1330
+ width: 17px;
1331
+ bottom: 0;
1332
+ }
1333
+
1334
+ /* CUSTOM SIDEBAR */
1335
+ .berocket_ajax_filters_sidebar_toggle {
1336
+ height: 20px;
1337
+ width: 200px;
1338
+ margin: 40px 0;
1339
+ display: inline-block;
1340
+ position: relative;
1341
+ padding-left: 25px;
1342
+ outline: 0 none !important;
1343
+ color: #2a2a2a;
1344
+ font-weight: 600;
1345
+ }
1346
+ .berocket_ajax_filters_sidebar_toggle span,
1347
+ .berocket_ajax_filters_sidebar_toggle span:before,
1348
+ .berocket_ajax_filters_sidebar_toggle span:after {
1349
+ position: absolute;
1350
+ left: 0;
1351
+ width: 17px;
1352
+ height: 2px;
1353
+ background: #ababab;
1354
+ display: block;
1355
+ transition: all 0.2s;
1356
+ }
1357
+ .berocket_ajax_filters_sidebar_toggle span {
1358
+ top: 13px;
1359
+ }
1360
+ .berocket_ajax_filters_sidebar_toggle span:before {
1361
+ content: "";
1362
+ top: -6px;
1363
+ }
1364
+ .berocket_ajax_filters_sidebar_toggle span:after {
1365
+ content: "";
1366
+ bottom: -6px;
1367
+ }
1368
+ .berocket_ajax_filters_sidebar_toggle:hover span,
1369
+ .berocket_ajax_filters_sidebar_toggle:hover span:before,
1370
+ .berocket_ajax_filters_sidebar_toggle:hover span:after,
1371
+ .berocket_ajax_filters_sidebar_toggle.active span,
1372
+ .berocket_ajax_filters_sidebar_toggle.active span:before,
1373
+ .berocket_ajax_filters_sidebar_toggle.active span:after {
1374
+ background: #2a2a2a;
1375
+ }
1376
+ .berocket_ajax_filters_sidebar_toggle:hover span:before {
1377
+ width: 14px;
1378
+ }
1379
+ .berocket_ajax_filters_sidebar_toggle:hover span:after {
1380
+ width: 11px;
1381
+ }
1382
+
1383
+ .berocket_ajax_filters_sidebar_toggle.active span {
1384
+ background: transparent;
1385
+ }
1386
+ .berocket_ajax_filters_sidebar_toggle.active span:before {
1387
+ transform: rotate(45deg);
1388
+ width: 17px;
1389
+ top:0;
1390
+ }
1391
+ .berocket_ajax_filters_sidebar_toggle.active span:after {
1392
+ transform: rotate(135deg);
1393
+ width: 17px;
1394
+ bottom: 0;
1395
+ }
1396
+
1397
+ #berocket-ajax-filters-sidebar {
1398
+ display: block;
1399
+ position: fixed;
1400
+ top: 0;
1401
+ left: -350px;
1402
+ bottom: 0;
1403
+ width: 350px;
1404
+ max-width: 100%;
1405
+ background: white;
1406
+ transition: all 0.2s;
1407
+ z-index: 100000;
1408
+ box-sizing: border-box;
1409
+ overflow: auto !important;
1410
+ }
1411
+ #berocket-ajax-filters-sidebar-shadow {
1412
+ content: "";
1413
+ display: none;
1414
+ position: fixed;
1415
+ top: 0;
1416
+ left: 0;
1417
+ bottom: 0;
1418
+ right: 0;
1419
+ z-index: 99999;
1420
+ background: black;
1421
+ opacity: 0.7;
1422
+ }
1423
+ .admin-bar #berocket-ajax-filters-sidebar {
1424
+ top: 32px;
1425
+ }
1426
+ #berocket-ajax-filters-sidebar.active,
1427
+ #berocket-ajax-filters-sidebar.active + #berocket-ajax-filters-sidebar-shadow{
1428
+ left: 0;
1429
+ display: block;
1430
+ }
1431
+ #berocket-ajax-filters-sidebar .berocket_ajax_group_filter_title {
1432
+ padding: 15px 88px 15px 15px !important;
1433
+ font-weight: 500 !important;
1434
+ font-size: 24px !important;
1435
+ color: #333333 !important;
1436
+ border-bottom: 1px solid #ccc !important;
1437
+ }
1438
+ #berocket-ajax-filters-sidebar > div {
1439
+ padding: 15px!important;
1440
+ }
1441
+ #berocket-ajax-filters-sidebar .widget-title.berocket_aapf_widget-title {
1442
+ color: #333333 !important;
1443
+ font-size: 19px !important;
1444
+ font-weight: 600 !important;
1445
+ }
1446
+ #berocket-ajax-filters-sidebar .berocket_aapf_widget,
1447
+ #berocket-ajax-filters-sidebar .berocket_aapf_widget li {
1448
+ margin: 0 !important;
1449
+ }
1450
+ #berocket-ajax-filters-sidebar .berocket_aapf_widget .berocket_checkbox_color .berocket_label_widgets {
1451
+ margin: 0 0.6em 0.6em 0 !important;
1452
+ }
1453
+ #berocket-ajax-filters-sidebar-close{
1454
+ position: absolute !important;
1455
+ right: 0 !important;
1456
+ line-height: 39px;
1457
+ padding: 17px 15px 13px !important;
1458
+ font-family: Arial, serif !important;
1459
+ color: #a2a2a2;
1460
+ }
1461
+ @media screen and (max-width:782px) {
1462
+ .admin-bar #berocket-ajax-filters-sidebar {
1463
+ top: 46px;
1464
+ }
1465
+ }
1466
+ @media screen and (max-width:600px) {
1467
+ .admin-bar #berocket-ajax-filters-sidebar {
1468
+ top: 0;
1469
+ }
1470
+ }
1471
+
1472
+
1473
  /* COMPATIBILITY WITH THEMES */
1474
  /* FLATSOME */
1475
  .berocket_aapf_widget-wrapper .slider:not(.flickity-enabled) {
includes/compatibility/bodycommerce.php CHANGED
@@ -2,170 +2,9 @@
2
  if ( ! function_exists('berocket_aapf_bodycommerce_archive_module_args') ) {
3
  add_filter('db_archive_module_args', 'berocket_aapf_bodycommerce_archive_module_args');
4
  function berocket_aapf_bodycommerce_archive_module_args( $new_args ) {
5
- if ( function_exists('br_aapf_args_parser') ) {
6
- //global $wp_query, $wp_rewrite;
7
- $br_options = apply_filters( 'berocket_aapf_listener_br_options', BeRocket_AAPF::get_aapf_option() );
8
-
9
- $add_to_args = array();
10
- if ( ! empty($_POST['limits']) && is_array($_POST['limits']) ) {
11
- foreach ( $_POST['limits'] as $post_key => $t ) {
12
- if( $t[0] == '_date' ) {
13
- $from = $t[1];
14
- $to = $t[2];
15
- $from = substr($from, 0, 2).'/'.substr($from, 2, 2).'/'.substr($from, 4, 4);
16
- $to = substr($to, 0, 2).'/'.substr($to, 2, 2).'/'.substr($to, 4, 4);
17
- $from = date('Y-m-d 00:00:00', strtotime($from));
18
- $to = date('Y-m-d 23:59:59', strtotime($to));
19
- $add_to_args['date_query'] = array(
20
- 'after' => $from,
21
- 'before' => $to,
22
- );
23
- unset($_POST['limits'][$post_key]);
24
- }
25
- }
26
- }
27
  $BeRocket_AAPF = BeRocket_AAPF::getInstance();
28
- if ( ! empty($_POST['terms']) && is_array($_POST['terms']) ) {
29
- $stop_sale = false;
30
- $check_sale = $check_notsale = 0;
31
- foreach ( $_POST['terms'] as $post_key => $t ) {
32
- if( $t[0] == 'price' ) {
33
- if( preg_match( "~\*~", $t[1] ) ) {
34
- if( ! isset( $_POST['price_ranges'] ) ) {
35
- $_POST['price_ranges'] = array();
36
- }
37
- $_POST['price_ranges'][] = $t[1];
38
- unset( $_POST['terms'][$post_key] );
39
- }
40
- } elseif( $t[0] == '_sale' ) {
41
- // if both used do nothing
42
- if ( $t[0] == '_sale' and $t[3] == 'sale' ) {
43
- $check_sale++;
44
- }
45
- if ( $t[0] == '_sale' and $t[3] == 'notsale' ) {
46
- $check_notsale++;
47
- }
48
- unset($_POST['terms'][$post_key]);
49
- } elseif( $t[0] == '_rating' ) {
50
- $_POST['terms'][$post_key][0] = 'product_visibility';
51
- }
52
- }
53
- if ( ! empty($br_options['slug_urls']) ) {
54
- foreach ( $_POST['terms'] as $post_key => $t ) {
55
- if( $t[0] == '_stock_status' ) {
56
- $_stock_status = array( 'instock' => 1, 'outofstock' => 2);
57
- $_POST['terms'][$post_key][1] = (isset($_stock_status[$t[1]]) ? $_stock_status[$t[1]] : $_stock_status['instock']);
58
- } else {
59
- $t[1] = get_term_by( 'slug', $t[3], $t[0] );
60
- $t[1] = $t[1]->term_id;
61
- $_POST['terms'][$post_key] = $t;
62
- }
63
- }
64
- }
65
-
66
- if ( ! ($check_sale and $check_notsale) ) {
67
- if ( $check_sale ) {
68
- $add_to_args['post__in'] = array_merge( array( 0 ), wc_get_product_ids_on_sale() );
69
- } elseif( $check_notsale ) {
70
- $add_to_args['post__in'] = array_merge( array( 0 ), $BeRocket_AAPF->wc_get_product_ids_not_on_sale() );
71
- }
72
- }
73
- }
74
-
75
- $woocommerce_hide_out_of_stock_items = BeRocket_AAPF_Widget::woocommerce_hide_out_of_stock_items();
76
-
77
- $meta_query = $BeRocket_AAPF->remove_out_of_stock( array() , true, $woocommerce_hide_out_of_stock_items != 'yes' );
78
-
79
- $args = apply_filters( 'berocket_aapf_listener_wp_query_args', array() );
80
- foreach($add_to_args as $arg_name => $add_arg) {
81
- $args[$arg_name] = $add_arg;
82
- }
83
- if( ! empty($_POST['limits']) ) {
84
- $args = apply_filters('berocket_aapf_convert_limits_to_tax_query', $args, $_POST['limits']);
85
- }
86
- if( ! isset($args['post__in']) ) {
87
- $args['post__in'] = array();
88
- }
89
- if( $woocommerce_hide_out_of_stock_items == 'yes' ) {
90
- $args['post__in'] = $BeRocket_AAPF->remove_out_of_stock( $args['post__in'] );
91
- }
92
- if( ! br_woocommerce_version_check() ) {
93
- $args['post__in'] = $BeRocket_AAPF->remove_hidden( $args['post__in'] );
94
- }
95
- $args['meta_query'] = $meta_query;
96
-
97
- if( ! empty($_POST['limits']) ) {
98
- $args = apply_filters('berocket_aapf_convert_limits_to_tax_query', $args, $_POST['limits']);
99
- }
100
- if( isset($_POST['price']) && is_array($_POST['price']) ) {
101
- $_POST['price'] = apply_filters('berocket_min_max_filter', $_POST['price']);
102
- }
103
- if ( ! empty( $_POST['price'] ) ) {
104
- $min = isset( $_POST['price'][0] ) ? floatval( $_POST['price'][0] ) : 0;
105
- $max = isset( $_POST['price'][1] ) ? floatval( $_POST['price'][1] ) : 9999999999;
106
-
107
- $args['meta_query'][] = array(
108
- 'key' => apply_filters('berocket_price_filter_meta_key', '_price', 'widget_2847'),
109
- 'value' => array( $min, $max ),
110
- 'compare' => 'BETWEEN',
111
- 'type' => 'DECIMAL',
112
- 'price_filter' => true,
113
- );
114
- }
115
- /*$args['post_status'] = 'publish';
116
- if ( is_user_logged_in() ) {
117
- $args['post_status'] .= '|private';
118
- }*/
119
- $args['post_type'] = 'product';
120
- //$default_posts_per_page = get_option( 'posts_per_page' );
121
- //$args['posts_per_page'] = apply_filters( 'loop_shop_per_page', $default_posts_per_page );
122
-
123
- if ( ! empty($_POST['price_ranges']) && is_array($_POST['price_ranges']) ) {
124
- $price_range_query = array( 'relation' => 'OR' );
125
- foreach ( $_POST['price_ranges'] as $range ) {
126
- $range = explode( '*', $range );
127
- $price_range_query[] = array( 'key' => apply_filters('berocket_price_filter_meta_key', '_price', 'widget_2867'), 'compare' => 'BETWEEN', 'type' => 'NUMERIC', 'value' => array( ($range[0] - 1), $range[1] ) );
128
- }
129
- $args['meta_query'][] = $price_range_query;
130
- }
131
-
132
- if( isset($_POST['product_taxonomy']) && $_POST['product_taxonomy'] != '-1' && strpos( $_POST['product_taxonomy'], '|' ) !== FALSE ) {
133
- $product_taxonomy = explode( '|', $_POST['product_taxonomy'] );
134
- $args['taxonomy'] = $product_taxonomy[0];
135
- $args['term'] = $product_taxonomy[1];
136
- }
137
- if( isset($_POST['s']) && strlen($_POST['s']) > 0 ) {
138
- $args['s'] = $_POST['s'];
139
- }
140
-
141
- /*if( function_exists('wc_get_product_visibility_term_ids') ) {
142
- $product_visibility_term_ids = wc_get_product_visibility_term_ids();
143
-
144
- $args['tax_query'][] = array(
145
- 'taxonomy' => 'product_visibility',
146
- 'field' => 'term_taxonomy_id',
147
- 'terms' => array($product_visibility_term_ids['exclude-from-catalog']),
148
- 'operator' => 'NOT IN'
149
- );
150
- }*/
151
- /*
152
- $args = array_merge($args, WC()->query->get_catalog_ordering_args());
153
-
154
- $wp_query = new WP_Query( $args );
155
-
156
- // here we get max products to know if current page is not too big
157
- $is_using_permalinks = $wp_rewrite->using_permalinks();
158
- if ( empty( $_POST['location'] ) and ! empty ( $_GET['location'] ) ) {
159
- $_POST['location'] = $_GET['location'];
160
- } else {
161
- $_POST['location'] = 0;
162
- }
163
- if ( $is_using_permalinks and preg_match( "~/page/([0-9]+)~", $_POST['location'], $mathces ) or preg_match( "~paged?=([0-9]+)~", $_POST['location'], $mathces ) ) {
164
- $args['paged'] = min( $mathces[1], $wp_query->max_num_pages );
165
- }
166
- */
167
-
168
- $new_args = $new_args + $args;
169
  }
170
 
171
  return $new_args;
2
  if ( ! function_exists('berocket_aapf_bodycommerce_archive_module_args') ) {
3
  add_filter('db_archive_module_args', 'berocket_aapf_bodycommerce_archive_module_args');
4
  function berocket_aapf_bodycommerce_archive_module_args( $new_args ) {
5
+ if ( class_exists('BeRocket_AAPF') ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  $BeRocket_AAPF = BeRocket_AAPF::getInstance();
7
+ $new_args = $BeRocket_AAPF->woocommerce_filter_query_vars( $new_args );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  }
9
 
10
  return $new_args;
includes/faster_recount.php CHANGED
@@ -25,7 +25,8 @@ class BeRocket_AAPF_faster_attribute_recount {
25
  'meta_query' => FALSE,
26
  'post__not_in' => array(),
27
  'post__in' => array(),
28
- 'include_child' => TRUE
 
29
  ), $taxonomy_data), $terms);
30
  global $braapf_recount_taxonomy_data;
31
  $braapf_recount_taxonomy_data = $taxonomy_data;
@@ -62,6 +63,14 @@ class BeRocket_AAPF_faster_attribute_recount {
62
  if( strtoupper($operator) == 'OR' || ! $use_filters ) {
63
  $tax_query = $this->remove_all_berocket_tax_query($tax_query, ($use_filters ? $taxonomy : FALSE));
64
  }
 
 
 
 
 
 
 
 
65
 
66
  $taxonomy_data['meta_query_ready'] = $meta_query = new WP_Meta_Query( $meta_query );
67
  $taxonomy_data['tax_query_ready'] = $tax_query = new WP_Tax_Query( $tax_query );
25
  'meta_query' => FALSE,
26
  'post__not_in' => array(),
27
  'post__in' => array(),
28
+ 'include_child' => TRUE,
29
+ 'additional_tax_query' => FALSE
30
  ), $taxonomy_data), $terms);
31
  global $braapf_recount_taxonomy_data;
32
  $braapf_recount_taxonomy_data = $taxonomy_data;
63
  if( strtoupper($operator) == 'OR' || ! $use_filters ) {
64
  $tax_query = $this->remove_all_berocket_tax_query($tax_query, ($use_filters ? $taxonomy : FALSE));
65
  }
66
+ if( ! empty($taxonomy_data['additional_tax_query']) ) {
67
+ if( empty($tax_query) ) {
68
+ $tax_query = array(
69
+ 'relation' => 'AND',
70
+ );
71
+ }
72
+ $tax_query['additional_tax_query'] = $taxonomy_data['additional_tax_query'];
73
+ }
74
 
75
  $taxonomy_data['meta_query_ready'] = $meta_query = new WP_Meta_Query( $meta_query );
76
  $taxonomy_data['tax_query_ready'] = $tax_query = new WP_Tax_Query( $tax_query );
includes/functions.php CHANGED
@@ -20,6 +20,21 @@ if( ! function_exists( 'br_set_value_to_array' ) ){
20
  return $arr;
21
  }
22
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  if( ! function_exists( 'br_get_current_language_code' ) ){
24
  /**
25
  * Permalink block in settings
@@ -526,6 +541,7 @@ if( ! function_exists( 'br_aapf_args_converter' ) ) {
526
  $_POST['add_terms'] = array();
527
  $_POST['limits'] = array();
528
  $_POST['price'] = array();
 
529
  $filters = array();
530
  if ( preg_match( "~\|~", $_GET['filters'] ) ) {
531
  $filters = explode( "|", $_GET['filters'] );
@@ -2500,3 +2516,26 @@ if ( ! function_exists('berocket_format_number') ) {
2500
  return number_format( $number, $format['decimal_number'], $format['decimal_separate'], $format['thousand_separate']);
2501
  }
2502
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  return $arr;
21
  }
22
  }
23
+
24
+ if( ! function_exists( 'berocket_aapf_insert_to_array' ) ){
25
+ function berocket_aapf_insert_to_array($array, $key_in_array, $array_to_insert, $before = false) {
26
+ $position = array_search($key_in_array, array_keys($array), true);
27
+ if( $position !== FALSE ) {
28
+ if( ! $before ) {
29
+ $position++;
30
+ }
31
+ $array = array_slice($array, 0, $position, true) +
32
+ $array_to_insert +
33
+ array_slice($array, $position, NULL, true);
34
+ }
35
+ return $array;
36
+ }
37
+ }
38
  if( ! function_exists( 'br_get_current_language_code' ) ){
39
  /**
40
  * Permalink block in settings
541
  $_POST['add_terms'] = array();
542
  $_POST['limits'] = array();
543
  $_POST['price'] = array();
544
+ $_POST['price_ranges'] = array();
545
  $filters = array();
546
  if ( preg_match( "~\|~", $_GET['filters'] ) ) {
547
  $filters = explode( "|", $_GET['filters'] );
2516
  return number_format( $number, $format['decimal_number'], $format['decimal_separate'], $format['thousand_separate']);
2517
  }
2518
  }
2519
+ if( ! function_exists('berocket_aapf_get_filter_types') ) {
2520
+ function berocket_aapf_get_filter_types ($type = 'widget') {
2521
+ $berocket_admin_filter_types = array(
2522
+ 'tag' => array('checkbox','radio','select','color','image','tag_cloud'),
2523
+ 'product_cat' => array('checkbox','radio','select','color','image'),
2524
+ 'sale' => array('checkbox','radio','select'),
2525
+ 'custom_taxonomy' => array('checkbox','radio','select','color','image'),
2526
+ 'attribute' => array('checkbox','radio','select','color','image'),
2527
+ 'price' => array('slider'),
2528
+ 'filter_by' => array('checkbox','radio','select','color','image'),
2529
+ );
2530
+ $berocket_admin_filter_types_by_attr = array(
2531
+ 'checkbox' => array('value' => 'checkbox', 'text' => 'Checkbox'),
2532
+ 'radio' => array('value' => 'radio', 'text' => 'Radio'),
2533
+ 'select' => array('value' => 'select', 'text' => 'Select'),
2534
+ 'color' => array('value' => 'color', 'text' => 'Color'),
2535
+ 'image' => array('value' => 'image', 'text' => 'Image'),
2536
+ 'slider' => array('value' => 'slider', 'text' => 'Slider'),
2537
+ 'tag_cloud' => array('value' => 'tag_cloud', 'text' => 'Tag cloud'),
2538
+ );
2539
+ return apply_filters( 'berocket_admin_filter_types_by_attr', array($berocket_admin_filter_types, $berocket_admin_filter_types_by_attr), $type );
2540
+ }
2541
+ }
includes/widget.php CHANGED
@@ -1317,14 +1317,24 @@ class BeRocket_AAPF_Widget extends WP_Widget {
1317
  if( isset($braapf_not_filtered_data['post__not_in']) ) {
1318
  $post__not_in = $braapf_not_filtered_data['post__not_in'];
1319
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1320
  if( $hide_empty ) {
1321
- $terms = apply_filters('berocket_aapf_recount_terms_apply', $terms, array(
1322
- 'taxonomy' => $taxonomy,
1323
- 'operator' => $operator,
1324
- 'use_filters' => FALSE,
1325
- 'post__not_in' => apply_filters('berocket_aapf_get_attribute_values_post__not_in_outside', $post__not_in),
1326
- 'post__in' => apply_filters('berocket_aapf_get_attribute_values_post__in_outside', $post__in)
1327
- ));
1328
  } elseif(empty($terms)) {
1329
  $terms = get_terms( array(
1330
  'taxonomy' => $taxonomy,
@@ -1351,13 +1361,8 @@ class BeRocket_AAPF_Widget extends WP_Widget {
1351
  || is_filtered()
1352
  ) && $count_filtering
1353
  ) {
1354
- $terms = apply_filters('berocket_aapf_recount_terms_apply', $terms, array(
1355
- 'taxonomy' => $taxonomy,
1356
- 'operator' => $operator,
1357
- 'use_filters' => TRUE,
1358
- 'post__not_in' => apply_filters('berocket_aapf_get_attribute_values_post__not_in_outside', $post__not_in),
1359
- 'post__in' => apply_filters('berocket_aapf_get_attribute_values_post__in_outside', $post__in)
1360
- ));
1361
  }
1362
  return $terms;
1363
  }
1317
  if( isset($braapf_not_filtered_data['post__not_in']) ) {
1318
  $post__not_in = $braapf_not_filtered_data['post__not_in'];
1319
  }
1320
+ $recount_args = array(
1321
+ 'taxonomy' => $taxonomy,
1322
+ 'operator' => $operator,
1323
+ 'use_filters' => FALSE,
1324
+ 'post__not_in' => apply_filters('berocket_aapf_get_attribute_values_post__not_in_outside', $post__not_in),
1325
+ 'post__in' => apply_filters('berocket_aapf_get_attribute_values_post__in_outside', $post__in)
1326
+ );
1327
+ if( ! empty($product_cat) ) {
1328
+ $recount_args['additional_tax_query'] = array(
1329
+ 'field' => 'slug',
1330
+ 'include_children' => true,
1331
+ 'operator' => 'IN',
1332
+ 'taxonomy' => 'product_cat',
1333
+ 'terms' => array($product_cat)
1334
+ );
1335
+ }
1336
  if( $hide_empty ) {
1337
+ $terms = apply_filters('berocket_aapf_recount_terms_apply', $terms, $recount_args);
 
 
 
 
 
 
1338
  } elseif(empty($terms)) {
1339
  $terms = get_terms( array(
1340
  'taxonomy' => $taxonomy,
1361
  || is_filtered()
1362
  ) && $count_filtering
1363
  ) {
1364
+ $recount_args['use_filters'] = true;
1365
+ $terms = apply_filters('berocket_aapf_recount_terms_apply', $terms, $recount_args);
 
 
 
 
 
1366
  }
1367
  return $terms;
1368
  }
js/widget.min.js CHANGED
@@ -1976,6 +1976,7 @@ var berocket_aapf_widget_product_filters = [],
1976
  $(".berocket_aapf_widget select").select2({width:'100%'});
1977
  }
1978
  berocket_reset_button_hide_not();
 
1979
  }
1980
  berocket_filters_first_load();
1981
  $(document).on('click', '.br_child_toggle', function() {
@@ -2324,6 +2325,22 @@ load_hash_test();
2324
  $(this).remove();
2325
  br_reset_all_filters();
2326
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2327
  })(jQuery);
2328
  function berocket_ajax_load_product_table_compat() {
2329
  if( jQuery('.berocket_product_table_compat .dataTables_length select').length ) {
1976
  $(".berocket_aapf_widget select").select2({width:'100%'});
1977
  }
1978
  berocket_reset_button_hide_not();
1979
+ $(document).trigger('berocket_filters_first_load');
1980
  }
1981
  berocket_filters_first_load();
1982
  $(document).on('click', '.br_child_toggle', function() {
2325
  $(this).remove();
2326
  br_reset_all_filters();
2327
  });
2328
+ $(document).on('click', '.berocket_element_above_products_is_hide_toggle', function (e){
2329
+ e.preventDefault();
2330
+ $(this).toggleClass( "active" ).next().slideToggle(200, 'linear');
2331
+ });
2332
+ $(document).on('click', '.berocket_ajax_filters_sidebar_toggle', function (e){
2333
+ e.preventDefault();
2334
+ $(this).toggleClass( "active" );
2335
+ $('#berocket-ajax-filters-sidebar').toggleClass('active');
2336
+ });
2337
+ $(document).on('click', '#berocket-ajax-filters-sidebar-shadow, #berocket-ajax-filters-sidebar-close', function () {
2338
+ $('.berocket_ajax_filters_sidebar_toggle').removeClass( "active" );
2339
+ $('#berocket-ajax-filters-sidebar').removeClass('active');
2340
+ });
2341
+ $(document).on('berocket_filters_first_load', function (){
2342
+ $('.berocket_element_above_products_is_hide').hide(0).removeClass('br_is_hidden');
2343
+ });
2344
  })(jQuery);
2345
  function berocket_ajax_load_product_table_compat() {
2346
  if( jQuery('.berocket_product_table_compat .dataTables_length select').length ) {
languages/BeRocket_AJAX_domain-ru_RU.mo CHANGED
Binary file
languages/BeRocket_AJAX_domain-ru_RU.po CHANGED
@@ -2,13 +2,13 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce AJAX Products Filter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-12-21 14:02+0000\n"
6
- "PO-Revision-Date: 2017-12-21 14:30+0000\n"
7
- "Last-Translator: 123 124 <djcrazysait@mail.ru>\n"
8
- "Language-Team: Russian\n"
9
- "Language: ru-RU\n"
10
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
11
- "n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -21,2262 +21,2648 @@ msgstr ""
21
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ru_RU\n"
24
- "X-Generator: Loco - https://localise.biz/"
 
25
 
26
- #: woocommerce-filters.php:233
27
- msgid "View Plugin Settings"
28
- msgstr "Показать настройка плагина"
 
29
 
30
- #: woocommerce-filters.php:233
31
- msgid "Settings"
32
- msgstr "Настройки"
33
 
34
- #: woocommerce-filters.php:241
35
- msgid "View Plugin Documentation"
36
- msgstr "Показать документацию плагина"
37
 
38
- #: woocommerce-filters.php:241
39
- msgid "Docs"
40
- msgstr "Документация"
 
 
 
 
 
 
41
 
42
- #: woocommerce-filters.php:242
43
- msgid "View Premium Support Page"
44
- msgstr "Показать Премиум Страницу поддержки"
45
 
46
- #: woocommerce-filters.php:242
47
- msgid "Premium Support"
48
- msgstr "Премиум Поддержка"
49
 
50
- #: templates/filters_information.php:2
51
- msgid "How to hide filter on page load?"
52
- msgstr "Как скрыть фильтры при загрузке страницы?"
53
 
54
- #: templates/filters_information.php:3
55
- #, php-format
56
- msgid "Enable in <strong>%s</strong> option <strong>%s</strong>"
57
- msgstr "Включите в <strong>%s</strong> опцию <strong>%s</strong>"
58
 
59
- #: templates/filters_information.php:4
60
- msgid "How to add reset filters button?"
61
- msgstr "Как добавить кнопку сброса фильтров?"
62
 
63
- #: templates/filters_information.php:5 templates/filters_information.php:7
64
- #, php-format
65
- msgid "Select <strong>%s</strong> in option <strong>%s</strong>"
66
- msgstr "Выберете <strong>%s</strong> в опции <strong>%s</strong>"
67
 
68
- #: templates/filters_information.php:6
69
- msgid ""
70
- "How to add update products button? (to filter products only after click on "
71
- "button)"
72
- msgstr ""
73
- "Как добавить кнопку обновления продуктов? (для фильтрации продуктов только "
74
- "после нажатия на кнопку)"
75
 
76
- #: templates/groups_information.php:2
77
- msgid ""
78
- "Do not use multiple filters with same attribute on one page! We will not "
79
- "guarantee normal filters works in that case."
80
- msgstr ""
81
- "Не используйте несколько фильтров с одинаковым атрибутом на одной странице. "
82
- "Мы не гарантируем нормальную работу фильтров в этом случае."
83
 
84
- #: templates/groups_information.php:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  msgid ""
86
- "P.S. No, using sub-categories for different filters is not normal. Please "
87
- "use attributes instead"
 
88
  msgstr ""
89
- "P.S. Нет, использовать подкатегории для разных фильтров не нормально. "
90
- "Пожалуйста используйте атрибуты вместо этого"
 
91
 
92
- #: templates/groups_information.php:4 includes/new_filters.php:428
93
- msgid "Conditions"
94
- msgstr "Условия"
95
-
96
- #: templates/groups_information.php:5
97
- msgid "Group without any condition will be displayed on all pages"
98
- msgstr "Группы без условий будут отображаться на всех страницах"
99
 
100
- #: templates/groups_information.php:6
101
- msgid "Connection between condition can be AND and OR"
102
- msgstr "Соединение между условиями может быть И и ИЛИ"
103
 
104
- #: templates/groups_information.php:7
105
- msgid "<strong>AND</strong> uses between condition in one section"
106
- msgstr "<strong>И</strong> используется между условиями в одной секции"
107
 
108
- #: templates/groups_information.php:8
109
- msgid "<strong>OR</strong> uses between different sections with conditions"
110
- msgstr "<strong>ИЛИ</strong> используется между разными секциями с условиями"
111
 
112
- #: templates/groups_information.php:9
113
- msgid "To display one group on different pages use OR condition"
114
- msgstr ""
115
- "Для отображения одной группы на разных страницах используйте условие ИЛИ"
116
 
117
- #: templates/filters_group.php:11
118
- msgid "Add filter"
119
- msgstr "Добавить фильтр"
120
 
121
- #: templates/filters_group.php:12 includes/new_widget.php:135
122
- msgid "Manage filters"
123
- msgstr "Управлять фильтрами"
124
 
125
- #: templates/filters_group.php:27 templates/filters_group.php:44
126
- #: includes/new_filters.php:32 includes/new_filters.php:63
127
- msgid "Edit"
128
- msgstr "Редактировать"
129
 
130
- #: templates/filter_post.php:32 templates/admin-settings.php:1277
131
- #: templates/admin.php:37 includes/new_filters.php:237
132
- msgid "Rating"
133
- msgstr "Рейтинг"
134
 
135
- #: templates/filter_post.php:140 templates/admin-settings.php:1353
136
- #: templates/admin.php:145
137
- msgid "Enable Slider Inputs"
138
- msgstr "Включить Поля Слайдера"
139
 
140
- #: templates/filter_post.php:197 templates/admin-settings.php:119
141
- #: templates/admin-settings.php:1405 templates/admin.php:203
142
- msgid "Attribute Values count"
143
- msgstr "Количество Значений Атрибута"
144
 
145
- #: templates/filter_post.php:198 templates/admin-settings.php:1406
146
- #: templates/admin.php:204
147
- msgid "From settings"
148
- msgstr "С настроек"
149
 
150
- #: templates/filter_post.php:207 templates/admin-settings.php:1415
151
- #: templates/admin.php:213
152
- msgid "Use specific number style"
153
- msgstr "Использовать другие стили чисел"
154
 
155
- #: templates/admin-settings.php:28
156
- msgid "SETUP WIZARD"
157
- msgstr "МАСТЕР УСТАНОВКИ"
158
 
159
- #: templates/admin-settings.php:30
160
- msgid "RUN SETUP WIZARD"
161
- msgstr "ЗАПУСТИТЬ МАСТЕР УСТАНОВКИ"
162
 
163
- #: templates/admin-settings.php:32
164
- msgid "Run it to setup plugin options step by step"
165
- msgstr "Запустите это для настройки опций плагина шаг за шагом"
166
 
167
- #: templates/admin-settings.php:60 includes/wizard.php:67
168
- msgid "Get selectors automatically (BETA)"
169
- msgstr "Получить селекторы автоматически (БЕТА)"
170
 
171
- #: templates/admin-settings.php:64 includes/wizard.php:74
172
- msgid "Please do not use it on live sites. If something went wrong write us."
173
- msgstr ""
174
- "Пожалуйста не используйте это на живом сайте. Если что-то пошло не так "
175
- "напишите в поддержку"
176
 
177
- #: templates/admin-settings.php:122
178
  msgid ""
179
- "Attribute Values count that will be displayed. Other values will be hidden "
180
- "and can be displayed by pressing the button. Option <strong>Hide \"Show/Hide "
181
- "value(s)\" button</strong> must be disabled"
182
  msgstr ""
 
 
183
 
184
- #: templates/admin.php:2
185
- msgid ""
186
- "Widget will be removed in future please use <strong>AAPF Filters "
187
- "Group</strong> instead."
188
- msgstr ""
189
- "Виджет будет удален в будущем, пожалуйста используйте <strong>AAPF Filters "
190
- "Group</strong> вместо этого."
191
 
192
- #: templates/admin.php:3
193
- msgid "Create new filter from this one"
194
- msgstr ""
195
 
196
- #: templates/admin.php:4
197
  msgid ""
198
- "<strong>IMPORTANT</strong> new filter will be without page/category "
199
- "limitation."
200
  msgstr ""
 
 
201
 
202
- #: templates/admin.php:5
203
- #, php-format
204
- msgid "You can add filter to %s that has limitation"
205
- msgstr ""
206
 
207
- #: templates/admin.php:5
208
- msgid "Filters group"
209
- msgstr ""
210
 
211
- #: includes/new_filters.php:27 includes/new_filters.php:28
212
- msgid "Product Filter"
213
- msgstr ""
214
 
215
- #: includes/new_filters.php:29
216
- msgctxt "Admin menu name"
217
- msgid "Product Filters"
218
- msgstr ""
219
 
220
- #: includes/new_filters.php:30
221
- msgid "Add Filter"
222
- msgstr ""
223
 
224
- #: includes/new_filters.php:31
225
- msgid "Add New Filter"
 
 
226
  msgstr ""
 
 
227
 
228
- #: includes/new_filters.php:33
229
- msgid "Edit Filter"
230
- msgstr ""
231
 
232
- #: includes/new_filters.php:34
233
- msgid "New Filter"
 
 
234
  msgstr ""
 
 
235
 
236
- #: includes/new_filters.php:35
237
- msgid "View Filters"
238
- msgstr ""
239
 
240
- #: includes/new_filters.php:36
241
- msgid "View Filter"
 
 
242
  msgstr ""
 
 
243
 
244
- #: includes/new_filters.php:37
245
- msgid "Search Product Filters"
246
- msgstr ""
247
 
248
- #: includes/new_filters.php:38
249
- msgid "No Product Filters found"
250
- msgstr ""
251
 
252
- #: includes/new_filters.php:39
253
- msgid "No Product Filters found in trash"
 
 
254
  msgstr ""
 
 
255
 
256
- #: includes/new_filters.php:41
257
- msgid "This is where you can add Product Filters."
258
- msgstr ""
259
 
260
- #: includes/new_filters.php:58 includes/new_filters.php:59
261
- msgid "Product Filter Group"
262
- msgstr ""
263
 
264
- #: includes/new_filters.php:60
265
- msgctxt "Admin menu name"
266
- msgid "Product Filter Groups"
 
267
  msgstr ""
 
 
268
 
269
- #: includes/new_filters.php:61
270
- msgid "Add Filter Group"
271
- msgstr ""
272
 
273
- #: includes/new_filters.php:62
274
- msgid "Add New Filter Group"
275
- msgstr ""
276
 
277
- #: includes/new_filters.php:64
278
- msgid "Edit Filter Group"
 
279
  msgstr ""
 
280
 
281
- #: includes/new_filters.php:65
282
- msgid "New Filter Group"
283
- msgstr ""
284
 
285
- #: includes/new_filters.php:66
286
- msgid "View Filter Groups"
287
- msgstr ""
288
 
289
- #: includes/new_filters.php:67
290
- msgid "View Filter Group"
291
- msgstr ""
292
 
293
- #: includes/new_filters.php:68
294
- msgid "Search Product Filter Groups"
295
  msgstr ""
 
296
 
297
- #: includes/new_filters.php:69
298
- msgid "No Product Filter Groups found"
299
- msgstr ""
300
 
301
- #: includes/new_filters.php:70
302
- msgid "No Product Filter Groups found in trash"
303
- msgstr ""
304
 
305
- #: includes/new_filters.php:72
306
- msgid "This is where you can add Product Filter Groups."
307
- msgstr ""
308
 
309
- #: includes/new_filters.php:140
310
- msgid "Name"
311
- msgstr ""
 
 
312
 
313
- #: includes/new_filters.php:141
314
- msgid "Data"
315
- msgstr ""
316
 
317
- #: includes/new_filters.php:163 includes/new_filters.php:381
318
- msgid "Restore this item from the Trash"
319
- msgstr ""
320
 
321
- #: includes/new_filters.php:163 includes/new_filters.php:381
322
- msgid "Restore"
323
- msgstr ""
324
 
325
- #: includes/new_filters.php:165 includes/new_filters.php:383
326
- msgid "Move this item to the Trash"
327
- msgstr ""
328
 
329
- #: includes/new_filters.php:165 includes/new_filters.php:383
330
- msgid "Trash"
 
 
331
  msgstr ""
 
 
332
 
333
- #: includes/new_filters.php:167 includes/new_filters.php:385
334
- msgid "Delete this item permanently"
335
- msgstr ""
336
 
337
- #: includes/new_filters.php:167 includes/new_filters.php:285
338
- #: includes/new_filters.php:385
339
- msgid "Delete Permanently"
340
- msgstr ""
341
 
342
- #: includes/new_filters.php:193
343
- msgid "Widget type: "
344
- msgstr ""
345
 
346
- #: includes/new_filters.php:205 includes/new_filters.php:222
347
- msgid "Attribute: "
348
- msgstr ""
349
 
350
- #: includes/new_filters.php:207 includes/new_filters.php:231
351
- msgid "Custom Taxonomy: "
352
- msgstr ""
353
 
354
- #: includes/new_filters.php:247 includes/new_filters.php:425
355
- msgid "Save content"
356
- msgstr ""
357
 
358
- #: includes/new_filters.php:249
359
- msgid "FAQ"
 
 
360
  msgstr ""
 
 
361
 
362
- #: includes/new_filters.php:250 includes/new_filters.php:429
363
- msgid "Product Filter settings"
364
- msgstr ""
365
 
366
- #: includes/new_filters.php:255 includes/new_filters.php:434
367
- msgid "You need save it to get shortcode"
368
- msgstr ""
369
 
370
- #: includes/new_filters.php:287
371
- msgid "Move to Trash"
372
- msgstr ""
373
 
374
- #: includes/new_filters.php:297
375
- msgid "Save"
 
 
 
376
  msgstr ""
 
 
 
377
 
378
- #: includes/new_filters.php:297
379
- msgid "Save/update notice"
380
- msgstr ""
381
 
382
- #: includes/new_filters.php:351
383
- msgid "Group Name"
384
- msgstr ""
 
385
 
386
- #: includes/new_filters.php:352
387
- msgid "Filters"
388
- msgstr ""
389
 
390
- #: includes/new_filters.php:427
391
- msgid "Information"
392
- msgstr ""
393
 
394
- #: includes/new_filters.php:479
395
- msgid "Equal"
396
  msgstr ""
 
 
397
 
398
- #: includes/new_filters.php:480
399
- msgid "Not equal"
 
 
400
  msgstr ""
 
 
401
 
402
- #: includes/new_filters.php:483
403
- msgid "Equal or less"
 
 
404
  msgstr ""
 
 
405
 
406
- #: includes/new_filters.php:486
407
- msgid "Equal or more"
408
- msgstr ""
409
 
410
- #: includes/new_filters.php:547
411
- msgid "Select attribute"
412
- msgstr ""
413
 
414
- #: includes/new_widget.php:59
415
- msgid "Manage groups"
416
- msgstr ""
417
 
418
- #: includes/new_widget.php:62
419
- msgid "Group"
420
  msgstr ""
 
 
421
 
422
- #: includes/wizard.php:57
423
- msgid "IMPORTANT"
424
- msgstr ""
425
 
426
- #: includes/wizard.php:58
427
- msgid ""
428
- "Selectors can be different for each theme. Please setup correct selectors, "
429
- "otherwise plugin can doesn't work or some features can work incorrect"
430
  msgstr ""
 
 
431
 
432
- #: includes/wizard.php:59
433
- msgid ""
434
- "You can try to setup it via \"Auto-selectors\" and plugin will try get "
435
- "selectors for your theme, this take a while."
436
- msgstr ""
437
 
438
- #: includes/wizard.php:60
439
- msgid ""
440
- "Manually you can check selectors on your shop page or contact <strong>theme "
441
- "author</strong> with question about it."
442
- msgstr ""
443
 
444
- #: includes/wizard.php:61
445
- msgid ""
446
- "Also theme with Isotope/Masonry or any type of the image Lazy-Load required "
447
- "custom JavaScript. Please contact your <strong>theme author</strong> to get "
448
- "correct JavaScript code for it"
449
- msgstr ""
450
 
451
- #: includes/wizard.php:62
452
- msgid ""
453
- "JavaScript for some theme you can find in <a href=\"http://berocket."
454
- "com/docs/plugin/woocommerce-ajax-products-filter#theme_setup\" "
455
- "target=\"_blank\">BeRocket Documentation</a>"
456
  msgstr ""
 
 
457
 
458
- #: includes/wizard.php:111
459
- msgid "Removed elements"
460
- msgstr ""
461
 
462
- #: includes/wizard.php:113
463
- msgid ""
464
- "Select elements that your shop page doesn't have to prevent any errors with "
465
- "it"
466
- msgstr ""
467
 
468
- #: includes/wizard.php:117
469
- msgid "Products count"
470
- msgstr ""
471
 
472
- #: includes/wizard.php:122
473
- msgid "Products order by drop down"
474
- msgstr ""
475
 
476
- #: includes/wizard.php:127
477
- msgid "Pagination"
478
- msgstr ""
479
 
480
- #: includes/wizard.php:133
481
- msgid "You need some custom JavaScript/CSS code?"
482
- msgstr ""
483
 
484
- #: includes/wizard.php:135
485
- msgid "User custom CSS style"
486
- msgstr ""
487
 
488
- #: includes/wizard.php:137
489
- msgid "JavaScript Before Products Update"
 
 
 
490
  msgstr ""
 
 
 
491
 
492
- #: includes/wizard.php:139
493
- msgid "JavaScript On Products Update"
494
- msgstr ""
495
 
496
- #: includes/wizard.php:141
497
- msgid "JavaScript After Products Update"
498
- msgstr ""
499
 
500
- #: includes/wizard.php:158 includes/wizard.php:251 includes/wizard.php:392
501
- #: includes/wizard.php:470
502
- msgid "Next Step"
503
- msgstr ""
504
 
505
- #: includes/wizard.php:187
506
- msgid "SEO friendly URLs"
 
 
507
  msgstr ""
 
 
508
 
509
- #: includes/wizard.php:190
510
- msgid "Page URL will be changed after filtering."
511
- msgstr ""
512
 
513
- #: includes/wizard.php:195
514
- msgid "Without this option after page reload filter will be unselected"
 
 
 
515
  msgstr ""
 
 
 
516
 
517
- #: includes/wizard.php:196
518
- msgid "Also back button doesn't load previous selected filters"
519
- msgstr ""
520
 
521
- #: includes/wizard.php:200
522
- msgid "Use slug"
523
- msgstr ""
524
 
525
- #: includes/wizard.php:203
526
- msgid "Replace attribute values ID to Slug in SEO friendly URLs."
527
- msgstr ""
528
 
529
- #: includes/wizard.php:208
530
- msgid ""
531
- "<strong>IMPORTANT</strong> Please check that Slug for all attribute values "
532
- "without those symbols - _ +"
533
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
534
 
535
- #: includes/wizard.php:212
536
- msgid "Nice permalink URL"
537
- msgstr ""
538
 
539
- #: includes/wizard.php:215
540
- msgid "Use WordPress permalinks instead GET query"
541
- msgstr ""
542
 
543
- #: includes/wizard.php:220
544
  msgid ""
545
- "<strong>IMPORTANT</strong> WordPress permalinks must be set to Post "
546
- "name(Custom structure: /%postname%/ )"
547
  msgstr ""
 
 
548
 
549
- #: includes/wizard.php:221
550
- msgid ""
551
- "Not working on any custom page(Generated with any page builder or with help "
552
- "of shortcodes)"
553
- msgstr ""
554
 
555
- #: includes/wizard.php:222
556
- msgid "Not compatible with any other plugin that change WooCommerce permalinks"
557
  msgstr ""
 
 
558
 
559
- #: includes/wizard.php:288
560
- msgid "Presets"
561
- msgstr ""
562
 
563
- #: includes/wizard.php:290
564
- msgid "You can select some preset or setup each settings manually"
 
 
565
  msgstr ""
 
 
566
 
567
- #: includes/wizard.php:292
568
- msgid "Custom"
569
- msgstr ""
570
 
571
- #: includes/wizard.php:293
572
- msgid "Show all attributes (very fast)"
573
  msgstr ""
 
 
574
 
575
- #: includes/wizard.php:294
576
- msgid "Hide empty attributes by page (fast)"
577
- msgstr ""
578
 
579
- #: includes/wizard.php:295
580
- msgid "Hide empty attribute by filters (slow)"
581
- msgstr ""
582
 
583
- #: includes/wizard.php:301
584
- msgid "Show all attributes"
585
- msgstr ""
586
 
587
- #: includes/wizard.php:302
588
- msgid ""
589
- "Display all attribute values, including attribute values without products, "
590
- "but work realy fast. If you have a lot of products(2000 and more) then it "
591
- "will be better solution. But check that all attribute values in your shop "
592
- "has attribute"
593
- msgstr ""
594
 
595
- #: includes/wizard.php:307
596
- msgid "Hide empty attributes by page"
597
- msgstr ""
598
 
599
- #: includes/wizard.php:308
600
- msgid ""
601
- "Display only attribute values with products, but do not check selected "
602
- "filters. Any first selected filter will return products, but next filters "
603
- "can return \"no products\" message"
604
- msgstr ""
605
 
606
- #: includes/wizard.php:313
607
- msgid "Hide empty attribute by filters"
608
- msgstr ""
609
 
610
- #: includes/wizard.php:314
611
  msgid ""
612
- "Display only attribute values with products. Only attribute values with "
613
- "products will be used, also after any filtering. But it work slow, because "
614
- "recount products for each attribute. Can work slow on bad server and with a "
615
- "lot of products"
616
  msgstr ""
 
 
 
617
 
618
- #: includes/wizard.php:328
619
  msgid ""
620
- "Uses all attribute values in filters, uses also values without products for "
621
- "your shop. Can fix some problems with displaying filters on pages"
622
  msgstr ""
 
 
623
 
624
- #: includes/wizard.php:363
625
- msgid ""
626
- "Slow down site load speed, because uses additional query for each filter. "
627
- "Replaces attribute values using selected filters to use correct count of "
628
- "products for each value. \"Hide values without products\" option do not work "
629
- "without this option. Also uses to display correct products count with "
630
- "attribute values after filtering"
631
- msgstr ""
632
 
633
- #: includes/wizard.php:423
634
- msgid ""
635
- "Load first page after any filter changes. Can fix some problem with \"no "
636
- "products\" message after filtering"
637
- msgstr ""
638
- "Загружать первую страницу после любых изменений фильтров. Может исправить "
639
- "некоторые проблемы с сообщением \"нет продуктов\" после фильтрации"
640
 
641
- #: includes/wizard.php:441
642
- msgid ""
643
- "Show selected filters above products. Also you can use widget to show "
644
- "selected filters"
645
- msgstr ""
646
- "Отображать выбранные фильтры перед продуктами. Так же вы можете использовать "
647
- "виджет для отображения выбранных фильтров"
 
 
 
 
 
 
 
 
648
 
649
- #: includes/wizard.php:459
650
  msgid ""
651
- "Disable redirection, when search page return only one product<br>Enable it "
652
- "only if you will use filters on search page"
653
  msgstr ""
654
- "Отключить перенаправление, когда страница поиска возвращает только один "
655
- "продукт<br>Включайте только если вы будете использовать фильтре на странице "
656
- "поиска"
657
 
658
- #: includes/wizard.php:494
659
- msgid "Plugin ready to use"
660
- msgstr "Плагин готов к использованию"
661
 
662
- #: includes/wizard.php:496
663
- msgid "Widget"
664
- msgstr "Виджет"
665
 
666
- #: includes/wizard.php:497
667
- msgid "Now you can add widgets AJAX Product Filters to your side bar"
668
- msgstr ""
669
- "Теперь вы можете добавить виджеты AJAX Product Filters в боковую панель"
670
 
671
- #: includes/wizard.php:498
672
- msgid ""
673
- "More information about widget options you can get on <a target=\"_blank\" "
674
- "href=\"http://berocket.com/docs/plugin/woocommerce-ajax-products-"
675
- "filter#widget\">BeRocket Documentation</a>"
676
- msgstr ""
677
- "Больше информации о настройках виджета вы можете получить на странице <a "
678
- "target=\"_blank\" href=\"http://berocket.com/docs/plugin/woocommerce-ajax-"
679
- "products-filter#widget\">BeRocket Documentation</a>"
680
 
681
- #: includes/wizard.php:502
682
- msgid "Open plugin settings"
683
- msgstr "Открыть настройки плагина"
684
 
685
- #: includes/widget.php:128
686
- msgid "AJAX Product Filters (Deprecated)"
687
- msgstr "AJAX Product Filters (Устаревший)"
688
 
689
- #: includes/widget.php:633
690
- msgid "1 star"
691
- msgstr "1 звезда"
692
 
693
- #: includes/widget.php:633
694
- msgid ""
695
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-"
696
- "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
697
- msgstr ""
698
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-"
699
- "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
700
 
701
- #: includes/widget.php:636
702
- msgid "2 stars"
703
- msgstr "2 звезды"
704
 
705
- #: includes/widget.php:636
706
- msgid ""
707
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
708
- "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
709
- msgstr ""
710
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
711
- "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
712
 
713
- #: includes/widget.php:639
714
- msgid "3 stars"
715
- msgstr "3звезды"
 
716
 
717
- #: includes/widget.php:639
718
- msgid ""
719
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
720
- "star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
721
- msgstr ""
722
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
723
- "star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
724
 
725
- #: includes/widget.php:642
726
- msgid "4 stars"
727
- msgstr "4 звезды"
728
 
729
- #: includes/widget.php:642
730
- msgid ""
731
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
732
- "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i>"
733
- msgstr ""
734
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
735
- "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i>"
736
 
737
- #: includes/widget.php:645
738
- msgid "5 stars"
739
- msgstr "5 звёзд"
740
 
741
- #: includes/widget.php:645
742
- msgid ""
743
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
744
- "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i>"
745
- msgstr ""
746
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
747
- "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i>"
748
 
749
- #: woocommerce-filters.php:384
750
- msgid "There are no products meeting your criteria"
751
- msgstr "Нет товаров, отвечающих вашим критериям"
752
 
753
- #: woocommerce-filters.php:447 templates/checkbox.php:117
754
- #: templates/color.php:114
755
  msgid "Show value(s)"
756
- msgstr "Показать значения"
757
 
758
- #: woocommerce-filters.php:448
759
  msgid "Hide value(s)"
760
- msgstr "Скрыть значения"
761
 
762
- #: woocommerce-filters.php:449
763
  msgid "Unselect all"
764
- msgstr "Убрать все фильтры"
765
 
766
- #: woocommerce-filters.php:450
767
  msgid "Nothing is selected"
768
- msgstr "Фильтры не выбраны"
769
 
770
- #: woocommerce-filters.php:451
771
  msgid "products"
772
  msgstr "продукты"
773
 
774
- #: woocommerce-filters.php:509
775
  msgid "Activate WooCommerce plugin before"
776
- msgstr "Сначала активируйте WooCommerce"
777
 
778
- #: woocommerce-filters.php:516
779
  msgid "Update WooCommerce plugin"
780
- msgstr "Обновите WooCommerce"
781
 
782
- #: woocommerce-filters.php:522 woocommerce-filters.php:527
783
- msgid "Product Filters Settings"
784
- msgstr "Настройки Фильтров для Продуктов"
785
-
786
- #: woocommerce-filters.php:522 woocommerce-filters.php:527
787
- msgid "Product Filters"
788
- msgstr "Фильтры для Продуктов"
789
-
790
- #: templates/filters_information.php:3 templates/filter_post.php:194
791
- #: templates/admin-settings.php:1402 templates/admin.php:200
792
- msgid "Advanced Settings"
793
- msgstr "Продвинутые Настройки"
794
 
795
- #: templates/filters_information.php:3 templates/filter_post.php:226
796
- #: templates/filter_post.php:413 templates/admin-settings.php:1434
797
- #: templates/admin-settings.php:1635 templates/admin.php:232
798
- #: templates/admin.php:420
799
- msgid "Hide this widget on load?"
800
- msgstr "Скрыть этот виджет при загрузке?"
801
 
802
- #: templates/filters_information.php:5 templates/filter_post.php:14
803
- #: templates/admin-settings.php:1252 templates/admin.php:12
804
- #: includes/new_filters.php:189
805
- msgid "Reset Products button"
806
- msgstr "Кнопка Обнуления фильтров"
807
 
808
- #: templates/filters_information.php:5 templates/filters_information.php:7
809
- #: templates/filter_post.php:10 templates/admin-settings.php:1248
810
- #: templates/admin.php:8
811
  msgid "Widget Type"
812
  msgstr "Тип Виджета"
813
 
814
- #: templates/filters_information.php:7 templates/filter_post.php:13
815
- #: templates/admin-settings.php:1251 templates/admin.php:11
816
- #: includes/new_filters.php:188
817
- msgid "Update Products button"
818
- msgstr "Кнопка Обновления Продуктов"
819
-
820
- #: templates/include_exclude_list.php:2
821
- msgid "Include / Exclude List"
822
- msgstr "Включая / Исключая список"
823
-
824
- #: templates/filter_post.php:12 templates/admin-settings.php:1250
825
- #: templates/admin.php:10 includes/new_filters.php:187
826
- #: includes/new_widget.php:138
827
  msgid "Filter"
828
  msgstr "Фильтр"
829
 
830
- #: templates/filter_post.php:15 templates/admin-settings.php:1253
831
- #: templates/admin.php:13 includes/new_filters.php:190
 
 
 
 
 
 
 
 
 
 
832
  msgid "Selected Filters area"
833
  msgstr "Область с Выбранными Фильтрами"
834
 
835
- #: templates/filter_post.php:16 templates/admin-settings.php:1254
836
- #: templates/admin.php:14 includes/new_filters.php:191
837
  msgid "Search Box"
838
  msgstr "Блок Поиска"
839
 
840
- #: templates/filter_post.php:22 templates/filter_post.php:464
841
- #: templates/admin-settings.php:1267 templates/admin-settings.php:1683
842
- #: templates/admin.php:27 templates/admin.php:471
843
  msgid "Filter By"
844
  msgstr "Фильтровать по"
845
 
846
- #: templates/filter_post.php:24 templates/filter_post.php:37
847
- #: templates/filter_post.php:457 templates/filter_post.php:466
848
- #: templates/filter_post.php:472 templates/admin-settings.php:1269
849
- #: templates/admin-settings.php:1282 templates/admin-settings.php:1676
850
- #: templates/admin-settings.php:1685 templates/admin-settings.php:1691
851
- #: templates/admin.php:29 templates/admin.php:42 templates/admin.php:464
852
- #: templates/admin.php:473 templates/admin.php:479 includes/new_filters.php:197
853
  msgid "Attribute"
854
- msgstr "Аттрибуты"
855
 
856
- #: templates/filter_post.php:25 templates/admin-settings.php:1270
857
- #: templates/admin.php:30 includes/new_filters.php:224
858
  msgid "Stock status"
859
  msgstr "Наличие"
860
 
861
- #: templates/filter_post.php:26 templates/admin-settings.php:1271
862
- #: templates/admin.php:31 includes/new_filters.php:226
863
  msgid "Product sub-categories"
864
  msgstr "Подкатегории Продуктов"
865
 
866
- #: templates/filter_post.php:27 templates/filter_post.php:467
867
- #: templates/admin-settings.php:1272 templates/admin-settings.php:1686
868
- #: templates/admin.php:32 templates/admin.php:474 includes/new_filters.php:198
869
- #: includes/new_filters.php:209 includes/new_filters.php:228
870
  msgid "Tag"
871
  msgstr "Теги"
872
 
873
- #: templates/filter_post.php:28 templates/filter_post.php:468
874
- #: templates/admin-settings.php:1273 templates/admin-settings.php:1687
875
- #: templates/admin.php:33 templates/admin.php:475 includes/new_filters.php:199
876
  msgid "Custom Taxonomy"
877
  msgstr "Пользовательская таксономия"
878
 
879
- #: templates/filter_post.php:29 templates/admin-settings.php:1274
880
- #: templates/admin.php:34 includes/new_filters.php:233
881
  msgid "Date"
882
  msgstr "Дата"
883
 
884
- #: templates/filter_post.php:30 templates/admin-settings.php:1275
885
- #: templates/admin.php:35 includes/new_filters.php:235
886
  msgid "Sale"
887
  msgstr "Распродажа"
888
 
889
- #: templates/filter_post.php:39 templates/admin-settings.php:1284
890
- #: templates/admin.php:44 includes/new_filters.php:217
891
- msgid "Price"
892
- msgstr "Цена"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
893
 
894
- #: templates/filter_post.php:46 templates/filter_post.php:480
895
- #: templates/admin-settings.php:1291 templates/admin-settings.php:1699
896
- #: templates/admin.php:51 templates/admin.php:487
897
- msgid "Custom Taxonomies"
898
- msgstr "Пользовательские таксономии"
899
 
900
- #: templates/filter_post.php:55 templates/filter_post.php:489
901
- #: templates/admin-settings.php:1300 templates/admin-settings.php:1708
902
- #: templates/admin.php:60 templates/admin.php:496
903
- msgid "Type"
904
- msgstr "Тип"
905
 
906
- #: templates/filter_post.php:78 templates/admin-settings.php:1307
907
- #: templates/admin.php:83
908
- msgid "Operator"
909
- msgstr "Оператор"
910
 
911
- #: templates/filter_post.php:85 templates/admin-settings.php:1314
912
- #: templates/admin.php:90
913
- msgid "Values Order"
914
- msgstr "Сортировка Значений"
915
 
916
- #: templates/filter_post.php:87 templates/filter_post.php:339
917
- #: templates/admin-settings.php:404 templates/admin-settings.php:512
918
- #: templates/admin-settings.php:526 templates/admin-settings.php:531
919
- #: templates/admin-settings.php:768 templates/admin-settings.php:782
920
- #: templates/admin-settings.php:787 templates/admin-settings.php:1000
921
- #: templates/admin-settings.php:1005 templates/admin-settings.php:1013
922
- #: templates/admin-settings.php:1024 templates/admin-settings.php:1029
923
- #: templates/admin-settings.php:1069 templates/admin-settings.php:1074
924
- #: templates/admin-settings.php:1082 templates/admin-settings.php:1090
925
- #: templates/admin-settings.php:1095 templates/admin-settings.php:1103
926
- #: templates/admin-settings.php:1108 templates/admin-settings.php:1316
927
- #: templates/admin-settings.php:1546 templates/admin.php:92
928
- #: templates/admin.php:345
929
- msgid "Default"
930
- msgstr "По умолчанию"
931
 
932
- #: templates/filter_post.php:130 templates/admin-settings.php:1337
933
- #: templates/admin.php:135
934
- msgid "Hide first and last ranges without products"
935
- msgstr "Скрыть первые и последние диапазоны без продуктов"
936
 
937
- #: templates/filter_post.php:134 templates/admin.php:139
938
- msgid "Text before price:"
939
- msgstr "Текст перед ценой: "
 
940
 
941
- #: templates/filter_post.php:136 templates/admin.php:141
942
- msgid "after:"
943
- msgstr "после: "
 
944
 
945
- #: templates/filter_post.php:143 templates/admin-settings.php:1356
946
- #: templates/admin.php:148
947
- msgid "Use custom values(comma separated):"
948
- msgstr "Использовать пользовательские значения (разделяйте запятой): "
949
 
950
- #: templates/filter_post.php:145 templates/admin-settings.php:1358
951
- #: templates/admin.php:150
952
- msgid "* use numeric values only, strings will not work as expected"
953
- msgstr ""
954
- "* используйте только числовые значения, текстовые значения не работают как "
955
- "ожидается"
956
 
957
- #: templates/filter_post.php:152 templates/admin-settings.php:1365
958
- #: templates/admin.php:157
959
- msgid "Use current product category to get child"
960
- msgstr "Использовать текущую категорию, что бы получить дочерние"
961
 
962
- #: templates/filter_post.php:156 templates/admin-settings.php:1394
963
- #: templates/admin.php:161
964
- msgid "Deep level:"
965
- msgstr "Уровень глубины: "
966
 
967
- #: templates/filter_post.php:161 templates/admin-settings.php:1808
968
- #: templates/admin.php:166 templates/admin.php:620
969
- msgid "Product Category:"
970
- msgstr "Категория Продуктов: "
971
 
972
- #: templates/filter_post.php:169 templates/admin-settings.php:1377
973
- #: templates/admin.php:174
974
- msgid "None"
975
- msgstr "Нет"
976
 
977
- #: templates/filter_post.php:202 templates/admin-settings.php:1410
978
- #: templates/admin.php:208
979
- msgid "Use default values for slider"
980
- msgstr "Использовать установленные значения для слайдера"
981
 
982
- #: templates/filter_post.php:211 templates/admin-settings.php:289
983
- #: templates/admin-settings.php:1419 templates/admin.php:217
984
- msgid "Thousand Separator"
985
- msgstr "Разделитель тысяч"
986
 
987
- #: templates/filter_post.php:215 templates/admin-settings.php:295
988
- #: templates/admin-settings.php:1423 templates/admin.php:221
989
- msgid "Decimal Separator"
990
- msgstr "Десятичный разделитель"
991
 
992
- #: templates/filter_post.php:219 templates/admin-settings.php:301
993
- #: templates/admin-settings.php:1427 templates/admin.php:225
994
- msgid "Number Of Decimal"
995
- msgstr "Количество десятичных чисел"
996
 
997
- #: templates/filter_post.php:230 templates/admin-settings.php:1438
998
- #: templates/admin.php:236
999
- msgid "Show product count per attributes?"
1000
- msgstr "Отображать количество продуктов возле атрибутов?"
1001
 
1002
- #: templates/filter_post.php:234 templates/filter_post.php:407
1003
- #: templates/admin-settings.php:1442 templates/admin-settings.php:1629
1004
- #: templates/admin.php:240 templates/admin.php:414
1005
- msgid "Hide collapse arrow?"
1006
- msgstr "Спрятать стрелку для сворачивания виджета?"
1007
 
1008
- #: templates/filter_post.php:238 templates/admin-settings.php:1446
1009
- #: templates/admin.php:244
1010
- msgid "Hide all child values?"
1011
- msgstr "Скрыть все дочерние значения?"
1012
 
1013
- #: templates/filter_post.php:242 templates/admin.php:248
1014
- msgid "Display value with color/image box?"
1015
- msgstr "Отображать значение возле цвета/изображения?"
1016
 
1017
- #: templates/filter_post.php:245 templates/admin-settings.php:1453
1018
- #: templates/admin.php:251
1019
- msgid "Values per row"
1020
- msgstr "Значений в строке"
1021
 
1022
- #: templates/filter_post.php:254 templates/admin-settings.php:1462
1023
- #: templates/admin.php:260
1024
- msgid "Icons"
1025
- msgstr "Иконки"
1026
 
1027
- #: templates/filter_post.php:256 templates/admin-settings.php:1464
1028
- #: templates/admin.php:262
1029
- msgid "Title Icons"
1030
- msgstr "Иконки названия"
1031
 
1032
- #: templates/filter_post.php:258 templates/filter_post.php:264
1033
- #: templates/filter_post.php:519 templates/admin-settings.php:1466
1034
- #: templates/admin-settings.php:1472 templates/admin-settings.php:1738
1035
- #: templates/admin.php:264 templates/admin.php:270 templates/admin.php:526
1036
- msgid "Before"
1037
- msgstr "Перед"
1038
 
1039
- #: templates/filter_post.php:259 templates/filter_post.php:265
1040
- #: templates/filter_post.php:520 templates/admin-settings.php:1467
1041
- #: templates/admin-settings.php:1473 templates/admin-settings.php:1739
1042
- #: templates/admin.php:265 templates/admin.php:271 templates/admin.php:527
1043
- msgid "After"
1044
- msgstr "После"
1045
 
1046
- #: templates/filter_post.php:262 templates/admin-settings.php:1470
1047
- #: templates/admin.php:268
1048
- msgid "Value Icons"
1049
- msgstr "Иконки значений"
1050
 
1051
- #: templates/filter_post.php:271 templates/admin-settings.php:1479
1052
- #: templates/admin.php:277
1053
- msgid "Description"
1054
- msgstr "Описание"
1055
 
1056
- #: templates/filter_post.php:275 templates/admin-settings.php:1483
1057
- #: templates/admin.php:281
1058
- msgid "CSS Class"
1059
- msgstr "CSS класс"
1060
 
1061
- #: templates/filter_post.php:277 templates/admin-settings.php:1485
1062
- #: templates/admin.php:283
1063
- msgid "(use white space for multiple classes)"
1064
- msgstr "(используйте пробел для разделения классов)"
1065
 
1066
- #: templates/filter_post.php:282 templates/admin-settings.php:1489
1067
- #: templates/admin.php:288
1068
- msgid "Tags Cloud Height:"
1069
- msgstr "Высота Облака Тегов: "
 
 
 
 
1070
 
1071
- #: templates/filter_post.php:286 templates/admin-settings.php:1493
1072
- #: templates/admin.php:292
1073
- msgid "Min Font Size:"
1074
- msgstr "Минимальный Размер Шрифта: "
1075
 
1076
- #: templates/filter_post.php:290 templates/admin-settings.php:1497
1077
- #: templates/admin.php:296
1078
- msgid "Max Font Size:"
1079
- msgstr "Максимальный Размер Шрифта: "
1080
 
1081
- #: templates/filter_post.php:294 templates/admin-settings.php:1501
1082
- #: templates/admin.php:300
1083
- msgid "Max Tags Count:"
1084
- msgstr "Максимальное Количество Тегов: "
1085
 
1086
- #: templates/filter_post.php:302 templates/admin-settings.php:1509
1087
- #: templates/admin.php:308
1088
- msgid "Use min price"
1089
- msgstr "Использовать пользовательскую минимальную цену"
1090
 
1091
- #: templates/filter_post.php:311 templates/admin-settings.php:1518
1092
- #: templates/admin.php:317
1093
- msgid "Use max price"
1094
- msgstr "Использовать пользовательскую максимальную цену"
 
1095
 
1096
- #: templates/filter_post.php:320 templates/admin-settings.php:1527
1097
- #: templates/admin.php:326
1098
- msgid "Filter Box Height:"
1099
- msgstr "Высота Блока с Фильтром"
1100
 
1101
- #: templates/filter_post.php:324 templates/admin-settings.php:1531
1102
- #: templates/admin.php:330
1103
- msgid "Scroll Theme:"
1104
- msgstr "Тема для Полосы Прокрутки: "
1105
 
1106
- #: templates/filter_post.php:337 templates/admin-settings.php:1544
1107
- #: templates/admin.php:343
1108
- msgid "Child/Parent Limitation"
1109
- msgstr "Родительские ограничения"
1110
 
1111
- #: templates/filter_post.php:340 templates/admin-settings.php:1547
1112
- #: templates/admin.php:346
1113
- msgid "Child Count"
1114
- msgstr "Количество дочерних "
1115
 
1116
- #: templates/filter_post.php:341 templates/admin-settings.php:1548
1117
- #: templates/admin.php:347
1118
- msgid "Parent"
1119
- msgstr "Родитель"
1120
 
1121
- #: templates/filter_post.php:342 templates/filter_post.php:372
1122
- #: templates/admin-settings.php:1549 templates/admin-settings.php:1583
1123
- #: templates/admin.php:348 templates/admin.php:378
1124
- msgid "Child"
1125
- msgstr "Наследник"
1126
 
1127
- #: templates/filter_post.php:346 templates/admin-settings.php:1553
1128
- #: templates/admin.php:352
1129
- msgid "Child depth"
1130
- msgstr "Глубина наследствия"
1131
 
1132
- #: templates/filter_post.php:348 templates/filter_post.php:382
1133
- #: templates/admin-settings.php:1555 templates/admin-settings.php:1593
1134
- #: templates/admin.php:354 templates/admin.php:388
1135
- msgid "\"No values\" messages"
1136
- msgstr "Сообщение \"Нет значений\""
 
 
1137
 
1138
- #: templates/filter_post.php:350 templates/filter_post.php:386
1139
- #: templates/admin-settings.php:1557 templates/admin-settings.php:1597
1140
- #: templates/admin.php:356 templates/admin.php:392
1141
- msgid "\"Select previous\" messages"
1142
- msgstr "Сообщение \"Выберете предыдущее\""
1143
 
1144
- #: templates/filter_post.php:352 templates/admin-settings.php:1559
1145
- #: templates/admin.php:358
1146
- msgid "\"No Products\" messages"
1147
- msgstr "Сообщение \"Нет продуктов\""
1148
 
1149
- #: templates/filter_post.php:356 templates/admin-settings.php:1571
1150
- #: templates/admin.php:362
1151
- msgid "Child count"
1152
- msgstr "Количество дочерних"
1153
 
1154
- #: templates/filter_post.php:374 templates/filter_post.php:460
1155
- #: templates/admin-settings.php:1261 templates/admin-settings.php:1585
1156
- #: templates/admin-settings.php:1679 templates/admin.php:21
1157
- #: templates/admin.php:380 templates/admin.php:467
1158
- msgid "Title"
1159
- msgstr "Название"
1160
 
1161
- #: templates/filter_post.php:378 templates/admin-settings.php:1589
1162
- #: templates/admin.php:384
1163
- msgid "\"No products\" messages"
1164
- msgstr "Сообщение \"Нет продуктов\""
1165
 
1166
- #: templates/filter_post.php:401 templates/admin-settings.php:1623
1167
- #: templates/admin.php:408
1168
- msgid "Show if nothing is selected"
1169
- msgstr "Показать если ничего не выбрано"
1170
 
1171
- #: templates/filter_post.php:419 templates/admin-settings.php:1641
1172
- #: templates/admin.php:426
1173
  msgid "Attributes"
1174
  msgstr "Атрибуты"
1175
 
1176
- #: templates/filter_post.php:422 templates/admin-settings.php:1643
1177
- #: templates/admin.php:429
1178
  msgid "URL to search"
1179
  msgstr "Ссылка для поиска"
1180
 
1181
- #: templates/filter_post.php:424 templates/admin-settings.php:1645
1182
- #: templates/admin.php:431
1183
  msgid "Shop page"
1184
  msgstr "Страница магазина"
1185
 
1186
- #: templates/filter_post.php:425 templates/admin-settings.php:1646
1187
- #: templates/admin.php:432
1188
  msgid "Category page"
1189
  msgstr "Страница категории"
1190
 
1191
- #: templates/filter_post.php:426 templates/admin-settings.php:1647
1192
- #: templates/admin.php:433
1193
  msgid "URL"
1194
  msgstr "Ссылка"
1195
 
1196
- #: templates/filter_post.php:430 templates/admin-settings.php:1650
1197
- #: templates/admin.php:437
1198
  msgid "Category"
1199
  msgstr "Категория"
1200
 
1201
- #: templates/filter_post.php:440 templates/admin-settings.php:1659
1202
- #: templates/admin.php:447
1203
  msgid "URL for search"
1204
  msgstr "Ссылка для поиска"
1205
 
1206
- #: templates/filter_post.php:444 templates/admin-settings.php:1663
1207
- #: templates/admin.php:451
1208
  msgid "Attributes count"
1209
  msgstr "Количество атрибутов"
1210
 
1211
- #: templates/filter_post.php:491 templates/admin-settings.php:1710
1212
- #: templates/admin.php:498
1213
- msgid "Select"
1214
- msgstr "Выпадающий список"
1215
-
1216
- #: templates/filter_post.php:492 templates/admin-settings.php:508
1217
- #: templates/admin-settings.php:1711 templates/admin.php:499
1218
- msgid "Checkbox"
1219
- msgstr "Флажок"
1220
-
1221
- #: templates/filter_post.php:493 templates/admin-settings.php:764
1222
- #: templates/admin-settings.php:1712 templates/admin.php:500
1223
- msgid "Radio"
1224
- msgstr "Переключатель"
1225
-
1226
- #: templates/filter_post.php:494 templates/admin-settings.php:359
1227
- #: templates/admin-settings.php:374 templates/admin-settings.php:1713
1228
- #: templates/admin.php:501
1229
- msgid "Color"
1230
- msgstr "Цвет"
1231
-
1232
- #: templates/filter_post.php:495 templates/admin-settings.php:1714
1233
- #: templates/admin.php:502
1234
- msgid "Image"
1235
- msgstr "Изображение"
1236
-
1237
- #: templates/filter_post.php:507 templates/admin-settings.php:1726
1238
- #: templates/admin.php:514
1239
  msgid "Styles"
1240
  msgstr "Стили"
1241
 
1242
- #: templates/filter_post.php:510 templates/admin-settings.php:1729
1243
- #: templates/admin.php:517
1244
- msgid "Elements position"
1245
- msgstr "Позиция элементов"
1246
-
1247
- #: templates/filter_post.php:512 templates/admin-settings.php:1731
1248
- #: templates/admin.php:519
1249
  msgid "Vertical"
1250
  msgstr "Вертикально"
1251
 
1252
- #: templates/filter_post.php:513 templates/admin-settings.php:1732
1253
- #: templates/admin.php:520
1254
  msgid "Horizontal"
1255
  msgstr "Горизонтально"
1256
 
1257
- #: templates/filter_post.php:517 templates/admin-settings.php:1736
1258
- #: templates/admin.php:524
1259
  msgid "Search button position"
1260
  msgstr "Позиция кнопки поиска"
1261
 
1262
- #: templates/filter_post.php:521 templates/admin-settings.php:1740
1263
- #: templates/admin.php:528
1264
  msgid "Before and after"
1265
  msgstr "До и после"
1266
 
1267
- #: templates/filter_post.php:525 templates/admin-settings.php:1744
1268
- #: templates/admin.php:532
1269
  msgid "Search button text"
1270
  msgstr "Текст на кнопке поиска"
1271
 
1272
- #: templates/filter_post.php:529 templates/admin-settings.php:1052
1273
- #: templates/admin-settings.php:1748 templates/admin.php:536
1274
  msgid "Background color"
1275
  msgstr "Цвет фона"
1276
 
1277
- #: templates/filter_post.php:534 templates/admin-settings.php:1753
1278
- #: templates/admin.php:541
1279
  msgid "Background transparency"
1280
  msgstr "Прозрачность фона"
1281
 
1282
- #: templates/filter_post.php:538 templates/admin-settings.php:1755
1283
- #: templates/admin.php:545
1284
  msgid "100%"
1285
  msgstr "100%"
1286
 
1287
- #: templates/filter_post.php:539 templates/admin-settings.php:1756
1288
- #: templates/admin.php:546
1289
  msgid "90%"
1290
  msgstr "90%"
1291
 
1292
- #: templates/filter_post.php:540 templates/admin-settings.php:1757
1293
- #: templates/admin.php:547
1294
  msgid "80%"
1295
  msgstr "80%"
1296
 
1297
- #: templates/filter_post.php:541 templates/admin-settings.php:1758
1298
- #: templates/admin.php:548
1299
  msgid "70%"
1300
  msgstr "70%"
1301
 
1302
- #: templates/filter_post.php:542 templates/admin-settings.php:1759
1303
- #: templates/admin.php:549
1304
  msgid "60%"
1305
  msgstr "60%"
1306
 
1307
- #: templates/filter_post.php:543 templates/admin-settings.php:1760
1308
- #: templates/admin.php:550
1309
- msgid "50%"
1310
- msgstr "50%"
1311
-
1312
- #: templates/filter_post.php:544 templates/admin-settings.php:1761
1313
- #: templates/admin.php:551
1314
- msgid "40%"
1315
- msgstr "40%"
1316
-
1317
- #: templates/filter_post.php:545 templates/admin-settings.php:1762
1318
- #: templates/admin.php:552
1319
- msgid "30%"
1320
- msgstr "30%"
1321
-
1322
- #: templates/filter_post.php:546 templates/admin-settings.php:1763
1323
- #: templates/admin.php:553
1324
- msgid "20%"
1325
- msgstr "20%"
1326
-
1327
- #: templates/filter_post.php:547 templates/admin-settings.php:1764
1328
- #: templates/admin.php:554
1329
- msgid "10%"
1330
- msgstr "10%"
1331
-
1332
- #: templates/filter_post.php:548 templates/admin-settings.php:1765
1333
- #: templates/admin.php:555
1334
- msgid "0%"
1335
- msgstr "0%"
1336
-
1337
- #: templates/filter_post.php:559 templates/admin-settings.php:1769
1338
- #: templates/admin.php:566
1339
- msgid "Button background color"
1340
- msgstr "Цвет фона кнопки"
1341
-
1342
- #: templates/filter_post.php:564 templates/admin-settings.php:1774
1343
- #: templates/admin.php:571
1344
- msgid "Button background color on mouse over"
1345
- msgstr "Цвет фона кнопки при наведении"
1346
-
1347
- #: templates/filter_post.php:569 templates/admin-settings.php:1779
1348
- #: templates/admin.php:576
1349
- msgid "Button text color"
1350
- msgstr "Цвет текста на кнопке"
1351
-
1352
- #: templates/filter_post.php:574 templates/admin-settings.php:1784
1353
- #: templates/admin.php:581
1354
- msgid "Button text color on mouse over"
1355
- msgstr "Цвет текста на кнопке при наведении"
1356
-
1357
- #: templates/filter_post.php:596 templates/admin-settings.php:1792
1358
- #: templates/admin.php:604
1359
- msgid "Widget Output Limitations"
1360
- msgstr "Ограничение Отображения Виджета"
1361
-
1362
- #: templates/filter_post.php:601 templates/admin-settings.php:1797
1363
- #: templates/admin.php:609
1364
- msgid "Hide this widget on mobile?"
1365
- msgstr "Скрыть этот виджет на мобильных устройствах?"
1366
-
1367
- #: templates/filter_post.php:605 templates/admin-settings.php:1864
1368
- #: templates/admin.php:690
1369
- msgid "Product Category Value Limitation"
1370
- msgstr "Ограничение Отображения по Категориям"
1371
-
1372
- #: templates/filter_post.php:610 templates/admin-settings.php:216
1373
- #: templates/admin-settings.php:1869 templates/admin.php:695
1374
- msgid "Disable"
1375
- msgstr "Выключено"
1376
-
1377
- #: templates/filter_post.php:640 templates/admin-settings.php:1887
1378
- #: templates/admin.php:725
1379
- msgid "Disabled"
1380
- msgstr "Отключено"
1381
-
1382
- #: templates/filter_post.php:641 templates/admin-settings.php:1888
1383
- #: templates/admin.php:726
1384
- msgid "Display only"
1385
- msgstr "Отображать только"
1386
-
1387
- #: templates/filter_post.php:642 templates/admin-settings.php:1889
1388
- #: templates/admin.php:727 includes/functions.php:2134
1389
- msgid "Remove"
1390
- msgstr "Удалить"
1391
-
1392
- #: templates/filter_post.php:644 templates/admin-settings.php:1891
1393
- #: templates/admin.php:729
1394
- msgid "values selected in Include / Exclude List"
1395
- msgstr "значения выбранные в Включая / Исключая списке"
1396
-
1397
- #: templates/color_ajax.php:2
1398
- msgid "Color pick"
1399
- msgstr "Выбор цвета"
1400
-
1401
- #: templates/color_ajax.php:2
1402
- msgid "Image pick"
1403
- msgstr "Выбор изображения"
1404
-
1405
- #: templates/admin-settings.php:19
1406
- msgid "General"
1407
- msgstr "Основные"
1408
-
1409
- #: templates/admin-settings.php:20
1410
- msgid "Design"
1411
- msgstr "Дизайн"
1412
-
1413
- #: templates/admin-settings.php:21 templates/admin-settings.php:247
1414
- msgid "JavaScript"
1415
- msgstr "JavaScript"
1416
-
1417
- #: templates/admin-settings.php:22
1418
- msgid "Custom CSS"
1419
- msgstr "Пользовательский CSS"
1420
-
1421
- #: templates/admin-settings.php:23 includes/new_filters.php:142
1422
- #: includes/new_filters.php:248 includes/new_filters.php:353
1423
- #: includes/new_filters.php:426
1424
- msgid "Shortcode"
1425
- msgstr "Shortcode"
1426
-
1427
- #: templates/admin-settings.php:37
1428
- msgid "\"No Products\" message"
1429
- msgstr "Сообщение \"Нет продуктов\""
1430
-
1431
- #: templates/admin-settings.php:41
1432
- msgid "Text that will be shown if no products found"
1433
- msgstr "Текст, который будет отображаться если продукты не найдены"
1434
-
1435
- #: templates/admin-settings.php:45
1436
- msgid "Add position relative to products holder"
1437
- msgstr "Добавить position:relative для блока с продуктами"
1438
-
1439
- #: templates/admin-settings.php:48
1440
- msgid "Fix for correct displaying loading block"
1441
- msgstr "Исправления для корректного отображения блока загрузки"
1442
-
1443
- #: templates/admin-settings.php:52
1444
- msgid "\"No Products\" class"
1445
- msgstr "Класс для блока \"Нет продуктов\""
1446
-
1447
- #: templates/admin-settings.php:56
1448
- msgid "Add class and use it to style \"No Products\" box"
1449
- msgstr ""
1450
- "Добавьте класс и используйте его для стилизации блока \"Нет продуктов\""
1451
-
1452
- #: templates/admin-settings.php:69
1453
- msgid "Products selector"
1454
- msgstr "Селектор продуктов"
1455
-
1456
- #: templates/admin-settings.php:73 templates/admin-settings.php:105
1457
- msgid ""
1458
- "Selector for tag that is holding products. Don't change this if you don't "
1459
- "know what it is"
1460
- msgstr ""
1461
- "Селектор для блока со всеми продуктами. Не меняйте, если не знаете что это"
1462
-
1463
- #: templates/admin-settings.php:77 includes/wizard.php:95
1464
- msgid "Product count selector"
1465
- msgstr "Селектор количества продуктов"
1466
-
1467
- #: templates/admin-settings.php:81
1468
- msgid ""
1469
- "Selector for tag with product result count(\"Showing 1–8 of 61 results\"). "
1470
- "Don't change this if you don't know what it is"
1471
- msgstr ""
1472
- "Селектор для блока с количеством продуктов (\"Отображается 1-8 из 61 "
1473
- "результата\"). Не меняйте, если не знаете что это"
1474
-
1475
- #: templates/admin-settings.php:84
1476
- msgid "Remove product count"
1477
- msgstr "Убрать количество продуктов"
1478
-
1479
- #: templates/admin-settings.php:89 includes/wizard.php:103
1480
- msgid "Product order by selector"
1481
- msgstr "Селектор для блока с сортировкой продуктов"
1482
-
1483
- #: templates/admin-settings.php:93
1484
- msgid ""
1485
- "Selector for order by form with drop down menu. Don't change this if you "
1486
- "don't know what it is"
1487
- msgstr ""
1488
- "Селектор для блока сортировки продуктов, форма с выпадающим списком. Не "
1489
- "меняйте, если не знаете что это"
1490
-
1491
- #: templates/admin-settings.php:96
1492
- msgid "Remove order by drop down menu"
1493
- msgstr "Убрать выпадающий список для сортировки"
1494
-
1495
- #: templates/admin-settings.php:101
1496
- msgid "Products pagination selector"
1497
- msgstr "Селектор для разбивки на страницы"
1498
-
1499
- #: templates/admin-settings.php:108
1500
- msgid "Remove pagination"
1501
- msgstr "Убрать разбивку на страницы"
1502
-
1503
- #: templates/admin-settings.php:113
1504
- msgid "Products Per Page"
1505
- msgstr "Продуктов на страницу"
1506
-
1507
- #: templates/admin-settings.php:126
1508
- msgid "Sorting control"
1509
- msgstr "Управлять сортировкой"
1510
-
1511
- #: templates/admin-settings.php:129
1512
- msgid "Take control over WooCommerce's sorting selectbox?"
1513
- msgstr "Взять контроль над блоком сортировки продуктов WooCommerce?"
1514
 
1515
- #: templates/admin-settings.php:133
1516
- msgid "SEO friendly urls"
1517
- msgstr "SEO дружелюбные ссылки"
1518
 
1519
- #: templates/admin-settings.php:136
1520
- msgid ""
1521
- "If this option is on url will be changed when filter is selected/changed"
1522
- msgstr "Если опция включена, то ссылка будет меняться при выборе фильтров"
1523
 
1524
- #: templates/admin-settings.php:138
1525
- msgid "Use slug in URL"
1526
- msgstr "Использовать Ярлыки в ссылках"
1527
 
1528
- #: templates/admin-settings.php:140
1529
- msgid "Nice URL"
1530
- msgstr "Красивые ссылки"
1531
 
1532
- #: templates/admin-settings.php:141
1533
- msgid ""
1534
- "Works only with SEO friendly urls. WordPress permalinks must be set to Post "
1535
- "name(Custom structure: /%postname%/ )"
1536
- msgstr ""
1537
- "Работает только с SEO дружелюбные ссылки. WordPress Постоянные ссылки должны "
1538
- "быть установлены как Название записи( Произвольно: /%postname%/ )"
1539
 
1540
- #: templates/admin-settings.php:145
1541
- msgid "Turn all filters off"
1542
- msgstr "Выключить все фильтры"
1543
 
1544
- #: templates/admin-settings.php:148
1545
- msgid ""
1546
- "If you want to hide filters without losing current configuration just turn "
1547
- "them off"
1548
- msgstr ""
1549
- "Если вы хотите убрать все фильтры без потери данных просто отключите их"
1550
 
1551
- #: templates/admin-settings.php:152 includes/wizard.php:318
1552
- msgid "Show all values"
1553
- msgstr "Показать все значения"
1554
 
1555
- #: templates/admin-settings.php:155 includes/wizard.php:322
1556
- msgid "Check if you want to show not used attribute values too"
1557
- msgstr "Включите если вы хотите показать не используемые значения тоже"
1558
 
1559
- #: templates/admin-settings.php:159 includes/wizard.php:332
1560
- msgid "Hide values"
1561
- msgstr "Спрятать значения"
1562
 
1563
- #: templates/admin-settings.php:162 includes/wizard.php:336
1564
- msgid "Hide values without products"
1565
- msgstr "Спрятать значения без продуктов"
1566
 
1567
- #: templates/admin-settings.php:164 includes/wizard.php:340
1568
- msgid "Hide selected values"
1569
- msgstr "Спрятать выбранные значения"
1570
 
1571
- #: templates/admin-settings.php:166 includes/wizard.php:344
1572
- msgid "Hide empty widget"
1573
- msgstr "Прятать пустые виджеты"
1574
 
1575
- #: templates/admin-settings.php:168 includes/wizard.php:348
1576
- msgid "Hide \"Show/Hide value(s)\" button"
1577
- msgstr "Прятать кнопку \"Показать/Скрыть значения\""
1578
 
1579
- #: templates/admin-settings.php:172 includes/wizard.php:419
1580
- msgid "Jump to first page"
1581
- msgstr "Переходить на первую страницу"
1582
 
1583
- #: templates/admin-settings.php:175
1584
- msgid "Check if you want load first page after filters change"
1585
- msgstr "Включите если вам нужно загружать первую страницу после фильтрации"
1586
 
1587
- #: templates/admin-settings.php:179 includes/wizard.php:428
1588
- msgid "Scroll page to the top"
1589
- msgstr "Прокрутить страницу наверх"
1590
 
1591
- #: templates/admin-settings.php:182 includes/wizard.php:432
1592
- msgid "Check if you want scroll page to the top of shop after filters change"
1593
- msgstr ""
1594
- "Включите если вам нужно что бы страница прокручивалась наверх после "
1595
- "применения фильтров"
1596
 
1597
- #: templates/admin-settings.php:186
1598
- msgid "px from products top."
1599
- msgstr "пикселей от верхнего края продуктов"
1600
 
1601
- #: templates/admin-settings.php:187
1602
- msgid "Use this to fix top scroll."
1603
- msgstr "Используйте для корректировки прокрутки"
1604
 
1605
- #: templates/admin-settings.php:191 includes/wizard.php:353
1606
- msgid "Reload amount of products"
1607
- msgstr "Перезагружать количество продуктов"
1608
 
1609
- #: templates/admin-settings.php:194 includes/wizard.php:357
1610
- msgid "Use filters on products count display"
1611
- msgstr "Использовать фильтры на основе отображаемых продуктов"
1612
 
1613
- #: templates/admin-settings.php:195
1614
- msgid ""
1615
- "Can slow down page load and filtering speed. Also do not use it with more "
1616
- "then 5000 products."
1617
- msgstr "Может замедлить загрузку страницы и скорость фильтрации"
1618
 
1619
- #: templates/admin-settings.php:199 includes/wizard.php:437
1620
- msgid "Show selected filters"
1621
- msgstr "Отображать выбранные фильтры"
1622
 
1623
- #: templates/admin-settings.php:202
1624
- msgid "Show selected filters above products"
1625
- msgstr "Отображать выбранные фильтры над продуктами"
1626
 
1627
- #: templates/admin-settings.php:206 includes/wizard.php:446
1628
- msgid "Display products"
1629
- msgstr "Отображать продукты"
1630
 
1631
- #: templates/admin-settings.php:209 includes/wizard.php:450
1632
  msgid ""
1633
- "Display always products when filters selected. Use this when you have "
1634
- "categories and subcategories on shop pages, but you want to display products "
1635
- "on filtering"
1636
  msgstr ""
1637
- "Всегда отображать продукты когда выбраны фильтры. Используйте это когда у "
1638
- "вас есть категории и подкатегории на странице магазина, но вам нужно "
1639
- "отображать продукты при фильтрации."
1640
-
1641
- #: templates/admin-settings.php:213
1642
- msgid "Data cache"
1643
- msgstr "Кэш данных"
1644
-
1645
- #: templates/admin-settings.php:217
1646
- msgid "WordPress Cache"
1647
- msgstr "WordPress Кэш"
1648
 
1649
- #: templates/admin-settings.php:218
1650
- msgid "Persistent Cache Plugins"
1651
- msgstr "Плагины с постоянным кэшем"
1652
 
1653
- #: templates/admin-settings.php:223
1654
- msgid "Show products count before filtering"
1655
- msgstr "Отображать количество продуктов перед фильтрацией"
1656
 
1657
- #: templates/admin-settings.php:226
1658
- msgid "Show products count before filtering, when using update button"
1659
- msgstr ""
1660
- "Отображать количество продуктов перед фильтрацией, когда используется кнопка "
1661
- "для обновления продуктов"
1662
 
1663
- #: templates/admin-settings.php:228
1664
- msgid "Text that means products"
1665
- msgstr "Текст который обозначает продукты"
 
1666
 
1667
- #: templates/admin-settings.php:232
1668
- msgid "Text for show button"
1669
- msgstr "Текст для кнопки показать продукты"
 
1670
 
1671
- #: templates/admin-settings.php:238
1672
- msgid "Template ajax load fix"
1673
- msgstr "Исправление для AJAX загрузки"
1674
 
1675
- #: templates/admin-settings.php:241
1676
- msgid "Use all plugins on ajax load(can slow down products loading)"
1677
- msgstr ""
1678
- "Использует все плагины при загрузке страницы (может замедлить загрузку "
1679
- "продуктов)"
1680
 
1681
- #: templates/admin-settings.php:243
1682
- msgid "Use"
1683
- msgstr "Использовать"
1684
 
1685
- #: templates/admin-settings.php:245
1686
- msgid "PHP"
1687
- msgstr "PHP"
1688
 
1689
- #: templates/admin-settings.php:246
1690
- msgid "JavaScript (jQuery)"
1691
- msgstr "JavaScript (jQuery)"
1692
 
1693
- #: templates/admin-settings.php:249
1694
- msgid "for fix"
1695
- msgstr "для исправления"
1696
 
1697
- #: templates/admin-settings.php:252
1698
  msgid ""
1699
- "PHP - loads the full page and cuts products from the page via PHP. Slow down "
1700
- "server, but users take only needed information."
1701
  msgstr ""
1702
- "PHP - загружает всю страницу и вырезает продукты со страницы с помощью PHP. "
1703
- "Замедляет работу сервера, но пользователь получает только нужную информацию."
1704
 
1705
- #: templates/admin-settings.php:256
1706
- msgid ""
1707
- "JavaScript (jQuery) - loads the full page and copy all products from the "
1708
- "loaded page to the current page using JQuery. Slow down server and users "
1709
- "take the full page. Works good with different themes and plugins."
1710
- msgstr ""
1711
- "JavaScript (jQuery) - загружает всю страницу и копирует продукты на текущую "
1712
- "страницу при помощи JQuery. Замедляет сервер и пользователь получает всю "
1713
- "страницу. Наилучшая совместимость с разными темами и плагинами."
1714
 
1715
- #: templates/admin-settings.php:260
1716
  msgid ""
1717
- "JavaScript - loads the full page and cuts products from the page via "
1718
- "JavaScript. Slow down server and users take the full page. Works like PHP "
1719
- "method."
1720
  msgstr ""
1721
- "PHP - загружает всю страницу и вырезает продукты со страницы с помощью "
1722
- "JavaScript. Замедляет работу сервера и пользователь получает всю страницу. "
1723
- "Работает как метод PHP."
1724
-
1725
- #: templates/admin-settings.php:262
1726
- msgid "Some features work only with JavaScript (jQuery) fix"
1727
- msgstr "Некоторые функции работают только с JavaScript (jQuery) исправлением"
1728
 
1729
- #: templates/admin-settings.php:267
1730
- msgid "Old slider compatibility"
1731
- msgstr "Совместимость со старыми слайдерами"
1732
 
1733
- #: templates/admin-settings.php:270
1734
  msgid ""
1735
- "Slow down filtering with sliders. Enable it only if you have some problem "
1736
- "with slider filters"
1737
- msgstr ""
1738
- "Замедляет фильтрацию при помощи слайдеров. Включите только если у вас есть "
1739
- "проблемы с фильтрацией слайдеров."
1740
-
1741
- #: templates/admin-settings.php:274
1742
- msgid "Display styles only for pages with filters"
1743
- msgstr "Отображать стили только на страницах с фильтрами"
1744
-
1745
- #: templates/admin-settings.php:277
1746
- msgid "On some sites it can cause some visual problem on page loads"
1747
- msgstr ""
1748
- "На некоторых сайтах это может вызывать некоторые визуальные проблемы при "
1749
- "загрузке страницы."
1750
-
1751
- #: templates/admin-settings.php:281
1752
- msgid "Product per row fix"
1753
- msgstr "Исправление количества продуктов на строку"
1754
-
1755
- #: templates/admin-settings.php:285
1756
- msgid "Change this only if after filtering count of products per row changes."
1757
  msgstr ""
1758
- "Изменяйте это только если количество продуктов на строку меняется после "
1759
- "фильтрации"
1760
-
1761
- #: templates/admin-settings.php:307
1762
- msgid "Fix for sites with AJAX"
1763
- msgstr "Исправление для сайтов с AJAX"
1764
-
1765
- #: templates/admin-settings.php:310
1766
- msgid "Add JavaScript files to all pages."
1767
- msgstr "Добавляет JavaScript файлы на все страницы"
1768
 
1769
- #: templates/admin-settings.php:314 includes/wizard.php:455
1770
- msgid "Search page fix"
1771
- msgstr "Исправление для страницы поиска"
1772
 
1773
- #: templates/admin-settings.php:317
1774
- msgid "Disable redirection, when search page return only one product"
 
 
1775
  msgstr ""
1776
- "Отключает перенаправление, когда страница поиска возвращает только один "
1777
- "продукт"
1778
-
1779
- #: templates/admin-settings.php:321
1780
- msgid "Use Tags like custom taxonomy"
1781
- msgstr "Использовать тэги как пользовательские таксономии"
1782
-
1783
- #: templates/admin-settings.php:324
1784
- msgid "Try to enable this if widget with tags didn't work."
1785
- msgstr "Включите это, если виджет с тэгами не работает"
1786
 
1787
- #: templates/admin-settings.php:328
1788
- msgid "Disable loading Font Awesome on front end"
1789
- msgstr "Отключить загрузку Font Awesome на страницах сайта"
1790
 
1791
- #: templates/admin-settings.php:331
1792
  msgid ""
1793
- "Don't loading css file for Font Awesome on site front end. Use this only if "
1794
- "you doesn't uses Font Awesome icons in widgets or you have Font Awesome in "
1795
- "your theme."
1796
  msgstr ""
1797
- "Не загружает CSS файл Font Awesome на страницах сайта. Используйте только "
1798
- "если вы не используете иконки Font Awesome в виджетах или у вас есть Font "
1799
- "Awesome в вашей теме."
1800
-
1801
- #: templates/admin-settings.php:335
1802
- msgid "Plugin key"
1803
- msgstr "Ключ продукта"
1804
-
1805
- #: templates/admin-settings.php:339
1806
- msgid "Key for plugin from BeRocket.com"
1807
- msgstr "Ключ для плагина с BeRocket.com"
1808
 
1809
- #: templates/admin-settings.php:347 templates/admin-settings.php:1184
1810
- #: templates/admin-settings.php:1215 templates/admin-settings.php:1236
1811
- msgid "Save Changes"
1812
- msgstr "Сохранить изменения"
1813
 
1814
- #: templates/admin-settings.php:355 templates/admin-settings.php:370
1815
  msgid "Select All"
1816
  msgstr "Выбрать всё"
1817
 
1818
- #: templates/admin-settings.php:358 templates/admin-settings.php:373
1819
- #: templates/admin-settings.php:495
1820
  msgid "Element"
1821
  msgstr "Элемент"
1822
 
1823
- #: templates/admin-settings.php:360 templates/admin-settings.php:375
1824
  msgid "Font Family"
1825
  msgstr "Шрифт"
1826
 
1827
- #: templates/admin-settings.php:361 templates/admin-settings.php:376
1828
  msgid "Font-Weight"
1829
  msgstr "Толщина шрифта"
1830
 
1831
- #: templates/admin-settings.php:361 templates/admin-settings.php:376
1832
  msgid "(depends on font)"
1833
  msgstr "(Зависит от шрифта)"
1834
 
1835
- #: templates/admin-settings.php:362 templates/admin-settings.php:377
1836
  msgid "Font-Size"
1837
  msgstr "Размер шрифта"
1838
 
1839
- #: templates/admin-settings.php:363 templates/admin-settings.php:378
1840
- #: templates/admin-settings.php:503
1841
  msgid "Theme"
1842
  msgstr "Тема"
1843
 
1844
- #: templates/admin-settings.php:382 templates/admin-settings.php:973
1845
- #: templates/admin-settings.php:1042 templates/admin-settings.php:1115
 
1846
  msgid "Set all to theme default"
1847
  msgstr "Установить всё по умолчанию"
1848
 
1849
- #: templates/admin-settings.php:395
1850
  msgid "Select Element"
1851
  msgstr "Выбрать элемент"
1852
 
1853
- #: templates/admin-settings.php:406 templates/admin-settings.php:418
1854
- #: templates/admin-settings.php:459 templates/admin-settings.php:466
1855
- #: templates/admin-settings.php:481
1856
  msgid "N/A"
1857
  msgstr "Н/Д"
1858
 
1859
- #: templates/admin-settings.php:412 templates/admin-settings.php:427
1860
- #: templates/admin-settings.php:464 templates/admin-settings.php:515
1861
- #: templates/admin-settings.php:518 templates/admin-settings.php:521
1862
- #: templates/admin-settings.php:771 templates/admin-settings.php:774
1863
- #: templates/admin-settings.php:777 templates/admin-settings.php:1008
1864
- #: templates/admin-settings.php:1016 templates/admin-settings.php:1019
1865
- #: templates/admin-settings.php:1032 templates/admin-settings.php:1035
1866
- #: templates/admin-settings.php:1077 templates/admin-settings.php:1085
1867
- #: templates/admin-settings.php:1098
 
 
 
 
1868
  msgid "Theme Default"
1869
  msgstr "По умолчанию"
1870
 
1871
- #: templates/admin-settings.php:472
1872
  msgid "Without Theme"
1873
  msgstr "Без темы"
1874
 
1875
- #: templates/admin-settings.php:493
1876
  msgid "Checkbox / Radio"
1877
- msgstr "Checkbox / Radio"
1878
 
1879
- #: templates/admin-settings.php:496 templates/admin-settings.php:1053
 
1880
  msgid "Border color"
1881
  msgstr "Цвет границы"
1882
 
1883
- #: templates/admin-settings.php:497
1884
  msgid "Border width"
1885
  msgstr "Ширина границы"
1886
 
1887
- #: templates/admin-settings.php:498
1888
  msgid "Border radius"
1889
  msgstr "Закругление углов"
1890
 
1891
- #: templates/admin-settings.php:499
1892
  msgid "Size"
1893
  msgstr "Размер"
1894
 
1895
- #: templates/admin-settings.php:500 templates/admin-settings.php:1055
 
1896
  msgid "Font color"
1897
  msgstr "Цвет шрифта"
1898
 
1899
- #: templates/admin-settings.php:501
1900
  msgid "Background"
1901
  msgstr "Задний фон"
1902
 
1903
- #: templates/admin-settings.php:502
1904
  msgid "Icon"
1905
  msgstr "Иконка"
1906
 
1907
- #: templates/admin-settings.php:981
1908
- msgid "Slider"
1909
- msgstr "Слайдер"
1910
-
1911
- #: templates/admin-settings.php:983
1912
  msgid "Line color"
1913
  msgstr "Цвет линии"
1914
 
1915
- #: templates/admin-settings.php:984
1916
  msgid "Back line color"
1917
  msgstr "Цвет заднего фона линии"
1918
 
1919
- #: templates/admin-settings.php:985
1920
  msgid "Line height"
1921
  msgstr "Высота линии"
1922
 
1923
- #: templates/admin-settings.php:986
1924
  msgid "Line border color"
1925
  msgstr "Цвет границы линии"
1926
 
1927
- #: templates/admin-settings.php:987
1928
  msgid "Line border width"
1929
  msgstr "Ширина границы линии"
1930
 
1931
- #: templates/admin-settings.php:988
1932
  msgid "Button size"
1933
  msgstr "Размер кнопки"
1934
 
1935
- #: templates/admin-settings.php:989
1936
  msgid "Button color"
1937
  msgstr "Цвет кнопки"
1938
 
1939
- #: templates/admin-settings.php:990
1940
  msgid "Button border color"
1941
  msgstr "Цвет границы кнопки"
1942
 
1943
- #: templates/admin-settings.php:991
1944
  msgid "Button border width"
1945
  msgstr "Ширина границы кнопки"
1946
 
1947
- #: templates/admin-settings.php:992
1948
  msgid "Button border radius"
1949
  msgstr "Закругление углов кнопки"
1950
 
1951
- #: templates/admin-settings.php:1050
1952
  msgid "Product count description before filtering with Update button"
1953
  msgstr "Описание количества товаров перед фильтрацией с кнопкой «Обновить»"
1954
 
1955
- #: templates/admin-settings.php:1054
1956
  msgid "Font size"
1957
  msgstr "Размер шрифта"
1958
 
1959
- #: templates/admin-settings.php:1056
1960
  msgid "Show button font size"
1961
  msgstr "Размер шрифта кнопки \"Показать\""
1962
 
1963
- #: templates/admin-settings.php:1057
1964
  msgid "Show button font color"
1965
  msgstr "Цвет шрифта кнопки \"Показать\""
1966
 
1967
- #: templates/admin-settings.php:1058
1968
  msgid "Show button font color on mouse over"
1969
  msgstr "Цвет шрифта кнопки \"Показать\" при наведении"
1970
 
1971
- #: templates/admin-settings.php:1059
1972
  msgid "Close button size"
1973
  msgstr "Размер кнопки \"Закрыть\""
1974
 
1975
- #: templates/admin-settings.php:1060
1976
  msgid "Close button font color"
1977
  msgstr "Цвет шрифта кнопки \"Закрыть\""
1978
 
1979
- #: templates/admin-settings.php:1061
1980
  msgid "Close button font color on mouse over"
1981
  msgstr "Цвет шрифта кнопки \"Закрыть\" при наведении"
1982
 
1983
- #: templates/admin-settings.php:1123
 
 
 
 
 
 
 
 
1984
  msgid "Loading products icon"
1985
  msgstr "Иконка загрузки продуктов"
1986
 
1987
- #: templates/admin-settings.php:1131
1988
  msgid "Text at load icon"
1989
  msgstr "Текст возле иконки загрузки"
1990
 
1991
- #: templates/admin-settings.php:1133
1992
  msgid "Above:"
1993
  msgstr "Выше:"
1994
 
1995
- #: templates/admin-settings.php:1136
1996
  msgid "Under:"
1997
  msgstr "Ниже:"
1998
 
1999
- #: templates/admin-settings.php:1139
2000
  msgid "Before:"
2001
  msgstr "Перед:"
2002
 
2003
- #: templates/admin-settings.php:1142
2004
  msgid "After:"
2005
  msgstr "После:"
2006
 
2007
- #: templates/admin-settings.php:1148
2008
  msgid "Description show and hide"
2009
  msgstr "Показать и скрыть описание"
2010
 
2011
- #: templates/admin-settings.php:1150
2012
  msgid "Show on:"
2013
  msgstr "Показать при:"
2014
 
2015
- #: templates/admin-settings.php:1152
2016
  msgid "Click"
2017
  msgstr "Нажатии"
2018
 
2019
- #: templates/admin-settings.php:1153
2020
  msgid "Mouse over icon"
2021
  msgstr "Наведении на иконку"
2022
 
2023
- #: templates/admin-settings.php:1157
2024
  msgid "Hide on:"
2025
  msgstr "Скрывать при:"
2026
 
2027
- #: templates/admin-settings.php:1159
2028
  msgid "Click anywhere"
2029
  msgstr "Нажатии в любом месте"
2030
 
2031
- #: templates/admin-settings.php:1160
2032
  msgid "Mouse out of icon"
2033
  msgstr "Курсор вне иконки"
2034
 
2035
- #: templates/admin-settings.php:1165
2036
  msgid "Product count style"
2037
- msgstr "Стиль количества продуктов"
2038
 
2039
- #: templates/admin-settings.php:1168
2040
  msgid "4"
2041
  msgstr "4"
2042
 
2043
- #: templates/admin-settings.php:1169
2044
  msgid "(4)"
2045
  msgstr "(4)"
2046
 
2047
- #: templates/admin-settings.php:1170
2048
  msgid "[4]"
2049
  msgstr "[4]"
2050
 
2051
- #: templates/admin-settings.php:1174
2052
  msgid "Position:"
2053
  msgstr "Позиция:"
2054
 
2055
- #: templates/admin-settings.php:1176
2056
  msgid "Normal"
2057
  msgstr "Нормальная"
2058
 
2059
- #: templates/admin-settings.php:1177
2060
  msgid "Right"
2061
  msgstr "Справа"
2062
 
2063
- #: templates/admin-settings.php:1178
2064
  msgid "Right from name"
2065
  msgstr "Справа от имени"
2066
 
2067
- #: templates/admin-settings.php:1190
2068
- msgid "Before Update:"
2069
- msgstr "Перед обновлением"
2070
-
2071
- #: templates/admin-settings.php:1194
2072
- msgid "If you want to add own actions on filter activation, eg: alert('1');"
2073
- msgstr ""
2074
- "Если вы хотите добавить своё действие при выборе фильтра, например: "
2075
- "alert('1');"
2076
-
2077
- #: templates/admin-settings.php:1198
2078
- msgid "On Update:"
2079
- msgstr "При обновлении:"
2080
-
2081
- #: templates/admin-settings.php:1202
2082
- msgid ""
2083
- "If you want to add own actions right on products update. You can manipulate "
2084
- "data here, try: data.products = 'Ha!';"
2085
- msgstr ""
2086
- "Если вы хотите добавить своё действие при обновлении продуктов. Здесь вы "
2087
- "можете менять данные, попробуйте: data.products = 'Ha!';"
2088
-
2089
- #: templates/admin-settings.php:1206
2090
- msgid "After Update:"
2091
- msgstr "После обновления:"
2092
-
2093
- #: templates/admin-settings.php:1210
2094
- msgid "If you want to add own actions after products updated, eg: alert('1');"
2095
- msgstr ""
2096
- "Если вы хотите добавить своё действие после обновления продуктов, например: "
2097
- "alert('1');"
2098
-
2099
- #: templates/admin-settings.php:1221
2100
- msgid "User custom CSS style:"
2101
- msgstr "Пользовательские стили CSS:"
2102
-
2103
- #: templates/admin-settings.php:1227
2104
- msgid "Definitions:"
2105
- msgstr "Определения"
2106
-
2107
- #: templates/admin-settings.php:1229
2108
- msgid "widget block."
2109
- msgstr "Блок с виджетом."
2110
-
2111
- #: templates/admin-settings.php:1230
2112
- msgid "widget title."
2113
- msgstr "заголовок виджета"
2114
-
2115
- #: templates/admin-settings.php:1341
2116
- msgid "Text before price"
2117
- msgstr "текст перед ценой"
2118
-
2119
- #: templates/admin-settings.php:1345
2120
- msgid "Text after price"
2121
- msgstr "Текст после цены"
2122
 
2123
- #: templates/admin-settings.php:1371
2124
- msgid "Product Category"
2125
- msgstr "Категория продукта"
2126
 
2127
- #: templates/admin-settings.php:1450
2128
- msgid "Display value with color box?"
2129
- msgstr "Отображать значения с блоком цвета?"
2130
 
2131
- #: templates/admin-settings.php:1802 templates/admin.php:614
2132
- msgid "All"
2133
- msgstr "Все"
2134
 
2135
- #: templates/admin-settings.php:1803 templates/admin.php:615
2136
- msgid "Logged In only"
2137
- msgstr "Те кто вошли только"
2138
 
2139
- #: templates/admin-settings.php:1804 templates/admin.php:616
2140
- msgid "Not Logged In only"
2141
- msgstr "Те кто не вошли только"
2142
 
2143
- #: templates/admin-settings.php:1811 templates/admin.php:623
2144
- msgid "include subcats?"
2145
- msgstr "включая подкатегории?"
2146
 
2147
- #: templates/admin-settings.php:1830 templates/admin.php:651
2148
- msgid "Display widget pages"
2149
- msgstr "Страницы для отображения виджета"
2150
 
2151
- #: templates/admin-settings.php:1835 templates/admin.php:657
2152
- #: includes/new_filters.php:502
2153
- msgid "shop"
2154
- msgstr "магазин"
2155
 
2156
- #: templates/admin-settings.php:1839 templates/admin.php:661
2157
- #: includes/new_filters.php:503
2158
- msgid "product category"
2159
- msgstr "категории продуктов"
2160
 
2161
- #: templates/admin-settings.php:1843 templates/admin.php:665
2162
- #: includes/new_filters.php:504
2163
- msgid "product attributes"
2164
- msgstr "атрибуты продуктов"
2165
 
2166
- #: templates/admin-settings.php:1847 templates/admin.php:669
2167
- #: includes/new_filters.php:505
2168
- msgid "product tags"
2169
- msgstr "теги продуктов"
2170
-
2171
- #: templates/admin-settings.php:1901
2172
- msgid "Get Shortcode"
2173
- msgstr "Получить Shortcode"
2174
 
2175
- #: templates/select.php:28 templates/select.php:71
2176
- msgid "Any"
2177
- msgstr "Всё"
2178
 
2179
- #: templates/admin.php:673 includes/new_filters.php:506
2180
- msgid "single product"
2181
- msgstr "один продукт"
2182
 
2183
- #: includes/functions.php:52
2184
- msgid "BeRocket AJAX Product Filters Nice URL settings"
2185
- msgstr "BeRocket AJAX Фильтры для Продуктов. Настройка для Красивых Ссылок"
2186
 
2187
- #: includes/functions.php:698
2188
- msgid "Widget Title"
2189
- msgstr "Название Виджета"
 
2190
 
2191
- #: includes/functions.php:710
2192
- msgid "Label(checkbox/radio)"
 
2193
  msgstr ""
2194
- "Надпись (checkbox/radio)\n"
2195
-
2196
- #: includes/functions.php:722
2197
- msgid "Select-box"
2198
- msgstr "Выпадающий Список"
2199
-
2200
- #: includes/functions.php:734
2201
- msgid "Slider Inputs"
2202
- msgstr "Поля для ввода у слайдера"
2203
-
2204
- #: includes/functions.php:746
2205
- msgid "Description Block"
2206
- msgstr "Блок с Описанием"
2207
 
2208
- #: includes/functions.php:758
2209
- msgid "Description Border"
2210
- msgstr "Граница Блока с Описанием"
2211
-
2212
- #: includes/functions.php:770
2213
- msgid "Description Title Text"
2214
- msgstr "Заглавие Блока с Описанием"
2215
 
2216
- #: includes/functions.php:782
2217
- msgid "Description Text"
2218
- msgstr "Текст Блока с Описанием"
2219
 
2220
- #: includes/functions.php:794
2221
- msgid "Selected filters area text"
2222
- msgstr "Выбранные Фильтры Область с Текстом"
2223
 
2224
- #: includes/functions.php:806
2225
- msgid "Selected filters mouse over text"
2226
- msgstr "Выбранные Фильтры Курсор над Текстом"
2227
 
2228
- #: includes/functions.php:818
2229
- msgid "Selected filters link background"
2230
- msgstr "Выбранные Фильтры Фон Ссылки"
2231
 
2232
- #: includes/functions.php:830
2233
- msgid "Selected filters link border"
2234
- msgstr "Выбранные Фильтры Граница Ссылки"
2235
 
2236
- #: includes/functions.php:2126
2237
- msgid "Font awesome"
2238
- msgstr "Font Awesome"
 
 
 
 
 
 
 
2239
 
2240
- #: includes/functions.php:2131
2241
- msgid "Upload"
2242
- msgstr "Загрузить"
 
 
 
 
2243
 
2244
- #: includes/widget.php:122
2245
- msgid "Add Filters to Products page"
2246
- msgstr "Добавить фильтры на страницу продуктов"
 
 
 
 
 
 
 
2247
 
2248
- #: includes/widget.php:614 includes/widget.php:2604 includes/widget.php:2853
2249
- msgid "In stock"
2250
- msgstr "В наличии"
 
 
2251
 
2252
- #: includes/widget.php:615 includes/widget.php:2605 includes/widget.php:2854
2253
- msgid "Out of stock"
2254
- msgstr "Нет в наличии"
 
2255
 
2256
- #: includes/widget.php:623
2257
- msgid "On sale"
2258
- msgstr "На распродаже"
2259
 
2260
- #: includes/widget.php:624
2261
- msgid "Not on sale"
2262
- msgstr "Не на распродаже"
2263
 
2264
- #. Name of the plugin
2265
- msgid "WooCommerce AJAX Products Filter"
2266
- msgstr "WooCommerce AJAX Products Filter"
2267
 
2268
  #. Description of the plugin
2269
  msgid "Unlimited AJAX products filters to make your shop perfect"
2270
- msgstr "Бесконечные AJAX фильтры для продуктов. Сделайте ваш магазин лучше"
2271
 
2272
  #. URI of the plugin
2273
- msgid "http://berocket.com/product/woocommerce-ajax-products-filter"
2274
- msgstr "http://berocket.com/product/woocommerce-ajax-products-filter"
2275
-
2276
- #. Author of the plugin
2277
- msgid "BeRocket"
2278
- msgstr "BeRocket"
2279
 
2280
  #. Author URI of the plugin
2281
- msgid "http://berocket.com"
2282
- msgstr "http://berocket.com"
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce AJAX Products Filter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-10-30 12:54+0000\n"
6
+ "PO-Revision-Date: 2019-10-30 14:25+0000\n"
7
+ "Last-Translator: root <root@root.com>\n"
8
+ "Language-Team: Русский\n"
9
+ "Language: ru_RU\n"
10
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
11
+ "n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
21
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ru_RU\n"
24
+ "X-Generator: Loco https://localise.biz/\n"
25
+ "X-Loco-Version: 2.3.1; wp-5.2.4"
26
 
27
+ #. Name of the plugin
28
+ #: main.php:61
29
+ msgid "WooCommerce AJAX Products Filter"
30
+ msgstr "WooCommerce AJAX Products Filter"
31
 
32
+ #: main.php:62
33
+ msgid "Product Filters"
34
+ msgstr "Фильтры продуктов"
35
 
36
+ #: main.php:72 main.php:1456
37
+ msgid "There are no products meeting your criteria"
38
+ msgstr "Нет товаров, соответствующих вашим критериям"
39
 
40
+ #: main.php:322
41
+ msgid ""
42
+ "<strong>Please update all BeRocket plugins to the most recent version. "
43
+ "WooCommerce AJAX Products Filter is not working correctly with older "
44
+ "versions.</strong>"
45
+ msgstr ""
46
+ "<strong> Пожалуйста, обновите все плагины BeRocket до последней версии. "
47
+ "WooCommerce AJAX Products Filter работает некорректно со старыми версиями. "
48
+ "</strong>"
49
 
50
+ #: main.php:386
51
+ msgid "General"
52
+ msgstr "Главные"
53
 
54
+ #: main.php:390
55
+ msgid "Elements"
56
+ msgstr "Элементы"
57
 
58
+ #: main.php:394
59
+ msgid "Selectors"
60
+ msgstr "Селекторы"
61
 
62
+ #: main.php:398
63
+ msgid "SEO"
64
+ msgstr "SEO"
 
65
 
66
+ #: main.php:402
67
+ msgid "Advanced"
68
+ msgstr "Продвинутые"
69
 
70
+ #: main.php:406
71
+ msgid "Design"
72
+ msgstr "Дизайн"
 
73
 
74
+ #: main.php:410
75
+ msgid "JavaScript/CSS"
76
+ msgstr "JavaScript/CSS"
 
 
 
 
77
 
78
+ #: main.php:415 includes/custom_post.php:645
79
+ msgid "Filters"
80
+ msgstr "Фильтры"
 
 
 
 
81
 
82
+ #: main.php:420
83
+ msgid "License"
84
+ msgstr "Лицензия"
85
+
86
+ #: main.php:424
87
+ msgid "Addons"
88
+ msgstr "Адоны"
89
+
90
+ #: main.php:434
91
+ msgid "\"No Products\" message"
92
+ msgstr "Сообщение «Нет товаров»"
93
+
94
+ #: main.php:440
95
+ msgid "Products Per Page"
96
+ msgstr "Продукты на странице"
97
+
98
+ #: main.php:446 templates/filter_post.php:373
99
+ msgid "Attribute Values count"
100
+ msgstr "Количество Значений Атрибута"
101
+
102
+ #: main.php:450
103
  msgid ""
104
+ "Attribute Values count that will be displayed. Other values will be hidden "
105
+ "and can be displayed by pressing the button. Option <strong>Hide \"Show/Hide "
106
+ "value(s)\" button</strong> must be disabled"
107
  msgstr ""
108
+ "Количество значений атрибутов, которое будет отображаться. Другие значения "
109
+ "будут скрыты и могут быть отображены нажатием кнопки. Опция <strong> Скрыть "
110
+ "кнопку «Показать/Скрыть значения» </strong> должна быть отключена"
111
 
112
+ #: main.php:453
113
+ msgid "Sorting control"
114
+ msgstr "Контроль сортировки"
 
 
 
 
115
 
116
+ #: main.php:457
117
+ msgid "Take control over WooCommerce's sorting selectbox?"
118
+ msgstr "Взять под контроль поле выбора сортировки WooCommerce?"
119
 
120
+ #: main.php:460
121
+ msgid "Hide values"
122
+ msgstr "Скрыть значения"
123
 
124
+ #: main.php:466
125
+ msgid "Hide values without products"
126
+ msgstr "Скрыть значения без продуктов"
127
 
128
+ #: main.php:472
129
+ msgid "Hide selected values"
130
+ msgstr "Скрыть выбранные значения"
 
131
 
132
+ #: main.php:478
133
+ msgid "Hide empty widget"
134
+ msgstr "Скрыть пустые виджеты"
135
 
136
+ #: main.php:483
137
+ msgid "Jump to first page"
138
+ msgstr "Переходить на первую страницу"
139
 
140
+ #: main.php:487
141
+ msgid "Check if you want load first page after filters change"
142
+ msgstr "Включите, если нужно Вам загружать первую страницу после фильтрации"
 
143
 
144
+ #: main.php:490
145
+ msgid "Scroll page to the top"
146
+ msgstr "Прокрутить страницу наверх"
 
147
 
148
+ #: main.php:493 main.php:544 main.php:705
149
+ msgid "Selected filters position"
150
+ msgstr "Позиция выбранных фильтров"
 
151
 
152
+ #: main.php:498 templates/filter_post.php:650 includes/paid.php:84
153
+ msgid "Disable"
154
+ msgstr "Выключено"
 
155
 
156
+ #: main.php:499
157
+ msgid "Mobile and Desktop"
158
+ msgstr "Мобильные и Персональные компьютеры "
 
159
 
160
+ #: main.php:500 includes/custom_post.php:299 includes/custom_post.php:611
161
+ msgid "Mobile"
162
+ msgstr "Мобильных"
 
163
 
164
+ #: main.php:501 includes/custom_post.php:307 includes/custom_post.php:619
165
+ msgid "Desktop"
166
+ msgstr "Персональных компьютерах "
167
 
168
+ #: main.php:510
169
+ msgid "px from products top."
170
+ msgstr "px от продуктов сверху."
171
 
172
+ #: main.php:510
173
+ msgid "Use this to fix top scroll."
174
+ msgstr "Используйте это для исправления скролла сверху"
175
 
176
+ #: main.php:515
177
+ msgid "Select2"
178
+ msgstr "Select2"
179
 
180
+ #: main.php:522
181
+ msgid "Use Select2 script for dropdown menu"
182
+ msgstr "Использовать скрипт Select2 для выпадающего меню"
 
 
183
 
184
+ #: main.php:529
185
  msgid ""
186
+ "Fixed CSS styles for Select2 (do not enable if Select2 work correct. Option "
187
+ "can break Select2 in other plugins or themes)"
 
188
  msgstr ""
189
+ "Исправление стили CSS для Select2 (не включайте, если Select2 работает "
190
+ "правильно. Опция может сломать Select2 в других плагинах или темах)"
191
 
192
+ #: main.php:534
193
+ msgid "Reload amount of products"
194
+ msgstr "Перезагружать количество продуктов"
 
 
 
 
195
 
196
+ #: main.php:539
197
+ msgid "Use filters on products count display"
198
+ msgstr "Использовать фильтры на основе отображаемых продуктов"
199
 
200
+ #: main.php:539
201
  msgid ""
202
+ "Can slow down page load and filtering speed. Also do not use it with more "
203
+ "then 5000 products."
204
  msgstr ""
205
+ "Может замедлить загрузку страницы и скорость фильтрации. Также не "
206
+ "используйте с более чем 5000 продуктов."
207
 
208
+ #: main.php:548
209
+ msgid "WooCommerce Description(in header)"
210
+ msgstr "Описание WooCommerce(в заголовке)"
 
211
 
212
+ #: main.php:549
213
+ msgid "WooCommerce Before Shop Loop"
214
+ msgstr "Перед WooCommerce Shop Loop"
215
 
216
+ #: main.php:550
217
+ msgid "WooCommerce After Shop Loop"
218
+ msgstr "После WooCommerce Shop Loop"
219
 
220
+ #: main.php:555
221
+ msgid "Show selected filters"
222
+ msgstr "Отображать выбранные фильтры"
 
223
 
224
+ #: main.php:562
225
+ msgid "Show selected filters above products"
226
+ msgstr "Показать выбранные фильтры над продуктами"
227
 
228
+ #: main.php:569
229
+ msgid ""
230
+ "Hide selected filters area if nothing selected(affect only area above "
231
+ "products)"
232
  msgstr ""
233
+ "Скрыть область выбранных фильтров, если ничего не выбрано (влияет только на "
234
+ "область над продуктами)"
235
 
236
+ #: main.php:580
237
+ msgid "Products selector"
238
+ msgstr "Селектор продуктов"
239
 
240
+ #: main.php:585 main.php:630
241
+ msgid ""
242
+ "Selector for tag that is holding products. Don't change this if you don't "
243
+ "know what it is"
244
  msgstr ""
245
+ "Селектор для тега, который содержит товары. Не меняйте это, если Вы не "
246
+ "знаете, что это такое"
247
 
248
+ #: main.php:588
249
+ msgid "Product count selector"
250
+ msgstr "Селектор количества продуктов"
251
 
252
+ #: main.php:595
253
+ msgid ""
254
+ "Selector for tag with product result count(\"Showing 1–8 of 61 results\"). "
255
+ "Don't change this if you don't know what it is"
256
  msgstr ""
257
+ "Селектор для тега с результатов количества продуктов(«Показано 1–8 из 61 "
258
+ "результатов»). Не меняйте это, если Вы не знаете, что это такое"
259
 
260
+ #: main.php:601
261
+ msgid "Enable if page doesn't have product count block"
262
+ msgstr "Включить, если на странице нет блока подсчета товаров"
263
 
264
+ #: main.php:606
265
+ msgid "Product order by selector"
266
+ msgstr "Селектор для блока с сортировкой продуктов"
267
 
268
+ #: main.php:612
269
+ msgid ""
270
+ "Selector for order by form with drop down menu. Don't change this if you "
271
+ "don't know what it is"
272
  msgstr ""
273
+ "Селектор для блока сортировки. Не меняйте это, если Вы не знаете, что это "
274
+ "такое"
275
 
276
+ #: main.php:618
277
+ msgid "Enable if page doesn't have order by drop down menu"
278
+ msgstr "Включить, если страница не имеет порядка в выпадающем меню"
279
 
280
+ #: main.php:623
281
+ msgid "Products pagination selector"
282
+ msgstr "Селектор страниц"
283
 
284
+ #: main.php:636
285
+ msgid ""
286
+ "Enable if page doesn't have pagination.<strong>Page with lazy load also has "
287
+ "pagination</strong>"
288
  msgstr ""
289
+ "Включите, если страница не имеет нумерации страниц. <strong> Страница с "
290
+ "отложенной загрузкой также имеет нумерацию страниц </strong>"
291
 
292
+ #: main.php:642
293
+ msgid "Disable AJAX Pagination"
294
+ msgstr "Отключить пагинацию AJAX"
295
 
296
+ #: main.php:649
297
+ msgid "Update URL on filtering"
298
+ msgstr "Обновить URL при фильтрации"
299
 
300
+ #: main.php:654
301
+ msgid ""
302
+ "If this option is on URL will be changed when filter is selected/changed"
303
  msgstr ""
304
+ "Если эта опция включена, URL будет изменен при выборе / изменении фильтра."
305
 
306
+ #: main.php:657
307
+ msgid "Use slug in URL"
308
+ msgstr "Используйте slug в URL"
309
 
310
+ #: main.php:662
311
+ msgid "Use attribute slug instead ID"
312
+ msgstr "Используйте атрибут slug вместо ID"
313
 
314
+ #: main.php:665
315
+ msgid "URL decode"
316
+ msgstr "Декодирование URL"
317
 
318
+ #: main.php:670
319
+ msgid "Decode all symbols in URL to prevent errors on server side"
320
  msgstr ""
321
+ "Расшифровует все символы в URL, чтобы избежать ошибок на стороне сервера"
322
 
323
+ #: main.php:673
324
+ msgid "SEO Meta, Title"
325
+ msgstr "SEO Мета, Заголовки"
326
 
327
+ #: main.php:678
328
+ msgid "Meta Description, Page title and Page Header with filters"
329
+ msgstr "Мета-описание, заголовок страницы и заголовок страницы с фильтрами"
330
 
331
+ #: main.php:681
332
+ msgid "SEO Meta, Title Elements"
333
+ msgstr "SEO Мета, Элементы Заголовка"
334
 
335
+ #: main.php:688 templates/admin.php:27 templates/filters_group_simple.php:2
336
+ #: templates/filter_post_simple.php:11 includes/paid.php:1480
337
+ #: includes/paid.php:1650 templates/settings/design.php:789
338
+ msgid "Title"
339
+ msgstr "Название"
340
 
341
+ #: main.php:694
342
+ msgid "Header"
343
+ msgstr "Заголовок"
344
 
345
+ #: main.php:700 templates/filter_post.php:520
346
+ msgid "Description"
347
+ msgstr "Описание"
348
 
349
+ #: main.php:710
350
+ msgid "{title} with [attribute] [values] and [attribute] [values]"
351
+ msgstr "{title} with [attribute] [values] and [attribute] [values]"
352
 
353
+ #: main.php:711
354
+ msgid "{title} [attribute]:[values];[attribute]:[values]"
355
+ msgstr "{title} [attribute]:[values];[attribute]:[values]"
356
 
357
+ #: main.php:712
358
+ msgid ""
359
+ "[attribute 1 values] {title} with [attribute] [values] and [attribute] "
360
+ "[values]"
361
  msgstr ""
362
+ "[attribute 1 values] {title} with [attribute] [values] and [attribute] "
363
+ "[values]"
364
 
365
+ #: main.php:713
366
+ msgid "{title} - [values] / [values]"
367
+ msgstr "{title} - [values] / [values]"
368
 
369
+ #: main.php:720
370
+ msgid "Add position relative to products holder"
371
+ msgstr "Добавление position relative к продуктам"
 
372
 
373
+ #: main.php:724
374
+ msgid "Fix for correct displaying loading block"
375
+ msgstr "Исправление для правильного отображение блока загрузки"
376
 
377
+ #: main.php:727
378
+ msgid "\"No Products\" class"
379
+ msgstr "Класс \"Нет продуктов\""
380
 
381
+ #: main.php:731
382
+ msgid "Add class and use it to style \"No Products\" box"
383
+ msgstr "Добавить класс для стилей \"Нет продуктов\""
384
 
385
+ #: main.php:734
386
+ msgid "Turn all filters off"
387
+ msgstr "Выключите все фильтры"
388
 
389
+ #: main.php:738
390
+ msgid ""
391
+ "If you want to hide filters without losing current configuration just turn "
392
+ "them off"
393
  msgstr ""
394
+ "Если Вы хотите скрыть фильтры без потери текущей конфигурации, просто "
395
+ "отключите их"
396
 
397
+ #: main.php:741
398
+ msgid "Show all values"
399
+ msgstr "Показать все значения"
400
 
401
+ #: main.php:745
402
+ msgid "Check if you want to show not used attribute values too"
403
+ msgstr "Включите если Вы хотите также показать не используемые значения"
404
 
405
+ #: main.php:748
406
+ msgid "Display products"
407
+ msgstr "Отображать продукты"
408
 
409
+ #: main.php:752
410
+ msgid ""
411
+ "Display always products when filters selected. Use this when you have "
412
+ "categories and subcategories on shop pages, but you want to display products "
413
+ "on filtering"
414
  msgstr ""
415
+ "Всегда отображать продукты когда выбраны фильтры. Используйте это когда у "
416
+ "Вас есть категории и подкатегории на странице магазина, но вам нужно "
417
+ "отображать продукты при фильтрации."
418
 
419
+ #: main.php:755
420
+ msgid "Hide out of stock variable"
421
+ msgstr "Скрыть вариации которых нет в наличии"
422
 
423
+ #: main.php:761 includes/paid.php:127 includes/paid.php:139
424
+ #: includes/paid.php:1725
425
+ msgid "Disabled"
426
+ msgstr "Отключить"
427
 
428
+ #: main.php:762
429
+ msgid "Enabled"
430
+ msgstr "Включить"
431
 
432
+ #: main.php:763
433
+ msgid "Enabled only with selected \"Out of stock\" filter"
434
+ msgstr "Включить если выбрано в фильтрах \"Нет в наличии\""
435
 
436
+ #: main.php:767
437
+ msgid "Hide variable products if variations with selected filters out of stock"
438
  msgstr ""
439
+ "Скрывать вариации продуктов, если вариаций с выбранными фильтрами нет в "
440
+ "наличии"
441
 
442
+ #: main.php:774
443
+ msgid ""
444
+ "Use it for attributes values to display more correct count with option "
445
+ "Reload amount of products"
446
  msgstr ""
447
+ "Используйте для значений атрибутов, чтобы отобразить более правильный счет с "
448
+ "опцией Перезагружать количество продуктов"
449
 
450
+ #: main.php:781
451
+ msgid ""
452
+ "Fix WPEngine query issue (Also can work with other hostings if they limit "
453
+ "query size)"
454
  msgstr ""
455
+ "Исправление проблемы с запросом WPEngine (также может работать с другими "
456
+ "хостингами, если они ограничивают размер запроса)"
457
 
458
+ #: main.php:786
459
+ msgid "GET query"
460
+ msgstr "Запрос GET"
461
 
462
+ #: main.php:790
463
+ msgid "Use GET query instead POST for filtering"
464
+ msgstr "Используйте GET-запрос вместо POST для фильтрации"
465
 
466
+ #: main.php:793
467
+ msgid "Display styles only for pages with filters"
468
+ msgstr "Стили отображения только для страниц с фильтрами"
469
 
470
+ #: main.php:797
471
+ msgid "On some sites it can cause some visual problem on page loads"
472
  msgstr ""
473
+ "На некоторых сайтах это может вызвать некоторые визуальные проблемы при "
474
+ "загрузке страниц."
475
 
476
+ #: main.php:800
477
+ msgid "Product per row fix"
478
+ msgstr "Исправление количества продуктов в строку"
479
 
480
+ #: main.php:804
481
+ msgid "Change this only if after filtering count of products per row changes."
 
 
482
  msgstr ""
483
+ "Изменяйте это, только если после фильтрации изменяется количество товаров в "
484
+ "строке."
485
 
486
+ #: main.php:807
487
+ msgid "Fix for sites with AJAX"
488
+ msgstr "Исправление для сайтов с AJAX"
 
 
489
 
490
+ #: main.php:811
491
+ msgid "Add JavaScript files to all pages."
492
+ msgstr "Добавить файлы JavaScript на все страницы."
 
 
493
 
494
+ #: main.php:814
495
+ msgid "Search page fix"
496
+ msgstr "Исправление для страницы поиска"
 
 
 
497
 
498
+ #: main.php:818
499
+ msgid "Disable redirection, when search page return only one product"
 
 
 
500
  msgstr ""
501
+ "Отключить перенаправление, когда страница поиска возвращает только один "
502
+ "продукт"
503
 
504
+ #: main.php:821
505
+ msgid "Use Tags like custom taxonomy"
506
+ msgstr "Используйте теги, такие как пользовательские таксономии"
507
 
508
+ #: main.php:825
509
+ msgid "Try to enable this if widget with tags didn't work."
510
+ msgstr "Попробуйте включить это, если виджет с тегами не работает."
 
 
511
 
512
+ #: main.php:828
513
+ msgid "Use Tax options for price"
514
+ msgstr "Использование налогов в фильтрах цен"
515
 
516
+ #: main.php:829
517
+ msgid "Only Standard tax rates will be applied for prices"
518
+ msgstr "Только стандартные налоговые ставки будут применяться к ценам"
519
 
520
+ #: main.php:833
521
+ msgid "Do not use (filter price as it is set in products)"
522
+ msgstr "Не использовать (цены в фильтрах будут как указаны в продуктах)"
523
 
524
+ #: main.php:834
525
+ msgid "Use tax options"
526
+ msgstr "Используйте настройки налогов"
527
 
528
+ #: main.php:839
529
+ msgid "Disable Font Awesome"
530
+ msgstr "Отключить Font Awesome"
531
 
532
+ #: main.php:843
533
+ msgid ""
534
+ "Don't loading css file for Font Awesome on site front end. Use it only if "
535
+ "you doesn't uses Font Awesome icons in widgets or you have Font Awesome in "
536
+ "your theme."
537
  msgstr ""
538
+ "Не загружайте файл CSS для Font Awesome на сайт. Используйте его, только "
539
+ "если Вы не используете иконки Font Awesome в виджетах или у Вас есть Font "
540
+ "Awesome в вашей теме."
541
 
542
+ #: main.php:846
543
+ msgid "Font Awesome Version"
544
+ msgstr "Версия Font Awesome"
545
 
546
+ #: main.php:850
547
+ msgid "Font Awesome 4"
548
+ msgstr "Font Awesome 4"
549
 
550
+ #: main.php:851
551
+ msgid "Font Awesome 5"
552
+ msgstr "Font Awesome 5"
 
553
 
554
+ #: main.php:854
555
+ msgid ""
556
+ "Version of Font Awesome that will be used on front end. Please select "
557
+ "version that you have in your theme"
558
  msgstr ""
559
+ "Версия Font Awesome, которая будет использоваться в интерфейсе. Пожалуйста, "
560
+ "выберите версию, которая в вашей теме"
561
 
562
+ #: main.php:872
563
+ msgid "Alternative Load (DEPRECATED)"
564
+ msgstr "Альтернативная загрузка (УСТАРЕВШАЯ)"
565
 
566
+ #: main.php:879
567
+ msgid ""
568
+ "Use it on your own risk. Some features do not work with alternative load "
569
+ "methods. All this methods are not supported. If you have problems with any "
570
+ "of them just turn this option off"
571
  msgstr ""
572
+ "Используйте это на свой страх и риск. Некоторые функции не работают с "
573
+ "альтернативными методами загрузки. Все эти методы не поддерживаются. Если у "
574
+ "Вас есть проблемы с любым из них, просто отключите эту опцию"
575
 
576
+ #: main.php:886
577
+ msgid "WordPress AJAX (deprecated)"
578
+ msgstr "WordPress AJAX (устаревшая)"
579
 
580
+ #: main.php:887
581
+ msgid "PHP (deprecated)"
582
+ msgstr "PHP (устаревшая)"
583
 
584
+ #: main.php:888
585
+ msgid "JavaScript (deprecated)"
586
+ msgstr "JavaScript (устаревшая)"
587
 
588
+ #: main.php:891
589
+ msgid "Use"
590
+ msgstr "Использование"
591
+
592
+ #: main.php:892
593
+ msgid "load method"
594
+ msgstr "метод загрузки"
595
+
596
+ #: main.php:893
597
+ msgid "Some features do not work with alternative load method"
598
+ msgstr "Некоторые функции не работают с альтернативным методом загрузки"
599
+
600
+ #: main.php:898
601
+ msgid "Page same as filter"
602
+ msgstr "Страница такая же как фильтр"
603
+
604
+ #: main.php:902 templates/admin.php:109 templates/filter_post.php:189
605
+ #: templates/filter_post.php:377 templates/filter_post.php:484
606
+ #: includes/paid.php:1609 templates/settings/design.php:57
607
+ #: templates/settings/design.php:165 templates/settings/design.php:179
608
+ #: templates/settings/design.php:184 templates/settings/design.php:421
609
+ #: templates/settings/design.php:435 templates/settings/design.php:440
610
+ #: templates/settings/design.php:653 templates/settings/design.php:658
611
+ #: templates/settings/design.php:666 templates/settings/design.php:677
612
+ #: templates/settings/design.php:682 templates/settings/design.php:722
613
+ #: templates/settings/design.php:727 templates/settings/design.php:735
614
+ #: templates/settings/design.php:743 templates/settings/design.php:748
615
+ #: templates/settings/design.php:756 templates/settings/design.php:761
616
+ #: templates/settings/design.php:793 templates/settings/design.php:807
617
+ #: templates/settings/design.php:812 templates/settings/design.php:820
618
+ #: templates/settings/design.php:834 templates/settings/design.php:839
619
+ #: templates/settings/design.php:847 templates/settings/design.php:861
620
+ #: templates/settings/design.php:866 templates/paid/filters_group.php:29
621
+ msgid "Default"
622
+ msgstr "По умолчанию"
623
 
624
+ #: main.php:903
625
+ msgid "Remove value"
626
+ msgstr "Удалить значение"
627
 
628
+ #: main.php:904
629
+ msgid "Leave only one value"
630
+ msgstr "Оставить только одно значение"
631
 
632
+ #: main.php:907
633
  msgid ""
634
+ "On Category, Tag, Attribute page filter for it will remove value or leave "
635
+ "only one value"
636
  msgstr ""
637
+ "На странице категории, тега, атрибута для фильтра будет удалено значение или "
638
+ "останется только одно значение"
639
 
640
+ #: main.php:918
641
+ msgid "Before Update:"
642
+ msgstr "Перед обновлением:"
 
 
643
 
644
+ #: main.php:922
645
+ msgid "If you want to add own actions on filter activation, eg: alert('1');"
646
  msgstr ""
647
+ "Если Вы хотите добавить собственные действия при активации фильтра, например:"
648
+ " alert ('1');"
649
 
650
+ #: main.php:925
651
+ msgid "On Update:"
652
+ msgstr "Во время обновления:"
653
 
654
+ #: main.php:929
655
+ msgid ""
656
+ "If you want to add own actions right on products update. You can manipulate "
657
+ "data here, try: data.products = 'Ha!';"
658
  msgstr ""
659
+ "Если Вы хотите добавить собственные действия прямо на обновление продуктов. "
660
+ "Вы можете манипулировать данными здесь, попробуйте: data.products = 'Ha!';"
661
 
662
+ #: main.php:932
663
+ msgid "After Update:"
664
+ msgstr "После обновления:"
665
 
666
+ #: main.php:936
667
+ msgid "If you want to add own actions after products updated, eg: alert('1');"
668
  msgstr ""
669
+ "Если Вы хотите добавить собственные действия после обновления продуктов, "
670
+ "например: alert ('1');"
671
 
672
+ #: main.php:962 templates/filters_information.php:2
673
+ msgid "SETUP WIZARD"
674
+ msgstr "МАСТЕР УСТАНОВКИ"
675
 
676
+ #: main.php:964
677
+ msgid "RUN SETUP WIZARD"
678
+ msgstr "ЗАПУСТИТЬ МАСТЕР НАСТРОЙКИ"
679
 
680
+ #: main.php:966
681
+ msgid "Run it to setup plugin options step by step"
682
+ msgstr "Запустите его, чтобы шаг за шагом настроить параметры плагина"
683
 
684
+ #: main.php:975 main.php:986
685
+ msgid "Creating products"
686
+ msgstr "Создание продуктов"
 
 
 
 
687
 
688
+ #: main.php:976 main.php:987
689
+ msgid "Gettings selectors"
690
+ msgstr "Получение селекторов"
691
 
692
+ #: main.php:977 main.php:988
693
+ msgid "Removing products"
694
+ msgstr "Удаление продуктов"
 
 
 
695
 
696
+ #: main.php:978
697
+ msgid "Error:"
698
+ msgstr "Ошибка:"
699
 
700
+ #: main.php:981
701
  msgid ""
702
+ "IMPORTANT: It will generate some products on your site. Please disable all "
703
+ "SEO plugins and plugins, that doing anything on product creating."
 
 
704
  msgstr ""
705
+ "ВАЖНО: Он будет генерировать некоторые продукты на вашем сайте. Пожалуйста, "
706
+ "отключите все плагины SEO и плагины, которые делают что-либо при создании "
707
+ "продукта."
708
 
709
+ #: main.php:982
710
  msgid ""
711
+ "Script was runned, but page closed until end. Please stop it to prevent any "
712
+ "problems on your site"
713
  msgstr ""
714
+ "Скрипт запущен, не закрывайте страницу до окончания. Пожалуйста, остановите "
715
+ "это, чтобы предотвратить любые проблемы на вашем сайте"
716
 
717
+ #: main.php:983
718
+ msgid "Auto-Selectors"
719
+ msgstr "Авто-Селекторы"
 
 
 
 
 
720
 
721
+ #: main.php:984
722
+ msgid "Stop"
723
+ msgstr "Стоп"
 
 
 
 
724
 
725
+ #: main.php:985
726
+ msgid "Steps:"
727
+ msgstr "Шаг:"
728
+
729
+ #: main.php:991
730
+ msgid "Get selectors automatically"
731
+ msgstr "Получить селекторы автоматически"
732
+
733
+ #: main.php:993
734
+ msgid "How it work:"
735
+ msgstr "Как это работает:"
736
+
737
+ #: main.php:995
738
+ msgid "Run Auto-selector"
739
+ msgstr "Запустить автоматический выбор"
740
 
741
+ #: main.php:996
742
  msgid ""
743
+ "Wait until end <strong style=\"color:red;\">do not close this page</strong>"
 
744
  msgstr ""
745
+ "Дождитесь окончания <strong style = \"color: red;\"> не закрывайте эту "
746
+ "страницу </strong>"
 
747
 
748
+ #: main.php:997
749
+ msgid "Save settings with new selectors"
750
+ msgstr "Сохранить настройки с новыми селекторами"
751
 
752
+ #: main.php:1006 main.php:1020
753
+ msgid "Purge Cache"
754
+ msgstr "Очистить кэш"
755
 
756
+ #: main.php:1022
757
+ msgid "Clear attribute/custom taxonomy cache for plugin"
758
+ msgstr "Очистить кэш атрибутов/пользовательских таксономий для плагина"
 
759
 
760
+ #: main.php:1040
761
+ msgid "Replace old widgets"
762
+ msgstr "Заменить старые виджеты"
 
 
 
 
 
 
763
 
764
+ #: main.php:1053
765
+ msgid "Widget replaced"
766
+ msgstr "Виджет заменен"
767
 
768
+ #: main.php:1054
769
+ msgid "Replacing widgets... Please wait"
770
+ msgstr "Замена виджетов ... Пожалуйста, подождите"
771
 
772
+ #: main.php:1058
773
+ msgid "Replace widgets"
774
+ msgstr "Заменить виджеты"
775
 
776
+ #: main.php:1060
777
+ msgid "No old widgets"
778
+ msgstr "Нет старых виджетов"
 
 
 
 
779
 
780
+ #: main.php:1063
781
+ msgid "Replace deprecated widgets with new single filter widgets"
782
+ msgstr "Заменить устаревшие виджеты фильтров новыми виджетами"
783
 
784
+ #: main.php:1086
785
+ msgid "User custom CSS style:"
786
+ msgstr "Пользовательский стиль CSS:"
 
 
 
 
787
 
788
+ #: main.php:1246 templates/filter_post.php:127 includes/paid.php:1512
789
+ #: templates/settings/design.php:161
790
+ msgid "Checkbox"
791
+ msgstr "Флажок"
792
 
793
+ #: main.php:1247 templates/filter_post.php:128 includes/paid.php:1513
794
+ #: templates/settings/design.php:417
795
+ msgid "Radio"
796
+ msgstr "Переключатель"
 
 
 
797
 
798
+ #: main.php:1248 templates/filter_post.php:129 includes/paid.php:1511
799
+ msgid "Select"
800
+ msgstr "Выбор"
801
 
802
+ #: main.php:1249 templates/filter_post.php:130 includes/paid.php:1514
803
+ #: templates/settings/design.php:12 templates/settings/design.php:27
804
+ msgid "Color"
805
+ msgstr "Цвет"
 
 
 
806
 
807
+ #: main.php:1250 templates/filter_post.php:131 includes/paid.php:1515
808
+ msgid "Image"
809
+ msgstr "Картинки"
810
 
811
+ #: main.php:1251 templates/filter_post.php:132
812
+ #: templates/settings/design.php:634
813
+ msgid "Slider"
814
+ msgstr "Слайдер"
 
 
 
815
 
816
+ #: main.php:1252 templates/filter_post.php:133
817
+ msgid "Tag cloud"
818
+ msgstr "Облако Тегов"
819
 
820
+ #: main.php:1521 templates/color.php:206 templates/checkbox.php:140
821
+ #: templates/disabled/color.php:197 templates/disabled/checkbox.php:130
822
  msgid "Show value(s)"
823
+ msgstr "Показать значение(я)"
824
 
825
+ #: main.php:1522
826
  msgid "Hide value(s)"
827
+ msgstr "Скрыть значение(я)"
828
 
829
+ #: main.php:1523
830
  msgid "Unselect all"
831
+ msgstr "Сбросить все"
832
 
833
+ #: main.php:1524
834
  msgid "Nothing is selected"
835
+ msgstr "Ничего не выбрано"
836
 
837
+ #: main.php:1525
838
  msgid "products"
839
  msgstr "продукты"
840
 
841
+ #: main.php:1605
842
  msgid "Activate WooCommerce plugin before"
843
+ msgstr "Активируйте плагин WooCommerce перед "
844
 
845
+ #: main.php:1611
846
  msgid "Update WooCommerce plugin"
847
+ msgstr "Обновите плагин WooCommerce"
848
 
849
+ #: templates/admin.php:2
850
+ msgid ""
851
+ "Widget will be removed in future please use <strong>AAPF Filters "
852
+ "Group</strong> instead."
853
+ msgstr ""
854
+ "Виджет будет удален в будущем, пожалуйста используйте <strong>AAPF Filters "
855
+ "Group</strong> вместо этого."
 
 
 
 
 
856
 
857
+ #: templates/admin.php:3
858
+ #, php-format
859
+ msgid "You can add filter to %s that has limitation"
860
+ msgstr "Пользовательский CSS для выбранного блока"
 
 
861
 
862
+ #: templates/admin.php:3
863
+ msgid "Filters group"
864
+ msgstr "Группа фильтров"
 
 
865
 
866
+ #: templates/admin.php:8 templates/filter_post.php:12
867
+ #: templates/filters_information.php:7 templates/filters_information.php:9
 
868
  msgid "Widget Type"
869
  msgstr "Тип Виджета"
870
 
871
+ #: templates/admin.php:11 templates/filter_post.php:16
872
+ #: includes/new_widget.php:258 includes/divi-builder.php:26
873
+ #: includes/custom_post.php:350 includes/widget.php:264
874
+ #: includes/visual-composer.php:26 templates/settings/design.php:843
 
 
 
 
 
 
 
 
 
875
  msgid "Filter"
876
  msgstr "Фильтр"
877
 
878
+ #: templates/admin.php:13 templates/filters_information.php:9
879
+ #: includes/custom_post.php:351 includes/display_filter/update_button.php:10
880
+ msgid "Update Products button"
881
+ msgstr "Кнопка Фильтрации Продуктов"
882
+
883
+ #: templates/admin.php:15 templates/filters_information.php:7
884
+ #: includes/custom_post.php:352 includes/display_filter/reset_button.php:10
885
+ msgid "Reset Products button"
886
+ msgstr "Кнопка Сброса фильтров"
887
+
888
+ #: templates/admin.php:17 includes/custom_post.php:353
889
+ #: includes/display_filter/selected_area.php:14
890
  msgid "Selected Filters area"
891
  msgstr "Область с Выбранными Фильтрами"
892
 
893
+ #: templates/admin.php:19 includes/paid.php:416
 
894
  msgid "Search Box"
895
  msgstr "Блок Поиска"
896
 
897
+ #: templates/admin.php:33 templates/filter_post.php:36
898
+ #: templates/filter_post_simple.php:18 includes/paid.php:1484
 
899
  msgid "Filter By"
900
  msgstr "Фильтровать по"
901
 
902
+ #: templates/admin.php:36 templates/admin.php:55 templates/filter_post.php:41
903
+ #: templates/filter_post.php:83 templates/filter_post_simple.php:23
904
+ #: templates/filter_post_simple.php:65 includes/custom_post.php:360
905
+ #: includes/custom_post.php:437 includes/paid.php:1477 includes/paid.php:1486
906
+ #: includes/paid.php:1492 includes/widget.php:172
 
 
907
  msgid "Attribute"
908
+ msgstr "Атрибуты"
909
 
910
+ #: templates/admin.php:38 includes/custom_post.php:388 includes/paid.php:1341
 
911
  msgid "Stock status"
912
  msgstr "Наличие"
913
 
914
+ #: templates/admin.php:40 includes/custom_post.php:390 includes/paid.php:1333
 
915
  msgid "Product sub-categories"
916
  msgstr "Подкатегории Продуктов"
917
 
918
+ #: templates/admin.php:42 templates/filter_post.php:45
919
+ #: templates/filter_post_simple.php:27 includes/custom_post.php:361
920
+ #: includes/custom_post.php:373 includes/custom_post.php:392
921
+ #: includes/custom_post.php:441 includes/paid.php:1487 includes/widget.php:176
922
  msgid "Tag"
923
  msgstr "Теги"
924
 
925
+ #: templates/admin.php:44 includes/custom_post.php:362 includes/paid.php:1337
926
+ #: includes/paid.php:1488
 
927
  msgid "Custom Taxonomy"
928
  msgstr "Пользовательская таксономия"
929
 
930
+ #: templates/admin.php:46 includes/custom_post.php:399 includes/paid.php:1345
 
931
  msgid "Date"
932
  msgstr "Дата"
933
 
934
+ #: templates/admin.php:48 includes/custom_post.php:401 includes/paid.php:1349
 
935
  msgid "Sale"
936
  msgstr "Распродажа"
937
 
938
+ #: templates/admin.php:50 templates/filter_post.php:56
939
+ #: templates/filter_post_simple.php:38 includes/custom_post.php:403
940
+ #: includes/custom_post.php:452 includes/widget.php:187
941
+ msgid "Rating"
942
+ msgstr "Рейтинг"
943
+
944
+ #: templates/admin.php:57 templates/filter_post.php:85
945
+ #: templates/filter_post_simple.php:67 includes/custom_post.php:381
946
+ msgid "Price"
947
+ msgstr "Цена"
948
+
949
+ #: templates/admin.php:66 templates/filter_post.php:92
950
+ #: templates/filter_post_simple.php:74 includes/paid.php:1500
951
+ msgid "Custom Taxonomies"
952
+ msgstr "Пользовательские таксономии"
953
+
954
+ #: templates/admin.php:77 templates/filter_post.php:115
955
+ #: templates/filter_post_simple.php:97 includes/paid.php:1509
956
+ msgid "Type"
957
+ msgstr "Тип"
958
+
959
+ #: templates/admin.php:100 templates/filter_post.php:180
960
+ #: templates/filter_post_simple.php:161
961
+ msgid "Operator"
962
+ msgstr "Оператор"
963
+
964
+ #: templates/admin.php:107 templates/filter_post.php:187
965
+ msgid "Values Order"
966
+ msgstr "Сортировка Значений"
967
+
968
+ #: templates/admin.php:138 templates/filter_post.php:257
969
+ msgid "Hide first and last ranges without products"
970
+ msgstr "Скрыть первые и последние диапазоны без продуктов"
971
+
972
+ #: templates/admin.php:142 templates/filter_post.php:287
973
+ msgid "Text before price:"
974
+ msgstr "Текст перед ценой: "
975
+
976
+ #: templates/admin.php:144 templates/filter_post.php:291
977
+ msgid "after:"
978
+ msgstr "после: "
979
+
980
+ #: templates/admin.php:148 templates/filter_post.php:298
981
+ msgid "Enable Slider Inputs"
982
+ msgstr "Включить Поля Слайдера"
983
+
984
+ #: templates/admin.php:151 templates/filter_post.php:302
985
+ msgid "Use custom values(comma separated):"
986
+ msgstr "Использовать пользовательские значения (разделяйте запятой): "
987
+
988
+ #: templates/admin.php:153 templates/filter_post.php:304
989
+ msgid "* use numeric values only, strings will not work as expected"
990
+ msgstr ""
991
+ "* используйте только числовые значения, текстовые значения не работают как "
992
+ "ожидается"
993
+
994
+ #: templates/admin.php:160 templates/filter_post.php:312
995
+ msgid "Use current product category to get child"
996
+ msgstr "Использовать текущую категорию, что бы получить дочерние"
997
+
998
+ #: templates/admin.php:164 templates/filter_post.php:317
999
+ msgid "Deep level:"
1000
+ msgstr "Уровень глубины: "
1001
+
1002
+ #: templates/admin.php:169 templates/filter_post.php:323
1003
+ msgid "Product Category:"
1004
+ msgstr "Категория Продуктов: "
1005
+
1006
+ #: templates/admin.php:177 templates/filter_post.php:331
1007
+ msgid "None"
1008
+ msgstr "Нет"
1009
+
1010
+ #: templates/filters_group_simple.php:6 templates/filters_group.php:12
1011
+ msgid "Filters In Group"
1012
+ msgstr "Фильтры в группе"
1013
+
1014
+ #: templates/filters_group_simple.php:16 templates/filters_group.php:22
1015
+ msgid "Add filter"
1016
+ msgstr "Добавить фильтр"
1017
+
1018
+ #: templates/filters_group_simple.php:17 includes/new_widget.php:281
1019
+ msgid "Create Filter"
1020
+ msgstr "Создать фильтр"
1021
+
1022
+ #: templates/filters_group_simple.php:32 templates/filters_group_simple.php:57
1023
+ #: includes/new_widget.php:126 includes/new_widget.php:279
1024
+ #: includes/custom_post.php:50 includes/custom_post.php:522
1025
+ msgid "Edit"
1026
+ msgstr "Редактировать"
1027
+
1028
+ #: templates/filters_group_simple.php:42 templates/filter_post_simple.php:171
1029
+ msgid "Need more options? Create it on "
1030
+ msgstr "Нужно больше опций? Создайте на странице "
1031
+
1032
+ #: templates/filters_group_simple.php:43 includes/new_widget.php:94
1033
+ msgid "Manage groups"
1034
+ msgstr "Управление группами"
1035
+
1036
+ #: templates/filters_group_simple.php:44 templates/filter_post_simple.php:173
1037
+ msgid " page"
1038
+ msgstr " "
1039
+
1040
+ #: templates/filters_group.php:4 includes/new_widget.php:101
1041
+ #: includes/new_widget.php:254
1042
+ msgid "Custom CSS class"
1043
+ msgstr "Пользовательский CSS класс"
1044
+
1045
+ #: templates/filters_group.php:7
1046
+ msgid "use white space for multiple classes"
1047
+ msgstr "использовать пробел для нескольких классов"
1048
+
1049
+ #: templates/filters_group.php:23 templates/filter_post_simple.php:172
1050
+ #: includes/new_widget.php:251
1051
+ msgid "Manage filters"
1052
+ msgstr "Управление фильтрами"
1053
+
1054
+ #: templates/filters_group.php:40 templates/filters_group.php:60
1055
+ msgid "Width"
1056
+ msgstr "Ширина"
1057
+
1058
+ #: templates/include_exclude_list.php:3
1059
+ msgid "Include / Exclude List"
1060
+ msgstr "список «Включения / Исключения»"
1061
+
1062
+ #: templates/color_ajax.php:3
1063
+ msgid "Color pick"
1064
+ msgstr "Выбор цвета"
1065
+
1066
+ #: templates/color_ajax.php:3
1067
+ msgid "Image pick"
1068
+ msgstr "Выбор изображения"
1069
+
1070
+ #: templates/filter_post.php:49 templates/filter_post_simple.php:31
1071
+ #: includes/custom_post.php:445 includes/paid.php:372 includes/widget.php:180
1072
+ msgid "Product Category"
1073
+ msgstr "Категория продукта"
1074
+
1075
+ #: templates/filter_post.php:190
1076
+ msgid "Alpha"
1077
+ msgstr "По алфавиту"
1078
+
1079
+ #: templates/filter_post.php:190
1080
+ msgid "Numeric"
1081
+ msgstr "Числовая"
1082
+
1083
+ #: templates/filter_post.php:196
1084
+ msgid "Order Type"
1085
+ msgstr "Тип сортировки"
1086
+
1087
+ #: templates/filter_post.php:198
1088
+ msgid "Ascending"
1089
+ msgstr "По возрастанию"
1090
+
1091
+ #: templates/filter_post.php:198
1092
+ msgid "Descending"
1093
+ msgstr "По убывания"
1094
+
1095
+ #: templates/filter_post.php:240
1096
+ msgid "Ranges: 1,100,200,1000"
1097
+ msgstr "Диапазон: 1,100,200,1000"
1098
+
1099
+ #: templates/filter_post.php:243
1100
+ msgid "1.00-100.00, 101.00-200.00, 201.00-1000.00"
1101
+ msgstr "1.00-100.00, 101.00-200.00, 201.00-1000.00"
1102
+
1103
+ #: templates/filter_post.php:244
1104
+ msgid "1.00-100.00, 100.00-200.00, 200.00-1000.00"
1105
+ msgstr "1.00-100.00, 100.00-200.00, 200.00-1000.00"
1106
+
1107
+ #: templates/filter_post.php:245
1108
+ msgid "1.00-99.99, 100.00-199.99, 200.00-999.99"
1109
+ msgstr "1.00-99.99, 100.00-199.99, 200.00-999.99"
1110
+
1111
+ #: templates/filter_post.php:262
1112
+ msgid "Show last range to the infinity"
1113
+ msgstr "Заменить последнее значение диапазона знаком бесконечности"
1114
+
1115
+ #: templates/filter_post.php:266
1116
+ msgid "Infinity text"
1117
+ msgstr "Текст вместо знака бесконечности"
1118
+
1119
+ #: templates/filter_post.php:281 templates/filter_post.php:447
1120
+ msgid "Disable multiple selection?"
1121
+ msgstr "Отключить множественный выбор"
1122
+
1123
+ #: templates/filter_post.php:356
1124
+ msgid "First Element Text"
1125
+ msgstr "Текст первого элемента"
1126
+
1127
+ #: templates/filter_post.php:357 includes/widget.php:820
1128
+ msgid "Any"
1129
+ msgstr "Всё"
1130
+
1131
+ #: templates/filter_post.php:362
1132
+ msgid "Multiple select"
1133
+ msgstr "Множественный выбор"
1134
+
1135
+ #: templates/filter_post.php:367 templates/filters_information.php:5
1136
+ msgid "Advanced Settings"
1137
+ msgstr "Продвинутые Настройки"
1138
+
1139
+ #: templates/filter_post.php:374
1140
+ msgid "From settings"
1141
+ msgstr "С настроек"
1142
+
1143
+ #: templates/filter_post.php:375
1144
+ msgid "Show/Hide button"
1145
+ msgstr "Кнопка Показать/Скрыть"
1146
+
1147
+ #: templates/filter_post.php:378
1148
+ msgid "Always visible"
1149
+ msgstr "Всегда видимый"
1150
+
1151
+ #: templates/filter_post.php:379
1152
+ msgid "Always hidden"
1153
+ msgstr "Всегда скрытый"
1154
+
1155
+ #: templates/filter_post.php:387
1156
+ msgid "Use specific number style"
1157
+ msgstr "Использовать другие стили чисел"
1158
+
1159
+ #: templates/filter_post.php:391 includes/paid.php:91
1160
+ msgid "Thousand Separator"
1161
+ msgstr "Разделитель тысяч"
1162
+
1163
+ #: templates/filter_post.php:395 includes/paid.php:97
1164
+ msgid "Decimal Separator"
1165
+ msgstr "Десятичный разделитель"
1166
+
1167
+ #: templates/filter_post.php:399 includes/paid.php:103
1168
+ msgid "Number Of Decimal"
1169
+ msgstr "Количество знаков после запятой"
1170
+
1171
+ #: templates/filter_post.php:414
1172
+ msgid "Enable collapse option"
1173
+ msgstr "Включить опцию свертывания"
1174
+
1175
+ #: templates/filter_post.php:420
1176
+ msgid "Collapse this widget on load?"
1177
+ msgstr "Свернуть этот виджет при загрузке?"
1178
+
1179
+ #: templates/filter_post.php:426 templates/filter_post.php:598
1180
+ msgid "Hide collapse arrow?"
1181
+ msgstr "Скрыть стрелку для сворачивания виджета?"
1182
+
1183
+ #: templates/filter_post.php:433
1184
+ msgid "Show hierarchical values as a tree with hidden child values on load?"
1185
+ msgstr ""
1186
+ "Показать иерархические значения в виде дерева со скрытыми дочерними "
1187
+ "значениями при загрузке?"
1188
+
1189
+ #: templates/filter_post.php:443
1190
+ msgid "Display value with color/image box?"
1191
+ msgstr "Отображать значение возле цвета/изображения?"
1192
+
1193
+ #: templates/filter_post.php:450
1194
+ msgid "Size of blocks(Height x Width)"
1195
+ msgstr "Размер блока(Высота х Ширина)"
1196
+
1197
+ #: templates/filter_post.php:454
1198
+ msgid "2em x 2em"
1199
+ msgstr "2em x 2em"
1200
+
1201
+ #: templates/filter_post.php:455
1202
+ msgid "1em x 1em"
1203
+ msgstr "1em x 1em"
1204
+
1205
+ #: templates/filter_post.php:456
1206
+ msgid "1em x 2em"
1207
+ msgstr "1em x 2em"
1208
+
1209
+ #: templates/filter_post.php:457
1210
+ msgid "2em x 3em"
1211
+ msgstr "2em x 3em"
1212
+
1213
+ #: templates/filter_post.php:458
1214
+ msgid "2em x 4em"
1215
+ msgstr "2em x 4em"
1216
+
1217
+ #: templates/filter_post.php:459
1218
+ msgid "3em x 3em"
1219
+ msgstr "3em x 3em"
1220
+
1221
+ #: templates/filter_post.php:460
1222
+ msgid "3em x 4em"
1223
+ msgstr "3em x 4em"
1224
+
1225
+ #: templates/filter_post.php:461
1226
+ msgid "3em x 5em"
1227
+ msgstr "3em x 5em"
1228
+
1229
+ #: templates/filter_post.php:462
1230
+ msgid "4em x 4em"
1231
+ msgstr "4em x 4em"
1232
+
1233
+ #: templates/filter_post.php:463
1234
+ msgid "4em x 5em"
1235
+ msgstr "4em x 5em"
1236
+
1237
+ #: templates/filter_post.php:464
1238
+ msgid "5em x 5em"
1239
+ msgstr "5em x 5em"
1240
+
1241
+ #: templates/filter_post.php:465
1242
+ msgid "Custom size"
1243
+ msgstr "Пользовательский размер"
1244
+
1245
+ #: templates/filter_post.php:473
1246
+ msgid "Custom size(Height x Width)"
1247
+ msgstr "Пользовательский размер(Высота х Ширина)"
1248
+
1249
+ #: templates/filter_post.php:480
1250
+ msgid "Checked type"
1251
+ msgstr "Стиль выбора"
1252
+
1253
+ #: templates/filter_post.php:485
1254
+ msgid "Rotate"
1255
+ msgstr "Поворот"
1256
+
1257
+ #: templates/filter_post.php:486
1258
+ msgid "Scale"
1259
+ msgstr "Масштаб"
1260
+
1261
+ #: templates/filter_post.php:487
1262
+ msgid "Blue Shadow"
1263
+ msgstr "Blue Shadow"
1264
+
1265
+ #: templates/filter_post.php:488
1266
+ msgid "Custom CSS"
1267
+ msgstr "Пользовательский CSS"
1268
+
1269
+ #: templates/filter_post.php:496
1270
+ msgid "Custom CSS for Checked block"
1271
+ msgstr "Пользовательский CSS для блока выбора"
1272
+
1273
+ #: templates/filter_post.php:503
1274
+ msgid "Icons"
1275
+ msgstr "Иконки"
1276
+
1277
+ #: templates/filter_post.php:505
1278
+ msgid "Title Icons"
1279
+ msgstr "Иконки названия"
1280
+
1281
+ #: templates/filter_post.php:507 templates/filter_post.php:513
1282
+ #: includes/paid.php:1539 templates/paid/filters_search_box.php:43
1283
+ msgid "Before"
1284
+ msgstr "Перед"
1285
+
1286
+ #: templates/filter_post.php:508 templates/filter_post.php:514
1287
+ #: includes/paid.php:1540 templates/paid/filters_search_box.php:44
1288
+ msgid "After"
1289
+ msgstr "После"
1290
+
1291
+ #: templates/filter_post.php:511
1292
+ msgid "Value Icons"
1293
+ msgstr "Иконки значений"
1294
+
1295
+ #: templates/filter_post.php:524
1296
+ msgid "CSS Class"
1297
+ msgstr "CSS класс"
1298
+
1299
+ #: templates/filter_post.php:526
1300
+ msgid "(use white space for multiple classes)"
1301
+ msgstr "(используйте пробел для разделения классов)"
1302
+
1303
+ #: templates/filter_post.php:531
1304
+ msgid "Tags Cloud Height:"
1305
+ msgstr "Высота Облака Тегов: "
1306
+
1307
+ #: templates/filter_post.php:535
1308
+ msgid "Min Font Size:"
1309
+ msgstr "Минимальный Размер Шрифта: "
1310
+
1311
+ #: templates/filter_post.php:539
1312
+ msgid "Max Font Size:"
1313
+ msgstr "Максимальный Размер Шрифта: "
1314
+
1315
+ #: templates/filter_post.php:543
1316
+ msgid "Max Tags Count:"
1317
+ msgstr "Максимальное Количество Тегов: "
1318
+
1319
+ #: templates/filter_post.php:551
1320
+ msgid "Use min price"
1321
+ msgstr "Использовать пользовательскую минимальную цену"
1322
+
1323
+ #: templates/filter_post.php:560
1324
+ msgid "Use max price"
1325
+ msgstr "Использовать пользовательскую максимальную цену"
1326
+
1327
+ #: templates/filter_post.php:569
1328
+ msgid "Filter Box Height:"
1329
+ msgstr "Высота Блока с Фильтром"
1330
+
1331
+ #: templates/filter_post.php:573
1332
+ msgid "Scroll Theme:"
1333
+ msgstr "Тема для Полосы Прокрутки: "
1334
+
1335
+ #: templates/filter_post.php:592
1336
+ msgid "Show if nothing is selected"
1337
+ msgstr "Показать если ничего не выбрано"
1338
+
1339
+ #: templates/filter_post.php:604 templates/filters_information.php:5
1340
+ msgid "Hide this widget on load?"
1341
+ msgstr "Скрыть этот виджет при загрузке?"
1342
+
1343
+ #: templates/filter_post.php:643
1344
+ msgid "Widget Output Limitations"
1345
+ msgstr "Ограничение Отображения Виджета"
1346
+
1347
+ #: templates/filter_post.php:645
1348
+ msgid "Product Category Value Limitation"
1349
+ msgstr "Ограничение Отображения по Категориям"
1350
+
1351
+ #: templates/filter_post.php:673
1352
+ msgid "Hide button"
1353
+ msgstr "Скрыть кнопку"
1354
+
1355
+ #: templates/filter_post.php:675
1356
+ msgid "Do not hide"
1357
+ msgstr "Не прятать"
1358
+
1359
+ #: templates/filter_post.php:676
1360
+ msgid "Hide only when no filters on page"
1361
+ msgstr "Скрыть только когда нет фильтров на странице"
1362
+
1363
+ #: templates/filter_post.php:677
1364
+ msgid "Hide when no filters on page or page not filtered"
1365
+ msgstr "Скрыть, когда нет фильтров на странице или страница не отфильтрована"
1366
+
1367
+ #: templates/groups_information.php:2 templates/filters_information.php:3
1368
+ msgid "Get more information on BeRocket Documentation"
1369
+ msgstr "Получить больше информации о документации BeRocket"
1370
+
1371
+ #: templates/groups_information.php:3
1372
+ msgid ""
1373
+ "Do not use multiple filters with same attribute on one page! We will not "
1374
+ "guarantee normal filters works in that case."
1375
+ msgstr ""
1376
+ "Не используйте несколько фильтров с одинаковым атрибутом на одной странице. "
1377
+ "Мы не гарантируем нормальную работу фильтров в этом случае."
1378
+
1379
+ #: templates/groups_information.php:4
1380
+ msgid ""
1381
+ "P.S. No, using sub-categories for different filters is not normal. Please "
1382
+ "use attributes instead"
1383
+ msgstr ""
1384
+ "P.S. Нет, использовать подкатегории для разных фильтров не нормально. "
1385
+ "Пожалуйста используйте атрибуты вместо этого"
1386
+
1387
+ #: templates/groups_information.php:5 includes/custom_post.php:134
1388
+ #: includes/custom_post.php:563
1389
+ msgid "Conditions"
1390
+ msgstr "Условия"
1391
+
1392
+ #: templates/groups_information.php:6
1393
+ msgid "Group without any condition will be displayed on all pages"
1394
+ msgstr "Группы без условий будут отображаться на всех страницах"
1395
+
1396
+ #: templates/groups_information.php:7
1397
+ msgid "Connection between condition can be AND and OR"
1398
+ msgstr "Соединение между условиями может быть И и ИЛИ"
1399
+
1400
+ #: templates/groups_information.php:8
1401
+ msgid "<strong>AND</strong> uses between condition in one section"
1402
+ msgstr "<strong>И</strong> используется между условиями в одной секции"
1403
+
1404
+ #: templates/groups_information.php:9
1405
+ msgid "<strong>OR</strong> uses between different sections with conditions"
1406
+ msgstr "<strong>ИЛИ</strong> используется между разными секциями с условиями"
1407
+
1408
+ #: templates/groups_information.php:10
1409
+ msgid "To display one group on different pages use OR condition"
1410
+ msgstr ""
1411
+ "Для отображения одной группы на разных страницах используйте условие ИЛИ"
1412
+
1413
+ #: templates/filters_information.php:4
1414
+ msgid "How to hide filter on page load?"
1415
+ msgstr "Как скрыть фильтры при загрузке страницы?"
1416
+
1417
+ #: templates/filters_information.php:5
1418
+ #, php-format
1419
+ msgid "Enable in <strong>%s</strong> option <strong>%s</strong>"
1420
+ msgstr "Включите в <strong>%s</strong> опцию <strong>%s</strong>"
1421
+
1422
+ #: templates/filters_information.php:6
1423
+ msgid "How to add reset filters button?"
1424
+ msgstr "Как добавить кнопку сброса фильтров?"
1425
+
1426
+ #: templates/filters_information.php:7 templates/filters_information.php:9
1427
+ #, php-format
1428
+ msgid "Select <strong>%s</strong> in option <strong>%s</strong>"
1429
+ msgstr "Выберете <strong>%s</strong> в опции <strong>%s</strong>"
1430
+
1431
+ #: templates/filters_information.php:8
1432
+ msgid ""
1433
+ "How to add update products button? (to filter products only after click on "
1434
+ "button)"
1435
+ msgstr ""
1436
+ "Как добавить кнопку обновления продуктов? (для фильтрации продуктов только "
1437
+ "после нажатия на кнопку)"
1438
+
1439
+ #: templates/filters_information.php:17
1440
+ msgid ""
1441
+ "Title will be displayed as widget title.<br>You can write text, that want to "
1442
+ "display above filter"
1443
+ msgstr ""
1444
+ "Заголовок будет отображаться как заголовок виджета. <br> Вы можете написать "
1445
+ "текст, который хотите отобразить над фильтром"
1446
+
1447
+ #: templates/filters_information.php:24
1448
+ msgid ""
1449
+ "Where filters must be displayed.<br>Filter will be displayed on all pages if "
1450
+ "do not have conditions.<br><strong>Please first try to add filter without "
1451
+ "any condition to check that it works</strong>"
1452
+ msgstr ""
1453
+ "Где должны отображаться фильтры. <br> Фильтр будет отображаться на всех "
1454
+ "страницах, если нет условий. <br> <strong> Сначала попробуйте добавить "
1455
+ "фильтр без каких-либо условий, чтобы убедиться, что он работает </strong>."
1456
+
1457
+ #: templates/filters_information.php:31
1458
+ msgid ""
1459
+ "All that can be displayed you can select there<h3>Variants:</h3><ul><li>"
1460
+ "<strong>Filter</strong>(main type) - filters by attributes, categories, "
1461
+ "price etc.</li><li><strong>Update Products button</strong> - button to apply "
1462
+ "filters to products. Filter will applies only after click on update "
1463
+ "button</li><li><strong>Reset Products button</strong> - button to disable "
1464
+ "all selected filters</li><li><strong>Selected Filters area</strong> - "
1465
+ "display selected filters and provide possibility to disable it in one "
1466
+ "place</li></ul>"
1467
+ msgstr ""
1468
+ "Тут можно выбрать все что нужно отобразить<h3>Варианты:</h3><ul><li><strong>"
1469
+ "Фильтры</strong>(main type) - фильтры по атрибутам, категориям, цене и т. д."
1470
+ "</li><li><strong>Кнопка Обновить Продукты</strong> - кнопка, чтобы применить "
1471
+ "фильтры к продуктам. Фильтр будет применяться только после нажатия на кнопку "
1472
+ "обновления</li><li><strong>Кнопка «Сбросить товары»</strong> - кнопка для "
1473
+ "отключения всех выбранных фильтров</li><li><strong>Область выбранных "
1474
+ "фильтров</strong> - отображать выбранные фильтры и предоставлять возможность "
1475
+ "отключить их в одном месте</li></ul>"
1476
+
1477
+ #: templates/filters_information.php:35
1478
+ msgid ""
1479
+ "Select attribute that you need to filter by.<br>You can use for filtering "
1480
+ "price, attributes, categories, tags etc"
1481
+ msgstr ""
1482
+ "Выберите атрибут, по которому нужно выполнить фильтрацию. <br> Вы можете "
1483
+ "использовать для фильтрации цену, атрибуты, категории, теги и т. д."
1484
+
1485
+ #: templates/filters_information.php:42
1486
+ msgid "Filter selection type. This option change how filter will be look like."
1487
+ msgstr "Тип выбора фильтра. Эта опция изменяет внешний вид фильтра."
1488
+
1489
+ #: templates/filters_information.php:49 templates/filters_information.php:72
1490
+ msgid ""
1491
+ "Shortcode to use this filters in any place of your site will be displayed "
1492
+ "there<br><strong>Please use widgets if you do not know how shortcode "
1493
+ "works</strong>"
1494
+ msgstr ""
1495
+ "Шорткод для использования фильтров в любом месте вашего сайта.<br> <strong> "
1496
+ "Используйте виджеты, если Вы не знаете, как работает шорткод </strong>"
1497
+
1498
+ #: templates/filters_information.php:53
1499
+ msgid "Save filter after setup to use it in widgets"
1500
+ msgstr "Сохранить фильтр после настройки, чтобы использовать его в виджетах"
1501
+
1502
+ #: templates/filters_information.php:59 templates/filters_information.php:68
1503
+ msgid ""
1504
+ "You can use widget to display filters on your shop page.<br><strong>Use "
1505
+ "sidebar, that displayed on shop page</strong>"
1506
+ msgstr ""
1507
+ "Вы можете использовать виджет для отображения фильтров на странице своего "
1508
+ "магазина. <br> <strong> Использовать боковую панель, которая отображается на "
1509
+ "странице магазина </strong>"
1510
+
1511
+ #: includes/functions.php:712
1512
+ msgid "Widget Title"
1513
+ msgstr "Название Виджета"
1514
+
1515
+ #: includes/functions.php:724
1516
+ msgid "Label(checkbox/radio)"
1517
+ msgstr ""
1518
+ "Надпись (checkbox/radio)\n"
1519
+
1520
+ #: includes/functions.php:736
1521
+ msgid "Select-box"
1522
+ msgstr "Выпадающий Список"
1523
+
1524
+ #: includes/functions.php:748
1525
+ msgid "Slider Inputs"
1526
+ msgstr "Поля для ввода в слайдере"
1527
+
1528
+ #: includes/functions.php:760
1529
+ msgid "Description Block"
1530
+ msgstr "Блок с Описанием"
1531
+
1532
+ #: includes/functions.php:772
1533
+ msgid "Description Border"
1534
+ msgstr "Граница Блока с Описанием"
1535
+
1536
+ #: includes/functions.php:784
1537
+ msgid "Description Title Text"
1538
+ msgstr "Заглавие Блока с Описанием"
1539
+
1540
+ #: includes/functions.php:796
1541
+ msgid "Description Text"
1542
+ msgstr "Текст Блока с Описанием"
1543
+
1544
+ #: includes/functions.php:808
1545
+ msgid "Selected filters area text"
1546
+ msgstr "Текст Области Выбранных Фильтров"
1547
+
1548
+ #: includes/functions.php:820
1549
+ msgid "Selected filters mouse over text"
1550
+ msgstr "Наведение курсора мышки на Область Выбранных Фильтров"
1551
+
1552
+ #: includes/functions.php:832
1553
+ msgid "Selected filters link background"
1554
+ msgstr "Фон ссылки в Область Выбранных Фильтров"
1555
+
1556
+ #: includes/functions.php:844
1557
+ msgid "Selected filters link border"
1558
+ msgstr "Рамка для ссылки в Область Выбранных Фильтров"
1559
+
1560
+ #: includes/new_widget.php:5
1561
+ msgid "AAPF Filters Group"
1562
+ msgstr "AAPF Группа Фильтров"
1563
+
1564
+ #: includes/new_widget.php:6
1565
+ msgid "AJAX Product Filters. Group of filters"
1566
+ msgstr "AJAX Фильтры Продуктов. Группа фильтров"
1567
+
1568
+ #: includes/new_widget.php:105 includes/divi-builder.php:79
1569
+ #: includes/paid.php:275
1570
+ msgid "Group"
1571
+ msgstr "Группа"
1572
+
1573
+ #: includes/new_widget.php:111 includes/divi-builder.php:70
1574
+ msgid "--Please select group--"
1575
+ msgstr "--Пожалуйста, выберите группу--"
1576
+
1577
+ #: includes/new_widget.php:128
1578
+ msgid "Create Group"
1579
+ msgstr "Создать группу"
1580
+
1581
+ #: includes/new_widget.php:135
1582
+ msgid "AAPF Filter Single"
1583
+ msgstr "AAPF Один Фильтр"
1584
+
1585
+ #: includes/new_widget.php:136
1586
+ msgid "AJAX Product Filters. Single Filter"
1587
+ msgstr "AJAX Фильтры Продуктов. Одиночный фильтр"
1588
+
1589
+ #: includes/new_widget.php:264 includes/divi-builder.php:17
1590
+ #: includes/visual-composer.php:10 includes/visual-composer.php:36
1591
+ msgid "--Please select filter--"
1592
+ msgstr "--Пожалуйста, выберите фильтр--"
1593
+
1594
+ #: includes/divi-builder.php:6 includes/visual-composer.php:19
1595
+ msgid "Single Filter"
1596
+ msgstr "Одиночный фильтр"
1597
+
1598
+ #: includes/divi-builder.php:59 includes/visual-composer.php:45
1599
+ msgid "Group Filter"
1600
+ msgstr "Группа фильтров"
1601
+
1602
+ #: includes/custom_post.php:43 includes/custom_post.php:45
1603
+ #: includes/custom_post.php:46
1604
+ msgid "Product Filter"
1605
+ msgstr "Фильтры продуктов"
1606
+
1607
+ #: includes/custom_post.php:47
1608
+ msgctxt "Admin menu name"
1609
+ msgid "Filters"
1610
+ msgstr "Фильтры"
1611
+
1612
+ #: includes/custom_post.php:48
1613
+ msgid "Add Filter"
1614
+ msgstr "Добавить фильтр"
1615
+
1616
+ #: includes/custom_post.php:49
1617
+ msgid "Add New Filter"
1618
+ msgstr "Добавить новый фильтр"
1619
+
1620
+ #: includes/custom_post.php:51
1621
+ msgid "Edit Filter"
1622
+ msgstr "Редактировать фильтр"
1623
+
1624
+ #: includes/custom_post.php:52
1625
+ msgid "New Filter"
1626
+ msgstr "Новый фильтр"
1627
+
1628
+ #: includes/custom_post.php:53
1629
+ msgid "View Filters"
1630
+ msgstr "Просмотр фильтров"
1631
+
1632
+ #: includes/custom_post.php:54
1633
+ msgid "View Filter"
1634
+ msgstr "Просмотр фильтра"
1635
+
1636
+ #: includes/custom_post.php:55
1637
+ msgid "Search Product Filters"
1638
+ msgstr "Поиск Фильтров Продуктов"
1639
+
1640
+ #: includes/custom_post.php:56
1641
+ msgid "No Product Filters found"
1642
+ msgstr "Нет продуктов после фильтрации"
1643
+
1644
+ #: includes/custom_post.php:57
1645
+ msgid "No Product Filters found in trash"
1646
+ msgstr "Фильтры товаров не найдены в корзине"
1647
+
1648
+ #: includes/custom_post.php:59
1649
+ msgid "This is where you can add Product Filters."
1650
+ msgstr "Здесь Вы можете добавить фильтры продуктов."
1651
+
1652
+ #: includes/custom_post.php:135
1653
+ msgid "Product Filter Settings"
1654
+ msgstr "Настройки Фильтра Продуктов"
1655
+
1656
+ #: includes/custom_post.php:136 includes/custom_post.php:340
1657
+ #: includes/custom_post.php:565 includes/custom_post.php:646
1658
+ msgid "Shortcode"
1659
+ msgstr "Shortcode"
1660
+
1661
+ #: includes/custom_post.php:137
1662
+ msgid "FAQ"
1663
+ msgstr "FAQ"
1664
+
1665
+ #: includes/custom_post.php:143
1666
+ msgid "Setup Widget"
1667
+ msgstr "Настройка Виджета"
1668
+
1669
+ #: includes/custom_post.php:227
1670
+ msgid ""
1671
+ "Widget to display single filter in your sidebar. Add it to needed sidebar"
1672
+ msgstr ""
1673
+ "Виджет для отображения одного фильтра на боковой панели. Добавьте его на "
1674
+ "нужную боковую панель"
1675
+
1676
+ #: includes/custom_post.php:261
1677
+ msgid "Select filter that must be displayed in sidebar"
1678
+ msgstr "Выберите фильтр, который должен отображаться на боковой панели"
1679
+
1680
+ #: includes/custom_post.php:266
1681
+ msgid "Save widget and check it on shop page"
1682
+ msgstr "Сохранить виджет и проверить его на странице магазина"
1683
+
1684
+ #: includes/custom_post.php:295
1685
+ msgid "Hide this filter on:"
1686
+ msgstr "Скрыть этот фильтр на:"
1687
+
1688
+ #: includes/custom_post.php:303 includes/custom_post.php:615
1689
+ msgid "Tablet"
1690
+ msgstr "Планшетах"
1691
+
1692
+ #: includes/custom_post.php:318 includes/custom_post.php:638
1693
+ msgid "You need save it to get shortcode"
1694
+ msgstr "Что бы получить шорткод, Вам нужно его сохранить"
1695
+
1696
+ #: includes/custom_post.php:332
1697
+ msgid "Now you can use saved filters in widgets"
1698
+ msgstr "Теперь Вы можете использовать сохраненные фильтры в виджетах"
1699
+
1700
+ #: includes/custom_post.php:333
1701
+ msgid "Add widget <strong>AAPF Filter Single</strong> on "
1702
+ msgstr "Добавьте виджет <strong>AAPF Filter Single</strong> на "
1703
 
1704
+ #: includes/custom_post.php:334
1705
+ msgid "WIDGET PAGE"
1706
+ msgstr "СТРАНИЦЕ ВИДЖЕТОВ"
 
 
1707
 
1708
+ #: includes/custom_post.php:339
1709
+ msgid "Data"
1710
+ msgstr "Данные"
 
 
1711
 
1712
+ #: includes/custom_post.php:354 includes/paid.php:1368
1713
+ msgid "Search Box (DEPRECATED)"
1714
+ msgstr "Поле поиска (УСТАРЕЛО)"
 
1715
 
1716
+ #: includes/custom_post.php:356
1717
+ msgid "Widget type: "
1718
+ msgstr "Тип виджета:"
 
1719
 
1720
+ #: includes/custom_post.php:369 includes/custom_post.php:386
1721
+ msgid "Attribute: "
1722
+ msgstr "Атрибут:"
 
 
 
 
 
 
 
 
 
 
 
 
1723
 
1724
+ #: includes/custom_post.php:371 includes/custom_post.php:396
1725
+ msgid "Custom Taxonomy: "
1726
+ msgstr "Пользовательские Таксономии:"
 
1727
 
1728
+ #: includes/custom_post.php:515 includes/custom_post.php:517
1729
+ #: includes/custom_post.php:518
1730
+ msgid "Product Filter Group"
1731
+ msgstr "Группы фильтров продуктов"
1732
 
1733
+ #: includes/custom_post.php:519
1734
+ msgctxt "Admin menu name"
1735
+ msgid "Groups"
1736
+ msgstr "Группы"
1737
 
1738
+ #: includes/custom_post.php:520
1739
+ msgid "Add Filter Group"
1740
+ msgstr "Добавить группу фильтров"
 
1741
 
1742
+ #: includes/custom_post.php:521
1743
+ msgid "Add New Filter Group"
1744
+ msgstr "Создать новую группу фильтров"
 
 
 
1745
 
1746
+ #: includes/custom_post.php:523
1747
+ msgid "Edit Filter Group"
1748
+ msgstr "Редактировать группу фильтров"
 
1749
 
1750
+ #: includes/custom_post.php:524
1751
+ msgid "New Filter Group"
1752
+ msgstr "Новая группа фильтров"
 
1753
 
1754
+ #: includes/custom_post.php:525
1755
+ msgid "View Filter Groups"
1756
+ msgstr "Просмотр групп фильтров"
 
1757
 
1758
+ #: includes/custom_post.php:526
1759
+ msgid "View Filter Group"
1760
+ msgstr "Просмотр группы фильтров"
 
1761
 
1762
+ #: includes/custom_post.php:527
1763
+ msgid "Search Product Filter Groups"
1764
+ msgstr "Поиск групп фильтров товаров"
 
1765
 
1766
+ #: includes/custom_post.php:528
1767
+ msgid "No Product Filter Groups found"
1768
+ msgstr "Группы фильтров товаров не найдены"
 
1769
 
1770
+ #: includes/custom_post.php:529
1771
+ msgid "No Product Filter Groups found in trash"
1772
+ msgstr "Группы товаров не найдены в корзине"
 
1773
 
1774
+ #: includes/custom_post.php:531
1775
+ msgid "This is where you can add Product Filter Groups."
1776
+ msgstr "Здесь Вы можете добавить группы фильтров продуктов."
 
1777
 
1778
+ #: includes/custom_post.php:564
1779
+ msgid "Group Settings"
1780
+ msgstr "Настройки Групп"
 
1781
 
1782
+ #: includes/custom_post.php:566
1783
+ msgid "Information"
1784
+ msgstr "Информация"
 
 
1785
 
1786
+ #: includes/custom_post.php:607
1787
+ msgid "Hide this group on:"
1788
+ msgstr "Скрыть эту группу на:"
 
1789
 
1790
+ #: includes/paid.php:73 includes/paid.php:497
1791
+ msgid "Hide \"Show/Hide value(s)\" button"
1792
+ msgstr "Скрыть кнопку «Показать/Скрыть значения»"
1793
 
1794
+ #: includes/paid.php:80
1795
+ msgid "Data cache"
1796
+ msgstr "Кэш данных"
 
1797
 
1798
+ #: includes/paid.php:85
1799
+ msgid "WordPress Cache"
1800
+ msgstr "WordPress Кэш"
 
1801
 
1802
+ #: includes/paid.php:86
1803
+ msgid "Persistent Cache Plugins"
1804
+ msgstr "Плагины постоянного кэширования"
 
1805
 
1806
+ #: includes/paid.php:115
1807
+ msgid "Use links in checkbox and radio filters"
1808
+ msgstr "Использовать ссылки для флажков и переключателей фильтров"
 
 
 
1809
 
1810
+ #: includes/paid.php:122
1811
+ msgid "Use noindex for the links"
1812
+ msgstr "Используйте noindex для ссылок"
 
 
 
1813
 
1814
+ #: includes/paid.php:128 includes/paid.php:140
1815
+ msgid "Second+ levels"
1816
+ msgstr "Вторые+ уровни"
 
1817
 
1818
+ #: includes/paid.php:129 includes/paid.php:141
1819
+ msgid "All levels"
1820
+ msgstr "Все уровни"
 
1821
 
1822
+ #: includes/paid.php:134
1823
+ msgid "Use nofollow for the links"
1824
+ msgstr "Используйте nofollow для ссылок"
 
1825
 
1826
+ #: includes/paid.php:152
1827
+ msgid "Nice URL"
1828
+ msgstr "Хорошие URL"
 
1829
 
1830
+ #: includes/paid.php:157
1831
+ msgid ""
1832
+ "Works only with SEO friendly urls. WordPress permalinks must be set to Post "
1833
+ "name(Custom structure: /%postname%/ )"
1834
+ msgstr ""
1835
+ "Работает только с SEO дружественными URL. Постоянные ссылки WordPress должны "
1836
+ "быть установлены на «Имя публикации» (пользовательская структура: /% "
1837
+ "postname% /)"
1838
 
1839
+ #: includes/paid.php:160
1840
+ msgid "Canonical without Filters"
1841
+ msgstr "Не отображать фильтры в Canonical"
 
1842
 
1843
+ #: includes/paid.php:164
1844
+ msgid "Use canonical tag without filters on WooCommerce pages"
1845
+ msgstr "Используйте канонический тег без фильтров на страницах WooCommerce"
 
1846
 
1847
+ #: includes/paid.php:168 includes/paid.php:1530
1848
+ #: templates/paid/filters_search_box.php:34
1849
+ msgid "Elements position"
1850
+ msgstr "Позиция элементов"
1851
 
1852
+ #: includes/paid.php:170
1853
+ msgid "Show products count before filtering"
1854
+ msgstr "Показывать количество продуктов до фильтрации"
 
1855
 
1856
+ #: includes/paid.php:176
1857
+ msgid "Show products count before filtering, when using update button"
1858
+ msgstr ""
1859
+ "Показывать количество продуктов до фильтрации при использовании кнопки "
1860
+ "обновления"
1861
 
1862
+ #: includes/paid.php:182
1863
+ msgid "Text that means products"
1864
+ msgstr "Текст вместо \"products\""
 
1865
 
1866
+ #: includes/paid.php:188
1867
+ msgid "Text for show button"
1868
+ msgstr "Текст для кнопки показать"
 
1869
 
1870
+ #: includes/paid.php:201
1871
+ msgid "Display variation image"
1872
+ msgstr "Отображать картинку вариации"
 
1873
 
1874
+ #: includes/paid.php:205
1875
+ msgid "Display variation image instead of product's when filtering"
1876
+ msgstr ""
1877
+ "Показывать после фильтрации изображение вариации вместо изображения продукта."
1878
 
1879
+ #: includes/paid.php:208
1880
+ msgid "Display variation price"
1881
+ msgstr "Показывать цену вариации"
 
1882
 
1883
+ #: includes/paid.php:212
1884
+ msgid "Display variation price instead of product's when filtering"
1885
+ msgstr "Показывать после фильтрации цену вариации вместо цены продукта."
 
 
1886
 
1887
+ #: includes/paid.php:221
1888
+ msgid "Slider has a lot of values"
1889
+ msgstr "Ползунок имеет много значений"
 
1890
 
1891
+ #: includes/paid.php:225
1892
+ msgid ""
1893
+ "Enable it if slider has more than 250 values. Hierarchical taxonomy can work "
1894
+ "incorrect with sliders"
1895
+ msgstr ""
1896
+ "Включите настройку, если ползунок имеет более 250 значений. Иерархическая "
1897
+ "таксономия может работать некорректно с ползунками"
1898
 
1899
+ #: includes/paid.php:234
1900
+ msgid "Use filtered variation link and session"
1901
+ msgstr "Использовать вариации после фильтрации для ссылок и сессий"
 
 
1902
 
1903
+ #: includes/paid.php:240
1904
+ msgid "Use filtered variation only after search"
1905
+ msgstr "Использовать вариации после фильтраци только после поиска"
 
1906
 
1907
+ #: includes/paid.php:247
1908
+ msgid "Use tax options (leave price ranges as is)"
1909
+ msgstr "Использовать налоги (оставить диапазон цен как есть)"
 
1910
 
1911
+ #: includes/paid.php:254
1912
+ msgid "Elements above products"
1913
+ msgstr "Элементы над продуктами"
 
 
 
1914
 
1915
+ #: includes/paid.php:279
1916
+ msgid "Add group"
1917
+ msgstr "Добавить группу"
 
1918
 
1919
+ #: includes/paid.php:427 includes/paid.php:1359
1920
+ msgid "Ranges"
1921
+ msgstr "Диапазон"
 
1922
 
1923
+ #: includes/paid.php:1439
 
1924
  msgid "Attributes"
1925
  msgstr "Атрибуты"
1926
 
1927
+ #: includes/paid.php:1442 templates/paid/filters_search_box.php:9
 
1928
  msgid "URL to search"
1929
  msgstr "Ссылка для поиска"
1930
 
1931
+ #: includes/paid.php:1444 templates/paid/filters_search_box.php:11
 
1932
  msgid "Shop page"
1933
  msgstr "Страница магазина"
1934
 
1935
+ #: includes/paid.php:1445 templates/paid/filters_search_box.php:12
 
1936
  msgid "Category page"
1937
  msgstr "Страница категории"
1938
 
1939
+ #: includes/paid.php:1446 templates/paid/filters_search_box.php:13
 
1940
  msgid "URL"
1941
  msgstr "Ссылка"
1942
 
1943
+ #: includes/paid.php:1450 templates/paid/filters_search_box.php:17
 
1944
  msgid "Category"
1945
  msgstr "Категория"
1946
 
1947
+ #: includes/paid.php:1460 templates/paid/filters_search_box.php:27
 
1948
  msgid "URL for search"
1949
  msgstr "Ссылка для поиска"
1950
 
1951
+ #: includes/paid.php:1464
 
1952
  msgid "Attributes count"
1953
  msgstr "Количество атрибутов"
1954
 
1955
+ #: includes/paid.php:1527 templates/paid/filters_search_box.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1956
  msgid "Styles"
1957
  msgstr "Стили"
1958
 
1959
+ #: includes/paid.php:1532 templates/paid/filters_search_box.php:36
 
 
 
 
 
 
1960
  msgid "Vertical"
1961
  msgstr "Вертикально"
1962
 
1963
+ #: includes/paid.php:1533 templates/paid/filters_search_box.php:37
 
1964
  msgid "Horizontal"
1965
  msgstr "Горизонтально"
1966
 
1967
+ #: includes/paid.php:1537 templates/paid/filters_search_box.php:41
 
1968
  msgid "Search button position"
1969
  msgstr "Позиция кнопки поиска"
1970
 
1971
+ #: includes/paid.php:1541 templates/paid/filters_search_box.php:45
 
1972
  msgid "Before and after"
1973
  msgstr "До и после"
1974
 
1975
+ #: includes/paid.php:1545 templates/paid/filters_search_box.php:49
 
1976
  msgid "Search button text"
1977
  msgstr "Текст на кнопке поиска"
1978
 
1979
+ #: includes/paid.php:1549 templates/settings/design.php:705
1980
+ #: templates/paid/filters_search_box.php:53
1981
  msgid "Background color"
1982
  msgstr "Цвет фона"
1983
 
1984
+ #: includes/paid.php:1554 templates/paid/filters_search_box.php:58
 
1985
  msgid "Background transparency"
1986
  msgstr "Прозрачность фона"
1987
 
1988
+ #: includes/paid.php:1558 templates/paid/filters_search_box.php:62
 
1989
  msgid "100%"
1990
  msgstr "100%"
1991
 
1992
+ #: includes/paid.php:1559 templates/paid/filters_search_box.php:63
 
1993
  msgid "90%"
1994
  msgstr "90%"
1995
 
1996
+ #: includes/paid.php:1560 templates/paid/filters_search_box.php:64
 
1997
  msgid "80%"
1998
  msgstr "80%"
1999
 
2000
+ #: includes/paid.php:1561 templates/paid/filters_search_box.php:65
 
2001
  msgid "70%"
2002
  msgstr "70%"
2003
 
2004
+ #: includes/paid.php:1562 templates/paid/filters_search_box.php:66
 
2005
  msgid "60%"
2006
  msgstr "60%"
2007
 
2008
+ #: includes/paid.php:1563 templates/paid/filters_search_box.php:67
2009
+ msgid "50%"
2010
+ msgstr "50%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2011
 
2012
+ #: includes/paid.php:1564 templates/paid/filters_search_box.php:68
2013
+ msgid "40%"
2014
+ msgstr "40%"
2015
 
2016
+ #: includes/paid.php:1565 templates/paid/filters_search_box.php:69
2017
+ msgid "30%"
2018
+ msgstr "30%"
 
2019
 
2020
+ #: includes/paid.php:1566 templates/paid/filters_search_box.php:70
2021
+ msgid "20%"
2022
+ msgstr "20%"
2023
 
2024
+ #: includes/paid.php:1567 templates/paid/filters_search_box.php:71
2025
+ msgid "10%"
2026
+ msgstr "10%"
2027
 
2028
+ #: includes/paid.php:1568 templates/paid/filters_search_box.php:72
2029
+ msgid "0%"
2030
+ msgstr "0%"
 
 
 
 
2031
 
2032
+ #: includes/paid.php:1579 templates/paid/filters_search_box.php:83
2033
+ msgid "Button background color"
2034
+ msgstr "Цвет фона кнопки"
2035
 
2036
+ #: includes/paid.php:1584 templates/paid/filters_search_box.php:88
2037
+ msgid "Button background color on mouse over"
2038
+ msgstr "Цвет фона кнопки при наведении"
 
 
 
2039
 
2040
+ #: includes/paid.php:1589 templates/paid/filters_search_box.php:93
2041
+ msgid "Button text color"
2042
+ msgstr "Цвет текста на кнопке"
2043
 
2044
+ #: includes/paid.php:1594 templates/paid/filters_search_box.php:98
2045
+ msgid "Button text color on mouse over"
2046
+ msgstr "Цвет текста на кнопке при наведении"
2047
 
2048
+ #: includes/paid.php:1607
2049
+ msgid "Child/Parent Limitation"
2050
+ msgstr "Ограничение Дочерних/Родительских"
2051
 
2052
+ #: includes/paid.php:1610
2053
+ msgid "Child Count"
2054
+ msgstr "Количество дочерних"
2055
 
2056
+ #: includes/paid.php:1611
2057
+ msgid "Parent"
2058
+ msgstr "Родительские"
2059
 
2060
+ #: includes/paid.php:1612 includes/paid.php:1648
2061
+ msgid "Child"
2062
+ msgstr "Дочерние"
2063
 
2064
+ #: includes/paid.php:1616
2065
+ msgid "Child depth"
2066
+ msgstr "Дочернее дерево"
2067
 
2068
+ #: includes/paid.php:1619 includes/paid.php:1658
2069
+ msgid "\"No values\" messages"
2070
+ msgstr "Сообщения «Нет значений»"
2071
 
2072
+ #: includes/paid.php:1623 includes/paid.php:1662
2073
+ msgid "\"Select previous\" messages"
2074
+ msgstr "«Выбрать предыдущие» сообщения"
2075
 
2076
+ #: includes/paid.php:1627
2077
+ msgid "\"No Products\" messages"
2078
+ msgstr "Сообщения \"Нет товаров\""
2079
 
2080
+ #: includes/paid.php:1632
2081
+ msgid "Child count"
2082
+ msgstr "Количество дочерних"
 
 
2083
 
2084
+ #: includes/paid.php:1654
2085
+ msgid "\"No products\" messages"
2086
+ msgstr "Сообщения \"Нет товаров\""
2087
 
2088
+ #: includes/paid.php:1675
2089
+ msgid "Date Month Dropdown menu"
2090
+ msgstr "Выпадающий список для месяца"
2091
 
2092
+ #: includes/paid.php:1681
2093
+ msgid "Date Year Dropdown menu"
2094
+ msgstr "Выпадающий список для года"
2095
 
2096
+ #: includes/paid.php:1685
2097
+ msgid "Date visual style"
2098
+ msgstr "Визуальный стиль даты"
2099
 
2100
+ #: includes/paid.php:1726
2101
+ msgid "Display only"
2102
+ msgstr "Показывать"
 
 
2103
 
2104
+ #: includes/paid.php:1727
2105
+ msgid "Remove"
2106
+ msgstr "Удалить"
2107
 
2108
+ #: includes/paid.php:1729
2109
+ msgid "values selected in Include / Exclude List"
2110
+ msgstr "«Включить / Исключить» значения, выбранные в списке "
2111
 
2112
+ #: includes/paid.php:1750
2113
+ msgid "IMPORTANT"
2114
+ msgstr "ВАЖНО"
2115
 
2116
+ #: includes/paid.php:1752
2117
  msgid ""
2118
+ "Slider type always uses attributes slug.<br>All attribute values slug must "
2119
+ "be with letters, numbers in slug can work incorrect.<br>Also slider do not "
2120
+ "work with slug that contains those symbols: -, +"
2121
  msgstr ""
2122
+ "Тип слайдера всегда использует атрибут slug. <br> Все значения атрибутов "
2123
+ "slug должны быть с буквами, цифры в slug могут работать некорректно. <br> "
2124
+ "Также слайдер не работает с slug, который содержит эти символы: -, +"
 
 
 
 
 
 
 
 
2125
 
2126
+ #: includes/paid.php:1755
2127
+ msgid "Use default values for slider"
2128
+ msgstr "Использовать для слайдера значения по умолчанию"
2129
 
2130
+ #: includes/paid.php:1768
2131
+ msgid "Show product count per attribute value?"
2132
+ msgstr "Показывать количество продуктов для каждого атрибута?"
2133
 
2134
+ #: includes/paid.php:1779
2135
+ msgid "Values per row"
2136
+ msgstr "Значений в строке"
 
 
2137
 
2138
+ #: includes/paid.php:1891 includes/paid.php:2488 includes/widget.php:1739
2139
+ #: includes/widget.php:2012
2140
+ msgid "In stock"
2141
+ msgstr "В наличии"
2142
 
2143
+ #: includes/paid.php:1898 includes/paid.php:2489 includes/widget.php:1740
2144
+ #: includes/widget.php:2013
2145
+ msgid "Out of stock"
2146
+ msgstr "Нет в наличии"
2147
 
2148
+ #: includes/paid.php:1918 includes/paid.php:2492
2149
+ msgid "On sale"
2150
+ msgstr "Со скидкой"
2151
 
2152
+ #: includes/paid.php:1925 includes/paid.php:2493
2153
+ msgid "Not on sale"
2154
+ msgstr "Без скидки"
 
 
2155
 
2156
+ #: includes/paid.php:2645
2157
+ msgid "Nice URLs settings"
2158
+ msgstr "Настройки хороших URL"
2159
 
2160
+ #: includes/widget.php:125
2161
+ msgid "Add Filters to Products page"
2162
+ msgstr "Добить фильтры на страницу продуктов"
2163
 
2164
+ #: includes/widget.php:131
2165
+ msgid "AJAX Product Filters (Deprecated)"
2166
+ msgstr "Фильтры продуктов AJAX(УСТАРЕЛО)"
2167
 
2168
+ #: includes/widget.php:551
2169
+ msgid "1 star"
2170
+ msgstr "1 звезда"
2171
 
2172
+ #: includes/widget.php:551
2173
  msgid ""
2174
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-"
2175
+ "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
2176
  msgstr ""
2177
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-"
2178
+ "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
2179
 
2180
+ #: includes/widget.php:554
2181
+ msgid "2 stars"
2182
+ msgstr "2 звезды"
 
 
 
 
 
 
2183
 
2184
+ #: includes/widget.php:554
2185
  msgid ""
2186
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2187
+ "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
 
2188
  msgstr ""
2189
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2190
+ "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
 
 
 
 
 
2191
 
2192
+ #: includes/widget.php:557
2193
+ msgid "3 stars"
2194
+ msgstr "3 звезды"
2195
 
2196
+ #: includes/widget.php:557
2197
  msgid ""
2198
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2199
+ "star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2200
  msgstr ""
2201
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2202
+ "star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
 
 
 
 
 
 
 
 
2203
 
2204
+ #: includes/widget.php:560
2205
+ msgid "4 stars"
2206
+ msgstr "4 звезды"
2207
 
2208
+ #: includes/widget.php:560
2209
+ msgid ""
2210
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2211
+ "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i>"
2212
  msgstr ""
2213
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2214
+ "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i>"
 
 
 
 
 
 
 
 
2215
 
2216
+ #: includes/widget.php:563
2217
+ msgid "5 stars"
2218
+ msgstr "5 звезд"
2219
 
2220
+ #: includes/widget.php:563
2221
  msgid ""
2222
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2223
+ "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i>"
 
2224
  msgstr ""
2225
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2226
+ "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i>"
 
 
 
 
 
 
 
 
 
2227
 
2228
+ #. Author of the plugin
2229
+ #: includes/visual-composer.php:21 includes/visual-composer.php:47
2230
+ msgid "BeRocket"
2231
+ msgstr "BeRocket"
2232
 
2233
+ #: templates/settings/design.php:8 templates/settings/design.php:23
2234
  msgid "Select All"
2235
  msgstr "Выбрать всё"
2236
 
2237
+ #: templates/settings/design.php:11 templates/settings/design.php:26
2238
+ #: templates/settings/design.php:148 templates/settings/design.php:778
2239
  msgid "Element"
2240
  msgstr "Элемент"
2241
 
2242
+ #: templates/settings/design.php:13 templates/settings/design.php:28
2243
  msgid "Font Family"
2244
  msgstr "Шрифт"
2245
 
2246
+ #: templates/settings/design.php:14 templates/settings/design.php:29
2247
  msgid "Font-Weight"
2248
  msgstr "Толщина шрифта"
2249
 
2250
+ #: templates/settings/design.php:14 templates/settings/design.php:29
2251
  msgid "(depends on font)"
2252
  msgstr "(Зависит от шрифта)"
2253
 
2254
+ #: templates/settings/design.php:15 templates/settings/design.php:30
2255
  msgid "Font-Size"
2256
  msgstr "Размер шрифта"
2257
 
2258
+ #: templates/settings/design.php:16 templates/settings/design.php:31
2259
+ #: templates/settings/design.php:156
2260
  msgid "Theme"
2261
  msgstr "Тема"
2262
 
2263
+ #: templates/settings/design.php:35 templates/settings/design.php:626
2264
+ #: templates/settings/design.php:695 templates/settings/design.php:768
2265
+ #: templates/settings/design.php:873
2266
  msgid "Set all to theme default"
2267
  msgstr "Установить всё по умолчанию"
2268
 
2269
+ #: templates/settings/design.php:48
2270
  msgid "Select Element"
2271
  msgstr "Выбрать элемент"
2272
 
2273
+ #: templates/settings/design.php:59 templates/settings/design.php:71
2274
+ #: templates/settings/design.php:112 templates/settings/design.php:119
2275
+ #: templates/settings/design.php:134
2276
  msgid "N/A"
2277
  msgstr "Н/Д"
2278
 
2279
+ #: templates/settings/design.php:65 templates/settings/design.php:80
2280
+ #: templates/settings/design.php:117 templates/settings/design.php:168
2281
+ #: templates/settings/design.php:171 templates/settings/design.php:174
2282
+ #: templates/settings/design.php:424 templates/settings/design.php:427
2283
+ #: templates/settings/design.php:430 templates/settings/design.php:661
2284
+ #: templates/settings/design.php:669 templates/settings/design.php:672
2285
+ #: templates/settings/design.php:685 templates/settings/design.php:688
2286
+ #: templates/settings/design.php:730 templates/settings/design.php:738
2287
+ #: templates/settings/design.php:751 templates/settings/design.php:796
2288
+ #: templates/settings/design.php:799 templates/settings/design.php:802
2289
+ #: templates/settings/design.php:823 templates/settings/design.php:826
2290
+ #: templates/settings/design.php:829 templates/settings/design.php:850
2291
+ #: templates/settings/design.php:853 templates/settings/design.php:856
2292
  msgid "Theme Default"
2293
  msgstr "По умолчанию"
2294
 
2295
+ #: templates/settings/design.php:125
2296
  msgid "Without Theme"
2297
  msgstr "Без темы"
2298
 
2299
+ #: templates/settings/design.php:146
2300
  msgid "Checkbox / Radio"
2301
+ msgstr "Флажок / Переключатель"
2302
 
2303
+ #: templates/settings/design.php:149 templates/settings/design.php:706
2304
+ #: templates/settings/design.php:779
2305
  msgid "Border color"
2306
  msgstr "Цвет границы"
2307
 
2308
+ #: templates/settings/design.php:150 templates/settings/design.php:780
2309
  msgid "Border width"
2310
  msgstr "Ширина границы"
2311
 
2312
+ #: templates/settings/design.php:151 templates/settings/design.php:781
2313
  msgid "Border radius"
2314
  msgstr "Закругление углов"
2315
 
2316
+ #: templates/settings/design.php:152 templates/settings/design.php:782
2317
  msgid "Size"
2318
  msgstr "Размер"
2319
 
2320
+ #: templates/settings/design.php:153 templates/settings/design.php:708
2321
+ #: templates/settings/design.php:783
2322
  msgid "Font color"
2323
  msgstr "Цвет шрифта"
2324
 
2325
+ #: templates/settings/design.php:154 templates/settings/design.php:784
2326
  msgid "Background"
2327
  msgstr "Задний фон"
2328
 
2329
+ #: templates/settings/design.php:155
2330
  msgid "Icon"
2331
  msgstr "Иконка"
2332
 
2333
+ #: templates/settings/design.php:636
 
 
 
 
2334
  msgid "Line color"
2335
  msgstr "Цвет линии"
2336
 
2337
+ #: templates/settings/design.php:637
2338
  msgid "Back line color"
2339
  msgstr "Цвет заднего фона линии"
2340
 
2341
+ #: templates/settings/design.php:638
2342
  msgid "Line height"
2343
  msgstr "Высота линии"
2344
 
2345
+ #: templates/settings/design.php:639
2346
  msgid "Line border color"
2347
  msgstr "Цвет границы линии"
2348
 
2349
+ #: templates/settings/design.php:640
2350
  msgid "Line border width"
2351
  msgstr "Ширина границы линии"
2352
 
2353
+ #: templates/settings/design.php:641
2354
  msgid "Button size"
2355
  msgstr "Размер кнопки"
2356
 
2357
+ #: templates/settings/design.php:642
2358
  msgid "Button color"
2359
  msgstr "Цвет кнопки"
2360
 
2361
+ #: templates/settings/design.php:643
2362
  msgid "Button border color"
2363
  msgstr "Цвет границы кнопки"
2364
 
2365
+ #: templates/settings/design.php:644
2366
  msgid "Button border width"
2367
  msgstr "Ширина границы кнопки"
2368
 
2369
+ #: templates/settings/design.php:645
2370
  msgid "Button border radius"
2371
  msgstr "Закругление углов кнопки"
2372
 
2373
+ #: templates/settings/design.php:703
2374
  msgid "Product count description before filtering with Update button"
2375
  msgstr "Описание количества товаров перед фильтрацией с кнопкой «Обновить»"
2376
 
2377
+ #: templates/settings/design.php:707
2378
  msgid "Font size"
2379
  msgstr "Размер шрифта"
2380
 
2381
+ #: templates/settings/design.php:709
2382
  msgid "Show button font size"
2383
  msgstr "Размер шрифта кнопки \"Показать\""
2384
 
2385
+ #: templates/settings/design.php:710
2386
  msgid "Show button font color"
2387
  msgstr "Цвет шрифта кнопки \"Показать\""
2388
 
2389
+ #: templates/settings/design.php:711
2390
  msgid "Show button font color on mouse over"
2391
  msgstr "Цвет шрифта кнопки \"Показать\" при наведении"
2392
 
2393
+ #: templates/settings/design.php:712
2394
  msgid "Close button size"
2395
  msgstr "Размер кнопки \"Закрыть\""
2396
 
2397
+ #: templates/settings/design.php:713
2398
  msgid "Close button font color"
2399
  msgstr "Цвет шрифта кнопки \"Закрыть\""
2400
 
2401
+ #: templates/settings/design.php:714
2402
  msgid "Close button font color on mouse over"
2403
  msgstr "Цвет шрифта кнопки \"Закрыть\" при наведении"
2404
 
2405
+ #: templates/settings/design.php:776
2406
+ msgid "Show title only Styles"
2407
+ msgstr "Стили для отображаемых названий"
2408
+
2409
+ #: templates/settings/design.php:816
2410
+ msgid "Title opened"
2411
+ msgstr "Название при открытии"
2412
+
2413
+ #: templates/settings/design.php:881
2414
  msgid "Loading products icon"
2415
  msgstr "Иконка загрузки продуктов"
2416
 
2417
+ #: templates/settings/design.php:889
2418
  msgid "Text at load icon"
2419
  msgstr "Текст возле иконки загрузки"
2420
 
2421
+ #: templates/settings/design.php:891
2422
  msgid "Above:"
2423
  msgstr "Выше:"
2424
 
2425
+ #: templates/settings/design.php:894
2426
  msgid "Under:"
2427
  msgstr "Ниже:"
2428
 
2429
+ #: templates/settings/design.php:897
2430
  msgid "Before:"
2431
  msgstr "Перед:"
2432
 
2433
+ #: templates/settings/design.php:900
2434
  msgid "After:"
2435
  msgstr "После:"
2436
 
2437
+ #: templates/settings/design.php:906
2438
  msgid "Description show and hide"
2439
  msgstr "Показать и скрыть описание"
2440
 
2441
+ #: templates/settings/design.php:908
2442
  msgid "Show on:"
2443
  msgstr "Показать при:"
2444
 
2445
+ #: templates/settings/design.php:910
2446
  msgid "Click"
2447
  msgstr "Нажатии"
2448
 
2449
+ #: templates/settings/design.php:911
2450
  msgid "Mouse over icon"
2451
  msgstr "Наведении на иконку"
2452
 
2453
+ #: templates/settings/design.php:915
2454
  msgid "Hide on:"
2455
  msgstr "Скрывать при:"
2456
 
2457
+ #: templates/settings/design.php:917
2458
  msgid "Click anywhere"
2459
  msgstr "Нажатии в любом месте"
2460
 
2461
+ #: templates/settings/design.php:918
2462
  msgid "Mouse out of icon"
2463
  msgstr "Курсор вне иконки"
2464
 
2465
+ #: templates/settings/design.php:925
2466
  msgid "Product count style"
2467
+ msgstr "Стиль для количества продуктов"
2468
 
2469
+ #: templates/settings/design.php:928
2470
  msgid "4"
2471
  msgstr "4"
2472
 
2473
+ #: templates/settings/design.php:929
2474
  msgid "(4)"
2475
  msgstr "(4)"
2476
 
2477
+ #: templates/settings/design.php:930
2478
  msgid "[4]"
2479
  msgstr "[4]"
2480
 
2481
+ #: templates/settings/design.php:934
2482
  msgid "Position:"
2483
  msgstr "Позиция:"
2484
 
2485
+ #: templates/settings/design.php:936 templates/settings/design.php:944
2486
  msgid "Normal"
2487
  msgstr "Нормальная"
2488
 
2489
+ #: templates/settings/design.php:937 templates/settings/design.php:945
2490
  msgid "Right"
2491
  msgstr "Справа"
2492
 
2493
+ #: templates/settings/design.php:938
2494
  msgid "Right from name"
2495
  msgstr "Справа от имени"
2496
 
2497
+ #: templates/settings/design.php:942
2498
+ msgid "Position on Image:"
2499
+ msgstr "Позиция на картинке:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2500
 
2501
+ #: templates/settings/design.php:952
2502
+ msgid "Select(dropdown) Child Tree Indent"
2503
+ msgstr "Вариант отступа для дерева дочерних"
2504
 
2505
+ #: templates/settings/design.php:955
2506
+ msgid "-"
2507
+ msgstr "-"
2508
 
2509
+ #: templates/settings/design.php:956
2510
+ msgid "space"
2511
+ msgstr "пробел"
2512
 
2513
+ #: templates/settings/design.php:957
2514
+ msgid "2 spaces"
2515
+ msgstr "2 пробела"
2516
 
2517
+ #: templates/settings/design.php:958
2518
+ msgid "tab"
2519
+ msgstr "таб"
2520
 
2521
+ #: templates/paid/filters_group.php:3
2522
+ msgid "Show filters above products"
2523
+ msgstr "Показать фильтры над продуктами"
2524
 
2525
+ #: templates/paid/filters_group.php:20
2526
+ msgid "Display filters in line"
2527
+ msgstr "Выводить фильтры в линию"
2528
 
2529
+ #: templates/paid/filters_group.php:26
2530
+ msgid "Display filters in line max count"
2531
+ msgstr "Максимальное количество фильтров в линию"
 
2532
 
2533
+ #: templates/paid/filters_group.php:41
2534
+ msgid "Min Width for Filter"
2535
+ msgstr "Минимальная ширина фильтра"
 
2536
 
2537
+ #: templates/paid/filters_group.php:47
2538
+ msgid "Show title only"
2539
+ msgstr "Показывать только название фильтра"
 
2540
 
2541
+ #: templates/paid/filters_group.php:50
2542
+ msgid ""
2543
+ "Only title will be visible. Filter will be displayed after click on title "
2544
+ "and hide after click everywhere else"
2545
+ msgstr ""
2546
+ "Только заголовок будет виден. Фильтр будет отображаться после нажатия на "
2547
+ "заголовок и скрываться после нажатия в другом месте"
 
2548
 
2549
+ #: templates/paid/filters_group.php:54
2550
+ msgid "Display filters on mouse over"
2551
+ msgstr "Показывать фильтры после нажатия мишкой"
2552
 
2553
+ #: templates/paid/filters_group.php:57
2554
+ msgid "Display on mouse over and hide on mouse leave"
2555
+ msgstr "Отображение при наведении курсора мыши и скрыть при убирание курсора"
2556
 
2557
+ #: templates/paid/filters_search_box.php:4
2558
+ msgid "Use Group as Search Box"
2559
+ msgstr "Использовать группу как блок поиска"
2560
 
2561
+ #: addons/filtering_conditions/filtering_conditions.php:9
2562
+ #: addons/filtering_conditions/add_conditions.php:39
2563
+ msgid "Filtering Conditions (BETA)"
2564
+ msgstr "Условия после фильтрации (БЕТА)"
2565
 
2566
+ #: addons/filtering_conditions/add_conditions.php:47
2567
+ msgid ""
2568
+ "Use this to display products only after filtering by some attribute and value"
2569
  msgstr ""
2570
+ "Используйте это для отображения товаров только после фильтрации по "
2571
+ "некоторому атрибуту и значению"
 
 
 
 
 
 
 
 
 
 
 
2572
 
2573
+ #: addons/separate_link/separate_vars.php:27
2574
+ msgid "Default operator for URLs"
2575
+ msgstr "Оператор по умолчанию для URL"
 
 
 
 
2576
 
2577
+ #: addons/separate_link/separate_vars.php:31
2578
+ msgid "OR"
2579
+ msgstr "ИЛИ"
2580
 
2581
+ #: addons/separate_link/separate_vars.php:32
2582
+ msgid "AND"
2583
+ msgstr "И"
2584
 
2585
+ #: addons/separate_link/separate_vars.php:35
2586
+ msgid "Default operator will be not displayed in URL"
2587
+ msgstr "Оператор по умолчанию не будет отображаться в URL"
2588
 
2589
+ #: addons/separate_link/separate_link.php:9
2590
+ msgid "WooCommerce Like Links (BETA)"
2591
+ msgstr "Ссылка как у WooCommerce (БЕТА)"
2592
 
2593
+ #: addons/additional_tables/additional_tables.php:59
2594
+ msgid "Additional Tables (BETA)"
2595
+ msgstr "Дополнительные таблицы (БЕТА)"
2596
 
2597
+ #: addons/additional_tables/additional_tables.php:60
2598
+ msgid ""
2599
+ "Create 4 additional tables.<ul><li>Table to speed up hierarchical taxonomies "
2600
+ "recount: <strong>Product categories</strong>, <strong>Brands</strong> "
2601
+ "etc</li><li>3 tables to speed up functions for variation filtering</li></ul>"
2602
+ msgstr ""
2603
+ "Создается 4 дополнительных таблицы. <ul><li>Таблица для ускорения пересчета "
2604
+ "иерархических таксономий: <strong>Категории продктов</strong>, <strong>"
2605
+ "Бренды</strong> и т.д. </li><li>3 таблицы для ускорения функций фильтрации "
2606
+ "вариаций</li></ul>"
2607
 
2608
+ #: addons/additional_tables/additional_tables.php:106
2609
+ msgid ""
2610
+ "Additional tables was succesfully generated. They will be used automatically "
2611
+ "when needed."
2612
+ msgstr ""
2613
+ "Дополнительные таблицы были успешно созданы. Они будут использоваться "
2614
+ "автоматически при необходимости."
2615
 
2616
+ #: addons/additional_tables/additional_tables.php:134
2617
+ #, php-format
2618
+ msgid ""
2619
+ "Additional tables are generating. They will be used after generation is "
2620
+ "completed. Current status is <strong><span "
2621
+ "class=\"braapf_additional_table_status\">%d</span>%s</strong>"
2622
+ msgstr ""
2623
+ "Дополнительные таблицы создаются. Они будут использованы после завершения "
2624
+ "генерации. Текущий статус <strong><span "
2625
+ "class=\"braapf_additional_table_status\">%d</span>%s</strong>"
2626
 
2627
+ #: includes/addons/seo_meta_title.php:14 includes/addons/seo_meta_title.php:19
2628
+ #: includes/addons/seo_meta_title.php:53 includes/addons/seo_meta_title.php:63
2629
+ #: includes/addons/seo_meta_title.php:85
2630
+ msgid " and "
2631
+ msgstr " и "
2632
 
2633
+ #: includes/addons/seo_meta_title.php:15 includes/addons/seo_meta_title.php:54
2634
+ #: includes/addons/seo_meta_title.php:86
2635
+ msgid " or "
2636
+ msgstr " или "
2637
 
2638
+ #: includes/addons/seo_meta_title.php:22 includes/addons/seo_meta_title.php:69
2639
+ msgid " with "
2640
+ msgstr " с "
2641
 
2642
+ #: includes/addons/seo_meta_title.php:90
2643
+ msgid " / "
2644
+ msgstr "/"
2645
 
2646
+ #: includes/addons/seo_meta_title.php:93
2647
+ msgid " - "
2648
+ msgstr "-"
2649
 
2650
  #. Description of the plugin
2651
  msgid "Unlimited AJAX products filters to make your shop perfect"
2652
+ msgstr "Бесконечные AJAX фильтры для продуктов. Сделайте Ваш магазин лучше"
2653
 
2654
  #. URI of the plugin
2655
+ msgid ""
2656
+ "https://berocket.com/product/woocommerce-ajax-products-filter?"
2657
+ "utm_source=paid_plugin&utm_medium=plugins&utm_campaign=ajax_filters"
2658
+ msgstr ""
2659
+ "https://berocket.com/product/woocommerce-ajax-products-filter?"
2660
+ "utm_source=paid_plugin&utm_medium=plugins&utm_campaign=ajax_filters"
2661
 
2662
  #. Author URI of the plugin
2663
+ msgid ""
2664
+ "https://berocket.com?"
2665
+ "utm_source=paid_plugin&utm_medium=plugins&utm_campaign=ajax_filters"
2666
+ msgstr ""
2667
+ "https://berocket.com?"
2668
+ "utm_source=paid_plugin&utm_medium=plugins&utm_campaign=ajax_filters"
languages/BeRocket_AJAX_domain.pot CHANGED
@@ -3,13 +3,13 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WooCommerce AJAX Products Filter\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2017-12-21 15:03+0000\n"
7
  "POT-Revision-Date: Wed Jun 29 2016 09:22:13 GMT+0300 (EEST)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: \n"
12
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
@@ -21,2190 +21,2495 @@ msgstr ""
21
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
- "X-Generator: Loco - https://localise.biz/"
25
 
26
- #: woocommerce-filters.php:233
27
- msgid "View Plugin Settings"
 
28
  msgstr ""
29
 
30
- #: woocommerce-filters.php:233
31
- msgid "Settings"
32
  msgstr ""
33
 
34
- #: woocommerce-filters.php:241
35
- msgid "View Plugin Documentation"
36
  msgstr ""
37
 
38
- #: woocommerce-filters.php:241
39
- msgid "Docs"
 
 
 
40
  msgstr ""
41
 
42
- #: woocommerce-filters.php:242
43
- msgid "View Premium Support Page"
44
  msgstr ""
45
 
46
- #: woocommerce-filters.php:242
47
- msgid "Premium Support"
48
  msgstr ""
49
 
50
- #: woocommerce-filters.php:384
51
- msgid "There are no products meeting your criteria"
52
  msgstr ""
53
 
54
- #: woocommerce-filters.php:447 templates/checkbox.php:117
55
- #: templates/color.php:114
56
- msgid "Show value(s)"
57
  msgstr ""
58
 
59
- #: woocommerce-filters.php:448
60
- msgid "Hide value(s)"
61
  msgstr ""
62
 
63
- #: woocommerce-filters.php:449
64
- msgid "Unselect all"
65
  msgstr ""
66
 
67
- #: woocommerce-filters.php:450
68
- msgid "Nothing is selected"
69
  msgstr ""
70
 
71
- #: woocommerce-filters.php:451
72
- msgid "products"
73
  msgstr ""
74
 
75
- #: woocommerce-filters.php:509
76
- msgid "Activate WooCommerce plugin before"
77
  msgstr ""
78
 
79
- #: woocommerce-filters.php:516
80
- msgid "Update WooCommerce plugin"
81
  msgstr ""
82
 
83
- #: woocommerce-filters.php:522 woocommerce-filters.php:527
84
- msgid "Product Filters Settings"
85
  msgstr ""
86
 
87
- #: woocommerce-filters.php:522 woocommerce-filters.php:527
88
- msgid "Product Filters"
89
  msgstr ""
90
 
91
- #: templates/filters_information.php:2
92
- msgid "How to hide filter on page load?"
93
  msgstr ""
94
 
95
- #: templates/filters_information.php:3
96
- #, php-format
97
- msgid "Enable in <strong>%s</strong> option <strong>%s</strong>"
 
 
98
  msgstr ""
99
 
100
- #: templates/filters_information.php:3 templates/filter_post.php:202
101
- #: templates/admin-settings.php:1402 templates/admin.php:200
102
- msgid "Advanced Settings"
103
  msgstr ""
104
 
105
- #: templates/filters_information.php:3 templates/filter_post.php:234
106
- #: templates/filter_post.php:421 templates/admin-settings.php:1434
107
- #: templates/admin-settings.php:1635 templates/admin.php:232
108
- #: templates/admin.php:420
109
- msgid "Hide this widget on load?"
110
  msgstr ""
111
 
112
- #: templates/filters_information.php:4
113
- msgid "How to add reset filters button?"
114
  msgstr ""
115
 
116
- #: templates/filters_information.php:5 templates/filters_information.php:7
117
- #, php-format
118
- msgid "Select <strong>%s</strong> in option <strong>%s</strong>"
119
  msgstr ""
120
 
121
- #: templates/filters_information.php:5 templates/filter_post.php:14
122
- #: templates/admin-settings.php:1252 templates/admin.php:12
123
- #: includes/new_filters.php:189
124
- msgid "Reset Products button"
125
  msgstr ""
126
 
127
- #: templates/filters_information.php:5 templates/filters_information.php:7
128
- #: templates/filter_post.php:10 templates/admin-settings.php:1248
129
- #: templates/admin.php:8
130
- msgid "Widget Type"
131
  msgstr ""
132
 
133
- #: templates/filters_information.php:6
134
- msgid ""
135
- "How to add update products button? (to filter products only after click on "
136
- "button)"
137
  msgstr ""
138
 
139
- #: templates/filters_information.php:7 templates/filter_post.php:13
140
- #: templates/admin-settings.php:1251 templates/admin.php:11
141
- #: includes/new_filters.php:188
142
- msgid "Update Products button"
143
  msgstr ""
144
 
145
- #: templates/groups_information.php:2
146
- msgid ""
147
- "Do not use multiple filters with same attribute on one page! We will not "
148
- "guarantee normal filters works in that case."
149
  msgstr ""
150
 
151
- #: templates/groups_information.php:3
152
- msgid ""
153
- "P.S. No, using sub-categories for different filters is not normal. Please "
154
- "use attributes instead"
155
  msgstr ""
156
 
157
- #: templates/groups_information.php:4 includes/new_filters.php:428
158
- msgid "Conditions"
159
  msgstr ""
160
 
161
- #: templates/groups_information.php:5
162
- msgid "Group without any condition will be displayed on all pages"
163
  msgstr ""
164
 
165
- #: templates/groups_information.php:6
166
- msgid "Connection between condition can be AND and OR"
167
  msgstr ""
168
 
169
- #: templates/groups_information.php:7
170
- msgid "<strong>AND</strong> uses between condition in one section"
171
  msgstr ""
172
 
173
- #: templates/groups_information.php:8
174
- msgid "<strong>OR</strong> uses between different sections with conditions"
175
  msgstr ""
176
 
177
- #: templates/groups_information.php:9
178
- msgid "To display one group on different pages use OR condition"
179
  msgstr ""
180
 
181
- #: templates/filters_group.php:11
182
- msgid "Add filter"
183
  msgstr ""
184
 
185
- #: templates/filters_group.php:12 includes/new_widget.php:135
186
- msgid "Manage filters"
187
  msgstr ""
188
 
189
- #: templates/filters_group.php:27 templates/filters_group.php:44
190
- #: includes/new_filters.php:32 includes/new_filters.php:63
191
- msgid "Edit"
 
192
  msgstr ""
193
 
194
- #: templates/include_exclude_list.php:2
195
- msgid "Include / Exclude List"
196
  msgstr ""
197
 
198
- #: templates/filter_post.php:12 templates/admin-settings.php:1250
199
- #: templates/admin.php:10 includes/new_filters.php:187
200
- #: includes/new_widget.php:138
201
- msgid "Filter"
202
  msgstr ""
203
 
204
- #: templates/filter_post.php:15 templates/admin-settings.php:1253
205
- #: templates/admin.php:13 includes/new_filters.php:190
206
- msgid "Selected Filters area"
 
207
  msgstr ""
208
 
209
- #: templates/filter_post.php:16 templates/admin-settings.php:1254
210
- #: templates/admin.php:14 includes/new_filters.php:191
211
- msgid "Search Box"
212
  msgstr ""
213
 
214
- #: templates/filter_post.php:22 templates/filter_post.php:472
215
- #: templates/admin-settings.php:1267 templates/admin-settings.php:1683
216
- #: templates/admin.php:27 templates/admin.php:471
217
- msgid "Filter By"
218
  msgstr ""
219
 
220
- #: templates/filter_post.php:24 templates/filter_post.php:37
221
- #: templates/filter_post.php:465 templates/filter_post.php:474
222
- #: templates/filter_post.php:480 templates/admin-settings.php:1269
223
- #: templates/admin-settings.php:1282 templates/admin-settings.php:1676
224
- #: templates/admin-settings.php:1685 templates/admin-settings.php:1691
225
- #: templates/admin.php:29 templates/admin.php:42 templates/admin.php:464
226
- #: templates/admin.php:473 templates/admin.php:479 includes/new_filters.php:197
227
- msgid "Attribute"
228
  msgstr ""
229
 
230
- #: templates/filter_post.php:25 templates/admin-settings.php:1270
231
- #: templates/admin.php:30 includes/new_filters.php:224
232
- msgid "Stock status"
233
  msgstr ""
234
 
235
- #: templates/filter_post.php:26 templates/admin-settings.php:1271
236
- #: templates/admin.php:31 includes/new_filters.php:226
237
- msgid "Product sub-categories"
238
  msgstr ""
239
 
240
- #: templates/filter_post.php:27 templates/filter_post.php:475
241
- #: templates/admin-settings.php:1272 templates/admin-settings.php:1686
242
- #: templates/admin.php:32 templates/admin.php:474 includes/new_filters.php:198
243
- #: includes/new_filters.php:209 includes/new_filters.php:228
244
- msgid "Tag"
245
  msgstr ""
246
 
247
- #: templates/filter_post.php:28 templates/filter_post.php:476
248
- #: templates/admin-settings.php:1273 templates/admin-settings.php:1687
249
- #: templates/admin.php:33 templates/admin.php:475 includes/new_filters.php:199
250
- msgid "Custom Taxonomy"
251
  msgstr ""
252
 
253
- #: templates/filter_post.php:29 templates/admin-settings.php:1274
254
- #: templates/admin.php:34 includes/new_filters.php:233
255
- msgid "Date"
 
256
  msgstr ""
257
 
258
- #: templates/filter_post.php:30 templates/admin-settings.php:1275
259
- #: templates/admin.php:35 includes/new_filters.php:235
260
- msgid "Sale"
261
  msgstr ""
262
 
263
- #: templates/filter_post.php:32 templates/admin-settings.php:1277
264
- #: templates/admin.php:37 includes/new_filters.php:237
265
- msgid "Rating"
 
266
  msgstr ""
267
 
268
- #: templates/filter_post.php:39 templates/admin-settings.php:1284
269
- #: templates/admin.php:44 includes/new_filters.php:217
270
- msgid "Price"
271
  msgstr ""
272
 
273
- #: templates/filter_post.php:46 templates/filter_post.php:488
274
- #: templates/admin-settings.php:1291 templates/admin-settings.php:1699
275
- #: templates/admin.php:51 templates/admin.php:487
276
- msgid "Custom Taxonomies"
277
  msgstr ""
278
 
279
- #: templates/filter_post.php:55 templates/filter_post.php:497
280
- #: templates/admin-settings.php:1300 templates/admin-settings.php:1708
281
- #: templates/admin.php:60 templates/admin.php:496
282
- msgid "Type"
283
  msgstr ""
284
 
285
- #: templates/filter_post.php:78 templates/admin-settings.php:1307
286
- #: templates/admin.php:83
287
- msgid "Operator"
288
  msgstr ""
289
 
290
- #: templates/filter_post.php:85
291
- msgid "Order Type"
292
  msgstr ""
293
 
294
- #: templates/filter_post.php:87
295
- msgid "Ascending"
 
 
296
  msgstr ""
297
 
298
- #: templates/filter_post.php:87
299
- msgid "Descending"
300
  msgstr ""
301
 
302
- #: templates/filter_post.php:93 templates/admin-settings.php:1314
303
- #: templates/admin.php:90
304
- msgid "Values Order"
305
  msgstr ""
306
 
307
- #: templates/filter_post.php:95 templates/filter_post.php:347
308
- #: templates/admin-settings.php:404 templates/admin-settings.php:512
309
- #: templates/admin-settings.php:526 templates/admin-settings.php:531
310
- #: templates/admin-settings.php:768 templates/admin-settings.php:782
311
- #: templates/admin-settings.php:787 templates/admin-settings.php:1000
312
- #: templates/admin-settings.php:1005 templates/admin-settings.php:1013
313
- #: templates/admin-settings.php:1024 templates/admin-settings.php:1029
314
- #: templates/admin-settings.php:1069 templates/admin-settings.php:1074
315
- #: templates/admin-settings.php:1082 templates/admin-settings.php:1090
316
- #: templates/admin-settings.php:1095 templates/admin-settings.php:1103
317
- #: templates/admin-settings.php:1108 templates/admin-settings.php:1316
318
- #: templates/admin-settings.php:1546 templates/admin.php:92
319
- #: templates/admin.php:345
320
- msgid "Default"
321
  msgstr ""
322
 
323
- #: templates/filter_post.php:96
324
- msgid "Alpha"
325
  msgstr ""
326
 
327
- #: templates/filter_post.php:96
328
- msgid "Numeric"
329
  msgstr ""
330
 
331
- #: templates/filter_post.php:138 templates/admin-settings.php:1337
332
- #: templates/admin.php:135
333
- msgid "Hide first and last ranges without products"
334
  msgstr ""
335
 
336
- #: templates/filter_post.php:142 templates/admin.php:139
337
- msgid "Text before price:"
338
  msgstr ""
339
 
340
- #: templates/filter_post.php:144 templates/admin.php:141
341
- msgid "after:"
342
  msgstr ""
343
 
344
- #: templates/filter_post.php:148 templates/admin-settings.php:1353
345
- #: templates/admin.php:145
346
- msgid "Enable Slider Inputs"
347
  msgstr ""
348
 
349
- #: templates/filter_post.php:151 templates/admin-settings.php:1356
350
- #: templates/admin.php:148
351
- msgid "Use custom values(comma separated):"
352
  msgstr ""
353
 
354
- #: templates/filter_post.php:153 templates/admin-settings.php:1358
355
- #: templates/admin.php:150
356
- msgid "* use numeric values only, strings will not work as expected"
 
357
  msgstr ""
358
 
359
- #: templates/filter_post.php:160 templates/admin-settings.php:1365
360
- #: templates/admin.php:157
361
- msgid "Use current product category to get child"
362
  msgstr ""
363
 
364
- #: templates/filter_post.php:164 templates/admin-settings.php:1394
365
- #: templates/admin.php:161
366
- msgid "Deep level:"
367
  msgstr ""
368
 
369
- #: templates/filter_post.php:169 templates/admin-settings.php:1808
370
- #: templates/admin.php:166 templates/admin.php:620
371
- msgid "Product Category:"
372
  msgstr ""
373
 
374
- #: templates/filter_post.php:177 templates/admin-settings.php:1377
375
- #: templates/admin.php:174
376
- msgid "None"
377
  msgstr ""
378
 
379
- #: templates/filter_post.php:205 templates/admin-settings.php:119
380
- #: templates/admin-settings.php:1405 templates/admin.php:203
381
- msgid "Attribute Values count"
 
382
  msgstr ""
383
 
384
- #: templates/filter_post.php:206 templates/admin-settings.php:1406
385
- #: templates/admin.php:204
386
- msgid "From settings"
387
  msgstr ""
388
 
389
- #: templates/filter_post.php:210 templates/admin-settings.php:1410
390
- #: templates/admin.php:208
391
- msgid "Use default values for slider"
392
  msgstr ""
393
 
394
- #: templates/filter_post.php:215 templates/admin-settings.php:1415
395
- #: templates/admin.php:213
396
- msgid "Use specific number style"
397
  msgstr ""
398
 
399
- #: templates/filter_post.php:219 templates/admin-settings.php:289
400
- #: templates/admin-settings.php:1419 templates/admin.php:217
401
- msgid "Thousand Separator"
402
  msgstr ""
403
 
404
- #: templates/filter_post.php:223 templates/admin-settings.php:295
405
- #: templates/admin-settings.php:1423 templates/admin.php:221
406
- msgid "Decimal Separator"
407
  msgstr ""
408
 
409
- #: templates/filter_post.php:227 templates/admin-settings.php:301
410
- #: templates/admin-settings.php:1427 templates/admin.php:225
411
- msgid "Number Of Decimal"
412
  msgstr ""
413
 
414
- #: templates/filter_post.php:238 templates/admin-settings.php:1438
415
- #: templates/admin.php:236
416
- msgid "Show product count per attributes?"
 
417
  msgstr ""
418
 
419
- #: templates/filter_post.php:242 templates/filter_post.php:415
420
- #: templates/admin-settings.php:1442 templates/admin-settings.php:1629
421
- #: templates/admin.php:240 templates/admin.php:414
422
- msgid "Hide collapse arrow?"
423
  msgstr ""
424
 
425
- #: templates/filter_post.php:246 templates/admin-settings.php:1446
426
- #: templates/admin.php:244
427
- msgid "Hide all child values?"
428
  msgstr ""
429
 
430
- #: templates/filter_post.php:250 templates/admin.php:248
431
- msgid "Display value with color/image box?"
432
  msgstr ""
433
 
434
- #: templates/filter_post.php:253 templates/admin-settings.php:1453
435
- #: templates/admin.php:251
436
- msgid "Values per row"
 
 
437
  msgstr ""
438
 
439
- #: templates/filter_post.php:262 templates/admin-settings.php:1462
440
- #: templates/admin.php:260
441
- msgid "Icons"
442
  msgstr ""
443
 
444
- #: templates/filter_post.php:264 templates/admin-settings.php:1464
445
- #: templates/admin.php:262
446
- msgid "Title Icons"
447
  msgstr ""
448
 
449
- #: templates/filter_post.php:266 templates/filter_post.php:272
450
- #: templates/filter_post.php:527 templates/admin-settings.php:1466
451
- #: templates/admin-settings.php:1472 templates/admin-settings.php:1738
452
- #: templates/admin.php:264 templates/admin.php:270 templates/admin.php:526
453
- msgid "Before"
454
  msgstr ""
455
 
456
- #: templates/filter_post.php:267 templates/filter_post.php:273
457
- #: templates/filter_post.php:528 templates/admin-settings.php:1467
458
- #: templates/admin-settings.php:1473 templates/admin-settings.php:1739
459
- #: templates/admin.php:265 templates/admin.php:271 templates/admin.php:527
460
- msgid "After"
461
  msgstr ""
462
 
463
- #: templates/filter_post.php:270 templates/admin-settings.php:1470
464
- #: templates/admin.php:268
465
- msgid "Value Icons"
466
  msgstr ""
467
 
468
- #: templates/filter_post.php:279 templates/admin-settings.php:1479
469
- #: templates/admin.php:277
470
- msgid "Description"
 
471
  msgstr ""
472
 
473
- #: templates/filter_post.php:283 templates/admin-settings.php:1483
474
- #: templates/admin.php:281
475
- msgid "CSS Class"
 
476
  msgstr ""
477
 
478
- #: templates/filter_post.php:285 templates/admin-settings.php:1485
479
- #: templates/admin.php:283
480
- msgid "(use white space for multiple classes)"
481
  msgstr ""
482
 
483
- #: templates/filter_post.php:290 templates/admin-settings.php:1489
484
- #: templates/admin.php:288
485
- msgid "Tags Cloud Height:"
486
  msgstr ""
487
 
488
- #: templates/filter_post.php:294 templates/admin-settings.php:1493
489
- #: templates/admin.php:292
490
- msgid "Min Font Size:"
491
  msgstr ""
492
 
493
- #: templates/filter_post.php:298 templates/admin-settings.php:1497
494
- #: templates/admin.php:296
495
- msgid "Max Font Size:"
496
  msgstr ""
497
 
498
- #: templates/filter_post.php:302 templates/admin-settings.php:1501
499
- #: templates/admin.php:300
500
- msgid "Max Tags Count:"
501
  msgstr ""
502
 
503
- #: templates/filter_post.php:310 templates/admin-settings.php:1509
504
- #: templates/admin.php:308
505
- msgid "Use min price"
506
  msgstr ""
507
 
508
- #: templates/filter_post.php:319 templates/admin-settings.php:1518
509
- #: templates/admin.php:317
510
- msgid "Use max price"
511
  msgstr ""
512
 
513
- #: templates/filter_post.php:328 templates/admin-settings.php:1527
514
- #: templates/admin.php:326
515
- msgid "Filter Box Height:"
516
  msgstr ""
517
 
518
- #: templates/filter_post.php:332 templates/admin-settings.php:1531
519
- #: templates/admin.php:330
520
- msgid "Scroll Theme:"
521
  msgstr ""
522
 
523
- #: templates/filter_post.php:345 templates/admin-settings.php:1544
524
- #: templates/admin.php:343
525
- msgid "Child/Parent Limitation"
526
  msgstr ""
527
 
528
- #: templates/filter_post.php:348 templates/admin-settings.php:1547
529
- #: templates/admin.php:346
530
- msgid "Child Count"
531
  msgstr ""
532
 
533
- #: templates/filter_post.php:349 templates/admin-settings.php:1548
534
- #: templates/admin.php:347
535
- msgid "Parent"
536
  msgstr ""
537
 
538
- #: templates/filter_post.php:350 templates/filter_post.php:380
539
- #: templates/admin-settings.php:1549 templates/admin-settings.php:1583
540
- #: templates/admin.php:348 templates/admin.php:378
541
- msgid "Child"
542
  msgstr ""
543
 
544
- #: templates/filter_post.php:354 templates/admin-settings.php:1553
545
- #: templates/admin.php:352
546
- msgid "Child depth"
547
  msgstr ""
548
 
549
- #: templates/filter_post.php:356 templates/filter_post.php:390
550
- #: templates/admin-settings.php:1555 templates/admin-settings.php:1593
551
- #: templates/admin.php:354 templates/admin.php:388
552
- msgid "\"No values\" messages"
553
  msgstr ""
554
 
555
- #: templates/filter_post.php:358 templates/filter_post.php:394
556
- #: templates/admin-settings.php:1557 templates/admin-settings.php:1597
557
- #: templates/admin.php:356 templates/admin.php:392
558
- msgid "\"Select previous\" messages"
559
  msgstr ""
560
 
561
- #: templates/filter_post.php:360 templates/admin-settings.php:1559
562
- #: templates/admin.php:358
563
- msgid "\"No Products\" messages"
564
  msgstr ""
565
 
566
- #: templates/filter_post.php:364 templates/admin-settings.php:1571
567
- #: templates/admin.php:362
568
- msgid "Child count"
 
 
569
  msgstr ""
570
 
571
- #: templates/filter_post.php:382 templates/filter_post.php:468
572
- #: templates/admin-settings.php:1261 templates/admin-settings.php:1585
573
- #: templates/admin-settings.php:1679 templates/admin.php:21
574
- #: templates/admin.php:380 templates/admin.php:467
575
- msgid "Title"
576
  msgstr ""
577
 
578
- #: templates/filter_post.php:386 templates/admin-settings.php:1589
579
- #: templates/admin.php:384
580
- msgid "\"No products\" messages"
581
  msgstr ""
582
 
583
- #: templates/filter_post.php:409 templates/admin-settings.php:1623
584
- #: templates/admin.php:408
585
- msgid "Show if nothing is selected"
586
  msgstr ""
587
 
588
- #: templates/filter_post.php:427 templates/admin-settings.php:1641
589
- #: templates/admin.php:426
590
- msgid "Attributes"
 
591
  msgstr ""
592
 
593
- #: templates/filter_post.php:430 templates/admin-settings.php:1643
594
- #: templates/admin.php:429
595
- msgid "URL to search"
596
  msgstr ""
597
 
598
- #: templates/filter_post.php:432 templates/admin-settings.php:1645
599
- #: templates/admin.php:431
600
- msgid "Shop page"
 
 
601
  msgstr ""
602
 
603
- #: templates/filter_post.php:433 templates/admin-settings.php:1646
604
- #: templates/admin.php:432
605
- msgid "Category page"
606
  msgstr ""
607
 
608
- #: templates/filter_post.php:434 templates/admin-settings.php:1647
609
- #: templates/admin.php:433
610
- msgid "URL"
611
  msgstr ""
612
 
613
- #: templates/filter_post.php:438 templates/admin-settings.php:1650
614
- #: templates/admin.php:437
615
- msgid "Category"
616
  msgstr ""
617
 
618
- #: templates/filter_post.php:448 templates/admin-settings.php:1659
619
- #: templates/admin.php:447
620
- msgid "URL for search"
621
  msgstr ""
622
 
623
- #: templates/filter_post.php:452 templates/admin-settings.php:1663
624
- #: templates/admin.php:451
625
- msgid "Attributes count"
626
  msgstr ""
627
 
628
- #: templates/filter_post.php:499 templates/admin-settings.php:1710
629
- #: templates/admin.php:498
630
- msgid "Select"
631
  msgstr ""
632
 
633
- #: templates/filter_post.php:500 templates/admin-settings.php:508
634
- #: templates/admin-settings.php:1711 templates/admin.php:499
635
- msgid "Checkbox"
636
  msgstr ""
637
 
638
- #: templates/filter_post.php:501 templates/admin-settings.php:764
639
- #: templates/admin-settings.php:1712 templates/admin.php:500
640
- msgid "Radio"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
641
  msgstr ""
642
 
643
- #: templates/filter_post.php:502 templates/admin-settings.php:359
644
- #: templates/admin-settings.php:374 templates/admin-settings.php:1713
645
- #: templates/admin.php:501
646
- msgid "Color"
647
  msgstr ""
648
 
649
- #: templates/filter_post.php:503 templates/admin-settings.php:1714
650
- #: templates/admin.php:502
651
- msgid "Image"
652
  msgstr ""
653
 
654
- #: templates/filter_post.php:515 templates/admin-settings.php:1726
655
- #: templates/admin.php:514
656
- msgid "Styles"
 
657
  msgstr ""
658
 
659
- #: templates/filter_post.php:518 templates/admin-settings.php:1729
660
- #: templates/admin.php:517
661
- msgid "Elements position"
662
  msgstr ""
663
 
664
- #: templates/filter_post.php:520 templates/admin-settings.php:1731
665
- #: templates/admin.php:519
666
- msgid "Vertical"
667
  msgstr ""
668
 
669
- #: templates/filter_post.php:521 templates/admin-settings.php:1732
670
- #: templates/admin.php:520
671
- msgid "Horizontal"
672
  msgstr ""
673
 
674
- #: templates/filter_post.php:525 templates/admin-settings.php:1736
675
- #: templates/admin.php:524
676
- msgid "Search button position"
 
677
  msgstr ""
678
 
679
- #: templates/filter_post.php:529 templates/admin-settings.php:1740
680
- #: templates/admin.php:528
681
- msgid "Before and after"
682
  msgstr ""
683
 
684
- #: templates/filter_post.php:533 templates/admin-settings.php:1744
685
- #: templates/admin.php:532
686
- msgid "Search button text"
687
  msgstr ""
688
 
689
- #: templates/filter_post.php:537 templates/admin-settings.php:1052
690
- #: templates/admin-settings.php:1748 templates/admin.php:536
691
- msgid "Background color"
692
  msgstr ""
693
 
694
- #: templates/filter_post.php:542 templates/admin-settings.php:1753
695
- #: templates/admin.php:541
696
- msgid "Background transparency"
697
  msgstr ""
698
 
699
- #: templates/filter_post.php:546 templates/admin-settings.php:1755
700
- #: templates/admin.php:545
701
- msgid "100%"
702
  msgstr ""
703
 
704
- #: templates/filter_post.php:547 templates/admin-settings.php:1756
705
- #: templates/admin.php:546
706
- msgid "90%"
707
  msgstr ""
708
 
709
- #: templates/filter_post.php:548 templates/admin-settings.php:1757
710
- #: templates/admin.php:547
711
- msgid "80%"
712
  msgstr ""
713
 
714
- #: templates/filter_post.php:549 templates/admin-settings.php:1758
715
- #: templates/admin.php:548
716
- msgid "70%"
717
  msgstr ""
718
 
719
- #: templates/filter_post.php:550 templates/admin-settings.php:1759
720
- #: templates/admin.php:549
721
- msgid "60%"
722
  msgstr ""
723
 
724
- #: templates/filter_post.php:551 templates/admin-settings.php:1760
725
- #: templates/admin.php:550
726
- msgid "50%"
 
727
  msgstr ""
728
 
729
- #: templates/filter_post.php:552 templates/admin-settings.php:1761
730
- #: templates/admin.php:551
731
- msgid "40%"
 
732
  msgstr ""
733
 
734
- #: templates/filter_post.php:553 templates/admin-settings.php:1762
735
- #: templates/admin.php:552
736
- msgid "30%"
737
  msgstr ""
738
 
739
- #: templates/filter_post.php:554 templates/admin-settings.php:1763
740
- #: templates/admin.php:553
741
- msgid "20%"
742
  msgstr ""
743
 
744
- #: templates/filter_post.php:555 templates/admin-settings.php:1764
745
- #: templates/admin.php:554
746
- msgid "10%"
747
  msgstr ""
748
 
749
- #: templates/filter_post.php:556 templates/admin-settings.php:1765
750
- #: templates/admin.php:555
751
- msgid "0%"
752
  msgstr ""
753
 
754
- #: templates/filter_post.php:567 templates/admin-settings.php:1769
755
- #: templates/admin.php:566
756
- msgid "Button background color"
757
  msgstr ""
758
 
759
- #: templates/filter_post.php:572 templates/admin-settings.php:1774
760
- #: templates/admin.php:571
761
- msgid "Button background color on mouse over"
762
  msgstr ""
763
 
764
- #: templates/filter_post.php:577 templates/admin-settings.php:1779
765
- #: templates/admin.php:576
766
- msgid "Button text color"
767
  msgstr ""
768
 
769
- #: templates/filter_post.php:582 templates/admin-settings.php:1784
770
- #: templates/admin.php:581
771
- msgid "Button text color on mouse over"
772
  msgstr ""
773
 
774
- #: templates/filter_post.php:604 templates/admin-settings.php:1792
775
- #: templates/admin.php:604
776
- msgid "Widget Output Limitations"
777
  msgstr ""
778
 
779
- #: templates/filter_post.php:609 templates/admin-settings.php:1797
780
- #: templates/admin.php:609
781
- msgid "Hide this widget on mobile?"
782
  msgstr ""
783
 
784
- #: templates/filter_post.php:613 templates/admin-settings.php:1864
785
- #: templates/admin.php:690
786
- msgid "Product Category Value Limitation"
787
  msgstr ""
788
 
789
- #: templates/filter_post.php:618 templates/admin-settings.php:216
790
- #: templates/admin-settings.php:1869 templates/admin.php:695
791
- msgid "Disable"
792
  msgstr ""
793
 
794
- #: templates/filter_post.php:648 templates/admin-settings.php:1887
795
- #: templates/admin.php:725
796
- msgid "Disabled"
797
  msgstr ""
798
 
799
- #: templates/filter_post.php:649 templates/admin-settings.php:1888
800
- #: templates/admin.php:726
801
- msgid "Display only"
802
  msgstr ""
803
 
804
- #: templates/filter_post.php:650 templates/admin-settings.php:1889
805
- #: templates/admin.php:727 includes/functions.php:2134
806
- msgid "Remove"
807
  msgstr ""
808
 
809
- #: templates/filter_post.php:652 templates/admin-settings.php:1891
810
- #: templates/admin.php:729
811
- msgid "values selected in Include / Exclude List"
812
  msgstr ""
813
 
814
- #: templates/color_ajax.php:2
815
- msgid "Color pick"
816
  msgstr ""
817
 
818
- #: templates/color_ajax.php:2
819
- msgid "Image pick"
 
820
  msgstr ""
821
 
822
- #: templates/admin-settings.php:19
823
- msgid "General"
 
824
  msgstr ""
825
 
826
- #: templates/admin-settings.php:20
827
- msgid "Design"
828
  msgstr ""
829
 
830
- #: templates/admin-settings.php:21 templates/admin-settings.php:247
831
- msgid "JavaScript"
 
832
  msgstr ""
833
 
834
- #: templates/admin-settings.php:22
835
- msgid "Custom CSS"
836
  msgstr ""
837
 
838
- #: templates/admin-settings.php:23 includes/new_filters.php:142
839
- #: includes/new_filters.php:248 includes/new_filters.php:353
840
- #: includes/new_filters.php:426
841
- msgid "Shortcode"
842
  msgstr ""
843
 
844
- #: templates/admin-settings.php:28
845
- msgid "SETUP WIZARD"
846
  msgstr ""
847
 
848
- #: templates/admin-settings.php:30
849
- msgid "RUN SETUP WIZARD"
 
850
  msgstr ""
851
 
852
- #: templates/admin-settings.php:32
853
- msgid "Run it to setup plugin options step by step"
854
  msgstr ""
855
 
856
- #: templates/admin-settings.php:37
857
- msgid "\"No Products\" message"
858
  msgstr ""
859
 
860
- #: templates/admin-settings.php:41
861
- msgid "Text that will be shown if no products found"
862
  msgstr ""
863
 
864
- #: templates/admin-settings.php:45
865
- msgid "Add position relative to products holder"
866
  msgstr ""
867
 
868
- #: templates/admin-settings.php:48
869
- msgid "Fix for correct displaying loading block"
870
  msgstr ""
871
 
872
- #: templates/admin-settings.php:52
873
- msgid "\"No Products\" class"
874
  msgstr ""
875
 
876
- #: templates/admin-settings.php:56
877
- msgid "Add class and use it to style \"No Products\" box"
 
 
878
  msgstr ""
879
 
880
- #: templates/admin-settings.php:60 includes/wizard.php:67
881
- msgid "Get selectors automatically (BETA)"
 
882
  msgstr ""
883
 
884
- #: templates/admin-settings.php:64 includes/wizard.php:74
885
- msgid "Please do not use it on live sites. If something went wrong write us."
886
  msgstr ""
887
 
888
- #: templates/admin-settings.php:69
889
- msgid "Products selector"
 
890
  msgstr ""
891
 
892
- #: templates/admin-settings.php:73 templates/admin-settings.php:105
893
- msgid ""
894
- "Selector for tag that is holding products. Don't change this if you don't "
895
- "know what it is"
 
896
  msgstr ""
897
 
898
- #: templates/admin-settings.php:77 includes/wizard.php:95
899
- msgid "Product count selector"
 
900
  msgstr ""
901
 
902
- #: templates/admin-settings.php:81
903
- msgid ""
904
- "Selector for tag with product result count(\"Showing 1–8 of 61 results\"). "
905
- "Don't change this if you don't know what it is"
906
  msgstr ""
907
 
908
- #: templates/admin-settings.php:84
909
- msgid "Remove product count"
 
910
  msgstr ""
911
 
912
- #: templates/admin-settings.php:89 includes/wizard.php:103
913
- msgid "Product order by selector"
914
  msgstr ""
915
 
916
- #: templates/admin-settings.php:93
917
- msgid ""
918
- "Selector for order by form with drop down menu. Don't change this if you "
919
- "don't know what it is"
920
  msgstr ""
921
 
922
- #: templates/admin-settings.php:96
923
- msgid "Remove order by drop down menu"
 
 
 
 
924
  msgstr ""
925
 
926
- #: templates/admin-settings.php:101
927
- msgid "Products pagination selector"
928
  msgstr ""
929
 
930
- #: templates/admin-settings.php:108
931
- msgid "Remove pagination"
932
  msgstr ""
933
 
934
- #: templates/admin-settings.php:113
935
- msgid "Products Per Page"
 
 
 
936
  msgstr ""
937
 
938
- #: templates/admin-settings.php:122
939
- msgid ""
940
- "Attribute Values count that will be displayed. Other values will be hidden "
941
- "and can be displayed by pressing the button. Option <strong>Hide \"Show/Hide "
942
- "value(s)\" button</strong> must be disabled"
943
  msgstr ""
944
 
945
- #: templates/admin-settings.php:126
946
- msgid "Sorting control"
947
  msgstr ""
948
 
949
- #: templates/admin-settings.php:129
950
- msgid "Take control over WooCommerce's sorting selectbox?"
951
  msgstr ""
952
 
953
- #: templates/admin-settings.php:133
954
- msgid "SEO friendly urls"
 
 
955
  msgstr ""
956
 
957
- #: templates/admin-settings.php:136
958
- msgid ""
959
- "If this option is on url will be changed when filter is selected/changed"
960
  msgstr ""
961
 
962
- #: templates/admin-settings.php:138
963
- msgid "Use slug in URL"
 
964
  msgstr ""
965
 
966
- #: templates/admin-settings.php:140
967
- msgid "Nice URL"
 
968
  msgstr ""
969
 
970
- #: templates/admin-settings.php:141
971
- msgid ""
972
- "Works only with SEO friendly urls. WordPress permalinks must be set to Post "
973
- "name(Custom structure: /%postname%/ )"
974
  msgstr ""
975
 
976
- #: templates/admin-settings.php:145
977
- msgid "Turn all filters off"
978
  msgstr ""
979
 
980
- #: templates/admin-settings.php:148
981
- msgid ""
982
- "If you want to hide filters without losing current configuration just turn "
983
- "them off"
984
  msgstr ""
985
 
986
- #: templates/admin-settings.php:152 includes/wizard.php:318
987
- msgid "Show all values"
988
  msgstr ""
989
 
990
- #: templates/admin-settings.php:155 includes/wizard.php:322
991
- msgid "Check if you want to show not used attribute values too"
992
  msgstr ""
993
 
994
- #: templates/admin-settings.php:159 includes/wizard.php:332
995
- msgid "Hide values"
996
  msgstr ""
997
 
998
- #: templates/admin-settings.php:162 includes/wizard.php:336
999
- msgid "Hide values without products"
1000
  msgstr ""
1001
 
1002
- #: templates/admin-settings.php:164 includes/wizard.php:340
1003
- msgid "Hide selected values"
1004
  msgstr ""
1005
 
1006
- #: templates/admin-settings.php:166 includes/wizard.php:344
1007
- msgid "Hide empty widget"
1008
  msgstr ""
1009
 
1010
- #: templates/admin-settings.php:168 includes/wizard.php:348
1011
- msgid "Hide \"Show/Hide value(s)\" button"
1012
  msgstr ""
1013
 
1014
- #: templates/admin-settings.php:172 includes/wizard.php:419
1015
- msgid "Jump to first page"
1016
  msgstr ""
1017
 
1018
- #: templates/admin-settings.php:175
1019
- msgid "Check if you want load first page after filters change"
1020
  msgstr ""
1021
 
1022
- #: templates/admin-settings.php:179 includes/wizard.php:428
1023
- msgid "Scroll page to the top"
1024
  msgstr ""
1025
 
1026
- #: templates/admin-settings.php:182 includes/wizard.php:432
1027
- msgid "Check if you want scroll page to the top of shop after filters change"
1028
  msgstr ""
1029
 
1030
- #: templates/admin-settings.php:186
1031
- msgid "px from products top."
1032
  msgstr ""
1033
 
1034
- #: templates/admin-settings.php:187
1035
- msgid "Use this to fix top scroll."
 
 
1036
  msgstr ""
1037
 
1038
- #: templates/admin-settings.php:191 includes/wizard.php:353
1039
- msgid "Reload amount of products"
1040
  msgstr ""
1041
 
1042
- #: templates/admin-settings.php:194 includes/wizard.php:357
1043
- msgid "Use filters on products count display"
1044
  msgstr ""
1045
 
1046
- #: templates/admin-settings.php:195
1047
- msgid ""
1048
- "Can slow down page load and filtering speed. Also do not use it with more "
1049
- "then 5000 products."
1050
  msgstr ""
1051
 
1052
- #: templates/admin-settings.php:199 includes/wizard.php:437
1053
- msgid "Show selected filters"
 
1054
  msgstr ""
1055
 
1056
- #: templates/admin-settings.php:202
1057
- msgid "Show selected filters above products"
1058
  msgstr ""
1059
 
1060
- #: templates/admin-settings.php:206 includes/wizard.php:446
1061
- msgid "Display products"
 
1062
  msgstr ""
1063
 
1064
- #: templates/admin-settings.php:209 includes/wizard.php:450
1065
- msgid ""
1066
- "Display always products when filters selected. Use this when you have "
1067
- "categories and subcategories on shop pages, but you want to display products "
1068
- "on filtering"
1069
  msgstr ""
1070
 
1071
- #: templates/admin-settings.php:213
1072
- msgid "Data cache"
1073
  msgstr ""
1074
 
1075
- #: templates/admin-settings.php:217
1076
- msgid "WordPress Cache"
1077
  msgstr ""
1078
 
1079
- #: templates/admin-settings.php:218
1080
- msgid "Persistent Cache Plugins"
1081
  msgstr ""
1082
 
1083
- #: templates/admin-settings.php:223
1084
- msgid "Show products count before filtering"
 
1085
  msgstr ""
1086
 
1087
- #: templates/admin-settings.php:226
1088
- msgid "Show products count before filtering, when using update button"
1089
  msgstr ""
1090
 
1091
- #: templates/admin-settings.php:228
1092
- msgid "Text that means products"
1093
  msgstr ""
1094
 
1095
- #: templates/admin-settings.php:232
1096
- msgid "Text for show button"
1097
  msgstr ""
1098
 
1099
- #: templates/admin-settings.php:238
1100
- msgid "Template ajax load fix"
1101
  msgstr ""
1102
 
1103
- #: templates/admin-settings.php:241
1104
- msgid "Use all plugins on ajax load(can slow down products loading)"
1105
  msgstr ""
1106
 
1107
- #: templates/admin-settings.php:243
1108
- msgid "Use"
1109
  msgstr ""
1110
 
1111
- #: templates/admin-settings.php:245
1112
- msgid "PHP"
1113
  msgstr ""
1114
 
1115
- #: templates/admin-settings.php:246
1116
- msgid "JavaScript (jQuery)"
1117
  msgstr ""
1118
 
1119
- #: templates/admin-settings.php:249
1120
- msgid "for fix"
1121
  msgstr ""
1122
 
1123
- #: templates/admin-settings.php:252
1124
- msgid ""
1125
- "PHP - loads the full page and cuts products from the page via PHP. Slow down "
1126
- "server, but users take only needed information."
1127
  msgstr ""
1128
 
1129
- #: templates/admin-settings.php:256
1130
- msgid ""
1131
- "JavaScript (jQuery) - loads the full page and copy all products from the "
1132
- "loaded page to the current page using JQuery. Slow down server and users "
1133
- "take the full page. Works good with different themes and plugins."
1134
  msgstr ""
1135
 
1136
- #: templates/admin-settings.php:260
1137
- msgid ""
1138
- "JavaScript - loads the full page and cuts products from the page via "
1139
- "JavaScript. Slow down server and users take the full page. Works like PHP "
1140
- "method."
1141
  msgstr ""
1142
 
1143
- #: templates/admin-settings.php:262
1144
- msgid "Some features work only with JavaScript (jQuery) fix"
1145
  msgstr ""
1146
 
1147
- #: templates/admin-settings.php:267
1148
- msgid "Old slider compatibility"
1149
  msgstr ""
1150
 
1151
- #: templates/admin-settings.php:270
1152
- msgid ""
1153
- "Slow down filtering with sliders. Enable it only if you have some problem "
1154
- "with slider filters"
1155
  msgstr ""
1156
 
1157
- #: templates/admin-settings.php:274
1158
- msgid "Display styles only for pages with filters"
1159
  msgstr ""
1160
 
1161
- #: templates/admin-settings.php:277
1162
- msgid "On some sites it can cause some visual problem on page loads"
1163
  msgstr ""
1164
 
1165
- #: templates/admin-settings.php:281
1166
- msgid "Product per row fix"
1167
  msgstr ""
1168
 
1169
- #: templates/admin-settings.php:285
1170
- msgid "Change this only if after filtering count of products per row changes."
1171
  msgstr ""
1172
 
1173
- #: templates/admin-settings.php:307
1174
- msgid "Fix for sites with AJAX"
1175
  msgstr ""
1176
 
1177
- #: templates/admin-settings.php:310
1178
- msgid "Add JavaScript files to all pages."
1179
  msgstr ""
1180
 
1181
- #: templates/admin-settings.php:314 includes/wizard.php:455
1182
- msgid "Search page fix"
1183
  msgstr ""
1184
 
1185
- #: templates/admin-settings.php:317
1186
- msgid "Disable redirection, when search page return only one product"
1187
  msgstr ""
1188
 
1189
- #: templates/admin-settings.php:321
1190
- msgid "Use Tags like custom taxonomy"
1191
  msgstr ""
1192
 
1193
- #: templates/admin-settings.php:324
1194
- msgid "Try to enable this if widget with tags didn't work."
1195
  msgstr ""
1196
 
1197
- #: templates/admin-settings.php:328
1198
- msgid "Disable loading Font Awesome on front end"
1199
  msgstr ""
1200
 
1201
- #: templates/admin-settings.php:331
1202
- msgid ""
1203
- "Don't loading css file for Font Awesome on site front end. Use this only if "
1204
- "you doesn't uses Font Awesome icons in widgets or you have Font Awesome in "
1205
- "your theme."
1206
  msgstr ""
1207
 
1208
- #: templates/admin-settings.php:335
1209
- msgid "Plugin key"
1210
  msgstr ""
1211
 
1212
- #: templates/admin-settings.php:339
1213
- msgid "Key for plugin from BeRocket.com"
1214
  msgstr ""
1215
 
1216
- #: templates/admin-settings.php:347 templates/admin-settings.php:1184
1217
- #: templates/admin-settings.php:1215 templates/admin-settings.php:1236
1218
- msgid "Save Changes"
1219
  msgstr ""
1220
 
1221
- #: templates/admin-settings.php:355 templates/admin-settings.php:370
1222
- msgid "Select All"
1223
  msgstr ""
1224
 
1225
- #: templates/admin-settings.php:358 templates/admin-settings.php:373
1226
- #: templates/admin-settings.php:495
1227
- msgid "Element"
1228
  msgstr ""
1229
 
1230
- #: templates/admin-settings.php:360 templates/admin-settings.php:375
1231
- msgid "Font Family"
1232
  msgstr ""
1233
 
1234
- #: templates/admin-settings.php:361 templates/admin-settings.php:376
1235
- msgid "Font-Weight"
1236
  msgstr ""
1237
 
1238
- #: templates/admin-settings.php:361 templates/admin-settings.php:376
1239
- msgid "(depends on font)"
1240
  msgstr ""
1241
 
1242
- #: templates/admin-settings.php:362 templates/admin-settings.php:377
1243
- msgid "Font-Size"
1244
  msgstr ""
1245
 
1246
- #: templates/admin-settings.php:363 templates/admin-settings.php:378
1247
- #: templates/admin-settings.php:503
1248
- msgid "Theme"
1249
  msgstr ""
1250
 
1251
- #: templates/admin-settings.php:382 templates/admin-settings.php:973
1252
- #: templates/admin-settings.php:1042 templates/admin-settings.php:1115
1253
- msgid "Set all to theme default"
1254
  msgstr ""
1255
 
1256
- #: templates/admin-settings.php:395
1257
- msgid "Select Element"
1258
  msgstr ""
1259
 
1260
- #: templates/admin-settings.php:406 templates/admin-settings.php:418
1261
- #: templates/admin-settings.php:459 templates/admin-settings.php:466
1262
- #: templates/admin-settings.php:481
1263
- msgid "N/A"
1264
  msgstr ""
1265
 
1266
- #: templates/admin-settings.php:412 templates/admin-settings.php:427
1267
- #: templates/admin-settings.php:464 templates/admin-settings.php:515
1268
- #: templates/admin-settings.php:518 templates/admin-settings.php:521
1269
- #: templates/admin-settings.php:771 templates/admin-settings.php:774
1270
- #: templates/admin-settings.php:777 templates/admin-settings.php:1008
1271
- #: templates/admin-settings.php:1016 templates/admin-settings.php:1019
1272
- #: templates/admin-settings.php:1032 templates/admin-settings.php:1035
1273
- #: templates/admin-settings.php:1077 templates/admin-settings.php:1085
1274
- #: templates/admin-settings.php:1098
1275
- msgid "Theme Default"
1276
  msgstr ""
1277
 
1278
- #: templates/admin-settings.php:472
1279
- msgid "Without Theme"
1280
  msgstr ""
1281
 
1282
- #: templates/admin-settings.php:493
1283
- msgid "Checkbox / Radio"
1284
  msgstr ""
1285
 
1286
- #: templates/admin-settings.php:496 templates/admin-settings.php:1053
1287
- msgid "Border color"
1288
  msgstr ""
1289
 
1290
- #: templates/admin-settings.php:497
1291
- msgid "Border width"
1292
  msgstr ""
1293
 
1294
- #: templates/admin-settings.php:498
1295
- msgid "Border radius"
1296
  msgstr ""
1297
 
1298
- #: templates/admin-settings.php:499
1299
- msgid "Size"
1300
  msgstr ""
1301
 
1302
- #: templates/admin-settings.php:500 templates/admin-settings.php:1055
1303
- msgid "Font color"
1304
  msgstr ""
1305
 
1306
- #: templates/admin-settings.php:501
1307
- msgid "Background"
1308
  msgstr ""
1309
 
1310
- #: templates/admin-settings.php:502
1311
- msgid "Icon"
1312
  msgstr ""
1313
 
1314
- #: templates/admin-settings.php:981
1315
- msgid "Slider"
1316
  msgstr ""
1317
 
1318
- #: templates/admin-settings.php:983
1319
- msgid "Line color"
 
1320
  msgstr ""
1321
 
1322
- #: templates/admin-settings.php:984
1323
- msgid "Back line color"
 
1324
  msgstr ""
1325
 
1326
- #: templates/admin-settings.php:985
1327
- msgid "Line height"
1328
  msgstr ""
1329
 
1330
- #: templates/admin-settings.php:986
1331
- msgid "Line border color"
1332
  msgstr ""
1333
 
1334
- #: templates/admin-settings.php:987
1335
- msgid "Line border width"
1336
  msgstr ""
1337
 
1338
- #: templates/admin-settings.php:988
1339
- msgid "Button size"
1340
  msgstr ""
1341
 
1342
- #: templates/admin-settings.php:989
1343
- msgid "Button color"
1344
  msgstr ""
1345
 
1346
- #: templates/admin-settings.php:990
1347
- msgid "Button border color"
1348
  msgstr ""
1349
 
1350
- #: templates/admin-settings.php:991
1351
- msgid "Button border width"
1352
  msgstr ""
1353
 
1354
- #: templates/admin-settings.php:992
1355
- msgid "Button border radius"
1356
  msgstr ""
1357
 
1358
- #: templates/admin-settings.php:1050
1359
- msgid "Product count description before filtering with Update button"
1360
  msgstr ""
1361
 
1362
- #: templates/admin-settings.php:1054
1363
- msgid "Font size"
1364
  msgstr ""
1365
 
1366
- #: templates/admin-settings.php:1056
1367
- msgid "Show button font size"
1368
  msgstr ""
1369
 
1370
- #: templates/admin-settings.php:1057
1371
- msgid "Show button font color"
1372
  msgstr ""
1373
 
1374
- #: templates/admin-settings.php:1058
1375
- msgid "Show button font color on mouse over"
1376
  msgstr ""
1377
 
1378
- #: templates/admin-settings.php:1059
1379
- msgid "Close button size"
1380
  msgstr ""
1381
 
1382
- #: templates/admin-settings.php:1060
1383
- msgid "Close button font color"
1384
  msgstr ""
1385
 
1386
- #: templates/admin-settings.php:1061
1387
- msgid "Close button font color on mouse over"
1388
  msgstr ""
1389
 
1390
- #: templates/admin-settings.php:1123
1391
- msgid "Loading products icon"
1392
  msgstr ""
1393
 
1394
- #: templates/admin-settings.php:1131
1395
- msgid "Text at load icon"
1396
  msgstr ""
1397
 
1398
- #: templates/admin-settings.php:1133
1399
- msgid "Above:"
1400
  msgstr ""
1401
 
1402
- #: templates/admin-settings.php:1136
1403
- msgid "Under:"
1404
  msgstr ""
1405
 
1406
- #: templates/admin-settings.php:1139
1407
- msgid "Before:"
 
 
1408
  msgstr ""
1409
 
1410
- #: templates/admin-settings.php:1142
1411
- msgid "After:"
 
 
1412
  msgstr ""
1413
 
1414
- #: templates/admin-settings.php:1148
1415
- msgid "Description show and hide"
 
1416
  msgstr ""
1417
 
1418
- #: templates/admin-settings.php:1150
1419
- msgid "Show on:"
1420
  msgstr ""
1421
 
1422
- #: templates/admin-settings.php:1152
1423
- msgid "Click"
1424
  msgstr ""
1425
 
1426
- #: templates/admin-settings.php:1153
1427
- msgid "Mouse over icon"
1428
  msgstr ""
1429
 
1430
- #: templates/admin-settings.php:1157
1431
- msgid "Hide on:"
1432
  msgstr ""
1433
 
1434
- #: templates/admin-settings.php:1159
1435
- msgid "Click anywhere"
1436
  msgstr ""
1437
 
1438
- #: templates/admin-settings.php:1160
1439
- msgid "Mouse out of icon"
1440
  msgstr ""
1441
 
1442
- #: templates/admin-settings.php:1165
1443
- msgid "Product count style"
 
1444
  msgstr ""
1445
 
1446
- #: templates/admin-settings.php:1168
1447
- msgid "4"
1448
  msgstr ""
1449
 
1450
- #: templates/admin-settings.php:1169
1451
- msgid "(4)"
 
1452
  msgstr ""
1453
 
1454
- #: templates/admin-settings.php:1170
1455
- msgid "[4]"
 
 
1456
  msgstr ""
1457
 
1458
- #: templates/admin-settings.php:1174
1459
- msgid "Position:"
 
 
1460
  msgstr ""
1461
 
1462
- #: templates/admin-settings.php:1176
1463
- msgid "Normal"
 
 
 
1464
  msgstr ""
1465
 
1466
- #: templates/admin-settings.php:1177
1467
- msgid "Right"
 
 
 
 
 
 
 
 
1468
  msgstr ""
1469
 
1470
- #: templates/admin-settings.php:1178
1471
- msgid "Right from name"
 
 
1472
  msgstr ""
1473
 
1474
- #: templates/admin-settings.php:1190
1475
- msgid "Before Update:"
1476
  msgstr ""
1477
 
1478
- #: templates/admin-settings.php:1194
1479
- msgid "If you want to add own actions on filter activation, eg: alert('1');"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1480
  msgstr ""
1481
 
1482
- #: templates/admin-settings.php:1198
1483
- msgid "On Update:"
1484
  msgstr ""
1485
 
1486
- #: templates/admin-settings.php:1202
1487
- msgid ""
1488
- "If you want to add own actions right on products update. You can manipulate "
1489
- "data here, try: data.products = 'Ha!';"
1490
  msgstr ""
1491
 
1492
- #: templates/admin-settings.php:1206
1493
- msgid "After Update:"
1494
  msgstr ""
1495
 
1496
- #: templates/admin-settings.php:1210
1497
- msgid "If you want to add own actions after products updated, eg: alert('1');"
1498
  msgstr ""
1499
 
1500
- #: templates/admin-settings.php:1221
1501
- msgid "User custom CSS style:"
1502
  msgstr ""
1503
 
1504
- #: templates/admin-settings.php:1227
1505
- msgid "Definitions:"
1506
  msgstr ""
1507
 
1508
- #: templates/admin-settings.php:1229
1509
- msgid "widget block."
1510
  msgstr ""
1511
 
1512
- #: templates/admin-settings.php:1230
1513
- msgid "widget title."
1514
  msgstr ""
1515
 
1516
- #: templates/admin-settings.php:1341
1517
- msgid "Text before price"
1518
  msgstr ""
1519
 
1520
- #: templates/admin-settings.php:1345
1521
- msgid "Text after price"
1522
  msgstr ""
1523
 
1524
- #: templates/admin-settings.php:1371
1525
- msgid "Product Category"
1526
  msgstr ""
1527
 
1528
- #: templates/admin-settings.php:1450
1529
- msgid "Display value with color box?"
1530
  msgstr ""
1531
 
1532
- #: templates/admin-settings.php:1802 templates/admin.php:614
1533
- msgid "All"
1534
  msgstr ""
1535
 
1536
- #: templates/admin-settings.php:1803 templates/admin.php:615
1537
- msgid "Logged In only"
1538
  msgstr ""
1539
 
1540
- #: templates/admin-settings.php:1804 templates/admin.php:616
1541
- msgid "Not Logged In only"
1542
  msgstr ""
1543
 
1544
- #: templates/admin-settings.php:1811 templates/admin.php:623
1545
- msgid "include subcats?"
1546
  msgstr ""
1547
 
1548
- #: templates/admin-settings.php:1830 templates/admin.php:651
1549
- msgid "Display widget pages"
 
1550
  msgstr ""
1551
 
1552
- #: templates/admin-settings.php:1835 templates/admin.php:657
1553
- #: includes/new_filters.php:502
1554
- msgid "shop"
1555
  msgstr ""
1556
 
1557
- #: templates/admin-settings.php:1839 templates/admin.php:661
1558
- #: includes/new_filters.php:503
1559
- msgid "product category"
1560
  msgstr ""
1561
 
1562
- #: templates/admin-settings.php:1843 templates/admin.php:665
1563
- #: includes/new_filters.php:504
1564
- msgid "product attributes"
1565
  msgstr ""
1566
 
1567
- #: templates/admin-settings.php:1847 templates/admin.php:669
1568
- #: includes/new_filters.php:505
1569
- msgid "product tags"
1570
  msgstr ""
1571
 
1572
- #: templates/admin-settings.php:1901
1573
- msgid "Get Shortcode"
1574
  msgstr ""
1575
 
1576
- #: templates/select.php:28 templates/select.php:71
1577
- msgid "Any"
1578
  msgstr ""
1579
 
1580
- #: templates/admin.php:2
1581
- msgid ""
1582
- "Widget will be removed in future please use <strong>AAPF Filters "
1583
- "Group</strong> instead."
1584
  msgstr ""
1585
 
1586
- #: templates/admin.php:3
1587
- msgid "Create new filter from this one"
1588
  msgstr ""
1589
 
1590
- #: templates/admin.php:4
1591
- msgid ""
1592
- "<strong>IMPORTANT</strong> new filter will be without page/category "
1593
- "limitation."
1594
  msgstr ""
1595
 
1596
- #: templates/admin.php:5
1597
- #, php-format
1598
- msgid "You can add filter to %s that has limitation"
1599
  msgstr ""
1600
 
1601
- #: templates/admin.php:5
1602
- msgid "Filters group"
1603
  msgstr ""
1604
 
1605
- #: templates/admin.php:673 includes/new_filters.php:506
1606
- msgid "single product"
1607
  msgstr ""
1608
 
1609
- #: includes/new_filters.php:27 includes/new_filters.php:28
1610
- msgid "Product Filter"
1611
  msgstr ""
1612
 
1613
- #: includes/new_filters.php:29
1614
- msgctxt "Admin menu name"
1615
- msgid "Product Filters"
1616
  msgstr ""
1617
 
1618
- #: includes/new_filters.php:30
1619
- msgid "Add Filter"
1620
  msgstr ""
1621
 
1622
- #: includes/new_filters.php:31
1623
- msgid "Add New Filter"
1624
  msgstr ""
1625
 
1626
- #: includes/new_filters.php:33
1627
- msgid "Edit Filter"
1628
  msgstr ""
1629
 
1630
- #: includes/new_filters.php:34
1631
- msgid "New Filter"
1632
  msgstr ""
1633
 
1634
- #: includes/new_filters.php:35
1635
- msgid "View Filters"
1636
  msgstr ""
1637
 
1638
- #: includes/new_filters.php:36
1639
- msgid "View Filter"
1640
  msgstr ""
1641
 
1642
- #: includes/new_filters.php:37
1643
- msgid "Search Product Filters"
1644
  msgstr ""
1645
 
1646
- #: includes/new_filters.php:38
1647
- msgid "No Product Filters found"
1648
  msgstr ""
1649
 
1650
- #: includes/new_filters.php:39
1651
- msgid "No Product Filters found in trash"
1652
  msgstr ""
1653
 
1654
- #: includes/new_filters.php:41
1655
- msgid "This is where you can add Product Filters."
1656
  msgstr ""
1657
 
1658
- #: includes/new_filters.php:58 includes/new_filters.php:59
1659
- msgid "Product Filter Group"
1660
  msgstr ""
1661
 
1662
- #: includes/new_filters.php:60
1663
- msgctxt "Admin menu name"
1664
- msgid "Product Filter Groups"
1665
  msgstr ""
1666
 
1667
- #: includes/new_filters.php:61
1668
- msgid "Add Filter Group"
1669
  msgstr ""
1670
 
1671
- #: includes/new_filters.php:62
1672
- msgid "Add New Filter Group"
1673
  msgstr ""
1674
 
1675
- #: includes/new_filters.php:64
1676
- msgid "Edit Filter Group"
1677
  msgstr ""
1678
 
1679
- #: includes/new_filters.php:65
1680
- msgid "New Filter Group"
1681
  msgstr ""
1682
 
1683
- #: includes/new_filters.php:66
1684
- msgid "View Filter Groups"
1685
  msgstr ""
1686
 
1687
- #: includes/new_filters.php:67
1688
- msgid "View Filter Group"
1689
  msgstr ""
1690
 
1691
- #: includes/new_filters.php:68
1692
- msgid "Search Product Filter Groups"
1693
  msgstr ""
1694
 
1695
- #: includes/new_filters.php:69
1696
- msgid "No Product Filter Groups found"
 
 
 
1697
  msgstr ""
1698
 
1699
- #: includes/new_filters.php:70
1700
- msgid "No Product Filter Groups found in trash"
1701
  msgstr ""
1702
 
1703
- #: includes/new_filters.php:72
1704
- msgid "This is where you can add Product Filter Groups."
1705
  msgstr ""
1706
 
1707
- #: includes/new_filters.php:140
1708
- msgid "Name"
1709
  msgstr ""
1710
 
1711
- #: includes/new_filters.php:141
1712
- msgid "Data"
 
1713
  msgstr ""
1714
 
1715
- #: includes/new_filters.php:163 includes/new_filters.php:381
1716
- msgid "Restore this item from the Trash"
 
1717
  msgstr ""
1718
 
1719
- #: includes/new_filters.php:163 includes/new_filters.php:381
1720
- msgid "Restore"
1721
  msgstr ""
1722
 
1723
- #: includes/new_filters.php:165 includes/new_filters.php:383
1724
- msgid "Move this item to the Trash"
1725
  msgstr ""
1726
 
1727
- #: includes/new_filters.php:165 includes/new_filters.php:383
1728
- msgid "Trash"
1729
  msgstr ""
1730
 
1731
- #: includes/new_filters.php:167 includes/new_filters.php:385
1732
- msgid "Delete this item permanently"
1733
  msgstr ""
1734
 
1735
- #: includes/new_filters.php:167 includes/new_filters.php:285
1736
- #: includes/new_filters.php:385
1737
- msgid "Delete Permanently"
1738
  msgstr ""
1739
 
1740
- #: includes/new_filters.php:193
1741
- msgid "Widget type: "
1742
  msgstr ""
1743
 
1744
- #: includes/new_filters.php:205 includes/new_filters.php:222
1745
- msgid "Attribute: "
 
 
1746
  msgstr ""
1747
 
1748
- #: includes/new_filters.php:207 includes/new_filters.php:231
1749
- msgid "Custom Taxonomy: "
1750
  msgstr ""
1751
 
1752
- #: includes/new_filters.php:247 includes/new_filters.php:425
1753
- msgid "Save content"
 
 
1754
  msgstr ""
1755
 
1756
- #: includes/new_filters.php:249
1757
- msgid "FAQ"
1758
  msgstr ""
1759
 
1760
- #: includes/new_filters.php:250 includes/new_filters.php:429
1761
- msgid "Product Filter settings"
 
 
1762
  msgstr ""
1763
 
1764
- #: includes/new_filters.php:255 includes/new_filters.php:434
1765
- msgid "You need save it to get shortcode"
1766
  msgstr ""
1767
 
1768
- #: includes/new_filters.php:287
1769
- msgid "Move to Trash"
 
 
1770
  msgstr ""
1771
 
1772
- #: includes/new_filters.php:297
1773
- msgid "Save"
1774
  msgstr ""
1775
 
1776
- #: includes/new_filters.php:297
1777
- msgid "Save/update notice"
 
 
1778
  msgstr ""
1779
 
1780
- #: includes/new_filters.php:351
1781
- msgid "Group Name"
 
1782
  msgstr ""
1783
 
1784
- #: includes/new_filters.php:352
1785
- msgid "Filters"
1786
  msgstr ""
1787
 
1788
- #: includes/new_filters.php:427
1789
- msgid "Information"
 
1790
  msgstr ""
1791
 
1792
- #: includes/new_filters.php:479
1793
- msgid "Equal"
1794
  msgstr ""
1795
 
1796
- #: includes/new_filters.php:480
1797
- msgid "Not equal"
1798
  msgstr ""
1799
 
1800
- #: includes/new_filters.php:483
1801
- msgid "Equal or less"
1802
  msgstr ""
1803
 
1804
- #: includes/new_filters.php:486
1805
- msgid "Equal or more"
1806
  msgstr ""
1807
 
1808
- #: includes/new_filters.php:547
1809
- msgid "Select attribute"
 
1810
  msgstr ""
1811
 
1812
- #: includes/new_widget.php:59
1813
- msgid "Manage groups"
 
 
1814
  msgstr ""
1815
 
1816
- #: includes/new_widget.php:62
1817
- msgid "Group"
1818
  msgstr ""
1819
 
1820
- #: includes/wizard.php:57
1821
- msgid "IMPORTANT"
 
 
1822
  msgstr ""
1823
 
1824
- #: includes/wizard.php:58
1825
- msgid ""
1826
- "Selectors can be different for each theme. Please setup correct selectors, "
1827
- "otherwise plugin can doesn't work or some features can work incorrect"
 
 
 
 
 
 
 
 
 
 
1828
  msgstr ""
1829
 
1830
- #: includes/wizard.php:59
1831
- msgid ""
1832
- "You can try to setup it via \"Auto-selectors\" and plugin will try get "
1833
- "selectors for your theme, this take a while."
1834
  msgstr ""
1835
 
1836
- #: includes/wizard.php:60
1837
- msgid ""
1838
- "Manually you can check selectors on your shop page or contact <strong>theme "
1839
- "author</strong> with question about it."
1840
  msgstr ""
1841
 
1842
- #: includes/wizard.php:61
1843
- msgid ""
1844
- "Also theme with Isotope/Masonry or any type of the image Lazy-Load required "
1845
- "custom JavaScript. Please contact your <strong>theme author</strong> to get "
1846
- "correct JavaScript code for it"
1847
  msgstr ""
1848
 
1849
- #: includes/wizard.php:62
1850
- msgid ""
1851
- "JavaScript for some theme you can find in <a href=\"http://berocket."
1852
- "com/docs/plugin/woocommerce-ajax-products-filter#theme_setup\" "
1853
- "target=\"_blank\">BeRocket Documentation</a>"
1854
  msgstr ""
1855
 
1856
- #: includes/wizard.php:111
1857
- msgid "Removed elements"
1858
  msgstr ""
1859
 
1860
- #: includes/wizard.php:113
1861
- msgid ""
1862
- "Select elements that your shop page doesn't have to prevent any errors with "
1863
- "it"
1864
  msgstr ""
1865
 
1866
- #: includes/wizard.php:117
1867
- msgid "Products count"
 
1868
  msgstr ""
1869
 
1870
- #: includes/wizard.php:122
1871
- msgid "Products order by drop down"
1872
  msgstr ""
1873
 
1874
- #: includes/wizard.php:127
1875
- msgid "Pagination"
1876
  msgstr ""
1877
 
1878
- #: includes/wizard.php:133
1879
- msgid "You need some custom JavaScript/CSS code?"
1880
  msgstr ""
1881
 
1882
- #: includes/wizard.php:135
1883
- msgid "User custom CSS style"
1884
  msgstr ""
1885
 
1886
- #: includes/wizard.php:137
1887
- msgid "JavaScript Before Products Update"
1888
  msgstr ""
1889
 
1890
- #: includes/wizard.php:139
1891
- msgid "JavaScript On Products Update"
1892
  msgstr ""
1893
 
1894
- #: includes/wizard.php:141
1895
- msgid "JavaScript After Products Update"
1896
  msgstr ""
1897
 
1898
- #: includes/wizard.php:158 includes/wizard.php:251 includes/wizard.php:392
1899
- #: includes/wizard.php:470
1900
- msgid "Next Step"
1901
  msgstr ""
1902
 
1903
- #: includes/wizard.php:187
1904
- msgid "SEO friendly URLs"
1905
  msgstr ""
1906
 
1907
- #: includes/wizard.php:190
1908
- msgid "Page URL will be changed after filtering."
1909
  msgstr ""
1910
 
1911
- #: includes/wizard.php:195
1912
- msgid "Without this option after page reload filter will be unselected"
1913
  msgstr ""
1914
 
1915
- #: includes/wizard.php:196
1916
- msgid "Also back button doesn't load previous selected filters"
1917
  msgstr ""
1918
 
1919
- #: includes/wizard.php:200
1920
- msgid "Use slug"
1921
  msgstr ""
1922
 
1923
- #: includes/wizard.php:203
1924
- msgid "Replace attribute values ID to Slug in SEO friendly URLs."
1925
  msgstr ""
1926
 
1927
- #: includes/wizard.php:208
1928
- msgid ""
1929
- "<strong>IMPORTANT</strong> Please check that Slug for all attribute values "
1930
- "without those symbols - _ +"
1931
  msgstr ""
1932
 
1933
- #: includes/wizard.php:212
1934
- msgid "Nice permalink URL"
1935
  msgstr ""
1936
 
1937
- #: includes/wizard.php:215
1938
- msgid "Use WordPress permalinks instead GET query"
1939
  msgstr ""
1940
 
1941
- #: includes/wizard.php:220
1942
- msgid ""
1943
- "<strong>IMPORTANT</strong> WordPress permalinks must be set to Post "
1944
- "name(Custom structure: /%postname%/ )"
1945
  msgstr ""
1946
 
1947
- #: includes/wizard.php:221
1948
- msgid ""
1949
- "Not working on any custom page(Generated with any page builder or with help "
1950
- "of shortcodes)"
1951
  msgstr ""
1952
 
1953
- #: includes/wizard.php:222
1954
- msgid "Not compatible with any other plugin that change WooCommerce permalinks"
1955
  msgstr ""
1956
 
1957
- #: includes/wizard.php:288
1958
- msgid "Presets"
1959
  msgstr ""
1960
 
1961
- #: includes/wizard.php:290
1962
- msgid "You can select some preset or setup each settings manually"
1963
  msgstr ""
1964
 
1965
- #: includes/wizard.php:292
1966
- msgid "Custom"
1967
  msgstr ""
1968
 
1969
- #: includes/wizard.php:293
1970
- msgid "Show all attributes (very fast)"
1971
  msgstr ""
1972
 
1973
- #: includes/wizard.php:294
1974
- msgid "Hide empty attributes by page (fast)"
1975
  msgstr ""
1976
 
1977
- #: includes/wizard.php:295
1978
- msgid "Hide empty attribute by filters (slow)"
1979
  msgstr ""
1980
 
1981
- #: includes/wizard.php:301
1982
- msgid "Show all attributes"
1983
  msgstr ""
1984
 
1985
- #: includes/wizard.php:302
1986
- msgid ""
1987
- "Display all attribute values, including attribute values without products, "
1988
- "but work realy fast. If you have a lot of products(2000 and more) then it "
1989
- "will be better solution. But check that all attribute values in your shop "
1990
- "has attribute"
1991
  msgstr ""
1992
 
1993
- #: includes/wizard.php:307
1994
- msgid "Hide empty attributes by page"
1995
  msgstr ""
1996
 
1997
- #: includes/wizard.php:308
1998
- msgid ""
1999
- "Display only attribute values with products, but do not check selected "
2000
- "filters. Any first selected filter will return products, but next filters "
2001
- "can return \"no products\" message"
2002
  msgstr ""
2003
 
2004
- #: includes/wizard.php:313
2005
- msgid "Hide empty attribute by filters"
2006
  msgstr ""
2007
 
2008
- #: includes/wizard.php:314
2009
- msgid ""
2010
- "Display only attribute values with products. Only attribute values with "
2011
- "products will be used, also after any filtering. But it work slow, because "
2012
- "recount products for each attribute. Can work slow on bad server and with a "
2013
- "lot of products"
2014
  msgstr ""
2015
 
2016
- #: includes/wizard.php:328
2017
- msgid ""
2018
- "Uses all attribute values in filters, uses also values without products for "
2019
- "your shop. Can fix some problems with displaying filters on pages"
2020
  msgstr ""
2021
 
2022
- #: includes/wizard.php:363
2023
- msgid ""
2024
- "Slow down site load speed, because uses additional query for each filter. "
2025
- "Replaces attribute values using selected filters to use correct count of "
2026
- "products for each value. \"Hide values without products\" option do not work "
2027
- "without this option. Also uses to display correct products count with "
2028
- "attribute values after filtering"
2029
  msgstr ""
2030
 
2031
- #: includes/wizard.php:423
2032
- msgid ""
2033
- "Load first page after any filter changes. Can fix some problem with \"no "
2034
- "products\" message after filtering"
2035
  msgstr ""
2036
 
2037
- #: includes/wizard.php:441
2038
- msgid ""
2039
- "Show selected filters above products. Also you can use widget to show "
2040
- "selected filters"
2041
  msgstr ""
2042
 
2043
- #: includes/wizard.php:459
2044
- msgid ""
2045
- "Disable redirection, when search page return only one product<br>Enable it "
2046
- "only if you will use filters on search page"
2047
  msgstr ""
2048
 
2049
- #: includes/wizard.php:494
2050
- msgid "Plugin ready to use"
2051
  msgstr ""
2052
 
2053
- #: includes/wizard.php:496
2054
- msgid "Widget"
2055
  msgstr ""
2056
 
2057
- #: includes/wizard.php:497
2058
- msgid "Now you can add widgets AJAX Product Filters to your side bar"
2059
  msgstr ""
2060
 
2061
- #: includes/wizard.php:498
2062
- msgid ""
2063
- "More information about widget options you can get on <a target=\"_blank\" "
2064
- "href=\"http://berocket.com/docs/plugin/woocommerce-ajax-products-"
2065
- "filter#widget\">BeRocket Documentation</a>"
2066
  msgstr ""
2067
 
2068
- #: includes/wizard.php:502
2069
- msgid "Open plugin settings"
2070
  msgstr ""
2071
 
2072
- #: includes/functions.php:52
2073
- msgid "BeRocket AJAX Product Filters Nice URL settings"
2074
  msgstr ""
2075
 
2076
- #: includes/functions.php:698
2077
- msgid "Widget Title"
2078
  msgstr ""
2079
 
2080
- #: includes/functions.php:710
2081
- msgid "Label(checkbox/radio)"
2082
  msgstr ""
2083
 
2084
- #: includes/functions.php:722
2085
- msgid "Select-box"
2086
  msgstr ""
2087
 
2088
- #: includes/functions.php:734
2089
- msgid "Slider Inputs"
2090
  msgstr ""
2091
 
2092
- #: includes/functions.php:746
2093
- msgid "Description Block"
2094
  msgstr ""
2095
 
2096
- #: includes/functions.php:758
2097
- msgid "Description Border"
2098
  msgstr ""
2099
 
2100
- #: includes/functions.php:770
2101
- msgid "Description Title Text"
2102
  msgstr ""
2103
 
2104
- #: includes/functions.php:782
2105
- msgid "Description Text"
2106
  msgstr ""
2107
 
2108
- #: includes/functions.php:794
2109
- msgid "Selected filters area text"
2110
  msgstr ""
2111
 
2112
- #: includes/functions.php:806
2113
- msgid "Selected filters mouse over text"
2114
  msgstr ""
2115
 
2116
- #: includes/functions.php:818
2117
- msgid "Selected filters link background"
2118
  msgstr ""
2119
 
2120
- #: includes/functions.php:830
2121
- msgid "Selected filters link border"
 
 
2122
  msgstr ""
2123
 
2124
- #: includes/functions.php:2126
2125
- msgid "Font awesome"
2126
  msgstr ""
2127
 
2128
- #: includes/functions.php:2131
2129
- msgid "Upload"
2130
  msgstr ""
2131
 
2132
- #: includes/widget.php:123
2133
- msgid "Add Filters to Products page"
2134
  msgstr ""
2135
 
2136
- #: includes/widget.php:129
2137
- msgid "AJAX Product Filters (Deprecated)"
 
2138
  msgstr ""
2139
 
2140
- #: includes/widget.php:615 includes/widget.php:2608 includes/widget.php:2857
2141
- msgid "In stock"
 
2142
  msgstr ""
2143
 
2144
- #: includes/widget.php:616 includes/widget.php:2609 includes/widget.php:2858
2145
- msgid "Out of stock"
2146
  msgstr ""
2147
 
2148
- #: includes/widget.php:624
2149
- msgid "On sale"
2150
  msgstr ""
2151
 
2152
- #: includes/widget.php:625
2153
- msgid "Not on sale"
2154
  msgstr ""
2155
 
2156
- #: includes/widget.php:634
2157
- msgid "1 star"
2158
  msgstr ""
2159
 
2160
- #: includes/widget.php:634
2161
- msgid ""
2162
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-"
2163
- "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
2164
  msgstr ""
2165
 
2166
- #: includes/widget.php:637
2167
- msgid "2 stars"
2168
  msgstr ""
2169
 
2170
- #: includes/widget.php:637
2171
  msgid ""
2172
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2173
- "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
 
2174
  msgstr ""
2175
 
2176
- #: includes/widget.php:640
2177
- msgid "3 stars"
 
 
2178
  msgstr ""
2179
 
2180
- #: includes/widget.php:640
 
2181
  msgid ""
2182
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2183
- "star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
 
2184
  msgstr ""
2185
 
2186
- #: includes/widget.php:643
2187
- msgid "4 stars"
 
 
2188
  msgstr ""
2189
 
2190
- #: includes/widget.php:643
2191
- msgid ""
2192
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2193
- "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i>"
2194
  msgstr ""
2195
 
2196
- #: includes/widget.php:646
2197
- msgid "5 stars"
2198
  msgstr ""
2199
 
2200
- #: includes/widget.php:646
2201
- msgid ""
2202
- "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2203
- "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i>"
2204
  msgstr ""
2205
 
2206
- #. Name of the plugin
2207
- msgid "WooCommerce AJAX Products Filter"
2208
  msgstr ""
2209
 
2210
  #. Description of the plugin
@@ -2212,13 +2517,13 @@ msgid "Unlimited AJAX products filters to make your shop perfect"
2212
  msgstr ""
2213
 
2214
  #. URI of the plugin
2215
- msgid "http://berocket.com/product/woocommerce-ajax-products-filter"
2216
- msgstr ""
2217
-
2218
- #. Author of the plugin
2219
- msgid "BeRocket"
2220
  msgstr ""
2221
 
2222
  #. Author URI of the plugin
2223
- msgid "http://berocket.com"
 
 
2224
  msgstr ""
3
  msgstr ""
4
  "Project-Id-Version: WooCommerce AJAX Products Filter\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2019-10-30 12:54+0000\n"
7
  "POT-Revision-Date: Wed Jun 29 2016 09:22:13 GMT+0300 (EEST)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: \n"
12
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
21
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
+ "X-Generator: Loco https://localise.biz/"
25
 
26
+ #. Name of the plugin
27
+ #: main.php:61
28
+ msgid "WooCommerce AJAX Products Filter"
29
  msgstr ""
30
 
31
+ #: main.php:62
32
+ msgid "Product Filters"
33
  msgstr ""
34
 
35
+ #: main.php:72 main.php:1456
36
+ msgid "There are no products meeting your criteria"
37
  msgstr ""
38
 
39
+ #: main.php:322
40
+ msgid ""
41
+ "<strong>Please update all BeRocket plugins to the most recent version. "
42
+ "WooCommerce AJAX Products Filter is not working correctly with older "
43
+ "versions.</strong>"
44
  msgstr ""
45
 
46
+ #: main.php:386
47
+ msgid "General"
48
  msgstr ""
49
 
50
+ #: main.php:390
51
+ msgid "Elements"
52
  msgstr ""
53
 
54
+ #: main.php:394
55
+ msgid "Selectors"
56
  msgstr ""
57
 
58
+ #: main.php:398
59
+ msgid "SEO"
 
60
  msgstr ""
61
 
62
+ #: main.php:402
63
+ msgid "Advanced"
64
  msgstr ""
65
 
66
+ #: main.php:406
67
+ msgid "Design"
68
  msgstr ""
69
 
70
+ #: main.php:410
71
+ msgid "JavaScript/CSS"
72
  msgstr ""
73
 
74
+ #: main.php:415 includes/custom_post.php:645
75
+ msgid "Filters"
76
  msgstr ""
77
 
78
+ #: main.php:420
79
+ msgid "License"
80
  msgstr ""
81
 
82
+ #: main.php:424
83
+ msgid "Addons"
84
  msgstr ""
85
 
86
+ #: main.php:434
87
+ msgid "\"No Products\" message"
88
  msgstr ""
89
 
90
+ #: main.php:440
91
+ msgid "Products Per Page"
92
  msgstr ""
93
 
94
+ #: main.php:446 templates/filter_post.php:373
95
+ msgid "Attribute Values count"
96
  msgstr ""
97
 
98
+ #: main.php:450
99
+ msgid ""
100
+ "Attribute Values count that will be displayed. Other values will be hidden "
101
+ "and can be displayed by pressing the button. Option <strong>Hide \"Show/Hide "
102
+ "value(s)\" button</strong> must be disabled"
103
  msgstr ""
104
 
105
+ #: main.php:453
106
+ msgid "Sorting control"
 
107
  msgstr ""
108
 
109
+ #: main.php:457
110
+ msgid "Take control over WooCommerce's sorting selectbox?"
 
 
 
111
  msgstr ""
112
 
113
+ #: main.php:460
114
+ msgid "Hide values"
115
  msgstr ""
116
 
117
+ #: main.php:466
118
+ msgid "Hide values without products"
 
119
  msgstr ""
120
 
121
+ #: main.php:472
122
+ msgid "Hide selected values"
 
 
123
  msgstr ""
124
 
125
+ #: main.php:478
126
+ msgid "Hide empty widget"
 
 
127
  msgstr ""
128
 
129
+ #: main.php:483
130
+ msgid "Jump to first page"
 
 
131
  msgstr ""
132
 
133
+ #: main.php:487
134
+ msgid "Check if you want load first page after filters change"
 
 
135
  msgstr ""
136
 
137
+ #: main.php:490
138
+ msgid "Scroll page to the top"
 
 
139
  msgstr ""
140
 
141
+ #: main.php:493 main.php:544 main.php:705
142
+ msgid "Selected filters position"
 
 
143
  msgstr ""
144
 
145
+ #: main.php:498 templates/filter_post.php:650 includes/paid.php:84
146
+ msgid "Disable"
147
  msgstr ""
148
 
149
+ #: main.php:499
150
+ msgid "Mobile and Desktop"
151
  msgstr ""
152
 
153
+ #: main.php:500 includes/custom_post.php:299 includes/custom_post.php:611
154
+ msgid "Mobile"
155
  msgstr ""
156
 
157
+ #: main.php:501 includes/custom_post.php:307 includes/custom_post.php:619
158
+ msgid "Desktop"
159
  msgstr ""
160
 
161
+ #: main.php:510
162
+ msgid "px from products top."
163
  msgstr ""
164
 
165
+ #: main.php:510
166
+ msgid "Use this to fix top scroll."
167
  msgstr ""
168
 
169
+ #: main.php:515
170
+ msgid "Select2"
171
  msgstr ""
172
 
173
+ #: main.php:522
174
+ msgid "Use Select2 script for dropdown menu"
175
  msgstr ""
176
 
177
+ #: main.php:529
178
+ msgid ""
179
+ "Fixed CSS styles for Select2 (do not enable if Select2 work correct. Option "
180
+ "can break Select2 in other plugins or themes)"
181
  msgstr ""
182
 
183
+ #: main.php:534
184
+ msgid "Reload amount of products"
185
  msgstr ""
186
 
187
+ #: main.php:539
188
+ msgid "Use filters on products count display"
 
 
189
  msgstr ""
190
 
191
+ #: main.php:539
192
+ msgid ""
193
+ "Can slow down page load and filtering speed. Also do not use it with more "
194
+ "then 5000 products."
195
  msgstr ""
196
 
197
+ #: main.php:548
198
+ msgid "WooCommerce Description(in header)"
 
199
  msgstr ""
200
 
201
+ #: main.php:549
202
+ msgid "WooCommerce Before Shop Loop"
 
 
203
  msgstr ""
204
 
205
+ #: main.php:550
206
+ msgid "WooCommerce After Shop Loop"
 
 
 
 
 
 
207
  msgstr ""
208
 
209
+ #: main.php:555
210
+ msgid "Show selected filters"
 
211
  msgstr ""
212
 
213
+ #: main.php:562
214
+ msgid "Show selected filters above products"
 
215
  msgstr ""
216
 
217
+ #: main.php:569
218
+ msgid ""
219
+ "Hide selected filters area if nothing selected(affect only area above "
220
+ "products)"
 
221
  msgstr ""
222
 
223
+ #: main.php:580
224
+ msgid "Products selector"
 
 
225
  msgstr ""
226
 
227
+ #: main.php:585 main.php:630
228
+ msgid ""
229
+ "Selector for tag that is holding products. Don't change this if you don't "
230
+ "know what it is"
231
  msgstr ""
232
 
233
+ #: main.php:588
234
+ msgid "Product count selector"
 
235
  msgstr ""
236
 
237
+ #: main.php:595
238
+ msgid ""
239
+ "Selector for tag with product result count(\"Showing 1–8 of 61 results\"). "
240
+ "Don't change this if you don't know what it is"
241
  msgstr ""
242
 
243
+ #: main.php:601
244
+ msgid "Enable if page doesn't have product count block"
 
245
  msgstr ""
246
 
247
+ #: main.php:606
248
+ msgid "Product order by selector"
 
 
249
  msgstr ""
250
 
251
+ #: main.php:612
252
+ msgid ""
253
+ "Selector for order by form with drop down menu. Don't change this if you "
254
+ "don't know what it is"
255
  msgstr ""
256
 
257
+ #: main.php:618
258
+ msgid "Enable if page doesn't have order by drop down menu"
 
259
  msgstr ""
260
 
261
+ #: main.php:623
262
+ msgid "Products pagination selector"
263
  msgstr ""
264
 
265
+ #: main.php:636
266
+ msgid ""
267
+ "Enable if page doesn't have pagination.<strong>Page with lazy load also has "
268
+ "pagination</strong>"
269
  msgstr ""
270
 
271
+ #: main.php:642
272
+ msgid "Disable AJAX Pagination"
273
  msgstr ""
274
 
275
+ #: main.php:649
276
+ msgid "Update URL on filtering"
 
277
  msgstr ""
278
 
279
+ #: main.php:654
280
+ msgid ""
281
+ "If this option is on URL will be changed when filter is selected/changed"
 
 
 
 
 
 
 
 
 
 
 
282
  msgstr ""
283
 
284
+ #: main.php:657
285
+ msgid "Use slug in URL"
286
  msgstr ""
287
 
288
+ #: main.php:662
289
+ msgid "Use attribute slug instead ID"
290
  msgstr ""
291
 
292
+ #: main.php:665
293
+ msgid "URL decode"
 
294
  msgstr ""
295
 
296
+ #: main.php:670
297
+ msgid "Decode all symbols in URL to prevent errors on server side"
298
  msgstr ""
299
 
300
+ #: main.php:673
301
+ msgid "SEO Meta, Title"
302
  msgstr ""
303
 
304
+ #: main.php:678
305
+ msgid "Meta Description, Page title and Page Header with filters"
 
306
  msgstr ""
307
 
308
+ #: main.php:681
309
+ msgid "SEO Meta, Title Elements"
 
310
  msgstr ""
311
 
312
+ #: main.php:688 templates/admin.php:27 templates/filters_group_simple.php:2
313
+ #: templates/filter_post_simple.php:11 includes/paid.php:1480
314
+ #: includes/paid.php:1650 templates/settings/design.php:789
315
+ msgid "Title"
316
  msgstr ""
317
 
318
+ #: main.php:694
319
+ msgid "Header"
 
320
  msgstr ""
321
 
322
+ #: main.php:700 templates/filter_post.php:520
323
+ msgid "Description"
 
324
  msgstr ""
325
 
326
+ #: main.php:710
327
+ msgid "{title} with [attribute] [values] and [attribute] [values]"
 
328
  msgstr ""
329
 
330
+ #: main.php:711
331
+ msgid "{title} [attribute]:[values];[attribute]:[values]"
 
332
  msgstr ""
333
 
334
+ #: main.php:712
335
+ msgid ""
336
+ "[attribute 1 values] {title} with [attribute] [values] and [attribute] "
337
+ "[values]"
338
  msgstr ""
339
 
340
+ #: main.php:713
341
+ msgid "{title} - [values] / [values]"
 
342
  msgstr ""
343
 
344
+ #: main.php:720
345
+ msgid "Add position relative to products holder"
 
346
  msgstr ""
347
 
348
+ #: main.php:724
349
+ msgid "Fix for correct displaying loading block"
 
350
  msgstr ""
351
 
352
+ #: main.php:727
353
+ msgid "\"No Products\" class"
 
354
  msgstr ""
355
 
356
+ #: main.php:731
357
+ msgid "Add class and use it to style \"No Products\" box"
 
358
  msgstr ""
359
 
360
+ #: main.php:734
361
+ msgid "Turn all filters off"
 
362
  msgstr ""
363
 
364
+ #: main.php:738
365
+ msgid ""
366
+ "If you want to hide filters without losing current configuration just turn "
367
+ "them off"
368
  msgstr ""
369
 
370
+ #: main.php:741
371
+ msgid "Show all values"
 
 
372
  msgstr ""
373
 
374
+ #: main.php:745
375
+ msgid "Check if you want to show not used attribute values too"
 
376
  msgstr ""
377
 
378
+ #: main.php:748
379
+ msgid "Display products"
380
  msgstr ""
381
 
382
+ #: main.php:752
383
+ msgid ""
384
+ "Display always products when filters selected. Use this when you have "
385
+ "categories and subcategories on shop pages, but you want to display products "
386
+ "on filtering"
387
  msgstr ""
388
 
389
+ #: main.php:755
390
+ msgid "Hide out of stock variable"
 
391
  msgstr ""
392
 
393
+ #: main.php:761 includes/paid.php:127 includes/paid.php:139
394
+ #: includes/paid.php:1725
395
+ msgid "Disabled"
396
  msgstr ""
397
 
398
+ #: main.php:762
399
+ msgid "Enabled"
 
 
 
400
  msgstr ""
401
 
402
+ #: main.php:763
403
+ msgid "Enabled only with selected \"Out of stock\" filter"
 
 
 
404
  msgstr ""
405
 
406
+ #: main.php:767
407
+ msgid "Hide variable products if variations with selected filters out of stock"
 
408
  msgstr ""
409
 
410
+ #: main.php:774
411
+ msgid ""
412
+ "Use it for attributes values to display more correct count with option "
413
+ "Reload amount of products"
414
  msgstr ""
415
 
416
+ #: main.php:781
417
+ msgid ""
418
+ "Fix WPEngine query issue (Also can work with other hostings if they limit "
419
+ "query size)"
420
  msgstr ""
421
 
422
+ #: main.php:786
423
+ msgid "GET query"
 
424
  msgstr ""
425
 
426
+ #: main.php:790
427
+ msgid "Use GET query instead POST for filtering"
 
428
  msgstr ""
429
 
430
+ #: main.php:793
431
+ msgid "Display styles only for pages with filters"
 
432
  msgstr ""
433
 
434
+ #: main.php:797
435
+ msgid "On some sites it can cause some visual problem on page loads"
 
436
  msgstr ""
437
 
438
+ #: main.php:800
439
+ msgid "Product per row fix"
 
440
  msgstr ""
441
 
442
+ #: main.php:804
443
+ msgid "Change this only if after filtering count of products per row changes."
 
444
  msgstr ""
445
 
446
+ #: main.php:807
447
+ msgid "Fix for sites with AJAX"
 
448
  msgstr ""
449
 
450
+ #: main.php:811
451
+ msgid "Add JavaScript files to all pages."
 
452
  msgstr ""
453
 
454
+ #: main.php:814
455
+ msgid "Search page fix"
 
456
  msgstr ""
457
 
458
+ #: main.php:818
459
+ msgid "Disable redirection, when search page return only one product"
 
460
  msgstr ""
461
 
462
+ #: main.php:821
463
+ msgid "Use Tags like custom taxonomy"
 
464
  msgstr ""
465
 
466
+ #: main.php:825
467
+ msgid "Try to enable this if widget with tags didn't work."
 
468
  msgstr ""
469
 
470
+ #: main.php:828
471
+ msgid "Use Tax options for price"
 
 
472
  msgstr ""
473
 
474
+ #: main.php:829
475
+ msgid "Only Standard tax rates will be applied for prices"
 
476
  msgstr ""
477
 
478
+ #: main.php:833
479
+ msgid "Do not use (filter price as it is set in products)"
 
 
480
  msgstr ""
481
 
482
+ #: main.php:834
483
+ msgid "Use tax options"
 
 
484
  msgstr ""
485
 
486
+ #: main.php:839
487
+ msgid "Disable Font Awesome"
 
488
  msgstr ""
489
 
490
+ #: main.php:843
491
+ msgid ""
492
+ "Don't loading css file for Font Awesome on site front end. Use it only if "
493
+ "you doesn't uses Font Awesome icons in widgets or you have Font Awesome in "
494
+ "your theme."
495
  msgstr ""
496
 
497
+ #: main.php:846
498
+ msgid "Font Awesome Version"
 
 
 
499
  msgstr ""
500
 
501
+ #: main.php:850
502
+ msgid "Font Awesome 4"
 
503
  msgstr ""
504
 
505
+ #: main.php:851
506
+ msgid "Font Awesome 5"
 
507
  msgstr ""
508
 
509
+ #: main.php:854
510
+ msgid ""
511
+ "Version of Font Awesome that will be used on front end. Please select "
512
+ "version that you have in your theme"
513
  msgstr ""
514
 
515
+ #: main.php:872
516
+ msgid "Alternative Load (DEPRECATED)"
 
517
  msgstr ""
518
 
519
+ #: main.php:879
520
+ msgid ""
521
+ "Use it on your own risk. Some features do not work with alternative load "
522
+ "methods. All this methods are not supported. If you have problems with any "
523
+ "of them just turn this option off"
524
  msgstr ""
525
 
526
+ #: main.php:886
527
+ msgid "WordPress AJAX (deprecated)"
 
528
  msgstr ""
529
 
530
+ #: main.php:887
531
+ msgid "PHP (deprecated)"
 
532
  msgstr ""
533
 
534
+ #: main.php:888
535
+ msgid "JavaScript (deprecated)"
 
536
  msgstr ""
537
 
538
+ #: main.php:891
539
+ msgid "Use"
 
540
  msgstr ""
541
 
542
+ #: main.php:892
543
+ msgid "load method"
 
544
  msgstr ""
545
 
546
+ #: main.php:893
547
+ msgid "Some features do not work with alternative load method"
 
548
  msgstr ""
549
 
550
+ #: main.php:898
551
+ msgid "Page same as filter"
 
552
  msgstr ""
553
 
554
+ #: main.php:902 templates/admin.php:109 templates/filter_post.php:189
555
+ #: templates/filter_post.php:377 templates/filter_post.php:484
556
+ #: includes/paid.php:1609 templates/settings/design.php:57
557
+ #: templates/settings/design.php:165 templates/settings/design.php:179
558
+ #: templates/settings/design.php:184 templates/settings/design.php:421
559
+ #: templates/settings/design.php:435 templates/settings/design.php:440
560
+ #: templates/settings/design.php:653 templates/settings/design.php:658
561
+ #: templates/settings/design.php:666 templates/settings/design.php:677
562
+ #: templates/settings/design.php:682 templates/settings/design.php:722
563
+ #: templates/settings/design.php:727 templates/settings/design.php:735
564
+ #: templates/settings/design.php:743 templates/settings/design.php:748
565
+ #: templates/settings/design.php:756 templates/settings/design.php:761
566
+ #: templates/settings/design.php:793 templates/settings/design.php:807
567
+ #: templates/settings/design.php:812 templates/settings/design.php:820
568
+ #: templates/settings/design.php:834 templates/settings/design.php:839
569
+ #: templates/settings/design.php:847 templates/settings/design.php:861
570
+ #: templates/settings/design.php:866 templates/paid/filters_group.php:29
571
+ msgid "Default"
572
  msgstr ""
573
 
574
+ #: main.php:903
575
+ msgid "Remove value"
 
 
576
  msgstr ""
577
 
578
+ #: main.php:904
579
+ msgid "Leave only one value"
 
580
  msgstr ""
581
 
582
+ #: main.php:907
583
+ msgid ""
584
+ "On Category, Tag, Attribute page filter for it will remove value or leave "
585
+ "only one value"
586
  msgstr ""
587
 
588
+ #: main.php:918
589
+ msgid "Before Update:"
 
590
  msgstr ""
591
 
592
+ #: main.php:922
593
+ msgid "If you want to add own actions on filter activation, eg: alert('1');"
 
594
  msgstr ""
595
 
596
+ #: main.php:925
597
+ msgid "On Update:"
 
598
  msgstr ""
599
 
600
+ #: main.php:929
601
+ msgid ""
602
+ "If you want to add own actions right on products update. You can manipulate "
603
+ "data here, try: data.products = 'Ha!';"
604
  msgstr ""
605
 
606
+ #: main.php:932
607
+ msgid "After Update:"
 
608
  msgstr ""
609
 
610
+ #: main.php:936
611
+ msgid "If you want to add own actions after products updated, eg: alert('1');"
 
612
  msgstr ""
613
 
614
+ #: main.php:962 templates/filters_information.php:2
615
+ msgid "SETUP WIZARD"
 
616
  msgstr ""
617
 
618
+ #: main.php:964
619
+ msgid "RUN SETUP WIZARD"
 
620
  msgstr ""
621
 
622
+ #: main.php:966
623
+ msgid "Run it to setup plugin options step by step"
 
624
  msgstr ""
625
 
626
+ #: main.php:975 main.php:986
627
+ msgid "Creating products"
 
628
  msgstr ""
629
 
630
+ #: main.php:976 main.php:987
631
+ msgid "Gettings selectors"
 
632
  msgstr ""
633
 
634
+ #: main.php:977 main.php:988
635
+ msgid "Removing products"
 
636
  msgstr ""
637
 
638
+ #: main.php:978
639
+ msgid "Error:"
 
640
  msgstr ""
641
 
642
+ #: main.php:981
643
+ msgid ""
644
+ "IMPORTANT: It will generate some products on your site. Please disable all "
645
+ "SEO plugins and plugins, that doing anything on product creating."
646
  msgstr ""
647
 
648
+ #: main.php:982
649
+ msgid ""
650
+ "Script was runned, but page closed until end. Please stop it to prevent any "
651
+ "problems on your site"
652
  msgstr ""
653
 
654
+ #: main.php:983
655
+ msgid "Auto-Selectors"
 
656
  msgstr ""
657
 
658
+ #: main.php:984
659
+ msgid "Stop"
 
660
  msgstr ""
661
 
662
+ #: main.php:985
663
+ msgid "Steps:"
 
664
  msgstr ""
665
 
666
+ #: main.php:991
667
+ msgid "Get selectors automatically"
 
668
  msgstr ""
669
 
670
+ #: main.php:993
671
+ msgid "How it work:"
 
672
  msgstr ""
673
 
674
+ #: main.php:995
675
+ msgid "Run Auto-selector"
 
676
  msgstr ""
677
 
678
+ #: main.php:996
679
+ msgid ""
680
+ "Wait until end <strong style=\"color:red;\">do not close this page</strong>"
681
  msgstr ""
682
 
683
+ #: main.php:997
684
+ msgid "Save settings with new selectors"
 
685
  msgstr ""
686
 
687
+ #: main.php:1006 main.php:1020
688
+ msgid "Purge Cache"
 
689
  msgstr ""
690
 
691
+ #: main.php:1022
692
+ msgid "Clear attribute/custom taxonomy cache for plugin"
 
693
  msgstr ""
694
 
695
+ #: main.php:1040
696
+ msgid "Replace old widgets"
 
697
  msgstr ""
698
 
699
+ #: main.php:1053
700
+ msgid "Widget replaced"
 
701
  msgstr ""
702
 
703
+ #: main.php:1054
704
+ msgid "Replacing widgets... Please wait"
 
705
  msgstr ""
706
 
707
+ #: main.php:1058
708
+ msgid "Replace widgets"
 
709
  msgstr ""
710
 
711
+ #: main.php:1060
712
+ msgid "No old widgets"
 
713
  msgstr ""
714
 
715
+ #: main.php:1063
716
+ msgid "Replace deprecated widgets with new single filter widgets"
 
717
  msgstr ""
718
 
719
+ #: main.php:1086
720
+ msgid "User custom CSS style:"
721
  msgstr ""
722
 
723
+ #: main.php:1246 templates/filter_post.php:127 includes/paid.php:1512
724
+ #: templates/settings/design.php:161
725
+ msgid "Checkbox"
726
  msgstr ""
727
 
728
+ #: main.php:1247 templates/filter_post.php:128 includes/paid.php:1513
729
+ #: templates/settings/design.php:417
730
+ msgid "Radio"
731
  msgstr ""
732
 
733
+ #: main.php:1248 templates/filter_post.php:129 includes/paid.php:1511
734
+ msgid "Select"
735
  msgstr ""
736
 
737
+ #: main.php:1249 templates/filter_post.php:130 includes/paid.php:1514
738
+ #: templates/settings/design.php:12 templates/settings/design.php:27
739
+ msgid "Color"
740
  msgstr ""
741
 
742
+ #: main.php:1250 templates/filter_post.php:131 includes/paid.php:1515
743
+ msgid "Image"
744
  msgstr ""
745
 
746
+ #: main.php:1251 templates/filter_post.php:132
747
+ #: templates/settings/design.php:634
748
+ msgid "Slider"
 
749
  msgstr ""
750
 
751
+ #: main.php:1252 templates/filter_post.php:133
752
+ msgid "Tag cloud"
753
  msgstr ""
754
 
755
+ #: main.php:1521 templates/color.php:206 templates/checkbox.php:140
756
+ #: templates/disabled/color.php:197 templates/disabled/checkbox.php:130
757
+ msgid "Show value(s)"
758
  msgstr ""
759
 
760
+ #: main.php:1522
761
+ msgid "Hide value(s)"
762
  msgstr ""
763
 
764
+ #: main.php:1523
765
+ msgid "Unselect all"
766
  msgstr ""
767
 
768
+ #: main.php:1524
769
+ msgid "Nothing is selected"
770
  msgstr ""
771
 
772
+ #: main.php:1525
773
+ msgid "products"
774
  msgstr ""
775
 
776
+ #: main.php:1605
777
+ msgid "Activate WooCommerce plugin before"
778
  msgstr ""
779
 
780
+ #: main.php:1611
781
+ msgid "Update WooCommerce plugin"
782
  msgstr ""
783
 
784
+ #: templates/admin.php:2
785
+ msgid ""
786
+ "Widget will be removed in future please use <strong>AAPF Filters "
787
+ "Group</strong> instead."
788
  msgstr ""
789
 
790
+ #: templates/admin.php:3
791
+ #, php-format
792
+ msgid "You can add filter to %s that has limitation"
793
  msgstr ""
794
 
795
+ #: templates/admin.php:3
796
+ msgid "Filters group"
797
  msgstr ""
798
 
799
+ #: templates/admin.php:8 templates/filter_post.php:12
800
+ #: templates/filters_information.php:7 templates/filters_information.php:9
801
+ msgid "Widget Type"
802
  msgstr ""
803
 
804
+ #: templates/admin.php:11 templates/filter_post.php:16
805
+ #: includes/new_widget.php:258 includes/divi-builder.php:26
806
+ #: includes/custom_post.php:350 includes/widget.php:264
807
+ #: includes/visual-composer.php:26 templates/settings/design.php:843
808
+ msgid "Filter"
809
  msgstr ""
810
 
811
+ #: templates/admin.php:13 templates/filters_information.php:9
812
+ #: includes/custom_post.php:351 includes/display_filter/update_button.php:10
813
+ msgid "Update Products button"
814
  msgstr ""
815
 
816
+ #: templates/admin.php:15 templates/filters_information.php:7
817
+ #: includes/custom_post.php:352 includes/display_filter/reset_button.php:10
818
+ msgid "Reset Products button"
 
819
  msgstr ""
820
 
821
+ #: templates/admin.php:17 includes/custom_post.php:353
822
+ #: includes/display_filter/selected_area.php:14
823
+ msgid "Selected Filters area"
824
  msgstr ""
825
 
826
+ #: templates/admin.php:19 includes/paid.php:416
827
+ msgid "Search Box"
828
  msgstr ""
829
 
830
+ #: templates/admin.php:33 templates/filter_post.php:36
831
+ #: templates/filter_post_simple.php:18 includes/paid.php:1484
832
+ msgid "Filter By"
 
833
  msgstr ""
834
 
835
+ #: templates/admin.php:36 templates/admin.php:55 templates/filter_post.php:41
836
+ #: templates/filter_post.php:83 templates/filter_post_simple.php:23
837
+ #: templates/filter_post_simple.php:65 includes/custom_post.php:360
838
+ #: includes/custom_post.php:437 includes/paid.php:1477 includes/paid.php:1486
839
+ #: includes/paid.php:1492 includes/widget.php:172
840
+ msgid "Attribute"
841
  msgstr ""
842
 
843
+ #: templates/admin.php:38 includes/custom_post.php:388 includes/paid.php:1341
844
+ msgid "Stock status"
845
  msgstr ""
846
 
847
+ #: templates/admin.php:40 includes/custom_post.php:390 includes/paid.php:1333
848
+ msgid "Product sub-categories"
849
  msgstr ""
850
 
851
+ #: templates/admin.php:42 templates/filter_post.php:45
852
+ #: templates/filter_post_simple.php:27 includes/custom_post.php:361
853
+ #: includes/custom_post.php:373 includes/custom_post.php:392
854
+ #: includes/custom_post.php:441 includes/paid.php:1487 includes/widget.php:176
855
+ msgid "Tag"
856
  msgstr ""
857
 
858
+ #: templates/admin.php:44 includes/custom_post.php:362 includes/paid.php:1337
859
+ #: includes/paid.php:1488
860
+ msgid "Custom Taxonomy"
 
 
861
  msgstr ""
862
 
863
+ #: templates/admin.php:46 includes/custom_post.php:399 includes/paid.php:1345
864
+ msgid "Date"
865
  msgstr ""
866
 
867
+ #: templates/admin.php:48 includes/custom_post.php:401 includes/paid.php:1349
868
+ msgid "Sale"
869
  msgstr ""
870
 
871
+ #: templates/admin.php:50 templates/filter_post.php:56
872
+ #: templates/filter_post_simple.php:38 includes/custom_post.php:403
873
+ #: includes/custom_post.php:452 includes/widget.php:187
874
+ msgid "Rating"
875
  msgstr ""
876
 
877
+ #: templates/admin.php:57 templates/filter_post.php:85
878
+ #: templates/filter_post_simple.php:67 includes/custom_post.php:381
879
+ msgid "Price"
880
  msgstr ""
881
 
882
+ #: templates/admin.php:66 templates/filter_post.php:92
883
+ #: templates/filter_post_simple.php:74 includes/paid.php:1500
884
+ msgid "Custom Taxonomies"
885
  msgstr ""
886
 
887
+ #: templates/admin.php:77 templates/filter_post.php:115
888
+ #: templates/filter_post_simple.php:97 includes/paid.php:1509
889
+ msgid "Type"
890
  msgstr ""
891
 
892
+ #: templates/admin.php:100 templates/filter_post.php:180
893
+ #: templates/filter_post_simple.php:161
894
+ msgid "Operator"
 
895
  msgstr ""
896
 
897
+ #: templates/admin.php:107 templates/filter_post.php:187
898
+ msgid "Values Order"
899
  msgstr ""
900
 
901
+ #: templates/admin.php:138 templates/filter_post.php:257
902
+ msgid "Hide first and last ranges without products"
 
 
903
  msgstr ""
904
 
905
+ #: templates/admin.php:142 templates/filter_post.php:287
906
+ msgid "Text before price:"
907
  msgstr ""
908
 
909
+ #: templates/admin.php:144 templates/filter_post.php:291
910
+ msgid "after:"
911
  msgstr ""
912
 
913
+ #: templates/admin.php:148 templates/filter_post.php:298
914
+ msgid "Enable Slider Inputs"
915
  msgstr ""
916
 
917
+ #: templates/admin.php:151 templates/filter_post.php:302
918
+ msgid "Use custom values(comma separated):"
919
  msgstr ""
920
 
921
+ #: templates/admin.php:153 templates/filter_post.php:304
922
+ msgid "* use numeric values only, strings will not work as expected"
923
  msgstr ""
924
 
925
+ #: templates/admin.php:160 templates/filter_post.php:312
926
+ msgid "Use current product category to get child"
927
  msgstr ""
928
 
929
+ #: templates/admin.php:164 templates/filter_post.php:317
930
+ msgid "Deep level:"
931
  msgstr ""
932
 
933
+ #: templates/admin.php:169 templates/filter_post.php:323
934
+ msgid "Product Category:"
935
  msgstr ""
936
 
937
+ #: templates/admin.php:177 templates/filter_post.php:331
938
+ msgid "None"
939
  msgstr ""
940
 
941
+ #: templates/filters_group_simple.php:6 templates/filters_group.php:12
942
+ msgid "Filters In Group"
943
  msgstr ""
944
 
945
+ #: templates/filters_group_simple.php:16 templates/filters_group.php:22
946
+ msgid "Add filter"
947
  msgstr ""
948
 
949
+ #: templates/filters_group_simple.php:17 includes/new_widget.php:281
950
+ msgid "Create Filter"
951
  msgstr ""
952
 
953
+ #: templates/filters_group_simple.php:32 templates/filters_group_simple.php:57
954
+ #: includes/new_widget.php:126 includes/new_widget.php:279
955
+ #: includes/custom_post.php:50 includes/custom_post.php:522
956
+ msgid "Edit"
957
  msgstr ""
958
 
959
+ #: templates/filters_group_simple.php:42 templates/filter_post_simple.php:171
960
+ msgid "Need more options? Create it on "
961
  msgstr ""
962
 
963
+ #: templates/filters_group_simple.php:43 includes/new_widget.php:94
964
+ msgid "Manage groups"
965
  msgstr ""
966
 
967
+ #: templates/filters_group_simple.php:44 templates/filter_post_simple.php:173
968
+ msgid " page"
 
 
969
  msgstr ""
970
 
971
+ #: templates/filters_group.php:4 includes/new_widget.php:101
972
+ #: includes/new_widget.php:254
973
+ msgid "Custom CSS class"
974
  msgstr ""
975
 
976
+ #: templates/filters_group.php:7
977
+ msgid "use white space for multiple classes"
978
  msgstr ""
979
 
980
+ #: templates/filters_group.php:23 templates/filter_post_simple.php:172
981
+ #: includes/new_widget.php:251
982
+ msgid "Manage filters"
983
  msgstr ""
984
 
985
+ #: templates/filters_group.php:40 templates/filters_group.php:60
986
+ msgid "Width"
 
 
 
987
  msgstr ""
988
 
989
+ #: templates/include_exclude_list.php:3
990
+ msgid "Include / Exclude List"
991
  msgstr ""
992
 
993
+ #: templates/color_ajax.php:3
994
+ msgid "Color pick"
995
  msgstr ""
996
 
997
+ #: templates/color_ajax.php:3
998
+ msgid "Image pick"
999
  msgstr ""
1000
 
1001
+ #: templates/filter_post.php:49 templates/filter_post_simple.php:31
1002
+ #: includes/custom_post.php:445 includes/paid.php:372 includes/widget.php:180
1003
+ msgid "Product Category"
1004
  msgstr ""
1005
 
1006
+ #: templates/filter_post.php:190
1007
+ msgid "Alpha"
1008
  msgstr ""
1009
 
1010
+ #: templates/filter_post.php:190
1011
+ msgid "Numeric"
1012
  msgstr ""
1013
 
1014
+ #: templates/filter_post.php:196
1015
+ msgid "Order Type"
1016
  msgstr ""
1017
 
1018
+ #: templates/filter_post.php:198
1019
+ msgid "Ascending"
1020
  msgstr ""
1021
 
1022
+ #: templates/filter_post.php:198
1023
+ msgid "Descending"
1024
  msgstr ""
1025
 
1026
+ #: templates/filter_post.php:240
1027
+ msgid "Ranges: 1,100,200,1000"
1028
  msgstr ""
1029
 
1030
+ #: templates/filter_post.php:243
1031
+ msgid "1.00-100.00, 101.00-200.00, 201.00-1000.00"
1032
  msgstr ""
1033
 
1034
+ #: templates/filter_post.php:244
1035
+ msgid "1.00-100.00, 100.00-200.00, 200.00-1000.00"
1036
  msgstr ""
1037
 
1038
+ #: templates/filter_post.php:245
1039
+ msgid "1.00-99.99, 100.00-199.99, 200.00-999.99"
1040
  msgstr ""
1041
 
1042
+ #: templates/filter_post.php:262
1043
+ msgid "Show last range to the infinity"
 
 
1044
  msgstr ""
1045
 
1046
+ #: templates/filter_post.php:266
1047
+ msgid "Infinity text"
 
 
 
1048
  msgstr ""
1049
 
1050
+ #: templates/filter_post.php:281 templates/filter_post.php:447
1051
+ msgid "Disable multiple selection?"
 
 
 
1052
  msgstr ""
1053
 
1054
+ #: templates/filter_post.php:356
1055
+ msgid "First Element Text"
1056
  msgstr ""
1057
 
1058
+ #: templates/filter_post.php:357 includes/widget.php:820
1059
+ msgid "Any"
1060
  msgstr ""
1061
 
1062
+ #: templates/filter_post.php:362
1063
+ msgid "Multiple select"
 
 
1064
  msgstr ""
1065
 
1066
+ #: templates/filter_post.php:367 templates/filters_information.php:5
1067
+ msgid "Advanced Settings"
1068
  msgstr ""
1069
 
1070
+ #: templates/filter_post.php:374
1071
+ msgid "From settings"
1072
  msgstr ""
1073
 
1074
+ #: templates/filter_post.php:375
1075
+ msgid "Show/Hide button"
1076
  msgstr ""
1077
 
1078
+ #: templates/filter_post.php:378
1079
+ msgid "Always visible"
1080
  msgstr ""
1081
 
1082
+ #: templates/filter_post.php:379
1083
+ msgid "Always hidden"
1084
  msgstr ""
1085
 
1086
+ #: templates/filter_post.php:387
1087
+ msgid "Use specific number style"
1088
  msgstr ""
1089
 
1090
+ #: templates/filter_post.php:391 includes/paid.php:91
1091
+ msgid "Thousand Separator"
1092
  msgstr ""
1093
 
1094
+ #: templates/filter_post.php:395 includes/paid.php:97
1095
+ msgid "Decimal Separator"
1096
  msgstr ""
1097
 
1098
+ #: templates/filter_post.php:399 includes/paid.php:103
1099
+ msgid "Number Of Decimal"
1100
  msgstr ""
1101
 
1102
+ #: templates/filter_post.php:414
1103
+ msgid "Enable collapse option"
1104
  msgstr ""
1105
 
1106
+ #: templates/filter_post.php:420
1107
+ msgid "Collapse this widget on load?"
1108
  msgstr ""
1109
 
1110
+ #: templates/filter_post.php:426 templates/filter_post.php:598
1111
+ msgid "Hide collapse arrow?"
 
 
 
1112
  msgstr ""
1113
 
1114
+ #: templates/filter_post.php:433
1115
+ msgid "Show hierarchical values as a tree with hidden child values on load?"
1116
  msgstr ""
1117
 
1118
+ #: templates/filter_post.php:443
1119
+ msgid "Display value with color/image box?"
1120
  msgstr ""
1121
 
1122
+ #: templates/filter_post.php:450
1123
+ msgid "Size of blocks(Height x Width)"
 
1124
  msgstr ""
1125
 
1126
+ #: templates/filter_post.php:454
1127
+ msgid "2em x 2em"
1128
  msgstr ""
1129
 
1130
+ #: templates/filter_post.php:455
1131
+ msgid "1em x 1em"
 
1132
  msgstr ""
1133
 
1134
+ #: templates/filter_post.php:456
1135
+ msgid "1em x 2em"
1136
  msgstr ""
1137
 
1138
+ #: templates/filter_post.php:457
1139
+ msgid "2em x 3em"
1140
  msgstr ""
1141
 
1142
+ #: templates/filter_post.php:458
1143
+ msgid "2em x 4em"
1144
  msgstr ""
1145
 
1146
+ #: templates/filter_post.php:459
1147
+ msgid "3em x 3em"
1148
  msgstr ""
1149
 
1150
+ #: templates/filter_post.php:460
1151
+ msgid "3em x 4em"
 
1152
  msgstr ""
1153
 
1154
+ #: templates/filter_post.php:461
1155
+ msgid "3em x 5em"
 
1156
  msgstr ""
1157
 
1158
+ #: templates/filter_post.php:462
1159
+ msgid "4em x 4em"
1160
  msgstr ""
1161
 
1162
+ #: templates/filter_post.php:463
1163
+ msgid "4em x 5em"
 
 
1164
  msgstr ""
1165
 
1166
+ #: templates/filter_post.php:464
1167
+ msgid "5em x 5em"
 
 
 
 
 
 
 
 
1168
  msgstr ""
1169
 
1170
+ #: templates/filter_post.php:465
1171
+ msgid "Custom size"
1172
  msgstr ""
1173
 
1174
+ #: templates/filter_post.php:473
1175
+ msgid "Custom size(Height x Width)"
1176
  msgstr ""
1177
 
1178
+ #: templates/filter_post.php:480
1179
+ msgid "Checked type"
1180
  msgstr ""
1181
 
1182
+ #: templates/filter_post.php:485
1183
+ msgid "Rotate"
1184
  msgstr ""
1185
 
1186
+ #: templates/filter_post.php:486
1187
+ msgid "Scale"
1188
  msgstr ""
1189
 
1190
+ #: templates/filter_post.php:487
1191
+ msgid "Blue Shadow"
1192
  msgstr ""
1193
 
1194
+ #: templates/filter_post.php:488
1195
+ msgid "Custom CSS"
1196
  msgstr ""
1197
 
1198
+ #: templates/filter_post.php:496
1199
+ msgid "Custom CSS for Checked block"
1200
  msgstr ""
1201
 
1202
+ #: templates/filter_post.php:503
1203
+ msgid "Icons"
1204
  msgstr ""
1205
 
1206
+ #: templates/filter_post.php:505
1207
+ msgid "Title Icons"
1208
  msgstr ""
1209
 
1210
+ #: templates/filter_post.php:507 templates/filter_post.php:513
1211
+ #: includes/paid.php:1539 templates/paid/filters_search_box.php:43
1212
+ msgid "Before"
1213
  msgstr ""
1214
 
1215
+ #: templates/filter_post.php:508 templates/filter_post.php:514
1216
+ #: includes/paid.php:1540 templates/paid/filters_search_box.php:44
1217
+ msgid "After"
1218
  msgstr ""
1219
 
1220
+ #: templates/filter_post.php:511
1221
+ msgid "Value Icons"
1222
  msgstr ""
1223
 
1224
+ #: templates/filter_post.php:524
1225
+ msgid "CSS Class"
1226
  msgstr ""
1227
 
1228
+ #: templates/filter_post.php:526
1229
+ msgid "(use white space for multiple classes)"
1230
  msgstr ""
1231
 
1232
+ #: templates/filter_post.php:531
1233
+ msgid "Tags Cloud Height:"
1234
  msgstr ""
1235
 
1236
+ #: templates/filter_post.php:535
1237
+ msgid "Min Font Size:"
1238
  msgstr ""
1239
 
1240
+ #: templates/filter_post.php:539
1241
+ msgid "Max Font Size:"
1242
  msgstr ""
1243
 
1244
+ #: templates/filter_post.php:543
1245
+ msgid "Max Tags Count:"
1246
  msgstr ""
1247
 
1248
+ #: templates/filter_post.php:551
1249
+ msgid "Use min price"
1250
  msgstr ""
1251
 
1252
+ #: templates/filter_post.php:560
1253
+ msgid "Use max price"
1254
  msgstr ""
1255
 
1256
+ #: templates/filter_post.php:569
1257
+ msgid "Filter Box Height:"
1258
  msgstr ""
1259
 
1260
+ #: templates/filter_post.php:573
1261
+ msgid "Scroll Theme:"
1262
  msgstr ""
1263
 
1264
+ #: templates/filter_post.php:592
1265
+ msgid "Show if nothing is selected"
1266
  msgstr ""
1267
 
1268
+ #: templates/filter_post.php:604 templates/filters_information.php:5
1269
+ msgid "Hide this widget on load?"
1270
  msgstr ""
1271
 
1272
+ #: templates/filter_post.php:643
1273
+ msgid "Widget Output Limitations"
1274
  msgstr ""
1275
 
1276
+ #: templates/filter_post.php:645
1277
+ msgid "Product Category Value Limitation"
1278
  msgstr ""
1279
 
1280
+ #: templates/filter_post.php:673
1281
+ msgid "Hide button"
1282
  msgstr ""
1283
 
1284
+ #: templates/filter_post.php:675
1285
+ msgid "Do not hide"
1286
  msgstr ""
1287
 
1288
+ #: templates/filter_post.php:676
1289
+ msgid "Hide only when no filters on page"
1290
  msgstr ""
1291
 
1292
+ #: templates/filter_post.php:677
1293
+ msgid "Hide when no filters on page or page not filtered"
1294
  msgstr ""
1295
 
1296
+ #: templates/groups_information.php:2 templates/filters_information.php:3
1297
+ msgid "Get more information on BeRocket Documentation"
1298
  msgstr ""
1299
 
1300
+ #: templates/groups_information.php:3
1301
+ msgid ""
1302
+ "Do not use multiple filters with same attribute on one page! We will not "
1303
+ "guarantee normal filters works in that case."
1304
  msgstr ""
1305
 
1306
+ #: templates/groups_information.php:4
1307
+ msgid ""
1308
+ "P.S. No, using sub-categories for different filters is not normal. Please "
1309
+ "use attributes instead"
1310
  msgstr ""
1311
 
1312
+ #: templates/groups_information.php:5 includes/custom_post.php:134
1313
+ #: includes/custom_post.php:563
1314
+ msgid "Conditions"
1315
  msgstr ""
1316
 
1317
+ #: templates/groups_information.php:6
1318
+ msgid "Group without any condition will be displayed on all pages"
1319
  msgstr ""
1320
 
1321
+ #: templates/groups_information.php:7
1322
+ msgid "Connection between condition can be AND and OR"
1323
  msgstr ""
1324
 
1325
+ #: templates/groups_information.php:8
1326
+ msgid "<strong>AND</strong> uses between condition in one section"
1327
  msgstr ""
1328
 
1329
+ #: templates/groups_information.php:9
1330
+ msgid "<strong>OR</strong> uses between different sections with conditions"
1331
  msgstr ""
1332
 
1333
+ #: templates/groups_information.php:10
1334
+ msgid "To display one group on different pages use OR condition"
1335
  msgstr ""
1336
 
1337
+ #: templates/filters_information.php:4
1338
+ msgid "How to hide filter on page load?"
1339
  msgstr ""
1340
 
1341
+ #: templates/filters_information.php:5
1342
+ #, php-format
1343
+ msgid "Enable in <strong>%s</strong> option <strong>%s</strong>"
1344
  msgstr ""
1345
 
1346
+ #: templates/filters_information.php:6
1347
+ msgid "How to add reset filters button?"
1348
  msgstr ""
1349
 
1350
+ #: templates/filters_information.php:7 templates/filters_information.php:9
1351
+ #, php-format
1352
+ msgid "Select <strong>%s</strong> in option <strong>%s</strong>"
1353
  msgstr ""
1354
 
1355
+ #: templates/filters_information.php:8
1356
+ msgid ""
1357
+ "How to add update products button? (to filter products only after click on "
1358
+ "button)"
1359
  msgstr ""
1360
 
1361
+ #: templates/filters_information.php:17
1362
+ msgid ""
1363
+ "Title will be displayed as widget title.<br>You can write text, that want to "
1364
+ "display above filter"
1365
  msgstr ""
1366
 
1367
+ #: templates/filters_information.php:24
1368
+ msgid ""
1369
+ "Where filters must be displayed.<br>Filter will be displayed on all pages if "
1370
+ "do not have conditions.<br><strong>Please first try to add filter without "
1371
+ "any condition to check that it works</strong>"
1372
  msgstr ""
1373
 
1374
+ #: templates/filters_information.php:31
1375
+ msgid ""
1376
+ "All that can be displayed you can select there<h3>Variants:</h3><ul><li>"
1377
+ "<strong>Filter</strong>(main type) - filters by attributes, categories, "
1378
+ "price etc.</li><li><strong>Update Products button</strong> - button to apply "
1379
+ "filters to products. Filter will applies only after click on update "
1380
+ "button</li><li><strong>Reset Products button</strong> - button to disable "
1381
+ "all selected filters</li><li><strong>Selected Filters area</strong> - "
1382
+ "display selected filters and provide possibility to disable it in one "
1383
+ "place</li></ul>"
1384
  msgstr ""
1385
 
1386
+ #: templates/filters_information.php:35
1387
+ msgid ""
1388
+ "Select attribute that you need to filter by.<br>You can use for filtering "
1389
+ "price, attributes, categories, tags etc"
1390
  msgstr ""
1391
 
1392
+ #: templates/filters_information.php:42
1393
+ msgid "Filter selection type. This option change how filter will be look like."
1394
  msgstr ""
1395
 
1396
+ #: templates/filters_information.php:49 templates/filters_information.php:72
1397
+ msgid ""
1398
+ "Shortcode to use this filters in any place of your site will be displayed "
1399
+ "there<br><strong>Please use widgets if you do not know how shortcode "
1400
+ "works</strong>"
1401
+ msgstr ""
1402
+
1403
+ #: templates/filters_information.php:53
1404
+ msgid "Save filter after setup to use it in widgets"
1405
+ msgstr ""
1406
+
1407
+ #: templates/filters_information.php:59 templates/filters_information.php:68
1408
+ msgid ""
1409
+ "You can use widget to display filters on your shop page.<br><strong>Use "
1410
+ "sidebar, that displayed on shop page</strong>"
1411
+ msgstr ""
1412
+
1413
+ #: includes/functions.php:712
1414
+ msgid "Widget Title"
1415
+ msgstr ""
1416
+
1417
+ #: includes/functions.php:724
1418
+ msgid "Label(checkbox/radio)"
1419
+ msgstr ""
1420
+
1421
+ #: includes/functions.php:736
1422
+ msgid "Select-box"
1423
+ msgstr ""
1424
+
1425
+ #: includes/functions.php:748
1426
+ msgid "Slider Inputs"
1427
+ msgstr ""
1428
+
1429
+ #: includes/functions.php:760
1430
+ msgid "Description Block"
1431
+ msgstr ""
1432
+
1433
+ #: includes/functions.php:772
1434
+ msgid "Description Border"
1435
+ msgstr ""
1436
+
1437
+ #: includes/functions.php:784
1438
+ msgid "Description Title Text"
1439
+ msgstr ""
1440
+
1441
+ #: includes/functions.php:796
1442
+ msgid "Description Text"
1443
+ msgstr ""
1444
+
1445
+ #: includes/functions.php:808
1446
+ msgid "Selected filters area text"
1447
+ msgstr ""
1448
+
1449
+ #: includes/functions.php:820
1450
+ msgid "Selected filters mouse over text"
1451
+ msgstr ""
1452
+
1453
+ #: includes/functions.php:832
1454
+ msgid "Selected filters link background"
1455
+ msgstr ""
1456
+
1457
+ #: includes/functions.php:844
1458
+ msgid "Selected filters link border"
1459
+ msgstr ""
1460
+
1461
+ #: includes/new_widget.php:5
1462
+ msgid "AAPF Filters Group"
1463
+ msgstr ""
1464
+
1465
+ #: includes/new_widget.php:6
1466
+ msgid "AJAX Product Filters. Group of filters"
1467
+ msgstr ""
1468
+
1469
+ #: includes/new_widget.php:105 includes/divi-builder.php:79
1470
+ #: includes/paid.php:275
1471
+ msgid "Group"
1472
+ msgstr ""
1473
+
1474
+ #: includes/new_widget.php:111 includes/divi-builder.php:70
1475
+ msgid "--Please select group--"
1476
+ msgstr ""
1477
+
1478
+ #: includes/new_widget.php:128
1479
+ msgid "Create Group"
1480
+ msgstr ""
1481
+
1482
+ #: includes/new_widget.php:135
1483
+ msgid "AAPF Filter Single"
1484
+ msgstr ""
1485
+
1486
+ #: includes/new_widget.php:136
1487
+ msgid "AJAX Product Filters. Single Filter"
1488
+ msgstr ""
1489
+
1490
+ #: includes/new_widget.php:264 includes/divi-builder.php:17
1491
+ #: includes/visual-composer.php:10 includes/visual-composer.php:36
1492
+ msgid "--Please select filter--"
1493
+ msgstr ""
1494
+
1495
+ #: includes/divi-builder.php:6 includes/visual-composer.php:19
1496
+ msgid "Single Filter"
1497
+ msgstr ""
1498
+
1499
+ #: includes/divi-builder.php:59 includes/visual-composer.php:45
1500
+ msgid "Group Filter"
1501
+ msgstr ""
1502
+
1503
+ #: includes/custom_post.php:43 includes/custom_post.php:45
1504
+ #: includes/custom_post.php:46
1505
+ msgid "Product Filter"
1506
+ msgstr ""
1507
+
1508
+ #: includes/custom_post.php:47
1509
+ msgctxt "Admin menu name"
1510
+ msgid "Filters"
1511
+ msgstr ""
1512
+
1513
+ #: includes/custom_post.php:48
1514
+ msgid "Add Filter"
1515
+ msgstr ""
1516
+
1517
+ #: includes/custom_post.php:49
1518
+ msgid "Add New Filter"
1519
+ msgstr ""
1520
+
1521
+ #: includes/custom_post.php:51
1522
+ msgid "Edit Filter"
1523
+ msgstr ""
1524
+
1525
+ #: includes/custom_post.php:52
1526
+ msgid "New Filter"
1527
+ msgstr ""
1528
+
1529
+ #: includes/custom_post.php:53
1530
+ msgid "View Filters"
1531
+ msgstr ""
1532
+
1533
+ #: includes/custom_post.php:54
1534
+ msgid "View Filter"
1535
+ msgstr ""
1536
+
1537
+ #: includes/custom_post.php:55
1538
+ msgid "Search Product Filters"
1539
+ msgstr ""
1540
+
1541
+ #: includes/custom_post.php:56
1542
+ msgid "No Product Filters found"
1543
+ msgstr ""
1544
+
1545
+ #: includes/custom_post.php:57
1546
+ msgid "No Product Filters found in trash"
1547
+ msgstr ""
1548
+
1549
+ #: includes/custom_post.php:59
1550
+ msgid "This is where you can add Product Filters."
1551
+ msgstr ""
1552
+
1553
+ #: includes/custom_post.php:135
1554
+ msgid "Product Filter Settings"
1555
+ msgstr ""
1556
+
1557
+ #: includes/custom_post.php:136 includes/custom_post.php:340
1558
+ #: includes/custom_post.php:565 includes/custom_post.php:646
1559
+ msgid "Shortcode"
1560
+ msgstr ""
1561
+
1562
+ #: includes/custom_post.php:137
1563
+ msgid "FAQ"
1564
+ msgstr ""
1565
+
1566
+ #: includes/custom_post.php:143
1567
+ msgid "Setup Widget"
1568
+ msgstr ""
1569
+
1570
+ #: includes/custom_post.php:227
1571
+ msgid ""
1572
+ "Widget to display single filter in your sidebar. Add it to needed sidebar"
1573
+ msgstr ""
1574
+
1575
+ #: includes/custom_post.php:261
1576
+ msgid "Select filter that must be displayed in sidebar"
1577
+ msgstr ""
1578
+
1579
+ #: includes/custom_post.php:266
1580
+ msgid "Save widget and check it on shop page"
1581
+ msgstr ""
1582
+
1583
+ #: includes/custom_post.php:295
1584
+ msgid "Hide this filter on:"
1585
+ msgstr ""
1586
+
1587
+ #: includes/custom_post.php:303 includes/custom_post.php:615
1588
+ msgid "Tablet"
1589
+ msgstr ""
1590
+
1591
+ #: includes/custom_post.php:318 includes/custom_post.php:638
1592
+ msgid "You need save it to get shortcode"
1593
+ msgstr ""
1594
+
1595
+ #: includes/custom_post.php:332
1596
+ msgid "Now you can use saved filters in widgets"
1597
+ msgstr ""
1598
+
1599
+ #: includes/custom_post.php:333
1600
+ msgid "Add widget <strong>AAPF Filter Single</strong> on "
1601
+ msgstr ""
1602
+
1603
+ #: includes/custom_post.php:334
1604
+ msgid "WIDGET PAGE"
1605
+ msgstr ""
1606
+
1607
+ #: includes/custom_post.php:339
1608
+ msgid "Data"
1609
+ msgstr ""
1610
+
1611
+ #: includes/custom_post.php:354 includes/paid.php:1368
1612
+ msgid "Search Box (DEPRECATED)"
1613
+ msgstr ""
1614
+
1615
+ #: includes/custom_post.php:356
1616
+ msgid "Widget type: "
1617
+ msgstr ""
1618
+
1619
+ #: includes/custom_post.php:369 includes/custom_post.php:386
1620
+ msgid "Attribute: "
1621
+ msgstr ""
1622
+
1623
+ #: includes/custom_post.php:371 includes/custom_post.php:396
1624
+ msgid "Custom Taxonomy: "
1625
+ msgstr ""
1626
+
1627
+ #: includes/custom_post.php:515 includes/custom_post.php:517
1628
+ #: includes/custom_post.php:518
1629
+ msgid "Product Filter Group"
1630
+ msgstr ""
1631
+
1632
+ #: includes/custom_post.php:519
1633
+ msgctxt "Admin menu name"
1634
+ msgid "Groups"
1635
+ msgstr ""
1636
+
1637
+ #: includes/custom_post.php:520
1638
+ msgid "Add Filter Group"
1639
+ msgstr ""
1640
+
1641
+ #: includes/custom_post.php:521
1642
+ msgid "Add New Filter Group"
1643
+ msgstr ""
1644
+
1645
+ #: includes/custom_post.php:523
1646
+ msgid "Edit Filter Group"
1647
+ msgstr ""
1648
+
1649
+ #: includes/custom_post.php:524
1650
+ msgid "New Filter Group"
1651
+ msgstr ""
1652
+
1653
+ #: includes/custom_post.php:525
1654
+ msgid "View Filter Groups"
1655
+ msgstr ""
1656
+
1657
+ #: includes/custom_post.php:526
1658
+ msgid "View Filter Group"
1659
+ msgstr ""
1660
+
1661
+ #: includes/custom_post.php:527
1662
+ msgid "Search Product Filter Groups"
1663
+ msgstr ""
1664
+
1665
+ #: includes/custom_post.php:528
1666
+ msgid "No Product Filter Groups found"
1667
+ msgstr ""
1668
+
1669
+ #: includes/custom_post.php:529
1670
+ msgid "No Product Filter Groups found in trash"
1671
+ msgstr ""
1672
+
1673
+ #: includes/custom_post.php:531
1674
+ msgid "This is where you can add Product Filter Groups."
1675
+ msgstr ""
1676
+
1677
+ #: includes/custom_post.php:564
1678
+ msgid "Group Settings"
1679
+ msgstr ""
1680
+
1681
+ #: includes/custom_post.php:566
1682
+ msgid "Information"
1683
+ msgstr ""
1684
+
1685
+ #: includes/custom_post.php:607
1686
+ msgid "Hide this group on:"
1687
+ msgstr ""
1688
+
1689
+ #: includes/paid.php:73 includes/paid.php:497
1690
+ msgid "Hide \"Show/Hide value(s)\" button"
1691
+ msgstr ""
1692
+
1693
+ #: includes/paid.php:80
1694
+ msgid "Data cache"
1695
+ msgstr ""
1696
+
1697
+ #: includes/paid.php:85
1698
+ msgid "WordPress Cache"
1699
+ msgstr ""
1700
+
1701
+ #: includes/paid.php:86
1702
+ msgid "Persistent Cache Plugins"
1703
+ msgstr ""
1704
+
1705
+ #: includes/paid.php:115
1706
+ msgid "Use links in checkbox and radio filters"
1707
+ msgstr ""
1708
+
1709
+ #: includes/paid.php:122
1710
+ msgid "Use noindex for the links"
1711
+ msgstr ""
1712
+
1713
+ #: includes/paid.php:128 includes/paid.php:140
1714
+ msgid "Second+ levels"
1715
+ msgstr ""
1716
+
1717
+ #: includes/paid.php:129 includes/paid.php:141
1718
+ msgid "All levels"
1719
+ msgstr ""
1720
+
1721
+ #: includes/paid.php:134
1722
+ msgid "Use nofollow for the links"
1723
+ msgstr ""
1724
+
1725
+ #: includes/paid.php:152
1726
+ msgid "Nice URL"
1727
+ msgstr ""
1728
+
1729
+ #: includes/paid.php:157
1730
+ msgid ""
1731
+ "Works only with SEO friendly urls. WordPress permalinks must be set to Post "
1732
+ "name(Custom structure: /%postname%/ )"
1733
+ msgstr ""
1734
+
1735
+ #: includes/paid.php:160
1736
+ msgid "Canonical without Filters"
1737
+ msgstr ""
1738
+
1739
+ #: includes/paid.php:164
1740
+ msgid "Use canonical tag without filters on WooCommerce pages"
1741
+ msgstr ""
1742
+
1743
+ #: includes/paid.php:168 includes/paid.php:1530
1744
+ #: templates/paid/filters_search_box.php:34
1745
+ msgid "Elements position"
1746
+ msgstr ""
1747
+
1748
+ #: includes/paid.php:170
1749
+ msgid "Show products count before filtering"
1750
+ msgstr ""
1751
+
1752
+ #: includes/paid.php:176
1753
+ msgid "Show products count before filtering, when using update button"
1754
+ msgstr ""
1755
+
1756
+ #: includes/paid.php:182
1757
+ msgid "Text that means products"
1758
+ msgstr ""
1759
+
1760
+ #: includes/paid.php:188
1761
+ msgid "Text for show button"
1762
+ msgstr ""
1763
+
1764
+ #: includes/paid.php:201
1765
+ msgid "Display variation image"
1766
+ msgstr ""
1767
+
1768
+ #: includes/paid.php:205
1769
+ msgid "Display variation image instead of product's when filtering"
1770
+ msgstr ""
1771
+
1772
+ #: includes/paid.php:208
1773
+ msgid "Display variation price"
1774
+ msgstr ""
1775
+
1776
+ #: includes/paid.php:212
1777
+ msgid "Display variation price instead of product's when filtering"
1778
+ msgstr ""
1779
+
1780
+ #: includes/paid.php:221
1781
+ msgid "Slider has a lot of values"
1782
+ msgstr ""
1783
+
1784
+ #: includes/paid.php:225
1785
+ msgid ""
1786
+ "Enable it if slider has more than 250 values. Hierarchical taxonomy can work "
1787
+ "incorrect with sliders"
1788
+ msgstr ""
1789
+
1790
+ #: includes/paid.php:234
1791
+ msgid "Use filtered variation link and session"
1792
+ msgstr ""
1793
+
1794
+ #: includes/paid.php:240
1795
+ msgid "Use filtered variation only after search"
1796
+ msgstr ""
1797
+
1798
+ #: includes/paid.php:247
1799
+ msgid "Use tax options (leave price ranges as is)"
1800
+ msgstr ""
1801
+
1802
+ #: includes/paid.php:254
1803
+ msgid "Elements above products"
1804
  msgstr ""
1805
 
1806
+ #: includes/paid.php:279
1807
+ msgid "Add group"
1808
  msgstr ""
1809
 
1810
+ #: includes/paid.php:427 includes/paid.php:1359
1811
+ msgid "Ranges"
 
 
1812
  msgstr ""
1813
 
1814
+ #: includes/paid.php:1439
1815
+ msgid "Attributes"
1816
  msgstr ""
1817
 
1818
+ #: includes/paid.php:1442 templates/paid/filters_search_box.php:9
1819
+ msgid "URL to search"
1820
  msgstr ""
1821
 
1822
+ #: includes/paid.php:1444 templates/paid/filters_search_box.php:11
1823
+ msgid "Shop page"
1824
  msgstr ""
1825
 
1826
+ #: includes/paid.php:1445 templates/paid/filters_search_box.php:12
1827
+ msgid "Category page"
1828
  msgstr ""
1829
 
1830
+ #: includes/paid.php:1446 templates/paid/filters_search_box.php:13
1831
+ msgid "URL"
1832
  msgstr ""
1833
 
1834
+ #: includes/paid.php:1450 templates/paid/filters_search_box.php:17
1835
+ msgid "Category"
1836
  msgstr ""
1837
 
1838
+ #: includes/paid.php:1460 templates/paid/filters_search_box.php:27
1839
+ msgid "URL for search"
1840
  msgstr ""
1841
 
1842
+ #: includes/paid.php:1464
1843
+ msgid "Attributes count"
1844
  msgstr ""
1845
 
1846
+ #: includes/paid.php:1527 templates/paid/filters_search_box.php:31
1847
+ msgid "Styles"
1848
  msgstr ""
1849
 
1850
+ #: includes/paid.php:1532 templates/paid/filters_search_box.php:36
1851
+ msgid "Vertical"
1852
  msgstr ""
1853
 
1854
+ #: includes/paid.php:1533 templates/paid/filters_search_box.php:37
1855
+ msgid "Horizontal"
1856
  msgstr ""
1857
 
1858
+ #: includes/paid.php:1537 templates/paid/filters_search_box.php:41
1859
+ msgid "Search button position"
1860
  msgstr ""
1861
 
1862
+ #: includes/paid.php:1541 templates/paid/filters_search_box.php:45
1863
+ msgid "Before and after"
1864
  msgstr ""
1865
 
1866
+ #: includes/paid.php:1545 templates/paid/filters_search_box.php:49
1867
+ msgid "Search button text"
1868
  msgstr ""
1869
 
1870
+ #: includes/paid.php:1549 templates/settings/design.php:705
1871
+ #: templates/paid/filters_search_box.php:53
1872
+ msgid "Background color"
1873
  msgstr ""
1874
 
1875
+ #: includes/paid.php:1554 templates/paid/filters_search_box.php:58
1876
+ msgid "Background transparency"
 
1877
  msgstr ""
1878
 
1879
+ #: includes/paid.php:1558 templates/paid/filters_search_box.php:62
1880
+ msgid "100%"
 
1881
  msgstr ""
1882
 
1883
+ #: includes/paid.php:1559 templates/paid/filters_search_box.php:63
1884
+ msgid "90%"
 
1885
  msgstr ""
1886
 
1887
+ #: includes/paid.php:1560 templates/paid/filters_search_box.php:64
1888
+ msgid "80%"
 
1889
  msgstr ""
1890
 
1891
+ #: includes/paid.php:1561 templates/paid/filters_search_box.php:65
1892
+ msgid "70%"
1893
  msgstr ""
1894
 
1895
+ #: includes/paid.php:1562 templates/paid/filters_search_box.php:66
1896
+ msgid "60%"
1897
  msgstr ""
1898
 
1899
+ #: includes/paid.php:1563 templates/paid/filters_search_box.php:67
1900
+ msgid "50%"
 
 
1901
  msgstr ""
1902
 
1903
+ #: includes/paid.php:1564 templates/paid/filters_search_box.php:68
1904
+ msgid "40%"
1905
  msgstr ""
1906
 
1907
+ #: includes/paid.php:1565 templates/paid/filters_search_box.php:69
1908
+ msgid "30%"
 
 
1909
  msgstr ""
1910
 
1911
+ #: includes/paid.php:1566 templates/paid/filters_search_box.php:70
1912
+ msgid "20%"
 
1913
  msgstr ""
1914
 
1915
+ #: includes/paid.php:1567 templates/paid/filters_search_box.php:71
1916
+ msgid "10%"
1917
  msgstr ""
1918
 
1919
+ #: includes/paid.php:1568 templates/paid/filters_search_box.php:72
1920
+ msgid "0%"
1921
  msgstr ""
1922
 
1923
+ #: includes/paid.php:1579 templates/paid/filters_search_box.php:83
1924
+ msgid "Button background color"
1925
  msgstr ""
1926
 
1927
+ #: includes/paid.php:1584 templates/paid/filters_search_box.php:88
1928
+ msgid "Button background color on mouse over"
 
1929
  msgstr ""
1930
 
1931
+ #: includes/paid.php:1589 templates/paid/filters_search_box.php:93
1932
+ msgid "Button text color"
1933
  msgstr ""
1934
 
1935
+ #: includes/paid.php:1594 templates/paid/filters_search_box.php:98
1936
+ msgid "Button text color on mouse over"
1937
  msgstr ""
1938
 
1939
+ #: includes/paid.php:1607
1940
+ msgid "Child/Parent Limitation"
1941
  msgstr ""
1942
 
1943
+ #: includes/paid.php:1610
1944
+ msgid "Child Count"
1945
  msgstr ""
1946
 
1947
+ #: includes/paid.php:1611
1948
+ msgid "Parent"
1949
  msgstr ""
1950
 
1951
+ #: includes/paid.php:1612 includes/paid.php:1648
1952
+ msgid "Child"
1953
  msgstr ""
1954
 
1955
+ #: includes/paid.php:1616
1956
+ msgid "Child depth"
1957
  msgstr ""
1958
 
1959
+ #: includes/paid.php:1619 includes/paid.php:1658
1960
+ msgid "\"No values\" messages"
1961
  msgstr ""
1962
 
1963
+ #: includes/paid.php:1623 includes/paid.php:1662
1964
+ msgid "\"Select previous\" messages"
1965
  msgstr ""
1966
 
1967
+ #: includes/paid.php:1627
1968
+ msgid "\"No Products\" messages"
1969
  msgstr ""
1970
 
1971
+ #: includes/paid.php:1632
1972
+ msgid "Child count"
1973
  msgstr ""
1974
 
1975
+ #: includes/paid.php:1654
1976
+ msgid "\"No products\" messages"
 
1977
  msgstr ""
1978
 
1979
+ #: includes/paid.php:1675
1980
+ msgid "Date Month Dropdown menu"
1981
  msgstr ""
1982
 
1983
+ #: includes/paid.php:1681
1984
+ msgid "Date Year Dropdown menu"
1985
  msgstr ""
1986
 
1987
+ #: includes/paid.php:1685
1988
+ msgid "Date visual style"
1989
  msgstr ""
1990
 
1991
+ #: includes/paid.php:1726
1992
+ msgid "Display only"
1993
  msgstr ""
1994
 
1995
+ #: includes/paid.php:1727
1996
+ msgid "Remove"
1997
  msgstr ""
1998
 
1999
+ #: includes/paid.php:1729
2000
+ msgid "values selected in Include / Exclude List"
2001
  msgstr ""
2002
 
2003
+ #: includes/paid.php:1750
2004
+ msgid "IMPORTANT"
2005
  msgstr ""
2006
 
2007
+ #: includes/paid.php:1752
2008
+ msgid ""
2009
+ "Slider type always uses attributes slug.<br>All attribute values slug must "
2010
+ "be with letters, numbers in slug can work incorrect.<br>Also slider do not "
2011
+ "work with slug that contains those symbols: -, +"
2012
  msgstr ""
2013
 
2014
+ #: includes/paid.php:1755
2015
+ msgid "Use default values for slider"
2016
  msgstr ""
2017
 
2018
+ #: includes/paid.php:1768
2019
+ msgid "Show product count per attribute value?"
2020
  msgstr ""
2021
 
2022
+ #: includes/paid.php:1779
2023
+ msgid "Values per row"
2024
  msgstr ""
2025
 
2026
+ #: includes/paid.php:1891 includes/paid.php:2488 includes/widget.php:1739
2027
+ #: includes/widget.php:2012
2028
+ msgid "In stock"
2029
  msgstr ""
2030
 
2031
+ #: includes/paid.php:1898 includes/paid.php:2489 includes/widget.php:1740
2032
+ #: includes/widget.php:2013
2033
+ msgid "Out of stock"
2034
  msgstr ""
2035
 
2036
+ #: includes/paid.php:1918 includes/paid.php:2492
2037
+ msgid "On sale"
2038
  msgstr ""
2039
 
2040
+ #: includes/paid.php:1925 includes/paid.php:2493
2041
+ msgid "Not on sale"
2042
  msgstr ""
2043
 
2044
+ #: includes/paid.php:2645
2045
+ msgid "Nice URLs settings"
2046
  msgstr ""
2047
 
2048
+ #: includes/widget.php:125
2049
+ msgid "Add Filters to Products page"
2050
  msgstr ""
2051
 
2052
+ #: includes/widget.php:131
2053
+ msgid "AJAX Product Filters (Deprecated)"
 
2054
  msgstr ""
2055
 
2056
+ #: includes/widget.php:551
2057
+ msgid "1 star"
2058
  msgstr ""
2059
 
2060
+ #: includes/widget.php:551
2061
+ msgid ""
2062
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-"
2063
+ "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
2064
  msgstr ""
2065
 
2066
+ #: includes/widget.php:554
2067
+ msgid "2 stars"
2068
  msgstr ""
2069
 
2070
+ #: includes/widget.php:554
2071
+ msgid ""
2072
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2073
+ "star-o\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
2074
  msgstr ""
2075
 
2076
+ #: includes/widget.php:557
2077
+ msgid "3 stars"
2078
  msgstr ""
2079
 
2080
+ #: includes/widget.php:557
2081
+ msgid ""
2082
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2083
+ "star\"></i><i class=\"fa fa-star-o\"></i><i class=\"fa fa-star-o\"></i>"
2084
  msgstr ""
2085
 
2086
+ #: includes/widget.php:560
2087
+ msgid "4 stars"
2088
  msgstr ""
2089
 
2090
+ #: includes/widget.php:560
2091
+ msgid ""
2092
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2093
+ "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star-o\"></i>"
2094
  msgstr ""
2095
 
2096
+ #: includes/widget.php:563
2097
+ msgid "5 stars"
2098
  msgstr ""
2099
 
2100
+ #: includes/widget.php:563
2101
+ msgid ""
2102
+ "<i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-"
2103
+ "star\"></i><i class=\"fa fa-star\"></i><i class=\"fa fa-star\"></i>"
2104
  msgstr ""
2105
 
2106
+ #. Author of the plugin
2107
+ #: includes/visual-composer.php:21 includes/visual-composer.php:47
2108
+ msgid "BeRocket"
2109
  msgstr ""
2110
 
2111
+ #: templates/settings/design.php:8 templates/settings/design.php:23
2112
+ msgid "Select All"
2113
  msgstr ""
2114
 
2115
+ #: templates/settings/design.php:11 templates/settings/design.php:26
2116
+ #: templates/settings/design.php:148 templates/settings/design.php:778
2117
+ msgid "Element"
2118
  msgstr ""
2119
 
2120
+ #: templates/settings/design.php:13 templates/settings/design.php:28
2121
+ msgid "Font Family"
2122
  msgstr ""
2123
 
2124
+ #: templates/settings/design.php:14 templates/settings/design.php:29
2125
+ msgid "Font-Weight"
2126
  msgstr ""
2127
 
2128
+ #: templates/settings/design.php:14 templates/settings/design.php:29
2129
+ msgid "(depends on font)"
2130
  msgstr ""
2131
 
2132
+ #: templates/settings/design.php:15 templates/settings/design.php:30
2133
+ msgid "Font-Size"
2134
  msgstr ""
2135
 
2136
+ #: templates/settings/design.php:16 templates/settings/design.php:31
2137
+ #: templates/settings/design.php:156
2138
+ msgid "Theme"
2139
  msgstr ""
2140
 
2141
+ #: templates/settings/design.php:35 templates/settings/design.php:626
2142
+ #: templates/settings/design.php:695 templates/settings/design.php:768
2143
+ #: templates/settings/design.php:873
2144
+ msgid "Set all to theme default"
2145
  msgstr ""
2146
 
2147
+ #: templates/settings/design.php:48
2148
+ msgid "Select Element"
2149
  msgstr ""
2150
 
2151
+ #: templates/settings/design.php:59 templates/settings/design.php:71
2152
+ #: templates/settings/design.php:112 templates/settings/design.php:119
2153
+ #: templates/settings/design.php:134
2154
+ msgid "N/A"
2155
  msgstr ""
2156
 
2157
+ #: templates/settings/design.php:65 templates/settings/design.php:80
2158
+ #: templates/settings/design.php:117 templates/settings/design.php:168
2159
+ #: templates/settings/design.php:171 templates/settings/design.php:174
2160
+ #: templates/settings/design.php:424 templates/settings/design.php:427
2161
+ #: templates/settings/design.php:430 templates/settings/design.php:661
2162
+ #: templates/settings/design.php:669 templates/settings/design.php:672
2163
+ #: templates/settings/design.php:685 templates/settings/design.php:688
2164
+ #: templates/settings/design.php:730 templates/settings/design.php:738
2165
+ #: templates/settings/design.php:751 templates/settings/design.php:796
2166
+ #: templates/settings/design.php:799 templates/settings/design.php:802
2167
+ #: templates/settings/design.php:823 templates/settings/design.php:826
2168
+ #: templates/settings/design.php:829 templates/settings/design.php:850
2169
+ #: templates/settings/design.php:853 templates/settings/design.php:856
2170
+ msgid "Theme Default"
2171
  msgstr ""
2172
 
2173
+ #: templates/settings/design.php:125
2174
+ msgid "Without Theme"
 
 
2175
  msgstr ""
2176
 
2177
+ #: templates/settings/design.php:146
2178
+ msgid "Checkbox / Radio"
 
 
2179
  msgstr ""
2180
 
2181
+ #: templates/settings/design.php:149 templates/settings/design.php:706
2182
+ #: templates/settings/design.php:779
2183
+ msgid "Border color"
 
 
2184
  msgstr ""
2185
 
2186
+ #: templates/settings/design.php:150 templates/settings/design.php:780
2187
+ msgid "Border width"
 
 
 
2188
  msgstr ""
2189
 
2190
+ #: templates/settings/design.php:151 templates/settings/design.php:781
2191
+ msgid "Border radius"
2192
  msgstr ""
2193
 
2194
+ #: templates/settings/design.php:152 templates/settings/design.php:782
2195
+ msgid "Size"
 
 
2196
  msgstr ""
2197
 
2198
+ #: templates/settings/design.php:153 templates/settings/design.php:708
2199
+ #: templates/settings/design.php:783
2200
+ msgid "Font color"
2201
  msgstr ""
2202
 
2203
+ #: templates/settings/design.php:154 templates/settings/design.php:784
2204
+ msgid "Background"
2205
  msgstr ""
2206
 
2207
+ #: templates/settings/design.php:155
2208
+ msgid "Icon"
2209
  msgstr ""
2210
 
2211
+ #: templates/settings/design.php:636
2212
+ msgid "Line color"
2213
  msgstr ""
2214
 
2215
+ #: templates/settings/design.php:637
2216
+ msgid "Back line color"
2217
  msgstr ""
2218
 
2219
+ #: templates/settings/design.php:638
2220
+ msgid "Line height"
2221
  msgstr ""
2222
 
2223
+ #: templates/settings/design.php:639
2224
+ msgid "Line border color"
2225
  msgstr ""
2226
 
2227
+ #: templates/settings/design.php:640
2228
+ msgid "Line border width"
2229
  msgstr ""
2230
 
2231
+ #: templates/settings/design.php:641
2232
+ msgid "Button size"
 
2233
  msgstr ""
2234
 
2235
+ #: templates/settings/design.php:642
2236
+ msgid "Button color"
2237
  msgstr ""
2238
 
2239
+ #: templates/settings/design.php:643
2240
+ msgid "Button border color"
2241
  msgstr ""
2242
 
2243
+ #: templates/settings/design.php:644
2244
+ msgid "Button border width"
2245
  msgstr ""
2246
 
2247
+ #: templates/settings/design.php:645
2248
+ msgid "Button border radius"
2249
  msgstr ""
2250
 
2251
+ #: templates/settings/design.php:703
2252
+ msgid "Product count description before filtering with Update button"
2253
  msgstr ""
2254
 
2255
+ #: templates/settings/design.php:707
2256
+ msgid "Font size"
2257
  msgstr ""
2258
 
2259
+ #: templates/settings/design.php:709
2260
+ msgid "Show button font size"
 
 
2261
  msgstr ""
2262
 
2263
+ #: templates/settings/design.php:710
2264
+ msgid "Show button font color"
2265
  msgstr ""
2266
 
2267
+ #: templates/settings/design.php:711
2268
+ msgid "Show button font color on mouse over"
2269
  msgstr ""
2270
 
2271
+ #: templates/settings/design.php:712
2272
+ msgid "Close button size"
 
 
2273
  msgstr ""
2274
 
2275
+ #: templates/settings/design.php:713
2276
+ msgid "Close button font color"
 
 
2277
  msgstr ""
2278
 
2279
+ #: templates/settings/design.php:714
2280
+ msgid "Close button font color on mouse over"
2281
  msgstr ""
2282
 
2283
+ #: templates/settings/design.php:776
2284
+ msgid "Show title only Styles"
2285
  msgstr ""
2286
 
2287
+ #: templates/settings/design.php:816
2288
+ msgid "Title opened"
2289
  msgstr ""
2290
 
2291
+ #: templates/settings/design.php:881
2292
+ msgid "Loading products icon"
2293
  msgstr ""
2294
 
2295
+ #: templates/settings/design.php:889
2296
+ msgid "Text at load icon"
2297
  msgstr ""
2298
 
2299
+ #: templates/settings/design.php:891
2300
+ msgid "Above:"
2301
  msgstr ""
2302
 
2303
+ #: templates/settings/design.php:894
2304
+ msgid "Under:"
2305
  msgstr ""
2306
 
2307
+ #: templates/settings/design.php:897
2308
+ msgid "Before:"
2309
  msgstr ""
2310
 
2311
+ #: templates/settings/design.php:900
2312
+ msgid "After:"
 
 
 
 
2313
  msgstr ""
2314
 
2315
+ #: templates/settings/design.php:906
2316
+ msgid "Description show and hide"
2317
  msgstr ""
2318
 
2319
+ #: templates/settings/design.php:908
2320
+ msgid "Show on:"
 
 
 
2321
  msgstr ""
2322
 
2323
+ #: templates/settings/design.php:910
2324
+ msgid "Click"
2325
  msgstr ""
2326
 
2327
+ #: templates/settings/design.php:911
2328
+ msgid "Mouse over icon"
 
 
 
 
2329
  msgstr ""
2330
 
2331
+ #: templates/settings/design.php:915
2332
+ msgid "Hide on:"
 
 
2333
  msgstr ""
2334
 
2335
+ #: templates/settings/design.php:917
2336
+ msgid "Click anywhere"
 
 
 
 
 
2337
  msgstr ""
2338
 
2339
+ #: templates/settings/design.php:918
2340
+ msgid "Mouse out of icon"
 
 
2341
  msgstr ""
2342
 
2343
+ #: templates/settings/design.php:925
2344
+ msgid "Product count style"
 
 
2345
  msgstr ""
2346
 
2347
+ #: templates/settings/design.php:928
2348
+ msgid "4"
 
 
2349
  msgstr ""
2350
 
2351
+ #: templates/settings/design.php:929
2352
+ msgid "(4)"
2353
  msgstr ""
2354
 
2355
+ #: templates/settings/design.php:930
2356
+ msgid "[4]"
2357
  msgstr ""
2358
 
2359
+ #: templates/settings/design.php:934
2360
+ msgid "Position:"
2361
  msgstr ""
2362
 
2363
+ #: templates/settings/design.php:936 templates/settings/design.php:944
2364
+ msgid "Normal"
 
 
 
2365
  msgstr ""
2366
 
2367
+ #: templates/settings/design.php:937 templates/settings/design.php:945
2368
+ msgid "Right"
2369
  msgstr ""
2370
 
2371
+ #: templates/settings/design.php:938
2372
+ msgid "Right from name"
2373
  msgstr ""
2374
 
2375
+ #: templates/settings/design.php:942
2376
+ msgid "Position on Image:"
2377
  msgstr ""
2378
 
2379
+ #: templates/settings/design.php:952
2380
+ msgid "Select(dropdown) Child Tree Indent"
2381
  msgstr ""
2382
 
2383
+ #: templates/settings/design.php:955
2384
+ msgid "-"
2385
  msgstr ""
2386
 
2387
+ #: templates/settings/design.php:956
2388
+ msgid "space"
2389
  msgstr ""
2390
 
2391
+ #: templates/settings/design.php:957
2392
+ msgid "2 spaces"
2393
  msgstr ""
2394
 
2395
+ #: templates/settings/design.php:958
2396
+ msgid "tab"
2397
  msgstr ""
2398
 
2399
+ #: templates/paid/filters_group.php:3
2400
+ msgid "Show filters above products"
2401
  msgstr ""
2402
 
2403
+ #: templates/paid/filters_group.php:20
2404
+ msgid "Display filters in line"
2405
  msgstr ""
2406
 
2407
+ #: templates/paid/filters_group.php:26
2408
+ msgid "Display filters in line max count"
2409
  msgstr ""
2410
 
2411
+ #: templates/paid/filters_group.php:41
2412
+ msgid "Min Width for Filter"
2413
  msgstr ""
2414
 
2415
+ #: templates/paid/filters_group.php:47
2416
+ msgid "Show title only"
2417
  msgstr ""
2418
 
2419
+ #: templates/paid/filters_group.php:50
2420
+ msgid ""
2421
+ "Only title will be visible. Filter will be displayed after click on title "
2422
+ "and hide after click everywhere else"
2423
  msgstr ""
2424
 
2425
+ #: templates/paid/filters_group.php:54
2426
+ msgid "Display filters on mouse over"
2427
  msgstr ""
2428
 
2429
+ #: templates/paid/filters_group.php:57
2430
+ msgid "Display on mouse over and hide on mouse leave"
2431
  msgstr ""
2432
 
2433
+ #: templates/paid/filters_search_box.php:4
2434
+ msgid "Use Group as Search Box"
2435
  msgstr ""
2436
 
2437
+ #: addons/filtering_conditions/filtering_conditions.php:9
2438
+ #: addons/filtering_conditions/add_conditions.php:39
2439
+ msgid "Filtering Conditions (BETA)"
2440
  msgstr ""
2441
 
2442
+ #: addons/filtering_conditions/add_conditions.php:47
2443
+ msgid ""
2444
+ "Use this to display products only after filtering by some attribute and value"
2445
  msgstr ""
2446
 
2447
+ #: addons/separate_link/separate_vars.php:27
2448
+ msgid "Default operator for URLs"
2449
  msgstr ""
2450
 
2451
+ #: addons/separate_link/separate_vars.php:31
2452
+ msgid "OR"
2453
  msgstr ""
2454
 
2455
+ #: addons/separate_link/separate_vars.php:32
2456
+ msgid "AND"
2457
  msgstr ""
2458
 
2459
+ #: addons/separate_link/separate_vars.php:35
2460
+ msgid "Default operator will be not displayed in URL"
2461
  msgstr ""
2462
 
2463
+ #: addons/separate_link/separate_link.php:9
2464
+ msgid "WooCommerce Like Links (BETA)"
 
 
2465
  msgstr ""
2466
 
2467
+ #: addons/additional_tables/additional_tables.php:59
2468
+ msgid "Additional Tables (BETA)"
2469
  msgstr ""
2470
 
2471
+ #: addons/additional_tables/additional_tables.php:60
2472
  msgid ""
2473
+ "Create 4 additional tables.<ul><li>Table to speed up hierarchical taxonomies "
2474
+ "recount: <strong>Product categories</strong>, <strong>Brands</strong> "
2475
+ "etc</li><li>3 tables to speed up functions for variation filtering</li></ul>"
2476
  msgstr ""
2477
 
2478
+ #: addons/additional_tables/additional_tables.php:106
2479
+ msgid ""
2480
+ "Additional tables was succesfully generated. They will be used automatically "
2481
+ "when needed."
2482
  msgstr ""
2483
 
2484
+ #: addons/additional_tables/additional_tables.php:134
2485
+ #, php-format
2486
  msgid ""
2487
+ "Additional tables are generating. They will be used after generation is "
2488
+ "completed. Current status is <strong><span "
2489
+ "class=\"braapf_additional_table_status\">%d</span>%s</strong>"
2490
  msgstr ""
2491
 
2492
+ #: includes/addons/seo_meta_title.php:14 includes/addons/seo_meta_title.php:19
2493
+ #: includes/addons/seo_meta_title.php:53 includes/addons/seo_meta_title.php:63
2494
+ #: includes/addons/seo_meta_title.php:85
2495
+ msgid " and "
2496
  msgstr ""
2497
 
2498
+ #: includes/addons/seo_meta_title.php:15 includes/addons/seo_meta_title.php:54
2499
+ #: includes/addons/seo_meta_title.php:86
2500
+ msgid " or "
 
2501
  msgstr ""
2502
 
2503
+ #: includes/addons/seo_meta_title.php:22 includes/addons/seo_meta_title.php:69
2504
+ msgid " with "
2505
  msgstr ""
2506
 
2507
+ #: includes/addons/seo_meta_title.php:90
2508
+ msgid " / "
 
 
2509
  msgstr ""
2510
 
2511
+ #: includes/addons/seo_meta_title.php:93
2512
+ msgid " - "
2513
  msgstr ""
2514
 
2515
  #. Description of the plugin
2517
  msgstr ""
2518
 
2519
  #. URI of the plugin
2520
+ msgid ""
2521
+ "https://berocket.com/product/woocommerce-ajax-products-filter?"
2522
+ "utm_source=paid_plugin&utm_medium=plugins&utm_campaign=ajax_filters"
 
 
2523
  msgstr ""
2524
 
2525
  #. Author URI of the plugin
2526
+ msgid ""
2527
+ "https://berocket.com?"
2528
+ "utm_source=paid_plugin&utm_medium=plugins&utm_campaign=ajax_filters"
2529
  msgstr ""
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: dholovnia, berocket
4
  Donate link: https://berocket.com/product/woocommerce-ajax-products-filter?utm_source=wordpress_org&utm_medium=donate&utm_campaign=ajax_filters
5
  Tags: filters, product filters, ajax product filters, ajax filter, ajax filter widget, color filter, size filter, product onsale filter, product preview, product category filter, product reset filter, product sort by filter, stock filter, product tag filter, price range filter, price box filter, advanced product filters, woocommerce filters, woocommerce product filters, woocommerce products filter, woocommerce ajax product filters, widget, plugin, woocommerce item filters, filters plugin, ajax filters plugin, filter woocommerce products, filter woocommerce products plugin, wc filters, wc filters products, wc products filters, wc ajax products filters, wc product filters, wc advanced product filters, woocommerce layered nav, woocommerce layered navigation, ajax filtered nav, ajax filtered navigation, price filter, ajax price filter, woocommerce product sorting, sidebar filter, sidebar ajax filter, taxonomy filter, category filter, attribute filter, attributes filter, woocommerce product sort, ajax products filter plugin for woocommerce, rocket, berocket, berocket woocommerce ajax products filter
6
  Requires at least: 4.0
7
- Tested up to: 5.2.4
8
- Stable tag: 1.4.0.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -184,6 +184,12 @@ You can try this plugin's admin side [here](https://berocket.com/product/woocomm
184
 
185
  == Changelog ==
186
 
 
 
 
 
 
 
187
  = 1.4.0.4 =
188
  * Fix - Additional tables generation errors
189
  * Fix - Additional tables incorrect data to hide products
4
  Donate link: https://berocket.com/product/woocommerce-ajax-products-filter?utm_source=wordpress_org&utm_medium=donate&utm_campaign=ajax_filters
5
  Tags: filters, product filters, ajax product filters, ajax filter, ajax filter widget, color filter, size filter, product onsale filter, product preview, product category filter, product reset filter, product sort by filter, stock filter, product tag filter, price range filter, price box filter, advanced product filters, woocommerce filters, woocommerce product filters, woocommerce products filter, woocommerce ajax product filters, widget, plugin, woocommerce item filters, filters plugin, ajax filters plugin, filter woocommerce products, filter woocommerce products plugin, wc filters, wc filters products, wc products filters, wc ajax products filters, wc product filters, wc advanced product filters, woocommerce layered nav, woocommerce layered navigation, ajax filtered nav, ajax filtered navigation, price filter, ajax price filter, woocommerce product sorting, sidebar filter, sidebar ajax filter, taxonomy filter, category filter, attribute filter, attributes filter, woocommerce product sort, ajax products filter plugin for woocommerce, rocket, berocket, berocket woocommerce ajax products filter
6
  Requires at least: 4.0
7
+ Tested up to: 5.3
8
+ Stable tag: 1.4.0.5
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
184
 
185
  == Changelog ==
186
 
187
+ = 1.4.0.5 =
188
+ * Enhancement - Compatibility version: Wordpress 5.3 and WooCommerce 3.8
189
+ * Fix - Additional tables: stuck and do not generate tables
190
+ * Fix - Additional tables: slow generating of the data for categories
191
+ * Fix - Product Category Value Limitation do not work
192
+
193
  = 1.4.0.4 =
194
  * Fix - Additional tables generation errors
195
  * Fix - Additional tables incorrect data to hide products
templates/filter_post.php CHANGED
@@ -114,25 +114,7 @@ $custom_taxonomies = array_combine($custom_taxonomies, $custom_taxonomies);
114
  <div class="br_admin_three_size_left br_type_select_block"<?php if( $instance['filter_type'] == 'date' ) echo 'style="display: none;"'; ?>>
115
  <label class="br_admin_center"><?php _e('Type', 'BeRocket_AJAX_domain') ?></label>
116
  <?php
117
- $berocket_admin_filter_types = array(
118
- 'tag' => array('checkbox','radio','select','color','image','tag_cloud'),
119
- 'product_cat' => array('checkbox','radio','select','color','image'),
120
- 'sale' => array('checkbox','radio','select'),
121
- 'custom_taxonomy' => array('checkbox','radio','select','color','image'),
122
- 'attribute' => array('checkbox','radio','select','color','image'),
123
- 'price' => array('slider'),
124
- 'filter_by' => array('checkbox','radio','select','color','image'),
125
- );
126
- $berocket_admin_filter_types_by_attr = array(
127
- 'checkbox' => array('value' => 'checkbox', 'text' => __('Checkbox', 'BeRocket_AJAX_domain')),
128
- 'radio' => array('value' => 'radio', 'text' => __('Radio', 'BeRocket_AJAX_domain')),
129
- 'select' => array('value' => 'select', 'text' => __('Select', 'BeRocket_AJAX_domain')),
130
- 'color' => array('value' => 'color', 'text' => __('Color', 'BeRocket_AJAX_domain')),
131
- 'image' => array('value' => 'image', 'text' => __('Image', 'BeRocket_AJAX_domain')),
132
- 'slider' => array('value' => 'slider', 'text' => __('Slider', 'BeRocket_AJAX_domain')),
133
- 'tag_cloud' => array('value' => 'tag_cloud', 'text' => __('Tag cloud', 'BeRocket_AJAX_domain')),
134
- );
135
- list($berocket_admin_filter_types, $berocket_admin_filter_types_by_attr) = apply_filters( 'berocket_admin_filter_types_by_attr', array($berocket_admin_filter_types, $berocket_admin_filter_types_by_attr) );
136
 
137
  $select_options_variants = array();
138
  if ( $instance['filter_type'] == 'tag' ) {
114
  <div class="br_admin_three_size_left br_type_select_block"<?php if( $instance['filter_type'] == 'date' ) echo 'style="display: none;"'; ?>>
115
  <label class="br_admin_center"><?php _e('Type', 'BeRocket_AJAX_domain') ?></label>
116
  <?php
117
+ list($berocket_admin_filter_types, $berocket_admin_filter_types_by_attr) = berocket_aapf_get_filter_types();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
  $select_options_variants = array();
120
  if ( $instance['filter_type'] == 'tag' ) {
templates/filter_post_simple.php CHANGED
@@ -96,25 +96,7 @@ $custom_taxonomies = array_combine($custom_taxonomies, $custom_taxonomies);
96
  <div class="br_admin_half_size_left br_type_select_block"<?php if( $instance['filter_type'] == 'date' ) echo 'style="display: none;"'; ?>>
97
  <label class="br_admin_center"><?php _e('Type', 'BeRocket_AJAX_domain') ?></label>
98
  <?php
99
- $berocket_admin_filter_types = array(
100
- 'tag' => array('checkbox','radio','select','color','image','tag_cloud'),
101
- 'product_cat' => array('checkbox','radio','select','color','image'),
102
- 'sale' => array('checkbox','radio','select'),
103
- 'custom_taxonomy' => array('checkbox','radio','select','color','image'),
104
- 'attribute' => array('checkbox','radio','select','color','image'),
105
- 'price' => array('slider'),
106
- 'filter_by' => array('checkbox','radio','select','color','image'),
107
- );
108
- $berocket_admin_filter_types_by_attr = array(
109
- 'checkbox' => array('value' => 'checkbox', 'text' => 'Checkbox'),
110
- 'radio' => array('value' => 'radio', 'text' => 'Radio'),
111
- 'select' => array('value' => 'select', 'text' => 'Select'),
112
- 'color' => array('value' => 'color', 'text' => 'Color'),
113
- 'image' => array('value' => 'image', 'text' => 'Image'),
114
- 'slider' => array('value' => 'slider', 'text' => 'Slider'),
115
- 'tag_cloud' => array('value' => 'tag_cloud', 'text' => 'Tag cloud'),
116
- );
117
- list($berocket_admin_filter_types, $berocket_admin_filter_types_by_attr) = apply_filters( 'berocket_admin_filter_types_by_attr', array($berocket_admin_filter_types, $berocket_admin_filter_types_by_attr), 'simple' );
118
  $select_options_variants = array();
119
  if ( $instance['filter_type'] == 'tag' ) {
120
  $select_options_variants = $berocket_admin_filter_types['tag'];
96
  <div class="br_admin_half_size_left br_type_select_block"<?php if( $instance['filter_type'] == 'date' ) echo 'style="display: none;"'; ?>>
97
  <label class="br_admin_center"><?php _e('Type', 'BeRocket_AJAX_domain') ?></label>
98
  <?php
99
+ list($berocket_admin_filter_types, $berocket_admin_filter_types_by_attr) = berocket_aapf_get_filter_types('simple');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  $select_options_variants = array();
101
  if ( $instance['filter_type'] == 'tag' ) {
102
  $select_options_variants = $berocket_admin_filter_types['tag'];
woocommerce-filters.php CHANGED
@@ -3,14 +3,14 @@
3
  * Plugin Name: Advanced AJAX Product Filters for WooCommerce
4
  * Plugin URI: https://wordpress.org/plugins/woocommerce-ajax-filters/?utm_source=free_plugin&utm_medium=plugins&utm_campaign=ajax_filters
5
  * Description: Unlimited AJAX products filters to make your shop perfect
6
- * Version: 1.4.0.4
7
  * Author: BeRocket
8
  * Requires at least: 4.0
9
  * Author URI: https://berocket.com?utm_source=free_plugin&utm_medium=plugins&utm_campaign=ajax_filters
10
  * Text Domain: BeRocket_AJAX_domain
11
  * Domain Path: /languages/
12
- * WC tested up to: 3.7.1
13
  */
14
- define( "BeRocket_AJAX_filters_version", '1.4.0.4' );
15
  define( "BeRocket_AJAX_filters_file", __FILE__ );
16
  include_once('main.php');
3
  * Plugin Name: Advanced AJAX Product Filters for WooCommerce
4
  * Plugin URI: https://wordpress.org/plugins/woocommerce-ajax-filters/?utm_source=free_plugin&utm_medium=plugins&utm_campaign=ajax_filters
5
  * Description: Unlimited AJAX products filters to make your shop perfect
6
+ * Version: 1.4.0.5
7
  * Author: BeRocket
8
  * Requires at least: 4.0
9
  * Author URI: https://berocket.com?utm_source=free_plugin&utm_medium=plugins&utm_campaign=ajax_filters
10
  * Text Domain: BeRocket_AJAX_domain
11
  * Domain Path: /languages/
12
+ * WC tested up to: 3.8
13
  */
14
+ define( "BeRocket_AJAX_filters_version", '1.4.0.5' );
15
  define( "BeRocket_AJAX_filters_file", __FILE__ );
16
  include_once('main.php');
wpml-config.xml CHANGED
File without changes