YITH WooCommerce Ajax Product Filter - Version 4.6.0

Version Description

  • Released on 12 January 2022 =

  • New: support for WooCommerce 6.1

  • New: support for WordPress 5.9

  • Update: YITH Plugin Framework

  • Update: updated the "Premium" tab in the settings

Download this release

Release Info

Developer yithemes
Plugin Icon 128x128 YITH WooCommerce Ajax Product Filter
Version 4.6.0
Comparing to
See all releases

Code changes from version 4.5.0 to 4.6.0

Files changed (33) hide show
  1. assets/images/get-premium-ajax-product-filter.jpg +0 -0
  2. assets/images/premium/01.jpg +0 -0
  3. assets/images/premium/02.jpg +0 -0
  4. assets/images/premium/03.jpg +0 -0
  5. assets/images/premium/04.jpg +0 -0
  6. assets/images/premium/05.jpg +0 -0
  7. assets/images/premium/06.jpg +0 -0
  8. assets/images/premium/07.jpg +0 -0
  9. assets/images/premium/08.jpg +0 -0
  10. assets/images/premium/09.jpg +0 -0
  11. assets/images/premium/10.jpg +0 -0
  12. includes/class-yith-wcan-admin.php +22 -2
  13. init.php +6 -5
  14. languages/yith-woocommerce-ajax-navigation-de_DE.mo +0 -0
  15. languages/yith-woocommerce-ajax-navigation-de_DE.po +81 -19
  16. languages/yith-woocommerce-ajax-navigation-de_DE_formal.mo +0 -0
  17. languages/yith-woocommerce-ajax-navigation-de_DE_formal.po +81 -19
  18. languages/yith-woocommerce-ajax-navigation-el.mo +0 -0
  19. languages/yith-woocommerce-ajax-navigation-el.po +81 -19
  20. languages/yith-woocommerce-ajax-navigation-es_ES.mo +0 -0
  21. languages/yith-woocommerce-ajax-navigation-es_ES.po +81 -19
  22. languages/yith-woocommerce-ajax-navigation-fr_FR.po +77 -19
  23. languages/yith-woocommerce-ajax-navigation-it_IT.mo +0 -0
  24. languages/yith-woocommerce-ajax-navigation-it_IT.po +84 -19
  25. languages/yith-woocommerce-ajax-navigation-nl_NL.mo +0 -0
  26. languages/yith-woocommerce-ajax-navigation-nl_NL.po +81 -19
  27. languages/yith-woocommerce-ajax-navigation-tr_TR.po +77 -19
  28. languages/yith-woocommerce-ajax-navigation.pot +79 -21
  29. license.txt +1 -1
  30. plugin-fw/assets/js/javascript-md5/md5.min.js +0 -2
  31. plugin-fw/templates/fields/list-table.php +2 -2
  32. plugin-options/premium-options.php +0 -22
  33. readme.txt +10 -3
assets/images/get-premium-ajax-product-filter.jpg ADDED
Binary file
assets/images/premium/01.jpg DELETED
Binary file
assets/images/premium/02.jpg DELETED
Binary file
assets/images/premium/03.jpg DELETED
Binary file
assets/images/premium/04.jpg DELETED
Binary file
assets/images/premium/05.jpg DELETED
Binary file
assets/images/premium/06.jpg DELETED
Binary file
assets/images/premium/07.jpg DELETED
Binary file
assets/images/premium/08.jpg DELETED
Binary file
assets/images/premium/09.jpg DELETED
Binary file
assets/images/premium/10.jpg DELETED
Binary file
includes/class-yith-wcan-admin.php CHANGED
@@ -184,17 +184,35 @@ if ( ! class_exists( 'YITH_WCAN_Admin' ) ) {
184
  'filter-preset' => _x( 'Filter presets', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' ),
185
  'general' => _x( 'General settings', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' ),
186
  'seo' => _x( 'SEO', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' ),
187
- 'premium' => _x( 'Premium Version', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' ),
188
  );
189
 
190
  if ( isset( $_GET['tab'] ) && 'legacy' === $_GET['tab'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
191
  $admin_tabs['legacy'] = _x( 'Legacy', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' );
192
  }
193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  $args = array(
195
  'create_menu_page' => true,
196
  'parent_slug' => '',
197
- 'page_title' => 'WooCommerce Ajax Product Filter',
198
  'menu_title' => 'Ajax Product Filter',
199
  'plugin_description' => _x( 'It allows your users to find the product they are looking for as quickly as possible.', '[Admin] Plugin description', 'yith-woocommerce-ajax-navigation' ),
200
  'capability' => apply_filters( 'yith_wcan_panel_capability', 'manage_woocommerce' ),
@@ -206,6 +224,7 @@ if ( ! class_exists( 'YITH_WCAN_Admin' ) ) {
206
  'plugin_slug' => YITH_WCAN_SLUG,
207
  'plugin-url' => YITH_WCAN_URL,
208
  'page' => $this->panel_page,
 
209
  'help_tab' => array(
210
  'main_video' => array(
211
  'desc' => _x( 'Check this video to learn how to <b>create a filter preset and show it on the shop page:</b>', '[HELP TAB] Video title', 'yith-woocommerce-ajax-navigation' ),
@@ -223,6 +242,7 @@ if ( ! class_exists( 'YITH_WCAN_Admin' ) ) {
223
  'hc_url' => 'https://support.yithemes.com/hc/en-us/categories/360003474618-YITH-WOOCOMMERCE-AJAX-PRODUCT-FILTER',
224
  'doc_url' => 'https://docs.yithemes.com/yith-woocommerce-ajax-product-filter/',
225
  ),
 
226
  );
227
 
228
  $this->panel = new YIT_Plugin_Panel_WooCommerce( $args );
184
  'filter-preset' => _x( 'Filter presets', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' ),
185
  'general' => _x( 'General settings', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' ),
186
  'seo' => _x( 'SEO', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' ),
 
187
  );
188
 
189
  if ( isset( $_GET['tab'] ) && 'legacy' === $_GET['tab'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
190
  $admin_tabs['legacy'] = _x( 'Legacy', '[Admin] tab name', 'yith-woocommerce-ajax-navigation' );
191
  }
192
 
193
+ $premium_tab = array(
194
+ 'landing_page_url' => $this->get_premium_landing_uri(),
195
+ 'premium_features' => array(
196
+ __( '<b>100% mobile friendly:</b> Show filters in a modal view which is purposely designed for users visiting your site by smartphones or tablets', 'yith-woocommerce-ajax-navigation' ),
197
+ __( 'Show filters in the default layout or also in an <b>horizontal toolbar above products</b> (like Zalando)', 'yith-woocommerce-ajax-navigation' ),
198
+ __( 'Allow customers to <b>filter for price ranges</b> (unlimited ranges and the last range can show: “& above”) or using the <b>price slider</b>
199
+ ', 'yith-woocommerce-ajax-navigation' ),
200
+ __( 'Allow customers to <b>filter for review</b> and <b>for brand</b> (with the support to YITH WooCommerce Brands plugin)', 'yith-woocommerce-ajax-navigation' ),
201
+ __( 'Allow users to <b>order products</b> (by popularity, date, price, date of publishing, average rating, etc) and see only products in stock/featured/on sale', 'yith-woocommerce-ajax-navigation' ),
202
+ __( '<b>Show the active filters</b> (with X to remove them) and choose their position (above products, above or under filters area)', 'yith-woocommerce-ajax-navigation' ),
203
+ __( 'Create <b>color swatches with image support</b> (to better identify gradients, textures, patterns, etc.) and with 2 colors', 'yith-woocommerce-ajax-navigation' ),
204
+ __( 'Show the options using <b>custom images or icons</b>', 'yith-woocommerce-ajax-navigation' ),
205
+ __( 'Choose the <b>order of the options</b> (alphabetical, terms order, terms count, etc.), enable tooltips and show each set of filters in toggle', 'yith-woocommerce-ajax-navigation' ),
206
+ __( 'Choose how to manage terms not availables: hide them OR shown them in grey color and not clickables ', 'yith-woocommerce-ajax-navigation' ),
207
+ __( '<b>Regular updates, Translations and Premium Support</b>', 'yith-woocommerce-ajax-navigation' ),
208
+ ),
209
+ 'main_image_url' => YITH_WCAN_ASSETS . 'images/get-premium-ajax-product-filter.jpg',
210
+ );
211
+
212
  $args = array(
213
  'create_menu_page' => true,
214
  'parent_slug' => '',
215
+ 'page_title' => 'YITH WooCommerce Ajax Product Filter',
216
  'menu_title' => 'Ajax Product Filter',
217
  'plugin_description' => _x( 'It allows your users to find the product they are looking for as quickly as possible.', '[Admin] Plugin description', 'yith-woocommerce-ajax-navigation' ),
218
  'capability' => apply_filters( 'yith_wcan_panel_capability', 'manage_woocommerce' ),
224
  'plugin_slug' => YITH_WCAN_SLUG,
225
  'plugin-url' => YITH_WCAN_URL,
226
  'page' => $this->panel_page,
227
+ 'premium_tab' => $premium_tab,
228
  'help_tab' => array(
229
  'main_video' => array(
230
  'desc' => _x( 'Check this video to learn how to <b>create a filter preset and show it on the shop page:</b>', '[HELP TAB] Video title', 'yith-woocommerce-ajax-navigation' ),
242
  'hc_url' => 'https://support.yithemes.com/hc/en-us/categories/360003474618-YITH-WOOCOMMERCE-AJAX-PRODUCT-FILTER',
243
  'doc_url' => 'https://docs.yithemes.com/yith-woocommerce-ajax-product-filter/',
244
  ),
245
+
246
  );
247
 
248
  $this->panel = new YIT_Plugin_Panel_WooCommerce( $args );
init.php CHANGED
@@ -3,14 +3,14 @@
3
  * Plugin Name: YITH WooCommerce Ajax Product Filter
4
  * Plugin URI: https://wordpress.org/plugins/yith-woocommerce-ajax-navigation/
5
  * Description: <code><strong>YITH WooCommerce AJAX Product Filter</strong></code> allows your users to find the product they are looking for as quickly as possible. Thanks to the plugin you will be able to set up one or more search filters for your WooCommerce products and improve the user experience of your shop. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>
6
- * Version: 4.5.0
7
  * Author: YITH
8
  * Author URI: https://yithemes.com/
9
  * Text Domain: yith-woocommerce-ajax-navigation
10
  * Domain Path: /languages/
11
  *
12
- * WC requires at least: 5.8
13
- * WC tested up to: 6.0
14
  *
15
  * @author YITH
16
  * @package YITH\AjaxProductFilter
@@ -18,7 +18,7 @@
18
  */
19
 
20
  /**
21
- * Copyright 2020 YITH (email : plugins@yithemes.com)
22
  *
23
  * This program is free software; you can redistribute it and/or modify
24
  * it under the terms of the GNU General Public License, version 2, as
@@ -44,7 +44,8 @@ if ( ! defined( 'ABSPATH' ) ) {
44
  ! defined( 'YITH_WCAN_URL' ) && define( 'YITH_WCAN_URL', plugin_dir_url( __FILE__ ) );
45
  ! defined( 'YITH_WCAN_DIR' ) && define( 'YITH_WCAN_DIR', plugin_dir_path( __FILE__ ) );
46
  ! defined( 'YITH_WCAN_INC' ) && define( 'YITH_WCAN_INC', YITH_WCAN_DIR . 'includes/' );
47
- ! defined( 'YITH_WCAN_VERSION' ) && define( 'YITH_WCAN_VERSION', '4.5.0' );
 
48
  ! defined( 'YITH_WCAN_FREE_INIT' ) && define( 'YITH_WCAN_FREE_INIT', plugin_basename( __FILE__ ) );
49
  ! defined( 'YITH_WCAN_FILE' ) && define( 'YITH_WCAN_FILE', __FILE__ );
50
  ! defined( 'YITH_WCAN_SLUG' ) && define( 'YITH_WCAN_SLUG', 'yith-woocommerce-ajax-navigation' );
3
  * Plugin Name: YITH WooCommerce Ajax Product Filter
4
  * Plugin URI: https://wordpress.org/plugins/yith-woocommerce-ajax-navigation/
5
  * Description: <code><strong>YITH WooCommerce AJAX Product Filter</strong></code> allows your users to find the product they are looking for as quickly as possible. Thanks to the plugin you will be able to set up one or more search filters for your WooCommerce products and improve the user experience of your shop. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>
6
+ * Version: 4.6.0
7
  * Author: YITH
8
  * Author URI: https://yithemes.com/
9
  * Text Domain: yith-woocommerce-ajax-navigation
10
  * Domain Path: /languages/
11
  *
12
+ * WC requires at least: 5.9
13
+ * WC tested up to: 6.1
14
  *
15
  * @author YITH
16
  * @package YITH\AjaxProductFilter
18
  */
19
 
20
  /**
21
+ * Copyright 2022 YITH (email : plugins@yithemes.com)
22
  *
23
  * This program is free software; you can redistribute it and/or modify
24
  * it under the terms of the GNU General Public License, version 2, as
44
  ! defined( 'YITH_WCAN_URL' ) && define( 'YITH_WCAN_URL', plugin_dir_url( __FILE__ ) );
45
  ! defined( 'YITH_WCAN_DIR' ) && define( 'YITH_WCAN_DIR', plugin_dir_path( __FILE__ ) );
46
  ! defined( 'YITH_WCAN_INC' ) && define( 'YITH_WCAN_INC', YITH_WCAN_DIR . 'includes/' );
47
+ ! defined( 'YITH_WCAN_ASSETS' ) && define( 'YITH_WCAN_ASSETS', YITH_WCAN_URL . 'assets/' );
48
+ ! defined( 'YITH_WCAN_VERSION' ) && define( 'YITH_WCAN_VERSION', '4.6.0' );
49
  ! defined( 'YITH_WCAN_FREE_INIT' ) && define( 'YITH_WCAN_FREE_INIT', plugin_basename( __FILE__ ) );
50
  ! defined( 'YITH_WCAN_FILE' ) && define( 'YITH_WCAN_FILE', __FILE__ );
51
  ! defined( 'YITH_WCAN_SLUG' ) && define( 'YITH_WCAN_SLUG', 'yith-woocommerce-ajax-navigation' );
languages/yith-woocommerce-ajax-navigation-de_DE.mo CHANGED
Binary file
languages/yith-woocommerce-ajax-navigation-de_DE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
- "POT-Creation-Date: 2021-09-24 12:55:48+00:00\n"
9
  "PO-Revision-Date: 2021-03-02 11:03+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -16,6 +16,69 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
  "X-Generator: Poedit 2.4.2\n"
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
20
  msgid "Draft Preset"
21
  msgstr "Preset Entwurf"
@@ -107,13 +170,13 @@ msgstr "Alle Filter zurücksetzen"
107
  msgid "Button Label"
108
  msgstr "Button-Beschriftung"
109
 
110
- #: init.php:148
111
  msgid ""
112
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
113
  "while you are using the premium one."
114
  msgstr ""
115
 
116
- #: init.php:166
117
  #, fuzzy
118
  msgid ""
119
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
@@ -193,17 +256,12 @@ msgctxt "[Admin] tab name"
193
  msgid "SEO"
194
  msgstr "SEO"
195
 
196
- #: includes/class-yith-wcan-admin.php:187
197
- msgctxt "[Admin] tab name"
198
- msgid "Premium Version"
199
- msgstr "Premium-Version"
200
-
201
- #: includes/class-yith-wcan-admin.php:191
202
  msgctxt "[Admin] tab name"
203
  msgid "Legacy"
204
  msgstr "Legacy"
205
 
206
- #: includes/class-yith-wcan-admin.php:199
207
  msgctxt "[Admin] Plugin description"
208
  msgid ""
209
  "It allows your users to find the product they are looking for as quickly as "
@@ -212,44 +270,44 @@ msgstr ""
212
  "Ermöglicht deinen Benutzern, das gesuchte Produkt so schnell wie möglich zu "
213
  "finden."
214
 
215
- #: includes/class-yith-wcan-admin.php:211
216
  msgctxt "[HELP TAB] Video title"
217
  msgid ""
218
  "Check this video to learn how to <b>create a filter preset and show it on "
219
  "the shop page:</b>"
220
  msgstr ""
221
 
222
- #: includes/class-yith-wcan-admin.php:329
223
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
224
  msgid "item"
225
  msgstr "Artikel"
226
 
227
- #: includes/class-yith-wcan-admin.php:330
228
  msgctxt "[Admin] Preset table empty message second line"
229
  msgid "But don't worry, here you can create your first one!"
230
  msgstr "Aber keine Sorge, hier kannst du deine erste erstellen!"
231
 
232
- #: includes/class-yith-wcan-admin.php:480
233
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
234
  msgid "Clear Product Filter transients"
235
  msgstr "Produktfilter-Tansients löschen"
236
 
237
- #: includes/class-yith-wcan-admin.php:486
238
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
239
  msgid "Run filter widgets upgrade"
240
  msgstr "Upgrade der Filter-Widgets ausführen"
241
 
242
- #: includes/class-yith-wcan-admin.php:481
243
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
244
  msgid "Clear"
245
  msgstr "Löschen"
246
 
247
- #: includes/class-yith-wcan-admin.php:487
248
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
249
  msgid "Run"
250
  msgstr "Start"
251
 
252
- #: includes/class-yith-wcan-admin.php:482
253
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
254
  msgid ""
255
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -261,7 +319,7 @@ msgstr ""
261
  "Konfiguration deines Produkts geändert hast und die Filter nicht die "
262
  "erwarteten Ergebnisse anzeigen. "
263
 
264
- #: includes/class-yith-wcan-admin.php:488
265
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
266
  msgid ""
267
  "This will create a preset for any sidebar of your shop containing filter "
@@ -1433,6 +1491,10 @@ msgctxt "[FRONTEND] Reset button for preset shortcode"
1433
  msgid "Reset filters"
1434
  msgstr "Filter zurücksetzen"
1435
 
 
 
 
 
1436
  #~ msgctxt "[Admin] Menu title"
1437
  #~ msgid "Ajax Product Filter"
1438
  #~ msgstr "AJAX Produkt-Filter "
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
9
  "PO-Revision-Date: 2021-03-02 11:03+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
  "X-Generator: Poedit 2.4.2\n"
18
 
19
+ #: includes/class-yith-wcan-admin.php:196
20
+ msgid ""
21
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is purposely "
22
+ "designed for users visiting your site by smartphones or tablets"
23
+ msgstr ""
24
+
25
+ #: includes/class-yith-wcan-admin.php:197
26
+ msgid ""
27
+ "Show filters in the default layout or also in an <b>horizontal toolbar above "
28
+ "products</b> (like Zalando)"
29
+ msgstr ""
30
+
31
+ #: includes/class-yith-wcan-admin.php:198
32
+ msgid ""
33
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
34
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
35
+ msgstr ""
36
+
37
+ #: includes/class-yith-wcan-admin.php:200
38
+ msgid ""
39
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
40
+ "support to YITH WooCommerce Brands plugin)"
41
+ msgstr ""
42
+
43
+ #: includes/class-yith-wcan-admin.php:201
44
+ msgid ""
45
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
46
+ "publishing, average rating, etc) and see only \tproducts in stock/featured/"
47
+ "on sale"
48
+ msgstr ""
49
+
50
+ #: includes/class-yith-wcan-admin.php:202
51
+ msgid ""
52
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
53
+ "position (above products, above or under filters area)"
54
+ msgstr ""
55
+
56
+ #: includes/class-yith-wcan-admin.php:203
57
+ msgid ""
58
+ "Create <b>color swatches with image support</b> (to better identify "
59
+ "gradients, textures, patterns, etc.) and with 2 colors"
60
+ msgstr ""
61
+
62
+ #: includes/class-yith-wcan-admin.php:204
63
+ msgid "Show the options using <b>custom images or icons</b>"
64
+ msgstr ""
65
+
66
+ #: includes/class-yith-wcan-admin.php:205
67
+ msgid ""
68
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
69
+ "count, etc.), enable tooltips and show each set of filters in toggle"
70
+ msgstr ""
71
+
72
+ #: includes/class-yith-wcan-admin.php:206
73
+ msgid ""
74
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
75
+ "color and not clickables "
76
+ msgstr ""
77
+
78
+ #: includes/class-yith-wcan-admin.php:207
79
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
80
+ msgstr ""
81
+
82
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
83
  msgid "Draft Preset"
84
  msgstr "Preset Entwurf"
170
  msgid "Button Label"
171
  msgstr "Button-Beschriftung"
172
 
173
+ #: init.php:149
174
  msgid ""
175
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
176
  "while you are using the premium one."
177
  msgstr ""
178
 
179
+ #: init.php:167
180
  #, fuzzy
181
  msgid ""
182
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
256
  msgid "SEO"
257
  msgstr "SEO"
258
 
259
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
260
  msgctxt "[Admin] tab name"
261
  msgid "Legacy"
262
  msgstr "Legacy"
263
 
264
+ #: includes/class-yith-wcan-admin.php:217
265
  msgctxt "[Admin] Plugin description"
266
  msgid ""
267
  "It allows your users to find the product they are looking for as quickly as "
270
  "Ermöglicht deinen Benutzern, das gesuchte Produkt so schnell wie möglich zu "
271
  "finden."
272
 
273
+ #: includes/class-yith-wcan-admin.php:230
274
  msgctxt "[HELP TAB] Video title"
275
  msgid ""
276
  "Check this video to learn how to <b>create a filter preset and show it on "
277
  "the shop page:</b>"
278
  msgstr ""
279
 
280
+ #: includes/class-yith-wcan-admin.php:349
281
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
282
  msgid "item"
283
  msgstr "Artikel"
284
 
285
+ #: includes/class-yith-wcan-admin.php:350
286
  msgctxt "[Admin] Preset table empty message second line"
287
  msgid "But don't worry, here you can create your first one!"
288
  msgstr "Aber keine Sorge, hier kannst du deine erste erstellen!"
289
 
290
+ #: includes/class-yith-wcan-admin.php:500
291
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
292
  msgid "Clear Product Filter transients"
293
  msgstr "Produktfilter-Tansients löschen"
294
 
295
+ #: includes/class-yith-wcan-admin.php:506
296
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
297
  msgid "Run filter widgets upgrade"
298
  msgstr "Upgrade der Filter-Widgets ausführen"
299
 
300
+ #: includes/class-yith-wcan-admin.php:501
301
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
302
  msgid "Clear"
303
  msgstr "Löschen"
304
 
305
+ #: includes/class-yith-wcan-admin.php:507
306
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
307
  msgid "Run"
308
  msgstr "Start"
309
 
310
+ #: includes/class-yith-wcan-admin.php:502
311
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
312
  msgid ""
313
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
319
  "Konfiguration deines Produkts geändert hast und die Filter nicht die "
320
  "erwarteten Ergebnisse anzeigen. "
321
 
322
+ #: includes/class-yith-wcan-admin.php:508
323
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
324
  msgid ""
325
  "This will create a preset for any sidebar of your shop containing filter "
1491
  msgid "Reset filters"
1492
  msgstr "Filter zurücksetzen"
1493
 
1494
+ #~ msgctxt "[Admin] tab name"
1495
+ #~ msgid "Premium Version"
1496
+ #~ msgstr "Premium-Version"
1497
+
1498
  #~ msgctxt "[Admin] Menu title"
1499
  #~ msgid "Ajax Product Filter"
1500
  #~ msgstr "AJAX Produkt-Filter "
languages/yith-woocommerce-ajax-navigation-de_DE_formal.mo CHANGED
Binary file
languages/yith-woocommerce-ajax-navigation-de_DE_formal.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
- "POT-Creation-Date: 2021-09-24 12:55:48+00:00\n"
9
  "PO-Revision-Date: 2021-03-02 11:03+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -16,6 +16,69 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
  "X-Generator: Poedit 2.4.2\n"
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
20
  msgid "Draft Preset"
21
  msgstr "Preset Entwurf"
@@ -107,13 +170,13 @@ msgstr "Alle Filter zurücksetzen"
107
  msgid "Button Label"
108
  msgstr "Button-Beschriftung"
109
 
110
- #: init.php:148
111
  msgid ""
112
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
113
  "while you are using the premium one."
114
  msgstr ""
115
 
116
- #: init.php:166
117
  #, fuzzy
118
  msgid ""
119
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
@@ -193,17 +256,12 @@ msgctxt "[Admin] tab name"
193
  msgid "SEO"
194
  msgstr "SEO"
195
 
196
- #: includes/class-yith-wcan-admin.php:187
197
- msgctxt "[Admin] tab name"
198
- msgid "Premium Version"
199
- msgstr "Premium-Version"
200
-
201
- #: includes/class-yith-wcan-admin.php:191
202
  msgctxt "[Admin] tab name"
203
  msgid "Legacy"
204
  msgstr "Legacy"
205
 
206
- #: includes/class-yith-wcan-admin.php:199
207
  msgctxt "[Admin] Plugin description"
208
  msgid ""
209
  "It allows your users to find the product they are looking for as quickly as "
@@ -212,44 +270,44 @@ msgstr ""
212
  "Ermöglicht Ihren Benutzern, das gesuchte Produkt so schnell wie möglich zu "
213
  "finden."
214
 
215
- #: includes/class-yith-wcan-admin.php:211
216
  msgctxt "[HELP TAB] Video title"
217
  msgid ""
218
  "Check this video to learn how to <b>create a filter preset and show it on "
219
  "the shop page:</b>"
220
  msgstr ""
221
 
222
- #: includes/class-yith-wcan-admin.php:329
223
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
224
  msgid "item"
225
  msgstr "Artikel"
226
 
227
- #: includes/class-yith-wcan-admin.php:330
228
  msgctxt "[Admin] Preset table empty message second line"
229
  msgid "But don't worry, here you can create your first one!"
230
  msgstr "Aber keine Sorge, hier können Sie eine erste erstellen!"
231
 
232
- #: includes/class-yith-wcan-admin.php:480
233
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
234
  msgid "Clear Product Filter transients"
235
  msgstr "Produktfilter-Tansients löschen"
236
 
237
- #: includes/class-yith-wcan-admin.php:486
238
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
239
  msgid "Run filter widgets upgrade"
240
  msgstr "Upgrade der Filter-Widgets ausführen"
241
 
242
- #: includes/class-yith-wcan-admin.php:481
243
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
244
  msgid "Clear"
245
  msgstr "Löschen"
246
 
247
- #: includes/class-yith-wcan-admin.php:487
248
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
249
  msgid "Run"
250
  msgstr "Start"
251
 
252
- #: includes/class-yith-wcan-admin.php:482
253
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
254
  msgid ""
255
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -261,7 +319,7 @@ msgstr ""
261
  "Konfiguration Ihres Produkts geändert haben und die Filter nicht die "
262
  "erwarteten Ergebnisse anzeigen. "
263
 
264
- #: includes/class-yith-wcan-admin.php:488
265
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
266
  msgid ""
267
  "This will create a preset for any sidebar of your shop containing filter "
@@ -1436,6 +1494,10 @@ msgctxt "[FRONTEND] Reset button for preset shortcode"
1436
  msgid "Reset filters"
1437
  msgstr "Filter zurücksetzen"
1438
 
 
 
 
 
1439
  #~ msgctxt "[Admin] Menu title"
1440
  #~ msgid "Ajax Product Filter"
1441
  #~ msgstr "AJAX Produkt-Filter "
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
9
  "PO-Revision-Date: 2021-03-02 11:03+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
  "X-Generator: Poedit 2.4.2\n"
18
 
19
+ #: includes/class-yith-wcan-admin.php:196
20
+ msgid ""
21
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is purposely "
22
+ "designed for users visiting your site by smartphones or tablets"
23
+ msgstr ""
24
+
25
+ #: includes/class-yith-wcan-admin.php:197
26
+ msgid ""
27
+ "Show filters in the default layout or also in an <b>horizontal toolbar above "
28
+ "products</b> (like Zalando)"
29
+ msgstr ""
30
+
31
+ #: includes/class-yith-wcan-admin.php:198
32
+ msgid ""
33
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
34
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
35
+ msgstr ""
36
+
37
+ #: includes/class-yith-wcan-admin.php:200
38
+ msgid ""
39
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
40
+ "support to YITH WooCommerce Brands plugin)"
41
+ msgstr ""
42
+
43
+ #: includes/class-yith-wcan-admin.php:201
44
+ msgid ""
45
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
46
+ "publishing, average rating, etc) and see only \tproducts in stock/featured/"
47
+ "on sale"
48
+ msgstr ""
49
+
50
+ #: includes/class-yith-wcan-admin.php:202
51
+ msgid ""
52
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
53
+ "position (above products, above or under filters area)"
54
+ msgstr ""
55
+
56
+ #: includes/class-yith-wcan-admin.php:203
57
+ msgid ""
58
+ "Create <b>color swatches with image support</b> (to better identify "
59
+ "gradients, textures, patterns, etc.) and with 2 colors"
60
+ msgstr ""
61
+
62
+ #: includes/class-yith-wcan-admin.php:204
63
+ msgid "Show the options using <b>custom images or icons</b>"
64
+ msgstr ""
65
+
66
+ #: includes/class-yith-wcan-admin.php:205
67
+ msgid ""
68
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
69
+ "count, etc.), enable tooltips and show each set of filters in toggle"
70
+ msgstr ""
71
+
72
+ #: includes/class-yith-wcan-admin.php:206
73
+ msgid ""
74
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
75
+ "color and not clickables "
76
+ msgstr ""
77
+
78
+ #: includes/class-yith-wcan-admin.php:207
79
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
80
+ msgstr ""
81
+
82
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
83
  msgid "Draft Preset"
84
  msgstr "Preset Entwurf"
170
  msgid "Button Label"
171
  msgstr "Button-Beschriftung"
172
 
173
+ #: init.php:149
174
  msgid ""
175
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
176
  "while you are using the premium one."
177
  msgstr ""
178
 
179
+ #: init.php:167
180
  #, fuzzy
181
  msgid ""
182
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
256
  msgid "SEO"
257
  msgstr "SEO"
258
 
259
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
260
  msgctxt "[Admin] tab name"
261
  msgid "Legacy"
262
  msgstr "Legacy"
263
 
264
+ #: includes/class-yith-wcan-admin.php:217
265
  msgctxt "[Admin] Plugin description"
266
  msgid ""
267
  "It allows your users to find the product they are looking for as quickly as "
270
  "Ermöglicht Ihren Benutzern, das gesuchte Produkt so schnell wie möglich zu "
271
  "finden."
272
 
273
+ #: includes/class-yith-wcan-admin.php:230
274
  msgctxt "[HELP TAB] Video title"
275
  msgid ""
276
  "Check this video to learn how to <b>create a filter preset and show it on "
277
  "the shop page:</b>"
278
  msgstr ""
279
 
280
+ #: includes/class-yith-wcan-admin.php:349
281
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
282
  msgid "item"
283
  msgstr "Artikel"
284
 
285
+ #: includes/class-yith-wcan-admin.php:350
286
  msgctxt "[Admin] Preset table empty message second line"
287
  msgid "But don't worry, here you can create your first one!"
288
  msgstr "Aber keine Sorge, hier können Sie eine erste erstellen!"
289
 
290
+ #: includes/class-yith-wcan-admin.php:500
291
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
292
  msgid "Clear Product Filter transients"
293
  msgstr "Produktfilter-Tansients löschen"
294
 
295
+ #: includes/class-yith-wcan-admin.php:506
296
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
297
  msgid "Run filter widgets upgrade"
298
  msgstr "Upgrade der Filter-Widgets ausführen"
299
 
300
+ #: includes/class-yith-wcan-admin.php:501
301
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
302
  msgid "Clear"
303
  msgstr "Löschen"
304
 
305
+ #: includes/class-yith-wcan-admin.php:507
306
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
307
  msgid "Run"
308
  msgstr "Start"
309
 
310
+ #: includes/class-yith-wcan-admin.php:502
311
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
312
  msgid ""
313
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
319
  "Konfiguration Ihres Produkts geändert haben und die Filter nicht die "
320
  "erwarteten Ergebnisse anzeigen. "
321
 
322
+ #: includes/class-yith-wcan-admin.php:508
323
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
324
  msgid ""
325
  "This will create a preset for any sidebar of your shop containing filter "
1494
  msgid "Reset filters"
1495
  msgstr "Filter zurücksetzen"
1496
 
1497
+ #~ msgctxt "[Admin] tab name"
1498
+ #~ msgid "Premium Version"
1499
+ #~ msgstr "Premium-Version"
1500
+
1501
  #~ msgctxt "[Admin] Menu title"
1502
  #~ msgid "Ajax Product Filter"
1503
  #~ msgstr "AJAX Produkt-Filter "
languages/yith-woocommerce-ajax-navigation-el.mo CHANGED
Binary file
languages/yith-woocommerce-ajax-navigation-el.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
- "POT-Creation-Date: 2021-09-24 12:55:48+00:00\n"
9
  "PO-Revision-Date: 2021-02-12 13:32:43+0000\n"
10
  "Language: el_GR\n"
11
  "MIME-Version: 1.0\n"
@@ -14,6 +14,69 @@ msgstr ""
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
18
  msgid "Draft Preset"
19
  msgstr "Προρύθμιση Πρόχειρου"
@@ -105,13 +168,13 @@ msgstr "Επαναφορά Όλων των Φίλτρων"
105
  msgid "Button Label"
106
  msgstr "Επιγραφή Κουμπιού"
107
 
108
- #: init.php:148
109
  msgid ""
110
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
111
  "while you are using the premium one."
112
  msgstr ""
113
 
114
- #: init.php:166
115
  #, fuzzy
116
  msgid ""
117
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
@@ -192,17 +255,12 @@ msgctxt "[Admin] tab name"
192
  msgid "SEO"
193
  msgstr "SEO"
194
 
195
- #: includes/class-yith-wcan-admin.php:187
196
- msgctxt "[Admin] tab name"
197
- msgid "Premium Version"
198
- msgstr "Premium Έκδοση"
199
-
200
- #: includes/class-yith-wcan-admin.php:191
201
  msgctxt "[Admin] tab name"
202
  msgid "Legacy"
203
  msgstr "Σύστημα κληρονομιάς"
204
 
205
- #: includes/class-yith-wcan-admin.php:199
206
  msgctxt "[Admin] Plugin description"
207
  msgid ""
208
  "It allows your users to find the product they are looking for as quickly as "
@@ -211,44 +269,44 @@ msgstr ""
211
  "Επιτρέπει στους χρήστες σας να βρουν το προϊόν που επιθυμούν το συντομότερο "
212
  "δυνατό."
213
 
214
- #: includes/class-yith-wcan-admin.php:211
215
  msgctxt "[HELP TAB] Video title"
216
  msgid ""
217
  "Check this video to learn how to <b>create a filter preset and show it on "
218
  "the shop page:</b>"
219
  msgstr ""
220
 
221
- #: includes/class-yith-wcan-admin.php:329
222
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
223
  msgid "item"
224
  msgstr "αντικείμενο"
225
 
226
- #: includes/class-yith-wcan-admin.php:330
227
  msgctxt "[Admin] Preset table empty message second line"
228
  msgid "But don't worry, here you can create your first one!"
229
  msgstr "Μην ανησυχείτε, εδώ μπορείτε να δημιουργήσετε το πρώτο!"
230
 
231
- #: includes/class-yith-wcan-admin.php:480
232
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
233
  msgid "Clear Product Filter transients"
234
  msgstr "Καθαρισμός μεταβάσεων φίλτρου προϊόντος"
235
 
236
- #: includes/class-yith-wcan-admin.php:486
237
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
238
  msgid "Run filter widgets upgrade"
239
  msgstr "Εκτέλεση αναβάθμισης μικροεφαρμογών φίλτρου"
240
 
241
- #: includes/class-yith-wcan-admin.php:481
242
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
243
  msgid "Clear"
244
  msgstr "Καθαρισμός"
245
 
246
- #: includes/class-yith-wcan-admin.php:487
247
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
248
  msgid "Run"
249
  msgstr "Εκτέλεση"
250
 
251
- #: includes/class-yith-wcan-admin.php:482
252
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
253
  msgid ""
254
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -260,7 +318,7 @@ msgstr ""
260
  "κατα την αλλαγή της ρύθμισης του προϊόντος σας, τα φίλτρα δεν εμφανίζουν τα "
261
  "αποτελέσματα που περιμένετε. "
262
 
263
- #: includes/class-yith-wcan-admin.php:488
264
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
265
  msgid ""
266
  "This will create a preset for any sidebar of your shop containing filter "
@@ -1434,6 +1492,10 @@ msgctxt "[FRONTEND] Reset button for preset shortcode"
1434
  msgid "Reset filters"
1435
  msgstr "Επαναφορά φίλτρων"
1436
 
 
 
 
 
1437
  #~ msgctxt "[Admin] Menu title"
1438
  #~ msgid "Ajax Product Filter"
1439
  #~ msgstr "Ajax Product Filter"
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
9
  "PO-Revision-Date: 2021-02-12 13:32:43+0000\n"
10
  "Language: el_GR\n"
11
  "MIME-Version: 1.0\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
17
+ #: includes/class-yith-wcan-admin.php:196
18
+ msgid ""
19
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is purposely "
20
+ "designed for users visiting your site by smartphones or tablets"
21
+ msgstr ""
22
+
23
+ #: includes/class-yith-wcan-admin.php:197
24
+ msgid ""
25
+ "Show filters in the default layout or also in an <b>horizontal toolbar above "
26
+ "products</b> (like Zalando)"
27
+ msgstr ""
28
+
29
+ #: includes/class-yith-wcan-admin.php:198
30
+ msgid ""
31
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
32
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
33
+ msgstr ""
34
+
35
+ #: includes/class-yith-wcan-admin.php:200
36
+ msgid ""
37
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
38
+ "support to YITH WooCommerce Brands plugin)"
39
+ msgstr ""
40
+
41
+ #: includes/class-yith-wcan-admin.php:201
42
+ msgid ""
43
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
44
+ "publishing, average rating, etc) and see only \tproducts in stock/featured/"
45
+ "on sale"
46
+ msgstr ""
47
+
48
+ #: includes/class-yith-wcan-admin.php:202
49
+ msgid ""
50
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
51
+ "position (above products, above or under filters area)"
52
+ msgstr ""
53
+
54
+ #: includes/class-yith-wcan-admin.php:203
55
+ msgid ""
56
+ "Create <b>color swatches with image support</b> (to better identify "
57
+ "gradients, textures, patterns, etc.) and with 2 colors"
58
+ msgstr ""
59
+
60
+ #: includes/class-yith-wcan-admin.php:204
61
+ msgid "Show the options using <b>custom images or icons</b>"
62
+ msgstr ""
63
+
64
+ #: includes/class-yith-wcan-admin.php:205
65
+ msgid ""
66
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
67
+ "count, etc.), enable tooltips and show each set of filters in toggle"
68
+ msgstr ""
69
+
70
+ #: includes/class-yith-wcan-admin.php:206
71
+ msgid ""
72
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
73
+ "color and not clickables "
74
+ msgstr ""
75
+
76
+ #: includes/class-yith-wcan-admin.php:207
77
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
78
+ msgstr ""
79
+
80
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
81
  msgid "Draft Preset"
82
  msgstr "Προρύθμιση Πρόχειρου"
168
  msgid "Button Label"
169
  msgstr "Επιγραφή Κουμπιού"
170
 
171
+ #: init.php:149
172
  msgid ""
173
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
174
  "while you are using the premium one."
175
  msgstr ""
176
 
177
+ #: init.php:167
178
  #, fuzzy
179
  msgid ""
180
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
255
  msgid "SEO"
256
  msgstr "SEO"
257
 
258
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
259
  msgctxt "[Admin] tab name"
260
  msgid "Legacy"
261
  msgstr "Σύστημα κληρονομιάς"
262
 
263
+ #: includes/class-yith-wcan-admin.php:217
264
  msgctxt "[Admin] Plugin description"
265
  msgid ""
266
  "It allows your users to find the product they are looking for as quickly as "
269
  "Επιτρέπει στους χρήστες σας να βρουν το προϊόν που επιθυμούν το συντομότερο "
270
  "δυνατό."
271
 
272
+ #: includes/class-yith-wcan-admin.php:230
273
  msgctxt "[HELP TAB] Video title"
274
  msgid ""
275
  "Check this video to learn how to <b>create a filter preset and show it on "
276
  "the shop page:</b>"
277
  msgstr ""
278
 
279
+ #: includes/class-yith-wcan-admin.php:349
280
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
281
  msgid "item"
282
  msgstr "αντικείμενο"
283
 
284
+ #: includes/class-yith-wcan-admin.php:350
285
  msgctxt "[Admin] Preset table empty message second line"
286
  msgid "But don't worry, here you can create your first one!"
287
  msgstr "Μην ανησυχείτε, εδώ μπορείτε να δημιουργήσετε το πρώτο!"
288
 
289
+ #: includes/class-yith-wcan-admin.php:500
290
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
291
  msgid "Clear Product Filter transients"
292
  msgstr "Καθαρισμός μεταβάσεων φίλτρου προϊόντος"
293
 
294
+ #: includes/class-yith-wcan-admin.php:506
295
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
296
  msgid "Run filter widgets upgrade"
297
  msgstr "Εκτέλεση αναβάθμισης μικροεφαρμογών φίλτρου"
298
 
299
+ #: includes/class-yith-wcan-admin.php:501
300
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
301
  msgid "Clear"
302
  msgstr "Καθαρισμός"
303
 
304
+ #: includes/class-yith-wcan-admin.php:507
305
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
306
  msgid "Run"
307
  msgstr "Εκτέλεση"
308
 
309
+ #: includes/class-yith-wcan-admin.php:502
310
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
311
  msgid ""
312
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
318
  "κατα την αλλαγή της ρύθμισης του προϊόντος σας, τα φίλτρα δεν εμφανίζουν τα "
319
  "αποτελέσματα που περιμένετε. "
320
 
321
+ #: includes/class-yith-wcan-admin.php:508
322
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
323
  msgid ""
324
  "This will create a preset for any sidebar of your shop containing filter "
1492
  msgid "Reset filters"
1493
  msgstr "Επαναφορά φίλτρων"
1494
 
1495
+ #~ msgctxt "[Admin] tab name"
1496
+ #~ msgid "Premium Version"
1497
+ #~ msgstr "Premium Έκδοση"
1498
+
1499
  #~ msgctxt "[Admin] Menu title"
1500
  #~ msgid "Ajax Product Filter"
1501
  #~ msgstr "Ajax Product Filter"
languages/yith-woocommerce-ajax-navigation-es_ES.mo CHANGED
Binary file
languages/yith-woocommerce-ajax-navigation-es_ES.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
- "POT-Creation-Date: 2021-09-24 12:55:48+00:00\n"
9
  "PO-Revision-Date: 2021-02-12 13:30:42+0000\n"
10
  "Language: es\n"
11
  "MIME-Version: 1.0\n"
@@ -14,6 +14,69 @@ msgstr ""
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
18
  msgid "Draft Preset"
19
  msgstr "Borrador preestablecido"
@@ -105,13 +168,13 @@ msgstr "Restablecer todos los filtros"
105
  msgid "Button Label"
106
  msgstr "Etiqueta del botón"
107
 
108
- #: init.php:148
109
  msgid ""
110
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
111
  "while you are using the premium one."
112
  msgstr ""
113
 
114
- #: init.php:166
115
  #, fuzzy
116
  msgid ""
117
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
@@ -191,17 +254,12 @@ msgctxt "[Admin] tab name"
191
  msgid "SEO"
192
  msgstr "SEO"
193
 
194
- #: includes/class-yith-wcan-admin.php:187
195
- msgctxt "[Admin] tab name"
196
- msgid "Premium Version"
197
- msgstr "Versión premium"
198
-
199
- #: includes/class-yith-wcan-admin.php:191
200
  msgctxt "[Admin] tab name"
201
  msgid "Legacy"
202
  msgstr "Heredado"
203
 
204
- #: includes/class-yith-wcan-admin.php:199
205
  msgctxt "[Admin] Plugin description"
206
  msgid ""
207
  "It allows your users to find the product they are looking for as quickly as "
@@ -210,44 +268,44 @@ msgstr ""
210
  "Permite a tus usuarios encontrar el producto que están buscando lo más "
211
  "rápido posible."
212
 
213
- #: includes/class-yith-wcan-admin.php:211
214
  msgctxt "[HELP TAB] Video title"
215
  msgid ""
216
  "Check this video to learn how to <b>create a filter preset and show it on "
217
  "the shop page:</b>"
218
  msgstr ""
219
 
220
- #: includes/class-yith-wcan-admin.php:329
221
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
222
  msgid "item"
223
  msgstr "artículo"
224
 
225
- #: includes/class-yith-wcan-admin.php:330
226
  msgctxt "[Admin] Preset table empty message second line"
227
  msgid "But don't worry, here you can create your first one!"
228
  msgstr "¡Pero no te preocupes, aquí puedes crear el primero!"
229
 
230
- #: includes/class-yith-wcan-admin.php:480
231
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
232
  msgid "Clear Product Filter transients"
233
  msgstr "Limpiar datos transitorios de filtro de producto"
234
 
235
- #: includes/class-yith-wcan-admin.php:486
236
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
237
  msgid "Run filter widgets upgrade"
238
  msgstr "Activar actualización de widgets de filtro"
239
 
240
- #: includes/class-yith-wcan-admin.php:481
241
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
242
  msgid "Clear"
243
  msgstr "Limpìar"
244
 
245
- #: includes/class-yith-wcan-admin.php:487
246
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
247
  msgid "Run"
248
  msgstr "Activar"
249
 
250
- #: includes/class-yith-wcan-admin.php:482
251
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
252
  msgid ""
253
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -259,7 +317,7 @@ msgstr ""
259
  "configuración del producto y los filtros no muestran los resultados "
260
  "esperados."
261
 
262
- #: includes/class-yith-wcan-admin.php:488
263
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
264
  msgid ""
265
  "This will create a preset for any sidebar of your shop containing filter "
@@ -1428,6 +1486,10 @@ msgctxt "[FRONTEND] Reset button for preset shortcode"
1428
  msgid "Reset filters"
1429
  msgstr "Restablecer filtros"
1430
 
 
 
 
 
1431
  #~ msgctxt "[Admin] Menu title"
1432
  #~ msgid "Ajax Product Filter"
1433
  #~ msgstr "Ajax Product Filter"
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
9
  "PO-Revision-Date: 2021-02-12 13:30:42+0000\n"
10
  "Language: es\n"
11
  "MIME-Version: 1.0\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
17
+ #: includes/class-yith-wcan-admin.php:196
18
+ msgid ""
19
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is purposely "
20
+ "designed for users visiting your site by smartphones or tablets"
21
+ msgstr ""
22
+
23
+ #: includes/class-yith-wcan-admin.php:197
24
+ msgid ""
25
+ "Show filters in the default layout or also in an <b>horizontal toolbar above "
26
+ "products</b> (like Zalando)"
27
+ msgstr ""
28
+
29
+ #: includes/class-yith-wcan-admin.php:198
30
+ msgid ""
31
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
32
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
33
+ msgstr ""
34
+
35
+ #: includes/class-yith-wcan-admin.php:200
36
+ msgid ""
37
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
38
+ "support to YITH WooCommerce Brands plugin)"
39
+ msgstr ""
40
+
41
+ #: includes/class-yith-wcan-admin.php:201
42
+ msgid ""
43
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
44
+ "publishing, average rating, etc) and see only \tproducts in stock/featured/"
45
+ "on sale"
46
+ msgstr ""
47
+
48
+ #: includes/class-yith-wcan-admin.php:202
49
+ msgid ""
50
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
51
+ "position (above products, above or under filters area)"
52
+ msgstr ""
53
+
54
+ #: includes/class-yith-wcan-admin.php:203
55
+ msgid ""
56
+ "Create <b>color swatches with image support</b> (to better identify "
57
+ "gradients, textures, patterns, etc.) and with 2 colors"
58
+ msgstr ""
59
+
60
+ #: includes/class-yith-wcan-admin.php:204
61
+ msgid "Show the options using <b>custom images or icons</b>"
62
+ msgstr ""
63
+
64
+ #: includes/class-yith-wcan-admin.php:205
65
+ msgid ""
66
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
67
+ "count, etc.), enable tooltips and show each set of filters in toggle"
68
+ msgstr ""
69
+
70
+ #: includes/class-yith-wcan-admin.php:206
71
+ msgid ""
72
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
73
+ "color and not clickables "
74
+ msgstr ""
75
+
76
+ #: includes/class-yith-wcan-admin.php:207
77
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
78
+ msgstr ""
79
+
80
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
81
  msgid "Draft Preset"
82
  msgstr "Borrador preestablecido"
168
  msgid "Button Label"
169
  msgstr "Etiqueta del botón"
170
 
171
+ #: init.php:149
172
  msgid ""
173
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
174
  "while you are using the premium one."
175
  msgstr ""
176
 
177
+ #: init.php:167
178
  #, fuzzy
179
  msgid ""
180
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
254
  msgid "SEO"
255
  msgstr "SEO"
256
 
257
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
258
  msgctxt "[Admin] tab name"
259
  msgid "Legacy"
260
  msgstr "Heredado"
261
 
262
+ #: includes/class-yith-wcan-admin.php:217
263
  msgctxt "[Admin] Plugin description"
264
  msgid ""
265
  "It allows your users to find the product they are looking for as quickly as "
268
  "Permite a tus usuarios encontrar el producto que están buscando lo más "
269
  "rápido posible."
270
 
271
+ #: includes/class-yith-wcan-admin.php:230
272
  msgctxt "[HELP TAB] Video title"
273
  msgid ""
274
  "Check this video to learn how to <b>create a filter preset and show it on "
275
  "the shop page:</b>"
276
  msgstr ""
277
 
278
+ #: includes/class-yith-wcan-admin.php:349
279
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
280
  msgid "item"
281
  msgstr "artículo"
282
 
283
+ #: includes/class-yith-wcan-admin.php:350
284
  msgctxt "[Admin] Preset table empty message second line"
285
  msgid "But don't worry, here you can create your first one!"
286
  msgstr "¡Pero no te preocupes, aquí puedes crear el primero!"
287
 
288
+ #: includes/class-yith-wcan-admin.php:500
289
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
290
  msgid "Clear Product Filter transients"
291
  msgstr "Limpiar datos transitorios de filtro de producto"
292
 
293
+ #: includes/class-yith-wcan-admin.php:506
294
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
295
  msgid "Run filter widgets upgrade"
296
  msgstr "Activar actualización de widgets de filtro"
297
 
298
+ #: includes/class-yith-wcan-admin.php:501
299
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
300
  msgid "Clear"
301
  msgstr "Limpìar"
302
 
303
+ #: includes/class-yith-wcan-admin.php:507
304
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
305
  msgid "Run"
306
  msgstr "Activar"
307
 
308
+ #: includes/class-yith-wcan-admin.php:502
309
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
310
  msgid ""
311
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
317
  "configuración del producto y los filtros no muestran los resultados "
318
  "esperados."
319
 
320
+ #: includes/class-yith-wcan-admin.php:508
321
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
322
  msgid ""
323
  "This will create a preset for any sidebar of your shop containing filter "
1486
  msgid "Reset filters"
1487
  msgstr "Restablecer filtros"
1488
 
1489
+ #~ msgctxt "[Admin] tab name"
1490
+ #~ msgid "Premium Version"
1491
+ #~ msgstr "Versión premium"
1492
+
1493
  #~ msgctxt "[Admin] Menu title"
1494
  #~ msgid "Ajax Product Filter"
1495
  #~ msgstr "Ajax Product Filter"
languages/yith-woocommerce-ajax-navigation-fr_FR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
- "POT-Creation-Date: 2021-09-24 12:55:48+00:00\n"
9
  "PO-Revision-Date: 2020-12-29 14:36:56+0000\n"
10
  "Language: fr\n"
11
  "MIME-Version: 1.0\n"
@@ -14,6 +14,69 @@ msgstr ""
14
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
18
  msgid "Draft Preset"
19
  msgstr ""
@@ -105,13 +168,13 @@ msgstr "Réinitialiser tous les filtres"
105
  msgid "Button Label"
106
  msgstr "Étiquette du bouton"
107
 
108
- #: init.php:148
109
  msgid ""
110
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
111
  "while you are using the premium one."
112
  msgstr ""
113
 
114
- #: init.php:166
115
  #, fuzzy
116
  msgid ""
117
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
@@ -182,61 +245,56 @@ msgctxt "[Admin] tab name"
182
  msgid "SEO"
183
  msgstr "SEO"
184
 
185
- #: includes/class-yith-wcan-admin.php:187
186
- msgctxt "[Admin] tab name"
187
- msgid "Premium Version"
188
- msgstr ""
189
-
190
- #: includes/class-yith-wcan-admin.php:191
191
  msgctxt "[Admin] tab name"
192
  msgid "Legacy"
193
  msgstr ""
194
 
195
- #: includes/class-yith-wcan-admin.php:199
196
  msgctxt "[Admin] Plugin description"
197
  msgid ""
198
  "It allows your users to find the product they are looking for as quickly as "
199
  "possible."
200
  msgstr ""
201
 
202
- #: includes/class-yith-wcan-admin.php:211
203
  msgctxt "[HELP TAB] Video title"
204
  msgid ""
205
  "Check this video to learn how to <b>create a filter preset and show it on "
206
  "the shop page:</b>"
207
  msgstr ""
208
 
209
- #: includes/class-yith-wcan-admin.php:329
210
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
211
  msgid "item"
212
  msgstr ""
213
 
214
- #: includes/class-yith-wcan-admin.php:330
215
  msgctxt "[Admin] Preset table empty message second line"
216
  msgid "But don't worry, here you can create your first one!"
217
  msgstr ""
218
 
219
- #: includes/class-yith-wcan-admin.php:480
220
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
221
  msgid "Clear Product Filter transients"
222
  msgstr ""
223
 
224
- #: includes/class-yith-wcan-admin.php:486
225
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
226
  msgid "Run filter widgets upgrade"
227
  msgstr ""
228
 
229
- #: includes/class-yith-wcan-admin.php:481
230
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
231
  msgid "Clear"
232
  msgstr ""
233
 
234
- #: includes/class-yith-wcan-admin.php:487
235
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
236
  msgid "Run"
237
  msgstr ""
238
 
239
- #: includes/class-yith-wcan-admin.php:482
240
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
241
  msgid ""
242
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -244,7 +302,7 @@ msgid ""
244
  "and filters do not display the expected results."
245
  msgstr ""
246
 
247
- #: includes/class-yith-wcan-admin.php:488
248
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
249
  msgid ""
250
  "This will create a preset for any sidebar of your shop containing filter "
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
9
  "PO-Revision-Date: 2020-12-29 14:36:56+0000\n"
10
  "Language: fr\n"
11
  "MIME-Version: 1.0\n"
14
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
17
+ #: includes/class-yith-wcan-admin.php:196
18
+ msgid ""
19
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is purposely "
20
+ "designed for users visiting your site by smartphones or tablets"
21
+ msgstr ""
22
+
23
+ #: includes/class-yith-wcan-admin.php:197
24
+ msgid ""
25
+ "Show filters in the default layout or also in an <b>horizontal toolbar above "
26
+ "products</b> (like Zalando)"
27
+ msgstr ""
28
+
29
+ #: includes/class-yith-wcan-admin.php:198
30
+ msgid ""
31
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
32
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
33
+ msgstr ""
34
+
35
+ #: includes/class-yith-wcan-admin.php:200
36
+ msgid ""
37
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
38
+ "support to YITH WooCommerce Brands plugin)"
39
+ msgstr ""
40
+
41
+ #: includes/class-yith-wcan-admin.php:201
42
+ msgid ""
43
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
44
+ "publishing, average rating, etc) and see only \tproducts in stock/featured/"
45
+ "on sale"
46
+ msgstr ""
47
+
48
+ #: includes/class-yith-wcan-admin.php:202
49
+ msgid ""
50
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
51
+ "position (above products, above or under filters area)"
52
+ msgstr ""
53
+
54
+ #: includes/class-yith-wcan-admin.php:203
55
+ msgid ""
56
+ "Create <b>color swatches with image support</b> (to better identify "
57
+ "gradients, textures, patterns, etc.) and with 2 colors"
58
+ msgstr ""
59
+
60
+ #: includes/class-yith-wcan-admin.php:204
61
+ msgid "Show the options using <b>custom images or icons</b>"
62
+ msgstr ""
63
+
64
+ #: includes/class-yith-wcan-admin.php:205
65
+ msgid ""
66
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
67
+ "count, etc.), enable tooltips and show each set of filters in toggle"
68
+ msgstr ""
69
+
70
+ #: includes/class-yith-wcan-admin.php:206
71
+ msgid ""
72
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
73
+ "color and not clickables "
74
+ msgstr ""
75
+
76
+ #: includes/class-yith-wcan-admin.php:207
77
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
78
+ msgstr ""
79
+
80
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
81
  msgid "Draft Preset"
82
  msgstr ""
168
  msgid "Button Label"
169
  msgstr "Étiquette du bouton"
170
 
171
+ #: init.php:149
172
  msgid ""
173
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
174
  "while you are using the premium one."
175
  msgstr ""
176
 
177
+ #: init.php:167
178
  #, fuzzy
179
  msgid ""
180
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
245
  msgid "SEO"
246
  msgstr "SEO"
247
 
248
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
249
  msgctxt "[Admin] tab name"
250
  msgid "Legacy"
251
  msgstr ""
252
 
253
+ #: includes/class-yith-wcan-admin.php:217
254
  msgctxt "[Admin] Plugin description"
255
  msgid ""
256
  "It allows your users to find the product they are looking for as quickly as "
257
  "possible."
258
  msgstr ""
259
 
260
+ #: includes/class-yith-wcan-admin.php:230
261
  msgctxt "[HELP TAB] Video title"
262
  msgid ""
263
  "Check this video to learn how to <b>create a filter preset and show it on "
264
  "the shop page:</b>"
265
  msgstr ""
266
 
267
+ #: includes/class-yith-wcan-admin.php:349
268
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
269
  msgid "item"
270
  msgstr ""
271
 
272
+ #: includes/class-yith-wcan-admin.php:350
273
  msgctxt "[Admin] Preset table empty message second line"
274
  msgid "But don't worry, here you can create your first one!"
275
  msgstr ""
276
 
277
+ #: includes/class-yith-wcan-admin.php:500
278
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
279
  msgid "Clear Product Filter transients"
280
  msgstr ""
281
 
282
+ #: includes/class-yith-wcan-admin.php:506
283
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
284
  msgid "Run filter widgets upgrade"
285
  msgstr ""
286
 
287
+ #: includes/class-yith-wcan-admin.php:501
288
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
289
  msgid "Clear"
290
  msgstr ""
291
 
292
+ #: includes/class-yith-wcan-admin.php:507
293
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
294
  msgid "Run"
295
  msgstr ""
296
 
297
+ #: includes/class-yith-wcan-admin.php:502
298
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
299
  msgid ""
300
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
302
  "and filters do not display the expected results."
303
  msgstr ""
304
 
305
+ #: includes/class-yith-wcan-admin.php:508
306
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
307
  msgid ""
308
  "This will create a preset for any sidebar of your shop containing filter "
languages/yith-woocommerce-ajax-navigation-it_IT.mo CHANGED
Binary file
languages/yith-woocommerce-ajax-navigation-it_IT.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
- "POT-Creation-Date: 2021-09-24 12:55:48+00:00\n"
9
  "PO-Revision-Date: 2021-03-03 10:36+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -16,6 +16,72 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
  "X-Generator: Poedit 2.4.2\n"
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
20
  msgid "Draft Preset"
21
  msgstr "Preset bozza"
@@ -107,7 +173,7 @@ msgstr "Resetta tutti i filtri"
107
  msgid "Button Label"
108
  msgstr "Etichetta Pulsante"
109
 
110
- #: init.php:148
111
  msgid ""
112
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
113
  "while you are using the premium one."
@@ -115,7 +181,7 @@ msgstr ""
115
  "Non è possibile attivare la versione gratuita di YITH WooCommerce Ajax "
116
  "Product Filter se stai già utilizzando la versione premium."
117
 
118
- #: init.php:166
119
  msgid ""
120
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
121
  "requires WooCommerce in order to work."
@@ -192,17 +258,12 @@ msgctxt "[Admin] tab name"
192
  msgid "SEO"
193
  msgstr "SEO"
194
 
195
- #: includes/class-yith-wcan-admin.php:187
196
- msgctxt "[Admin] tab name"
197
- msgid "Premium Version"
198
- msgstr "Versione Premium"
199
-
200
- #: includes/class-yith-wcan-admin.php:191
201
  msgctxt "[Admin] tab name"
202
  msgid "Legacy"
203
  msgstr "Legacy"
204
 
205
- #: includes/class-yith-wcan-admin.php:199
206
  msgctxt "[Admin] Plugin description"
207
  msgid ""
208
  "It allows your users to find the product they are looking for as quickly as "
@@ -211,44 +272,44 @@ msgstr ""
211
  "Permette ai tuoi utenti di trovare il prodotto che stanno cercando il più "
212
  "velocemente possibile."
213
 
214
- #: includes/class-yith-wcan-admin.php:211
215
  msgctxt "[HELP TAB] Video title"
216
  msgid ""
217
  "Check this video to learn how to <b>create a filter preset and show it on "
218
  "the shop page:</b>"
219
  msgstr ""
220
 
221
- #: includes/class-yith-wcan-admin.php:329
222
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
223
  msgid "item"
224
  msgstr "elemento"
225
 
226
- #: includes/class-yith-wcan-admin.php:330
227
  msgctxt "[Admin] Preset table empty message second line"
228
  msgid "But don't worry, here you can create your first one!"
229
  msgstr "Ma non preoccuparti. Puoi iniziare a crearli qui!"
230
 
231
- #: includes/class-yith-wcan-admin.php:480
232
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
233
  msgid "Clear Product Filter transients"
234
  msgstr "Cancella i transient Product Filter"
235
 
236
- #: includes/class-yith-wcan-admin.php:486
237
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
238
  msgid "Run filter widgets upgrade"
239
  msgstr "Avvia l'upgrade dei widget dei filtri"
240
 
241
- #: includes/class-yith-wcan-admin.php:481
242
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
243
  msgid "Clear"
244
  msgstr "Cancella"
245
 
246
- #: includes/class-yith-wcan-admin.php:487
247
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
248
  msgid "Run"
249
  msgstr "Avvia"
250
 
251
- #: includes/class-yith-wcan-admin.php:482
252
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
253
  msgid ""
254
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -259,7 +320,7 @@ msgstr ""
259
  "Product Filter. Utile se hai cambiato la configurazione del prodotto e i "
260
  "filtri non mostrano i risultati previsti. "
261
 
262
- #: includes/class-yith-wcan-admin.php:488
263
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
264
  msgid ""
265
  "This will create a preset for any sidebar of your shop containing filter "
@@ -1473,6 +1534,10 @@ msgctxt "[FRONTEND] Reset button for preset shortcode"
1473
  msgid "Reset filters"
1474
  msgstr "Resetta filtri"
1475
 
 
 
 
 
1476
  #~ msgctxt "[Admin] Menu title"
1477
  #~ msgid "Ajax Product Filter"
1478
  #~ msgstr "Ajax Product Filter"
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
9
  "PO-Revision-Date: 2021-03-03 10:36+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
  "X-Generator: Poedit 2.4.2\n"
18
 
19
+ #: includes/class-yith-wcan-admin.php:196
20
+ #, fuzzy
21
+ msgid ""
22
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is purposely "
23
+ "designed for users visiting your site by smartphones or tablets"
24
+ msgstr ""
25
+ "Mostra i filtri in una modale appositamente progettata per gli utenti che "
26
+ "visitano il tuo sito da smartphone o tablet"
27
+
28
+ #: includes/class-yith-wcan-admin.php:197
29
+ msgid ""
30
+ "Show filters in the default layout or also in an <b>horizontal toolbar above "
31
+ "products</b> (like Zalando)"
32
+ msgstr ""
33
+
34
+ #: includes/class-yith-wcan-admin.php:198
35
+ msgid ""
36
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
37
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
38
+ msgstr ""
39
+
40
+ #: includes/class-yith-wcan-admin.php:200
41
+ msgid ""
42
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
43
+ "support to YITH WooCommerce Brands plugin)"
44
+ msgstr ""
45
+
46
+ #: includes/class-yith-wcan-admin.php:201
47
+ msgid ""
48
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
49
+ "publishing, average rating, etc) and see only \tproducts in stock/featured/"
50
+ "on sale"
51
+ msgstr ""
52
+
53
+ #: includes/class-yith-wcan-admin.php:202
54
+ msgid ""
55
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
56
+ "position (above products, above or under filters area)"
57
+ msgstr ""
58
+
59
+ #: includes/class-yith-wcan-admin.php:203
60
+ msgid ""
61
+ "Create <b>color swatches with image support</b> (to better identify "
62
+ "gradients, textures, patterns, etc.) and with 2 colors"
63
+ msgstr ""
64
+
65
+ #: includes/class-yith-wcan-admin.php:204
66
+ msgid "Show the options using <b>custom images or icons</b>"
67
+ msgstr ""
68
+
69
+ #: includes/class-yith-wcan-admin.php:205
70
+ msgid ""
71
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
72
+ "count, etc.), enable tooltips and show each set of filters in toggle"
73
+ msgstr ""
74
+
75
+ #: includes/class-yith-wcan-admin.php:206
76
+ msgid ""
77
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
78
+ "color and not clickables "
79
+ msgstr ""
80
+
81
+ #: includes/class-yith-wcan-admin.php:207
82
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
83
+ msgstr ""
84
+
85
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
86
  msgid "Draft Preset"
87
  msgstr "Preset bozza"
173
  msgid "Button Label"
174
  msgstr "Etichetta Pulsante"
175
 
176
+ #: init.php:149
177
  msgid ""
178
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
179
  "while you are using the premium one."
181
  "Non è possibile attivare la versione gratuita di YITH WooCommerce Ajax "
182
  "Product Filter se stai già utilizzando la versione premium."
183
 
184
+ #: init.php:167
185
  msgid ""
186
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
187
  "requires WooCommerce in order to work."
258
  msgid "SEO"
259
  msgstr "SEO"
260
 
261
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
262
  msgctxt "[Admin] tab name"
263
  msgid "Legacy"
264
  msgstr "Legacy"
265
 
266
+ #: includes/class-yith-wcan-admin.php:217
267
  msgctxt "[Admin] Plugin description"
268
  msgid ""
269
  "It allows your users to find the product they are looking for as quickly as "
272
  "Permette ai tuoi utenti di trovare il prodotto che stanno cercando il più "
273
  "velocemente possibile."
274
 
275
+ #: includes/class-yith-wcan-admin.php:230
276
  msgctxt "[HELP TAB] Video title"
277
  msgid ""
278
  "Check this video to learn how to <b>create a filter preset and show it on "
279
  "the shop page:</b>"
280
  msgstr ""
281
 
282
+ #: includes/class-yith-wcan-admin.php:349
283
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
284
  msgid "item"
285
  msgstr "elemento"
286
 
287
+ #: includes/class-yith-wcan-admin.php:350
288
  msgctxt "[Admin] Preset table empty message second line"
289
  msgid "But don't worry, here you can create your first one!"
290
  msgstr "Ma non preoccuparti. Puoi iniziare a crearli qui!"
291
 
292
+ #: includes/class-yith-wcan-admin.php:500
293
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
294
  msgid "Clear Product Filter transients"
295
  msgstr "Cancella i transient Product Filter"
296
 
297
+ #: includes/class-yith-wcan-admin.php:506
298
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
299
  msgid "Run filter widgets upgrade"
300
  msgstr "Avvia l'upgrade dei widget dei filtri"
301
 
302
+ #: includes/class-yith-wcan-admin.php:501
303
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
304
  msgid "Clear"
305
  msgstr "Cancella"
306
 
307
+ #: includes/class-yith-wcan-admin.php:507
308
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
309
  msgid "Run"
310
  msgstr "Avvia"
311
 
312
+ #: includes/class-yith-wcan-admin.php:502
313
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
314
  msgid ""
315
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
320
  "Product Filter. Utile se hai cambiato la configurazione del prodotto e i "
321
  "filtri non mostrano i risultati previsti. "
322
 
323
+ #: includes/class-yith-wcan-admin.php:508
324
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
325
  msgid ""
326
  "This will create a preset for any sidebar of your shop containing filter "
1534
  msgid "Reset filters"
1535
  msgstr "Resetta filtri"
1536
 
1537
+ #~ msgctxt "[Admin] tab name"
1538
+ #~ msgid "Premium Version"
1539
+ #~ msgstr "Versione Premium"
1540
+
1541
  #~ msgctxt "[Admin] Menu title"
1542
  #~ msgid "Ajax Product Filter"
1543
  #~ msgstr "Ajax Product Filter"
languages/yith-woocommerce-ajax-navigation-nl_NL.mo CHANGED
Binary file
languages/yith-woocommerce-ajax-navigation-nl_NL.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
- "POT-Creation-Date: 2021-09-24 12:55:48+00:00\n"
9
  "PO-Revision-Date: 2021-02-12 13:32:05+0000\n"
10
  "Language: nl\n"
11
  "MIME-Version: 1.0\n"
@@ -14,6 +14,69 @@ msgstr ""
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
18
  msgid "Draft Preset"
19
  msgstr "Concept pre-set"
@@ -105,13 +168,13 @@ msgstr "Alle filters resetten"
105
  msgid "Button Label"
106
  msgstr "Labelknop"
107
 
108
- #: init.php:148
109
  msgid ""
110
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
111
  "while you are using the premium one."
112
  msgstr ""
113
 
114
- #: init.php:166
115
  #, fuzzy
116
  msgid ""
117
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
@@ -189,17 +252,12 @@ msgctxt "[Admin] tab name"
189
  msgid "SEO"
190
  msgstr "SEO"
191
 
192
- #: includes/class-yith-wcan-admin.php:187
193
- msgctxt "[Admin] tab name"
194
- msgid "Premium Version"
195
- msgstr "Premium versie"
196
-
197
- #: includes/class-yith-wcan-admin.php:191
198
  msgctxt "[Admin] tab name"
199
  msgid "Legacy"
200
  msgstr "Nalatenschap"
201
 
202
- #: includes/class-yith-wcan-admin.php:199
203
  msgctxt "[Admin] Plugin description"
204
  msgid ""
205
  "It allows your users to find the product they are looking for as quickly as "
@@ -208,44 +266,44 @@ msgstr ""
208
  "Het laat je gebruikers het product het product dat ze zoeken, zo snel "
209
  "mogelijk vinden."
210
 
211
- #: includes/class-yith-wcan-admin.php:211
212
  msgctxt "[HELP TAB] Video title"
213
  msgid ""
214
  "Check this video to learn how to <b>create a filter preset and show it on "
215
  "the shop page:</b>"
216
  msgstr ""
217
 
218
- #: includes/class-yith-wcan-admin.php:329
219
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
220
  msgid "item"
221
  msgstr "Item"
222
 
223
- #: includes/class-yith-wcan-admin.php:330
224
  msgctxt "[Admin] Preset table empty message second line"
225
  msgid "But don't worry, here you can create your first one!"
226
  msgstr "Maar geen zorgen, je kunt hier je eerste aanmaken!"
227
 
228
- #: includes/class-yith-wcan-admin.php:480
229
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
230
  msgid "Clear Product Filter transients"
231
  msgstr "Product Filter transients legen"
232
 
233
- #: includes/class-yith-wcan-admin.php:486
234
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
235
  msgid "Run filter widgets upgrade"
236
  msgstr "Filter widgets upgrade uitvoeren"
237
 
238
- #: includes/class-yith-wcan-admin.php:481
239
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
240
  msgid "Clear"
241
  msgstr "Wissen"
242
 
243
- #: includes/class-yith-wcan-admin.php:487
244
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
245
  msgid "Run"
246
  msgstr "Uitvoeren"
247
 
248
- #: includes/class-yith-wcan-admin.php:482
249
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
250
  msgid ""
251
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -257,7 +315,7 @@ msgstr ""
257
  "configuratie van je product hebt gewijzigd en filters niet de verwachte "
258
  "resultaten weergeven."
259
 
260
- #: includes/class-yith-wcan-admin.php:488
261
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
262
  msgid ""
263
  "This will create a preset for any sidebar of your shop containing filter "
@@ -1422,6 +1480,10 @@ msgctxt "[FRONTEND] Reset button for preset shortcode"
1422
  msgid "Reset filters"
1423
  msgstr "Filters resetten"
1424
 
 
 
 
 
1425
  #~ msgctxt "[Admin] Menu title"
1426
  #~ msgid "Ajax Product Filter"
1427
  #~ msgstr "Ajax Product Filter"
5
  "Project-Id-Version: YITH WooCommerce Ajax Product Filter\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
7
  "ajax-product-filter\n"
8
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
9
  "PO-Revision-Date: 2021-02-12 13:32:05+0000\n"
10
  "Language: nl\n"
11
  "MIME-Version: 1.0\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: GlotPress/3.0.0-alpha.2\n"
16
 
17
+ #: includes/class-yith-wcan-admin.php:196
18
+ msgid ""
19
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is purposely "
20
+ "designed for users visiting your site by smartphones or tablets"
21
+ msgstr ""
22
+
23
+ #: includes/class-yith-wcan-admin.php:197
24
+ msgid ""
25
+ "Show filters in the default layout or also in an <b>horizontal toolbar above "
26
+ "products</b> (like Zalando)"
27
+ msgstr ""
28
+
29
+ #: includes/class-yith-wcan-admin.php:198
30
+ msgid ""
31
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
32
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
33
+ msgstr ""
34
+
35
+ #: includes/class-yith-wcan-admin.php:200
36
+ msgid ""
37
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
38
+ "support to YITH WooCommerce Brands plugin)"
39
+ msgstr ""
40
+
41
+ #: includes/class-yith-wcan-admin.php:201
42
+ msgid ""
43
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
44
+ "publishing, average rating, etc) and see only \tproducts in stock/featured/"
45
+ "on sale"
46
+ msgstr ""
47
+
48
+ #: includes/class-yith-wcan-admin.php:202
49
+ msgid ""
50
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
51
+ "position (above products, above or under filters area)"
52
+ msgstr ""
53
+
54
+ #: includes/class-yith-wcan-admin.php:203
55
+ msgid ""
56
+ "Create <b>color swatches with image support</b> (to better identify "
57
+ "gradients, textures, patterns, etc.) and with 2 colors"
58
+ msgstr ""
59
+
60
+ #: includes/class-yith-wcan-admin.php:204
61
+ msgid "Show the options using <b>custom images or icons</b>"
62
+ msgstr ""
63
+
64
+ #: includes/class-yith-wcan-admin.php:205
65
+ msgid ""
66
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
67
+ "count, etc.), enable tooltips and show each set of filters in toggle"
68
+ msgstr ""
69
+
70
+ #: includes/class-yith-wcan-admin.php:206
71
+ msgid ""
72
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
73
+ "color and not clickables "
74
+ msgstr ""
75
+
76
+ #: includes/class-yith-wcan-admin.php:207
77
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
78
+ msgstr ""
79
+
80
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
81
  msgid "Draft Preset"
82
  msgstr "Concept pre-set"
168
  msgid "Button Label"
169
  msgstr "Labelknop"
170
 
171
+ #: init.php:149
172
  msgid ""
173
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
174
  "while you are using the premium one."
175
  msgstr ""
176
 
177
+ #: init.php:167
178
  #, fuzzy
179
  msgid ""
180
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
252
  msgid "SEO"
253
  msgstr "SEO"
254
 
255
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
256
  msgctxt "[Admin] tab name"
257
  msgid "Legacy"
258
  msgstr "Nalatenschap"
259
 
260
+ #: includes/class-yith-wcan-admin.php:217
261
  msgctxt "[Admin] Plugin description"
262
  msgid ""
263
  "It allows your users to find the product they are looking for as quickly as "
266
  "Het laat je gebruikers het product het product dat ze zoeken, zo snel "
267
  "mogelijk vinden."
268
 
269
+ #: includes/class-yith-wcan-admin.php:230
270
  msgctxt "[HELP TAB] Video title"
271
  msgid ""
272
  "Check this video to learn how to <b>create a filter preset and show it on "
273
  "the shop page:</b>"
274
  msgstr ""
275
 
276
+ #: includes/class-yith-wcan-admin.php:349
277
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
278
  msgid "item"
279
  msgstr "Item"
280
 
281
+ #: includes/class-yith-wcan-admin.php:350
282
  msgctxt "[Admin] Preset table empty message second line"
283
  msgid "But don't worry, here you can create your first one!"
284
  msgstr "Maar geen zorgen, je kunt hier je eerste aanmaken!"
285
 
286
+ #: includes/class-yith-wcan-admin.php:500
287
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
288
  msgid "Clear Product Filter transients"
289
  msgstr "Product Filter transients legen"
290
 
291
+ #: includes/class-yith-wcan-admin.php:506
292
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
293
  msgid "Run filter widgets upgrade"
294
  msgstr "Filter widgets upgrade uitvoeren"
295
 
296
+ #: includes/class-yith-wcan-admin.php:501
297
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
298
  msgid "Clear"
299
  msgstr "Wissen"
300
 
301
+ #: includes/class-yith-wcan-admin.php:507
302
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
303
  msgid "Run"
304
  msgstr "Uitvoeren"
305
 
306
+ #: includes/class-yith-wcan-admin.php:502
307
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
308
  msgid ""
309
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
315
  "configuratie van je product hebt gewijzigd en filters niet de verwachte "
316
  "resultaten weergeven."
317
 
318
+ #: includes/class-yith-wcan-admin.php:508
319
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
320
  msgid ""
321
  "This will create a preset for any sidebar of your shop containing filter "
1480
  msgid "Reset filters"
1481
  msgstr "Filters resetten"
1482
 
1483
+ #~ msgctxt "[Admin] tab name"
1484
+ #~ msgid "Premium Version"
1485
+ #~ msgstr "Premium versie"
1486
+
1487
  #~ msgctxt "[Admin] Menu title"
1488
  #~ msgid "Ajax Product Filter"
1489
  #~ msgstr "Ajax Product Filter"
languages/yith-woocommerce-ajax-navigation-tr_TR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Ajax Product filter\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
5
  "ajax-product-filter\n"
6
- "POT-Creation-Date: 2021-09-24 12:55:48+00:00\n"
7
  "PO-Revision-Date: 2019-06-06 10:16+0200\n"
8
  "Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
9
  "Language-Team: Caner Öncel <caneroncel@gmail.com>\n"
@@ -21,6 +21,69 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: plugin-fw\n"
23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
25
  msgid "Draft Preset"
26
  msgstr ""
@@ -124,13 +187,13 @@ msgstr "Tüm Filtreleri Sıfırla"
124
  msgid "Button Label"
125
  msgstr "Buton Metni"
126
 
127
- #: init.php:148
128
  msgid ""
129
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
130
  "while you are using the premium one."
131
  msgstr ""
132
 
133
- #: init.php:166
134
  msgid ""
135
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
136
  "requires WooCommerce in order to work."
@@ -198,61 +261,56 @@ msgctxt "[Admin] tab name"
198
  msgid "SEO"
199
  msgstr ""
200
 
201
- #: includes/class-yith-wcan-admin.php:187
202
- msgctxt "[Admin] tab name"
203
- msgid "Premium Version"
204
- msgstr ""
205
-
206
- #: includes/class-yith-wcan-admin.php:191
207
  msgctxt "[Admin] tab name"
208
  msgid "Legacy"
209
  msgstr ""
210
 
211
- #: includes/class-yith-wcan-admin.php:199
212
  msgctxt "[Admin] Plugin description"
213
  msgid ""
214
  "It allows your users to find the product they are looking for as quickly as "
215
  "possible."
216
  msgstr ""
217
 
218
- #: includes/class-yith-wcan-admin.php:211
219
  msgctxt "[HELP TAB] Video title"
220
  msgid ""
221
  "Check this video to learn how to <b>create a filter preset and show it on "
222
  "the shop page:</b>"
223
  msgstr ""
224
 
225
- #: includes/class-yith-wcan-admin.php:329
226
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
227
  msgid "item"
228
  msgstr ""
229
 
230
- #: includes/class-yith-wcan-admin.php:330
231
  msgctxt "[Admin] Preset table empty message second line"
232
  msgid "But don't worry, here you can create your first one!"
233
  msgstr ""
234
 
235
- #: includes/class-yith-wcan-admin.php:480
236
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
237
  msgid "Clear Product Filter transients"
238
  msgstr ""
239
 
240
- #: includes/class-yith-wcan-admin.php:486
241
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
242
  msgid "Run filter widgets upgrade"
243
  msgstr ""
244
 
245
- #: includes/class-yith-wcan-admin.php:481
246
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
247
  msgid "Clear"
248
  msgstr ""
249
 
250
- #: includes/class-yith-wcan-admin.php:487
251
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
252
  msgid "Run"
253
  msgstr ""
254
 
255
- #: includes/class-yith-wcan-admin.php:482
256
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
257
  msgid ""
258
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -260,7 +318,7 @@ msgid ""
260
  "and filters do not display the expected results."
261
  msgstr ""
262
 
263
- #: includes/class-yith-wcan-admin.php:488
264
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
265
  msgid ""
266
  "This will create a preset for any sidebar of your shop containing filter "
3
  "Project-Id-Version: YITH WooCommerce Ajax Product filter\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
5
  "ajax-product-filter\n"
6
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
7
  "PO-Revision-Date: 2019-06-06 10:16+0200\n"
8
  "Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
9
  "Language-Team: Caner Öncel <caneroncel@gmail.com>\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: plugin-fw\n"
23
 
24
+ #: includes/class-yith-wcan-admin.php:196
25
+ msgid ""
26
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is purposely "
27
+ "designed for users visiting your site by smartphones or tablets"
28
+ msgstr ""
29
+
30
+ #: includes/class-yith-wcan-admin.php:197
31
+ msgid ""
32
+ "Show filters in the default layout or also in an <b>horizontal toolbar above "
33
+ "products</b> (like Zalando)"
34
+ msgstr ""
35
+
36
+ #: includes/class-yith-wcan-admin.php:198
37
+ msgid ""
38
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
39
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
40
+ msgstr ""
41
+
42
+ #: includes/class-yith-wcan-admin.php:200
43
+ msgid ""
44
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
45
+ "support to YITH WooCommerce Brands plugin)"
46
+ msgstr ""
47
+
48
+ #: includes/class-yith-wcan-admin.php:201
49
+ msgid ""
50
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
51
+ "publishing, average rating, etc) and see only \tproducts in stock/featured/"
52
+ "on sale"
53
+ msgstr ""
54
+
55
+ #: includes/class-yith-wcan-admin.php:202
56
+ msgid ""
57
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
58
+ "position (above products, above or under filters area)"
59
+ msgstr ""
60
+
61
+ #: includes/class-yith-wcan-admin.php:203
62
+ msgid ""
63
+ "Create <b>color swatches with image support</b> (to better identify "
64
+ "gradients, textures, patterns, etc.) and with 2 colors"
65
+ msgstr ""
66
+
67
+ #: includes/class-yith-wcan-admin.php:204
68
+ msgid "Show the options using <b>custom images or icons</b>"
69
+ msgstr ""
70
+
71
+ #: includes/class-yith-wcan-admin.php:205
72
+ msgid ""
73
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
74
+ "count, etc.), enable tooltips and show each set of filters in toggle"
75
+ msgstr ""
76
+
77
+ #: includes/class-yith-wcan-admin.php:206
78
+ msgid ""
79
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
80
+ "color and not clickables "
81
+ msgstr ""
82
+
83
+ #: includes/class-yith-wcan-admin.php:207
84
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
85
+ msgstr ""
86
+
87
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
88
  msgid "Draft Preset"
89
  msgstr ""
187
  msgid "Button Label"
188
  msgstr "Buton Metni"
189
 
190
+ #: init.php:149
191
  msgid ""
192
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
193
  "while you are using the premium one."
194
  msgstr ""
195
 
196
+ #: init.php:167
197
  msgid ""
198
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
199
  "requires WooCommerce in order to work."
261
  msgid "SEO"
262
  msgstr ""
263
 
264
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
265
  msgctxt "[Admin] tab name"
266
  msgid "Legacy"
267
  msgstr ""
268
 
269
+ #: includes/class-yith-wcan-admin.php:217
270
  msgctxt "[Admin] Plugin description"
271
  msgid ""
272
  "It allows your users to find the product they are looking for as quickly as "
273
  "possible."
274
  msgstr ""
275
 
276
+ #: includes/class-yith-wcan-admin.php:230
277
  msgctxt "[HELP TAB] Video title"
278
  msgid ""
279
  "Check this video to learn how to <b>create a filter preset and show it on "
280
  "the shop page:</b>"
281
  msgstr ""
282
 
283
+ #: includes/class-yith-wcan-admin.php:349
284
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
285
  msgid "item"
286
  msgstr ""
287
 
288
+ #: includes/class-yith-wcan-admin.php:350
289
  msgctxt "[Admin] Preset table empty message second line"
290
  msgid "But don't worry, here you can create your first one!"
291
  msgstr ""
292
 
293
+ #: includes/class-yith-wcan-admin.php:500
294
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
295
  msgid "Clear Product Filter transients"
296
  msgstr ""
297
 
298
+ #: includes/class-yith-wcan-admin.php:506
299
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
300
  msgid "Run filter widgets upgrade"
301
  msgstr ""
302
 
303
+ #: includes/class-yith-wcan-admin.php:501
304
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
305
  msgid "Clear"
306
  msgstr ""
307
 
308
+ #: includes/class-yith-wcan-admin.php:507
309
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
310
  msgid "Run"
311
  msgstr ""
312
 
313
+ #: includes/class-yith-wcan-admin.php:502
314
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
315
  msgid ""
316
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
318
  "and filters do not display the expected results."
319
  msgstr ""
320
 
321
+ #: includes/class-yith-wcan-admin.php:508
322
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
323
  msgid ""
324
  "This will create a preset for any sidebar of your shop containing filter "
languages/yith-woocommerce-ajax-navigation.pot CHANGED
@@ -1,15 +1,15 @@
1
- # Copyright (C) 2021 YITH
2
  # This file is distributed under the same license as the YITH WooCommerce Ajax Product Filter package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Navigation\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/yith-woocommerce-ajax-product-filter\n"
8
- "POT-Creation-Date: 2021-12-21 15:12:04+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: YITH <plugins@yithemes.com>\n"
15
  "Language: en\n"
@@ -29,6 +29,69 @@ msgstr ""
29
  "X-Poedit-SearchPathExcluded-2: node_modules\n"
30
  "X-Generator: grunt-wp-i18n 1.0.3\n"
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
33
  msgid "Draft Preset"
34
  msgstr ""
@@ -120,13 +183,13 @@ msgstr ""
120
  msgid "Button Label"
121
  msgstr ""
122
 
123
- #: init.php:148
124
  msgid ""
125
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
126
  "while you are using the premium one."
127
  msgstr ""
128
 
129
- #: init.php:166
130
  msgid ""
131
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
132
  "requires WooCommerce in order to work."
@@ -193,61 +256,56 @@ msgctxt "[Admin] tab name"
193
  msgid "SEO"
194
  msgstr ""
195
 
196
- #: includes/class-yith-wcan-admin.php:187
197
- msgctxt "[Admin] tab name"
198
- msgid "Premium Version"
199
- msgstr ""
200
-
201
- #: includes/class-yith-wcan-admin.php:191
202
  msgctxt "[Admin] tab name"
203
  msgid "Legacy"
204
  msgstr ""
205
 
206
- #: includes/class-yith-wcan-admin.php:199
207
  msgctxt "[Admin] Plugin description"
208
  msgid ""
209
  "It allows your users to find the product they are looking for as quickly as "
210
  "possible."
211
  msgstr ""
212
 
213
- #: includes/class-yith-wcan-admin.php:211
214
  msgctxt "[HELP TAB] Video title"
215
  msgid ""
216
  "Check this video to learn how to <b>create a filter preset and show it on "
217
  "the shop page:</b>"
218
  msgstr ""
219
 
220
- #: includes/class-yith-wcan-admin.php:329
221
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
222
  msgid "item"
223
  msgstr ""
224
 
225
- #: includes/class-yith-wcan-admin.php:330
226
  msgctxt "[Admin] Preset table empty message second line"
227
  msgid "But don't worry, here you can create your first one!"
228
  msgstr ""
229
 
230
- #: includes/class-yith-wcan-admin.php:480
231
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
232
  msgid "Clear Product Filter transients"
233
  msgstr ""
234
 
235
- #: includes/class-yith-wcan-admin.php:486
236
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
237
  msgid "Run filter widgets upgrade"
238
  msgstr ""
239
 
240
- #: includes/class-yith-wcan-admin.php:481
241
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
242
  msgid "Clear"
243
  msgstr ""
244
 
245
- #: includes/class-yith-wcan-admin.php:487
246
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
247
  msgid "Run"
248
  msgstr ""
249
 
250
- #: includes/class-yith-wcan-admin.php:482
251
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
252
  msgid ""
253
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
@@ -255,7 +313,7 @@ msgid ""
255
  "configuration, and filters do not display the expected results."
256
  msgstr ""
257
 
258
- #: includes/class-yith-wcan-admin.php:488
259
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
260
  msgid ""
261
  "This will create a preset for any sidebar of your shop containing filter "
1
+ # Copyright (C) 2022 YITH
2
  # This file is distributed under the same license as the YITH WooCommerce Ajax Product Filter package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Ajax Navigation\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/yith-woocommerce-ajax-product-filter\n"
8
+ "POT-Creation-Date: 2022-01-12 10:08:55+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: YITH <plugins@yithemes.com>\n"
15
  "Language: en\n"
29
  "X-Poedit-SearchPathExcluded-2: node_modules\n"
30
  "X-Generator: grunt-wp-i18n 1.0.3\n"
31
 
32
+ #: includes/class-yith-wcan-admin.php:196
33
+ msgid ""
34
+ "<b>100% mobile friendly:</b> Show filters in a modal view which is "
35
+ "purposely designed for users visiting your site by smartphones or tablets"
36
+ msgstr ""
37
+
38
+ #: includes/class-yith-wcan-admin.php:197
39
+ msgid ""
40
+ "Show filters in the default layout or also in an <b>horizontal toolbar "
41
+ "above products</b> (like Zalando)"
42
+ msgstr ""
43
+
44
+ #: includes/class-yith-wcan-admin.php:198
45
+ msgid ""
46
+ "Allow customers to <b>filter for price ranges</b> (unlimited ranges and the "
47
+ "last range can show: “& above”) or using the <b>price slider</b>\n"
48
+ msgstr ""
49
+
50
+ #: includes/class-yith-wcan-admin.php:200
51
+ msgid ""
52
+ "Allow customers to <b>filter for review</b> and <b>for brand</b> (with the "
53
+ "support to YITH WooCommerce Brands plugin)"
54
+ msgstr ""
55
+
56
+ #: includes/class-yith-wcan-admin.php:201
57
+ msgid ""
58
+ "Allow users to <b>order products</b> (by popularity, date, price, date of "
59
+ "publishing, average rating, etc) and see only \tproducts in "
60
+ "stock/featured/on sale"
61
+ msgstr ""
62
+
63
+ #: includes/class-yith-wcan-admin.php:202
64
+ msgid ""
65
+ "<b>Show the active filters</b> (with X to remove them) and choose their "
66
+ "position (above products, above or under filters area)"
67
+ msgstr ""
68
+
69
+ #: includes/class-yith-wcan-admin.php:203
70
+ msgid ""
71
+ "Create <b>color swatches with image support</b> (to better identify "
72
+ "gradients, textures, patterns, etc.) and with 2 colors"
73
+ msgstr ""
74
+
75
+ #: includes/class-yith-wcan-admin.php:204
76
+ msgid "Show the options using <b>custom images or icons</b>"
77
+ msgstr ""
78
+
79
+ #: includes/class-yith-wcan-admin.php:205
80
+ msgid ""
81
+ "Choose the <b>order of the options</b> (alphabetical, terms order, terms "
82
+ "count, etc.), enable tooltips and show each set of filters in toggle"
83
+ msgstr ""
84
+
85
+ #: includes/class-yith-wcan-admin.php:206
86
+ msgid ""
87
+ "Choose how to manage terms not availables: hide them OR shown them in grey "
88
+ "color and not clickables "
89
+ msgstr ""
90
+
91
+ #: includes/class-yith-wcan-admin.php:207
92
+ msgid "<b>Regular updates, Translations and Premium Support</b>"
93
+ msgstr ""
94
+
95
  #: includes/data-stores/class-yith-wcan-preset-data-store.php:57
96
  msgid "Draft Preset"
97
  msgstr ""
183
  msgid "Button Label"
184
  msgstr ""
185
 
186
+ #: init.php:149
187
  msgid ""
188
  "You can't activate the free version of YITH WooCommerce Ajax Product Filter "
189
  "while you are using the premium one."
190
  msgstr ""
191
 
192
+ #: init.php:167
193
  msgid ""
194
  "YITH WooCommerce Ajax Product Filter is enabled but not effective. It "
195
  "requires WooCommerce in order to work."
256
  msgid "SEO"
257
  msgstr ""
258
 
259
+ #: includes/class-yith-wcan-admin.php:190
 
 
 
 
 
260
  msgctxt "[Admin] tab name"
261
  msgid "Legacy"
262
  msgstr ""
263
 
264
+ #: includes/class-yith-wcan-admin.php:217
265
  msgctxt "[Admin] Plugin description"
266
  msgid ""
267
  "It allows your users to find the product they are looking for as quickly as "
268
  "possible."
269
  msgstr ""
270
 
271
+ #: includes/class-yith-wcan-admin.php:230
272
  msgctxt "[HELP TAB] Video title"
273
  msgid ""
274
  "Check this video to learn how to <b>create a filter preset and show it on "
275
  "the shop page:</b>"
276
  msgstr ""
277
 
278
+ #: includes/class-yith-wcan-admin.php:349
279
  msgctxt "[Admin] Generic item name, in \"You have no x yet\""
280
  msgid "item"
281
  msgstr ""
282
 
283
+ #: includes/class-yith-wcan-admin.php:350
284
  msgctxt "[Admin] Preset table empty message second line"
285
  msgid "But don't worry, here you can create your first one!"
286
  msgstr ""
287
 
288
+ #: includes/class-yith-wcan-admin.php:500
289
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
290
  msgid "Clear Product Filter transients"
291
  msgstr ""
292
 
293
+ #: includes/class-yith-wcan-admin.php:506
294
  msgctxt "[ADMIN] WooCommerce Tools tab, name of the tool"
295
  msgid "Run filter widgets upgrade"
296
  msgstr ""
297
 
298
+ #: includes/class-yith-wcan-admin.php:501
299
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
300
  msgid "Clear"
301
  msgstr ""
302
 
303
+ #: includes/class-yith-wcan-admin.php:507
304
  msgctxt "[ADMIN] WooCommerce Tools tab, button for the tool"
305
  msgid "Run"
306
  msgstr ""
307
 
308
+ #: includes/class-yith-wcan-admin.php:502
309
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
310
  msgid ""
311
  "This will clear all transients related to the YITH WooCommerce AJAX Product "
313
  "configuration, and filters do not display the expected results."
314
  msgstr ""
315
 
316
+ #: includes/class-yith-wcan-admin.php:508
317
  msgctxt "[ADMIN] WooCommerce Tools tab, description of the tool"
318
  msgid ""
319
  "This will create a preset for any sidebar of your shop containing filter "
license.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2015-2021 Your Inspiration Solutions (email : plugins@yithemes.com)
2
 
3
  This program is free software; you can redistribute it and/or modify
4
  it under the terms of the GNU General Public License as published by
1
+ Copyright 2015-2022 Your Inspiration Solutions (email : plugins@yithemes.com)
2
 
3
  This program is free software; you can redistribute it and/or modify
4
  it under the terms of the GNU General Public License as published by
plugin-fw/assets/js/javascript-md5/md5.min.js DELETED
@@ -1,2 +0,0 @@
1
- !function(n){"use strict";function t(n,t){var r=(65535&n)+(65535&t);return(n>>16)+(t>>16)+(r>>16)<<16|65535&r}function r(n,t){return n<<t|n>>>32-t}function e(n,e,o,u,c,f){return t(r(t(t(e,n),t(u,f)),c),o)}function o(n,t,r,o,u,c,f){return e(t&r|~t&o,n,t,u,c,f)}function u(n,t,r,o,u,c,f){return e(t&o|r&~o,n,t,u,c,f)}function c(n,t,r,o,u,c,f){return e(t^r^o,n,t,u,c,f)}function f(n,t,r,o,u,c,f){return e(r^(t|~o),n,t,u,c,f)}function i(n,r){n[r>>5]|=128<<r%32,n[14+(r+64>>>9<<4)]=r;var e,i,a,d,h,l=1732584193,g=-271733879,v=-1732584194,m=271733878;for(e=0;e<n.length;e+=16)i=l,a=g,d=v,h=m,g=f(g=f(g=f(g=f(g=c(g=c(g=c(g=c(g=u(g=u(g=u(g=u(g=o(g=o(g=o(g=o(g,v=o(v,m=o(m,l=o(l,g,v,m,n[e],7,-680876936),g,v,n[e+1],12,-389564586),l,g,n[e+2],17,606105819),m,l,n[e+3],22,-1044525330),v=o(v,m=o(m,l=o(l,g,v,m,n[e+4],7,-176418897),g,v,n[e+5],12,1200080426),l,g,n[e+6],17,-1473231341),m,l,n[e+7],22,-45705983),v=o(v,m=o(m,l=o(l,g,v,m,n[e+8],7,1770035416),g,v,n[e+9],12,-1958414417),l,g,n[e+10],17,-42063),m,l,n[e+11],22,-1990404162),v=o(v,m=o(m,l=o(l,g,v,m,n[e+12],7,1804603682),g,v,n[e+13],12,-40341101),l,g,n[e+14],17,-1502002290),m,l,n[e+15],22,1236535329),v=u(v,m=u(m,l=u(l,g,v,m,n[e+1],5,-165796510),g,v,n[e+6],9,-1069501632),l,g,n[e+11],14,643717713),m,l,n[e],20,-373897302),v=u(v,m=u(m,l=u(l,g,v,m,n[e+5],5,-701558691),g,v,n[e+10],9,38016083),l,g,n[e+15],14,-660478335),m,l,n[e+4],20,-405537848),v=u(v,m=u(m,l=u(l,g,v,m,n[e+9],5,568446438),g,v,n[e+14],9,-1019803690),l,g,n[e+3],14,-187363961),m,l,n[e+8],20,1163531501),v=u(v,m=u(m,l=u(l,g,v,m,n[e+13],5,-1444681467),g,v,n[e+2],9,-51403784),l,g,n[e+7],14,1735328473),m,l,n[e+12],20,-1926607734),v=c(v,m=c(m,l=c(l,g,v,m,n[e+5],4,-378558),g,v,n[e+8],11,-2022574463),l,g,n[e+11],16,1839030562),m,l,n[e+14],23,-35309556),v=c(v,m=c(m,l=c(l,g,v,m,n[e+1],4,-1530992060),g,v,n[e+4],11,1272893353),l,g,n[e+7],16,-155497632),m,l,n[e+10],23,-1094730640),v=c(v,m=c(m,l=c(l,g,v,m,n[e+13],4,681279174),g,v,n[e],11,-358537222),l,g,n[e+3],16,-722521979),m,l,n[e+6],23,76029189),v=c(v,m=c(m,l=c(l,g,v,m,n[e+9],4,-640364487),g,v,n[e+12],11,-421815835),l,g,n[e+15],16,530742520),m,l,n[e+2],23,-995338651),v=f(v,m=f(m,l=f(l,g,v,m,n[e],6,-198630844),g,v,n[e+7],10,1126891415),l,g,n[e+14],15,-1416354905),m,l,n[e+5],21,-57434055),v=f(v,m=f(m,l=f(l,g,v,m,n[e+12],6,1700485571),g,v,n[e+3],10,-1894986606),l,g,n[e+10],15,-1051523),m,l,n[e+1],21,-2054922799),v=f(v,m=f(m,l=f(l,g,v,m,n[e+8],6,1873313359),g,v,n[e+15],10,-30611744),l,g,n[e+6],15,-1560198380),m,l,n[e+13],21,1309151649),v=f(v,m=f(m,l=f(l,g,v,m,n[e+4],6,-145523070),g,v,n[e+11],10,-1120210379),l,g,n[e+2],15,718787259),m,l,n[e+9],21,-343485551),l=t(l,i),g=t(g,a),v=t(v,d),m=t(m,h);return[l,g,v,m]}function a(n){var t,r="",e=32*n.length;for(t=0;t<e;t+=8)r+=String.fromCharCode(n[t>>5]>>>t%32&255);return r}function d(n){var t,r=[];for(r[(n.length>>2)-1]=void 0,t=0;t<r.length;t+=1)r[t]=0;var e=8*n.length;for(t=0;t<e;t+=8)r[t>>5]|=(255&n.charCodeAt(t/8))<<t%32;return r}function h(n){return a(i(d(n),8*n.length))}function l(n,t){var r,e,o=d(n),u=[],c=[];for(u[15]=c[15]=void 0,o.length>16&&(o=i(o,8*n.length)),r=0;r<16;r+=1)u[r]=909522486^o[r],c[r]=1549556828^o[r];return e=i(u.concat(d(t)),512+8*t.length),a(i(c.concat(e),640))}function g(n){var t,r,e="";for(r=0;r<n.length;r+=1)t=n.charCodeAt(r),e+="0123456789abcdef".charAt(t>>>4&15)+"0123456789abcdef".charAt(15&t);return e}function v(n){return unescape(encodeURIComponent(n))}function m(n){return h(v(n))}function p(n){return g(m(n))}function s(n,t){return l(v(n),v(t))}function C(n,t){return g(s(n,t))}function A(n,t,r){return t?r?s(t,n):C(t,n):r?m(n):p(n)}"function"==typeof define&&define.amd?define(function(){return A}):"object"==typeof module&&module.exports?module.exports=A:n.md5=A}(this);
2
- //# sourceMappingURL=md5.min.js.map
 
 
plugin-fw/templates/fields/list-table.php CHANGED
@@ -11,11 +11,11 @@ defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
11
  list ( $field_id, $class, $the_title, $the_post_type, $args, $add_new_button, $add_new_url, $list_table_class, $list_table_class_dir, $search_form, $desc ) = yith_plugin_fw_extract( $field, 'id', 'class', 'title', 'post_type', 'args', 'add_new_button', 'add_new_url', 'list_table_class', 'list_table_class_dir', 'search_form', 'desc' );
12
 
13
  $show_button = false;
14
- if ( isset( $add_new_button ) && isset( $the_post_type ) ) {
15
  $show_button = true;
16
  $admin_url = admin_url( 'post-new.php' );
17
  $params['post_type'] = $the_post_type;
18
- $add_new_url = apply_filters( 'yith_plugin_fw_add_new_post_url', esc_url( add_query_arg( $params, $admin_url ) ), $params, isset( $args ) ? $args : false );
19
  }
20
 
21
  if ( isset( $list_table_class, $list_table_class_dir ) && ! class_exists( $list_table_class ) && file_exists( $list_table_class_dir ) ) {
11
  list ( $field_id, $class, $the_title, $the_post_type, $args, $add_new_button, $add_new_url, $list_table_class, $list_table_class_dir, $search_form, $desc ) = yith_plugin_fw_extract( $field, 'id', 'class', 'title', 'post_type', 'args', 'add_new_button', 'add_new_url', 'list_table_class', 'list_table_class_dir', 'search_form', 'desc' );
12
 
13
  $show_button = false;
14
+ if ( isset( $add_new_button ) && ( isset( $the_post_type ) || ( isset( $add_new_url ) ) ) ) {
15
  $show_button = true;
16
  $admin_url = admin_url( 'post-new.php' );
17
  $params['post_type'] = $the_post_type;
18
+ $add_new_url = $add_new_url ? $add_new_url : apply_filters( 'yith_plugin_fw_add_new_post_url', esc_url( add_query_arg( $params, $admin_url ) ), $params, isset( $args ) ? $args : false );
19
  }
20
 
21
  if ( isset( $list_table_class, $list_table_class_dir ) && ! class_exists( $list_table_class ) && file_exists( $list_table_class_dir ) ) {
plugin-options/premium-options.php DELETED
@@ -1,22 +0,0 @@
1
- <?php
2
- /**
3
- * Filter options
4
- *
5
- * @author YITH
6
- * @package YITH\AjaxProductFilter\Options
7
- * @version 4.0.0
8
- */
9
-
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- exit;
12
- } // Exit if accessed directly
13
-
14
-
15
- return array(
16
- 'premium' => array(
17
- 'home' => array(
18
- 'type' => 'custom_tab',
19
- 'action' => 'yith_wcan_premium_tab',
20
- ),
21
- ),
22
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
 
3
  Contributors: yithemes
4
  Tags: woocommerce ajax product filter download, woocommerce, widget, ajax, ajax filtered nav, ajax navigation, ajax filtered navigation, woocommerce layered navigation, woocommerce layered nav, product filter, product filters, ajax product filter, woocommerce ajax product filter, woocommerce filters, sidebar filter, sidebar ajax filter, ajax price filter, price filter, product sorting, woocommerce filter, taxonomy filter, attribute filter, attributes filter, woocommerce product sort, ajax sort, woocommerce ajax product filter, advanced product filters, ajax product filters, filters, woocommerce ajax product filters, woocommerce product filters, woocommerce product filters, category filter, attribute filters, woocommerce products filter, woocommerce price filter, yit, yith, yithemes
5
- Requires at least: 5.6
6
- Tested up to: 5.8
7
- Stable tag: 4.5.0
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -152,6 +152,13 @@ If none of the previous listed actions helps you solve the problem, then, submit
152
 
153
  == Changelog ==
154
 
 
 
 
 
 
 
 
155
  = 4.5.0 - Released on 21 December 2021 =
156
 
157
  * New: support for WooCommerce 6.0
2
 
3
  Contributors: yithemes
4
  Tags: woocommerce ajax product filter download, woocommerce, widget, ajax, ajax filtered nav, ajax navigation, ajax filtered navigation, woocommerce layered navigation, woocommerce layered nav, product filter, product filters, ajax product filter, woocommerce ajax product filter, woocommerce filters, sidebar filter, sidebar ajax filter, ajax price filter, price filter, product sorting, woocommerce filter, taxonomy filter, attribute filter, attributes filter, woocommerce product sort, ajax sort, woocommerce ajax product filter, advanced product filters, ajax product filters, filters, woocommerce ajax product filters, woocommerce product filters, woocommerce product filters, category filter, attribute filters, woocommerce products filter, woocommerce price filter, yit, yith, yithemes
5
+ Requires at least: 5.7
6
+ Tested up to: 5.9
7
+ Stable tag: 4.6.0
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
152
 
153
  == Changelog ==
154
 
155
+ = 4.6.0 - Released on 12 January 2022 =
156
+
157
+ * New: support for WooCommerce 6.1
158
+ * New: support for WordPress 5.9
159
+ * Update: YITH Plugin Framework
160
+ * Update: updated the "Premium" tab in the settings
161
+
162
  = 4.5.0 - Released on 21 December 2021 =
163
 
164
  * New: support for WooCommerce 6.0