YITH WooCommerce Catalog Mode - Version 2.9.0

Version Description

Last Stable Tag 2.9.0

Download this release

Release Info

Developer yithemes
Plugin Icon 128x128 YITH WooCommerce Catalog Mode
Version 2.9.0
Comparing to
See all releases

Code changes from version 2.8.0 to 2.9.0

init.php CHANGED
@@ -5,10 +5,10 @@
5
  * Description: <code><strong>YITH WooCommerce Catalog Mode</strong></code> allows hiding product prices, cart and checkout from your store and turning it into a performing product catalogue. You will be able to adjust your catalogue settings as you prefer based on your requirements. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>
6
  * Author: YITH
7
  * Text Domain: yith-woocommerce-catalog-mode
8
- * Version: 2.8.0
9
  * Author URI: https://yithemes.com/
10
- * WC requires at least: 5.9.0
11
- * WC tested up to: 6.3.x
12
  *
13
  * @package YITH WooCommerce Catalog Mode
14
  */
@@ -61,7 +61,7 @@ function ywctm_install_free_admin_notice() {
61
  <?php
62
  }
63
 
64
- ! defined( 'YWCTM_VERSION' ) && define( 'YWCTM_VERSION', '2.8.0' );
65
  ! defined( 'YWCTM_FREE_INIT' ) && define( 'YWCTM_FREE_INIT', plugin_basename( __FILE__ ) );
66
  ! defined( 'YWCTM_SLUG' ) && define( 'YWCTM_SLUG', 'yith-woocommerce-catalog-mode' );
67
  ! defined( 'YWCTM_FILE' ) && define( 'YWCTM_FILE', __FILE__ );
5
  * Description: <code><strong>YITH WooCommerce Catalog Mode</strong></code> allows hiding product prices, cart and checkout from your store and turning it into a performing product catalogue. You will be able to adjust your catalogue settings as you prefer based on your requirements. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>
6
  * Author: YITH
7
  * Text Domain: yith-woocommerce-catalog-mode
8
+ * Version: 2.9.0
9
  * Author URI: https://yithemes.com/
10
+ * WC requires at least: 6.2.0
11
+ * WC tested up to: 6.4.x
12
  *
13
  * @package YITH WooCommerce Catalog Mode
14
  */
61
  <?php
62
  }
63
 
64
+ ! defined( 'YWCTM_VERSION' ) && define( 'YWCTM_VERSION', '2.9.0' );
65
  ! defined( 'YWCTM_FREE_INIT' ) && define( 'YWCTM_FREE_INIT', plugin_basename( __FILE__ ) );
66
  ! defined( 'YWCTM_SLUG' ) && define( 'YWCTM_SLUG', 'yith-woocommerce-catalog-mode' );
67
  ! defined( 'YWCTM_FILE' ) && define( 'YWCTM_FILE', __FILE__ );
languages/yith-woocommerce-catalog-mode.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the YITH WooCommerce Catalog Mode package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: YITH WooCommerce Catalog Mode 2.8.0\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/yith-woocommerce-catalog-mode\n"
8
- "POT-Creation-Date: 2022-03-10 11:19:33+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
2
  # This file is distributed under the same license as the YITH WooCommerce Catalog Mode package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: YITH WooCommerce Catalog Mode 2.9.0\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/yith-woocommerce-catalog-mode\n"
8
+ "POT-Creation-Date: 2022-04-07 14:29:50+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
plugin-fw/assets/css/admin.css CHANGED
@@ -56,9 +56,16 @@
56
  /*-----------------------
57
  YITH FEEDS
58
  ------------------------*/
 
 
 
 
 
 
 
59
 
60
  .yith-feeds-logo {
61
- display: table-cell;
62
  background: #005b7c;
63
  padding: 5px;
64
  border-radius: 50%;
56
  /*-----------------------
57
  YITH FEEDS
58
  ------------------------*/
59
+ .yith-feeds-wrapper{
60
+ display: none;
61
+ }
62
+
63
+ .yith-feeds-changelog-plugin-name{
64
+ display: table;
65
+ }
66
 
67
  .yith-feeds-logo {
68
+ display: table-cell !important;
69
  background: #005b7c;
70
  padding: 5px;
71
  border-radius: 50%;
plugin-fw/assets/js/yith-ui.js CHANGED
@@ -199,16 +199,19 @@ window.yith = window.yith || {};
199
  footer : false
200
  },
201
  initialize = function () {
202
- handleClose();
203
 
204
  create();
205
  initEvents();
206
  },
207
- handleClose = function () {
208
  $( '.yith-plugin-fw__modal__wrap' ).remove();
209
  container.removeClass( 'yith-plugin-fw__modal--opened' );
210
  container.removeClass( 'yith-plugin-fw__modal--allow-wp-menu' );
211
  container.removeClass( 'yith-plugin-fw__modal--allow-wp-menu-in-mobile' );
 
 
 
212
 
213
  if ( typeof options.onClose === 'function' ) {
214
  options.onClose();
199
  footer : false
200
  },
201
  initialize = function () {
202
+ close();
203
 
204
  create();
205
  initEvents();
206
  },
207
+ close = function () {
208
  $( '.yith-plugin-fw__modal__wrap' ).remove();
209
  container.removeClass( 'yith-plugin-fw__modal--opened' );
210
  container.removeClass( 'yith-plugin-fw__modal--allow-wp-menu' );
211
  container.removeClass( 'yith-plugin-fw__modal--allow-wp-menu-in-mobile' );
212
+ },
213
+ handleClose = function () {
214
+ close();
215
 
216
  if ( typeof options.onClose === 'function' ) {
217
  options.onClose();
plugin-fw/assets/js/yith-ui.min.js CHANGED
@@ -1 +1 @@
1
- window.yith=window.yith||{},function(n,e){e.ui=e.ui||{};var o=function(n){if("string"==typeof n)return n;var e=[];for(var t of n)t&&e.indexOf(t)<0&&e.push(o(t));return e.join(" ")},t=function(n){n.stopPropagation()};e.ui.confirm=function(t){var l={title:!1,message:!1,onCreate:!1,onConfirm:!1,onCancel:!1,onClose:!1,classes:{wrap:"",content:"",title:"",message:"",footer:"",cancel:"",confirm:""},confirmButtonType:"confirm",cancelButton:yith_plugin_fw_ui.i18n.cancel,confirmButton:yith_plugin_fw_ui.i18n.confirm,width:350,closeAfterConfirm:!0,allowWpMenu:!1,allowWpMenuInMobile:!1,showClose:!0,closeWhenClickingOnOverlay:!1},i={};t=void 0!==t?t:{},(t=n.extend({},l,t)).classes=n.extend({},l.classes,t.classes);var s={wrap:o(["yith-plugin-fw__confirm__wrap",t.classes.wrap]),content:o(["yith-plugin-fw__confirm__content",t.classes.content]),title:o(["yith-plugin-fw__confirm__title",t.classes.title]),message:o(["yith-plugin-fw__confirm__message",t.classes.message]),footer:o(["yith-plugin-fw__confirm__footer",t.classes.footer]),cancel:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--cancel",t.classes.cancel]),confirm:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--"+t.confirmButtonType,t.classes.confirm])},c={message:!1,footer:!1,cancel:!1,confirm:!1},a=!1,r=function(){a&&a.close(),a=!1},f=function(){"function"==typeof t.onCancel&&t.onCancel(),r()},p=function(){"function"==typeof t.onConfirm&&t.onConfirm(),t.closeAfterConfirm&&r()},m=function(){c.cancel.on("click",f),c.confirm.on("click",p)};(function(){c.message=n('<div class="'+s.message+'">'),c.footer=n('<div class="'+s.footer+'">'),c.cancel=n('<span class="'+s.cancel+'">'+t.cancelButton+"</span>"),c.confirm=n('<span class="'+s.confirm+'">'+t.confirmButton+"</span>"),t.message&&c.message.html(t.message),c.footer.append(c.cancel),c.footer.append(c.confirm),a=e.ui.modal({classes:{wrap:s.wrap,title:s.title,content:s.content},title:t.title,content:[c.message,c.footer],width:t.width,allowWpMenu:t.allowWpMenu,allowWpMenuInMobile:t.allowWpMenuInMobile,showClose:t.showClose,onCreate:t.onCreate,onClose:t.onClose,closeWhenClickingOnOverlay:t.closeWhenClickingOnOverlay})})(),m(),i.elements=n.extend({},c),i.modal=n.extend({},a),i.close=r,i.cancel=f},e.ui.modal=function(e){var l={allowWpMenu:!0,allowWpMenuInMobile:!1,title:!1,content:!1,footer:!1,showClose:!0,closeSelector:!1,classes:{wrap:"",main:"",close:"",title:"",content:"",footer:""},width:500,allowClosingWithEsc:!0,closeWhenClickingOnOverlay:!1,scrollContent:!0,onCreate:!1,onClose:!1},i={};e=void 0!==e?e:{},(e=n.extend({},l,e)).classes=n.extend({},l.classes,e.classes);var s=n("#wpwrap"),c={wrap:["yith-plugin-ui","yith-plugin-fw__modal__wrap",e.classes.wrap],main:["yith-plugin-fw__modal__main",e.classes.main],close:["yith-plugin-fw__modal__close","yith-icon","yith-icon-close",e.classes.close],title:["yith-plugin-fw__modal__title",e.classes.title],content:["yith-plugin-fw__modal__content",e.classes.content],footer:["yith-plugin-fw__modal__footer",e.classes.footer]},a={wrap:!1,main:!1,close:!1,title:!1,content:!1,footer:!1},r=function(){n(".yith-plugin-fw__modal__wrap").remove(),s.removeClass("yith-plugin-fw__modal--opened"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile"),"function"==typeof e.onClose&&e.onClose()},f=function(){a.wrap=n('<div class="'+o(c.wrap)+'">'),a.main=n('<div class="'+o(c.main)+'">'),a.close=n('<span class="'+o(c.close)+'">'),a.title=n('<div class="'+o(c.title)+'">'),a.content=n('<div class="'+o(c.content)+'">'),a.footer=n('<div class="'+o(c.footer)+'">'),a.main.css({width:e.width}),e.title&&("string"==typeof e.title?a.title.html(e.title):a.title.append(e.title)),e.content&&("string"==typeof e.content?a.content.html(e.content):a.content.append(e.content)),e.showClose&&a.main.append(a.close),a.main.append(a.title),a.main.append(a.content),e.footer&&("string"==typeof e.footer?a.footer.html(e.footer):a.footer.append(e.footer),a.main.append(a.footer)),a.wrap.append(a.main),e.scrollContent&&a.wrap.addClass("yith-plugin-fw__modal__wrap--scroll-content"),s.append(a.wrap),s.addClass("yith-plugin-fw__modal--opened"),e.allowWpMenu&&s.addClass("yith-plugin-fw__modal--allow-wp-menu"),e.allowWpMenuInMobile&&s.addClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile"),"function"==typeof e.onCreate&&e.onCreate()},p=function(){a.close.on("click",r),e.closeSelector&&s.on("click",e.closeSelector,r),e.closeWhenClickingOnOverlay&&(a.wrap.on("click",r),a.main.on("click",t)),n(document).on("keydown",m)},m=function(n){e.allowClosingWithEsc&&27===n.keyCode&&r()};return r(),f(),p(),i.elements=n.extend({},a),i.close=r,i}}(window.jQuery,window.yith);
1
+ window.yith=window.yith||{},function(n,e){e.ui=e.ui||{};var o=function(n){if("string"==typeof n)return n;var e=[];for(var t of n)t&&e.indexOf(t)<0&&e.push(o(t));return e.join(" ")},t=function(n){n.stopPropagation()};e.ui.confirm=function(t){var l={title:!1,message:!1,onCreate:!1,onConfirm:!1,onCancel:!1,onClose:!1,classes:{wrap:"",content:"",title:"",message:"",footer:"",cancel:"",confirm:""},confirmButtonType:"confirm",cancelButton:yith_plugin_fw_ui.i18n.cancel,confirmButton:yith_plugin_fw_ui.i18n.confirm,width:350,closeAfterConfirm:!0,allowWpMenu:!1,allowWpMenuInMobile:!1,showClose:!0,closeWhenClickingOnOverlay:!1},i={};t=void 0!==t?t:{},(t=n.extend({},l,t)).classes=n.extend({},l.classes,t.classes);var s={wrap:o(["yith-plugin-fw__confirm__wrap",t.classes.wrap]),content:o(["yith-plugin-fw__confirm__content",t.classes.content]),title:o(["yith-plugin-fw__confirm__title",t.classes.title]),message:o(["yith-plugin-fw__confirm__message",t.classes.message]),footer:o(["yith-plugin-fw__confirm__footer",t.classes.footer]),cancel:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--cancel",t.classes.cancel]),confirm:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--"+t.confirmButtonType,t.classes.confirm])},c={message:!1,footer:!1,cancel:!1,confirm:!1},a=!1,r=function(){a&&a.close(),a=!1},f=function(){"function"==typeof t.onCancel&&t.onCancel(),r()},p=function(){"function"==typeof t.onConfirm&&t.onConfirm(),t.closeAfterConfirm&&r()},m=function(){c.cancel.on("click",f),c.confirm.on("click",p)};(function(){c.message=n('<div class="'+s.message+'">'),c.footer=n('<div class="'+s.footer+'">'),c.cancel=n('<span class="'+s.cancel+'">'+t.cancelButton+"</span>"),c.confirm=n('<span class="'+s.confirm+'">'+t.confirmButton+"</span>"),t.message&&c.message.html(t.message),c.footer.append(c.cancel),c.footer.append(c.confirm),a=e.ui.modal({classes:{wrap:s.wrap,title:s.title,content:s.content},title:t.title,content:[c.message,c.footer],width:t.width,allowWpMenu:t.allowWpMenu,allowWpMenuInMobile:t.allowWpMenuInMobile,showClose:t.showClose,onCreate:t.onCreate,onClose:t.onClose,closeWhenClickingOnOverlay:t.closeWhenClickingOnOverlay})})(),m(),i.elements=n.extend({},c),i.modal=n.extend({},a),i.close=r,i.cancel=f},e.ui.modal=function(e){var l={allowWpMenu:!0,allowWpMenuInMobile:!1,title:!1,content:!1,footer:!1,showClose:!0,closeSelector:!1,classes:{wrap:"",main:"",close:"",title:"",content:"",footer:""},width:500,allowClosingWithEsc:!0,closeWhenClickingOnOverlay:!1,scrollContent:!0,onCreate:!1,onClose:!1},i={};e=void 0!==e?e:{},(e=n.extend({},l,e)).classes=n.extend({},l.classes,e.classes);var s=n("#wpwrap"),c={wrap:["yith-plugin-ui","yith-plugin-fw__modal__wrap",e.classes.wrap],main:["yith-plugin-fw__modal__main",e.classes.main],close:["yith-plugin-fw__modal__close","yith-icon","yith-icon-close",e.classes.close],title:["yith-plugin-fw__modal__title",e.classes.title],content:["yith-plugin-fw__modal__content",e.classes.content],footer:["yith-plugin-fw__modal__footer",e.classes.footer]},a={wrap:!1,main:!1,close:!1,title:!1,content:!1,footer:!1},r=function(){n(".yith-plugin-fw__modal__wrap").remove(),s.removeClass("yith-plugin-fw__modal--opened"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile")},f=function(){r(),"function"==typeof e.onClose&&e.onClose()},p=function(){a.wrap=n('<div class="'+o(c.wrap)+'">'),a.main=n('<div class="'+o(c.main)+'">'),a.close=n('<span class="'+o(c.close)+'">'),a.title=n('<div class="'+o(c.title)+'">'),a.content=n('<div class="'+o(c.content)+'">'),a.footer=n('<div class="'+o(c.footer)+'">'),a.main.css({width:e.width}),e.title&&("string"==typeof e.title?a.title.html(e.title):a.title.append(e.title)),e.content&&("string"==typeof e.content?a.content.html(e.content):a.content.append(e.content)),e.showClose&&a.main.append(a.close),a.main.append(a.title),a.main.append(a.content),e.footer&&("string"==typeof e.footer?a.footer.html(e.footer):a.footer.append(e.footer),a.main.append(a.footer)),a.wrap.append(a.main),e.scrollContent&&a.wrap.addClass("yith-plugin-fw__modal__wrap--scroll-content"),s.append(a.wrap),s.addClass("yith-plugin-fw__modal--opened"),e.allowWpMenu&&s.addClass("yith-plugin-fw__modal--allow-wp-menu"),e.allowWpMenuInMobile&&s.addClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile"),"function"==typeof e.onCreate&&e.onCreate()},m=function(){a.close.on("click",f),e.closeSelector&&s.on("click",e.closeSelector,f),e.closeWhenClickingOnOverlay&&(a.wrap.on("click",f),a.main.on("click",t)),n(document).on("keydown",w)},w=function(n){e.allowClosingWithEsc&&27===n.keyCode&&f()};return r(),p(),m(),i.elements=n.extend({},a),i.close=f,i}}(window.jQuery,window.yith);
plugin-fw/includes/class-yith-dashboard.php CHANGED
@@ -94,7 +94,7 @@ if ( ! class_exists( 'YITH_Dashboard' ) ) {
94
  if ( ! empty( $changelog ) ) {
95
  $output .= ' - ';
96
  $output .= sprintf( '<a class="yith-last-changelog" href="#" data-changelogid="%s" data-plugininfo="%s">%s</a>', $last_update->get_id( true ), $last_update->get_title(), _x( 'View Changelog', 'Plugin FW', 'yith-plugin-fw' ) );
97
- $output .= sprintf( '<div style="display: none;" id="%s"><div style="display: table;"><img class="yith-feeds-logo" src="%s" /><h3 class="yith-feeds-plugin-name"><span style="font-weight: normal;">%s</span> %s</h3></div><p>%s</p></div>', $last_update->get_id( true ), yith_plugin_fw_get_default_logo(), _x( 'Latest update released on', 'Plugin FW', 'yith-plugin-fw' ), $date_i18n, $changelog );
98
  }
99
 
100
  $output .= '</li>';
94
  if ( ! empty( $changelog ) ) {
95
  $output .= ' - ';
96
  $output .= sprintf( '<a class="yith-last-changelog" href="#" data-changelogid="%s" data-plugininfo="%s">%s</a>', $last_update->get_id( true ), $last_update->get_title(), _x( 'View Changelog', 'Plugin FW', 'yith-plugin-fw' ) );
97
+ $output .= sprintf( '<div class="yith-feeds-wrapper" id="%s"><div class="yith-feeds-changelog-plugin-name"><img class="yith-feeds-logo" src="%s" /><h3 class="yith-feeds-plugin-name"><span style="font-weight: normal;">%s</span> %s</h3></div><p>%s</p></div>', $last_update->get_id( true ), yith_plugin_fw_get_default_logo(), _x( 'Latest update released on', 'Plugin FW', 'yith-plugin-fw' ), $date_i18n, $changelog );
98
  }
99
 
100
  $output .= '</li>';
plugin-fw/init.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
  /**
3
  * Framework Name: YIT Plugin Framework
4
- * Version: 3.9.2
5
  * Author: YITH
6
  * Text Domain: yith-plugin-fw
7
  * Domain Path: /languages/
8
  *
9
  * @author YITH
10
- * @version 3.9.2
11
  * @package YITH\PluginFramework
12
  */
13
 
1
  <?php
2
  /**
3
  * Framework Name: YIT Plugin Framework
4
+ * Version: 3.9.4
5
  * Author: YITH
6
  * Text Domain: yith-plugin-fw
7
  * Domain Path: /languages/
8
  *
9
  * @author YITH
10
+ * @version 3.9.3
11
  * @package YITH\PluginFramework
12
  */
13
 
plugin-fw/languages/yith-plugin-fw-el.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-el.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-03-02 14:53:34+00:00\n"
8
  "PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
9
  "Language: el_GR\n"
10
  "MIME-Version: 1.0\n"
@@ -402,8 +402,8 @@ msgstr ""
402
  "διακομιστή μας."
403
 
404
  #: templates/fields/ajax-customers.php:41
405
- msgid "Search Customers"
406
- msgstr "Αναζήτηση Πελατών"
407
 
408
  #. translators: 1. user display name; 2. user ID; 3. user email.
409
  #: templates/fields/ajax-customers.php:68
@@ -412,16 +412,16 @@ msgid "%1$s (#%2$s &ndash; %3$s)"
412
  msgstr "%1$s (#%2$s &ndash; %3$s)"
413
 
414
  #: templates/fields/ajax-posts.php:41
415
- msgid "Search Posts"
416
- msgstr "Αναζήτηση Άρθρου"
417
 
418
- #: templates/fields/ajax-products.php:14
419
- msgid "Search Product"
420
- msgstr "Αναζήτηση Προϊόντος"
421
 
422
  #: templates/fields/ajax-terms.php:41
423
- msgid "Search Categories"
424
- msgstr "Αναζήτηση Κατηγοριών"
425
 
426
  #: templates/fields/customtabs.php:17
427
  msgid "Close all"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-04-02 10:27:44+00:00\n"
8
  "PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
9
  "Language: el_GR\n"
10
  "MIME-Version: 1.0\n"
402
  "διακομιστή μας."
403
 
404
  #: templates/fields/ajax-customers.php:41
405
+ msgid "Search for a customer..."
406
+ msgstr ""
407
 
408
  #. translators: 1. user display name; 2. user ID; 3. user email.
409
  #: templates/fields/ajax-customers.php:68
412
  msgstr "%1$s (#%2$s &ndash; %3$s)"
413
 
414
  #: templates/fields/ajax-posts.php:41
415
+ msgid "Search for a post..."
416
+ msgstr ""
417
 
418
+ #: templates/fields/ajax-products.php:16
419
+ msgid "Search for a product..."
420
+ msgstr ""
421
 
422
  #: templates/fields/ajax-terms.php:41
423
+ msgid "Search for a category..."
424
+ msgstr ""
425
 
426
  #: templates/fields/customtabs.php:17
427
  msgid "Close all"
plugin-fw/languages/yith-plugin-fw-es_ES.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-03-02 14:53:34+00:00\n"
8
- "PO-Revision-Date: 2021-12-13 13:19:03+0000\n"
9
  "Language: es\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -411,8 +411,8 @@ msgstr ""
411
  "instalada debido a un error entre tu sitio y nuestro servidor."
412
 
413
  #: templates/fields/ajax-customers.php:41
414
- msgid "Search Customers"
415
- msgstr "Buscar clientes"
416
 
417
  #. translators: 1. user display name; 2. user ID; 3. user email.
418
  #: templates/fields/ajax-customers.php:68
@@ -421,16 +421,16 @@ msgid "%1$s (#%2$s &ndash; %3$s)"
421
  msgstr "%1$s (#%2$s &ndash; %3$s)"
422
 
423
  #: templates/fields/ajax-posts.php:41
424
- msgid "Search Posts"
425
- msgstr "Buscar entradas"
426
 
427
- #: templates/fields/ajax-products.php:14
428
- msgid "Search Product"
429
- msgstr "Buscar producto"
430
 
431
  #: templates/fields/ajax-terms.php:41
432
- msgid "Search Categories"
433
- msgstr "Buscar categorías"
434
 
435
  #: templates/fields/customtabs.php:17
436
  msgid "Close all"
@@ -738,7 +738,6 @@ msgid "Thank you for purchasing %s!"
738
  msgstr "¡Gracias por comprar %s!"
739
 
740
  #: includes/class-yit-plugin-panel.php:806
741
- #, fuzzy
742
  msgctxt "Help tab default description"
743
  msgid ""
744
  "We want to help you enjoy a wonderful experience with all of our products."
@@ -886,19 +885,17 @@ msgstr "Lee la documentación"
886
  #: templates/panel/help-tab.php:127
887
  msgctxt "Help tab Read Documentation link"
888
  msgid "to learn how the plugin works from the basics."
889
- msgstr ""
890
 
891
  #: templates/panel/help-tab.php:137
892
- #, fuzzy
893
  msgctxt "Help tab Watch video tutorials link"
894
  msgid "Watch our video tutorials"
895
- msgstr "Vea nuestros videotutoriales"
896
 
897
  #: templates/panel/help-tab.php:140
898
- #, fuzzy
899
  msgctxt "Help tab Watch video tutorials link"
900
  msgid "to see some helpful use cases."
901
- msgstr "Te mostramos algunos ejemplos de uso"
902
 
903
  #: templates/panel/help-tab.php:150
904
  msgctxt "Help tab view FAQs link"
@@ -906,10 +903,9 @@ msgid "Check the FAQs"
906
  msgstr "Comprueba los FAQ"
907
 
908
  #: templates/panel/help-tab.php:153
909
- #, fuzzy
910
  msgctxt "Help tab view FAQs link"
911
  msgid "to find answers to your doubts."
912
- msgstr "para encontrar respuestas a tus dudas"
913
 
914
  #: templates/panel/help-tab.php:169
915
  msgctxt "Help tab FAQ title"
@@ -927,7 +923,6 @@ msgid "Need help?"
927
  msgstr "¿Necesitas ayuda?"
928
 
929
  #: templates/panel/help-tab.php:195
930
- #, fuzzy
931
  msgctxt "Help tab submit ticket description"
932
  msgid ""
933
  "If you are experiencing any technical issues, ask for help from our "
@@ -935,7 +930,8 @@ msgid ""
935
  "soon as possible."
936
  msgstr ""
937
  "Si tienes algún problema técnico, pide ayuda a nuestros desarrolladores. "
938
- "Envía un ticket en nuestro panel de soporte y te ayudaremos lo antes posible."
 
939
 
940
  #: templates/panel/help-tab.php:203
941
  msgctxt "Help tab submit ticket button"
@@ -1052,7 +1048,3 @@ msgstr "Versión premium"
1052
  msgctxt "Action links"
1053
  msgid "Settings"
1054
  msgstr "Ajustes"
1055
-
1056
- #~ msgctxt "Help tab Read Documentation link"
1057
- #~ msgid "to learn from basics how it works"
1058
- #~ msgstr "para aprender desde lo más básico cómo funciona"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-04-02 10:27:44+00:00\n"
8
+ "PO-Revision-Date: 2022-03-21 12:58:47+0000\n"
9
  "Language: es\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
411
  "instalada debido a un error entre tu sitio y nuestro servidor."
412
 
413
  #: templates/fields/ajax-customers.php:41
414
+ msgid "Search for a customer..."
415
+ msgstr "Buscar un cliente..."
416
 
417
  #. translators: 1. user display name; 2. user ID; 3. user email.
418
  #: templates/fields/ajax-customers.php:68
421
  msgstr "%1$s (#%2$s &ndash; %3$s)"
422
 
423
  #: templates/fields/ajax-posts.php:41
424
+ msgid "Search for a post..."
425
+ msgstr "Buscar una entrada..."
426
 
427
+ #: templates/fields/ajax-products.php:16
428
+ msgid "Search for a product..."
429
+ msgstr "Buscar un producto..."
430
 
431
  #: templates/fields/ajax-terms.php:41
432
+ msgid "Search for a category..."
433
+ msgstr "Buscar una categoría..."
434
 
435
  #: templates/fields/customtabs.php:17
436
  msgid "Close all"
738
  msgstr "¡Gracias por comprar %s!"
739
 
740
  #: includes/class-yit-plugin-panel.php:806
 
741
  msgctxt "Help tab default description"
742
  msgid ""
743
  "We want to help you enjoy a wonderful experience with all of our products."
885
  #: templates/panel/help-tab.php:127
886
  msgctxt "Help tab Read Documentation link"
887
  msgid "to learn how the plugin works from the basics."
888
+ msgstr "para aprender cómo funciona el plugin desde lo más básico."
889
 
890
  #: templates/panel/help-tab.php:137
 
891
  msgctxt "Help tab Watch video tutorials link"
892
  msgid "Watch our video tutorials"
893
+ msgstr "Ve nuestros videotutoriales"
894
 
895
  #: templates/panel/help-tab.php:140
 
896
  msgctxt "Help tab Watch video tutorials link"
897
  msgid "to see some helpful use cases."
898
+ msgstr "para ver algunos casos de uso útiles."
899
 
900
  #: templates/panel/help-tab.php:150
901
  msgctxt "Help tab view FAQs link"
903
  msgstr "Comprueba los FAQ"
904
 
905
  #: templates/panel/help-tab.php:153
 
906
  msgctxt "Help tab view FAQs link"
907
  msgid "to find answers to your doubts."
908
+ msgstr "para encontrar respuestas a tus dudas."
909
 
910
  #: templates/panel/help-tab.php:169
911
  msgctxt "Help tab FAQ title"
923
  msgstr "¿Necesitas ayuda?"
924
 
925
  #: templates/panel/help-tab.php:195
 
926
  msgctxt "Help tab submit ticket description"
927
  msgid ""
928
  "If you are experiencing any technical issues, ask for help from our "
930
  "soon as possible."
931
  msgstr ""
932
  "Si tienes algún problema técnico, pide ayuda a nuestros desarrolladores. "
933
+ "Envía un ticket a través de nuestro servicio de asistencia y te ayudaremos "
934
+ "lo antes posible."
935
 
936
  #: templates/panel/help-tab.php:203
937
  msgctxt "Help tab submit ticket button"
1048
  msgctxt "Action links"
1049
  msgid "Settings"
1050
  msgstr "Ajustes"
 
 
 
 
plugin-fw/languages/yith-plugin-fw-it_IT.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-it_IT.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-03-02 14:53:34+00:00\n"
8
- "PO-Revision-Date: 2021-12-13 12:05:30+0000\n"
9
  "Language: it\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -409,8 +409,8 @@ msgstr ""
409
  "causa di un problema di connessione fra il tuo sito e il nostro server."
410
 
411
  #: templates/fields/ajax-customers.php:41
412
- msgid "Search Customers"
413
- msgstr "Cerca fra i clienti"
414
 
415
  #. translators: 1. user display name; 2. user ID; 3. user email.
416
  #: templates/fields/ajax-customers.php:68
@@ -419,16 +419,16 @@ msgid "%1$s (#%2$s &ndash; %3$s)"
419
  msgstr "%1$s (#%2$s &ndash; %3$s)"
420
 
421
  #: templates/fields/ajax-posts.php:41
422
- msgid "Search Posts"
423
- msgstr "Cerca articoli"
424
 
425
- #: templates/fields/ajax-products.php:14
426
- msgid "Search Product"
427
- msgstr "Cerca un prodotto"
428
 
429
  #: templates/fields/ajax-terms.php:41
430
- msgid "Search Categories"
431
- msgstr "Cerca categorie"
432
 
433
  #: templates/fields/customtabs.php:17
434
  msgid "Close all"
@@ -738,7 +738,6 @@ msgid "Thank you for purchasing %s!"
738
  msgstr "Grazie per aver acquistato %s!"
739
 
740
  #: includes/class-yit-plugin-panel.php:806
741
- #, fuzzy
742
  msgctxt "Help tab default description"
743
  msgid ""
744
  "We want to help you enjoy a wonderful experience with all of our products."
@@ -887,19 +886,17 @@ msgstr "Consulta la documentazione"
887
  #: templates/panel/help-tab.php:127
888
  msgctxt "Help tab Read Documentation link"
889
  msgid "to learn how the plugin works from the basics."
890
- msgstr ""
891
 
892
  #: templates/panel/help-tab.php:137
893
- #, fuzzy
894
  msgctxt "Help tab Watch video tutorials link"
895
  msgid "Watch our video tutorials"
896
  msgstr "Guarda i nostri video tutorial"
897
 
898
  #: templates/panel/help-tab.php:140
899
- #, fuzzy
900
  msgctxt "Help tab Watch video tutorials link"
901
  msgid "to see some helpful use cases."
902
- msgstr "Ti mostriamo alcuni casi d'uso"
903
 
904
  #: templates/panel/help-tab.php:150
905
  msgctxt "Help tab view FAQs link"
@@ -907,10 +904,9 @@ msgid "Check the FAQs"
907
  msgstr "Controlla le FAQ"
908
 
909
  #: templates/panel/help-tab.php:153
910
- #, fuzzy
911
  msgctxt "Help tab view FAQs link"
912
  msgid "to find answers to your doubts."
913
- msgstr "per trovare le risposte ai tuoi dubbi"
914
 
915
  #: templates/panel/help-tab.php:169
916
  msgctxt "Help tab FAQ title"
@@ -928,7 +924,6 @@ msgid "Need help?"
928
  msgstr "Ti serve aiuto?"
929
 
930
  #: templates/panel/help-tab.php:195
931
- #, fuzzy
932
  msgctxt "Help tab submit ticket description"
933
  msgid ""
934
  "If you are experiencing any technical issues, ask for help from our "
@@ -1054,7 +1049,3 @@ msgstr "Versione premium"
1054
  msgctxt "Action links"
1055
  msgid "Settings"
1056
  msgstr "Impostazioni"
1057
-
1058
- #~ msgctxt "Help tab Read Documentation link"
1059
- #~ msgid "to learn from basics how it works"
1060
- #~ msgstr "per imparare dalle basi come funziona"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-04-02 10:27:44+00:00\n"
8
+ "PO-Revision-Date: 2022-03-21 13:01:47+0000\n"
9
  "Language: it\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
409
  "causa di un problema di connessione fra il tuo sito e il nostro server."
410
 
411
  #: templates/fields/ajax-customers.php:41
412
+ msgid "Search for a customer..."
413
+ msgstr "Cerca un cliente..."
414
 
415
  #. translators: 1. user display name; 2. user ID; 3. user email.
416
  #: templates/fields/ajax-customers.php:68
419
  msgstr "%1$s (#%2$s &ndash; %3$s)"
420
 
421
  #: templates/fields/ajax-posts.php:41
422
+ msgid "Search for a post..."
423
+ msgstr "Cerca un post..."
424
 
425
+ #: templates/fields/ajax-products.php:16
426
+ msgid "Search for a product..."
427
+ msgstr "Cerca un prodotto..."
428
 
429
  #: templates/fields/ajax-terms.php:41
430
+ msgid "Search for a category..."
431
+ msgstr "Cerca una categoria..."
432
 
433
  #: templates/fields/customtabs.php:17
434
  msgid "Close all"
738
  msgstr "Grazie per aver acquistato %s!"
739
 
740
  #: includes/class-yit-plugin-panel.php:806
 
741
  msgctxt "Help tab default description"
742
  msgid ""
743
  "We want to help you enjoy a wonderful experience with all of our products."
886
  #: templates/panel/help-tab.php:127
887
  msgctxt "Help tab Read Documentation link"
888
  msgid "to learn how the plugin works from the basics."
889
+ msgstr "per scoprire dalle basi come funziona il plugin."
890
 
891
  #: templates/panel/help-tab.php:137
 
892
  msgctxt "Help tab Watch video tutorials link"
893
  msgid "Watch our video tutorials"
894
  msgstr "Guarda i nostri video tutorial"
895
 
896
  #: templates/panel/help-tab.php:140
 
897
  msgctxt "Help tab Watch video tutorials link"
898
  msgid "to see some helpful use cases."
899
+ msgstr "per vedere dei casi d'utilizzo utili."
900
 
901
  #: templates/panel/help-tab.php:150
902
  msgctxt "Help tab view FAQs link"
904
  msgstr "Controlla le FAQ"
905
 
906
  #: templates/panel/help-tab.php:153
 
907
  msgctxt "Help tab view FAQs link"
908
  msgid "to find answers to your doubts."
909
+ msgstr "per trovare le risposte ai tuoi dubbi."
910
 
911
  #: templates/panel/help-tab.php:169
912
  msgctxt "Help tab FAQ title"
924
  msgstr "Ti serve aiuto?"
925
 
926
  #: templates/panel/help-tab.php:195
 
927
  msgctxt "Help tab submit ticket description"
928
  msgid ""
929
  "If you are experiencing any technical issues, ask for help from our "
1049
  msgctxt "Action links"
1050
  msgid "Settings"
1051
  msgstr "Impostazioni"
 
 
 
 
plugin-fw/languages/yith-plugin-fw-nl_NL.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-nl_NL.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-03-02 14:53:34+00:00\n"
8
  "PO-Revision-Date: 2021-12-13 12:45:02+0000\n"
9
  "Language: nl\n"
10
  "MIME-Version: 1.0\n"
@@ -410,8 +410,8 @@ msgstr ""
410
  "vanwege een verbindingsprobleem tussen je site en onze server."
411
 
412
  #: templates/fields/ajax-customers.php:41
413
- msgid "Search Customers"
414
- msgstr "Klanten zoeken"
415
 
416
  #. translators: 1. user display name; 2. user ID; 3. user email.
417
  #: templates/fields/ajax-customers.php:68
@@ -420,16 +420,16 @@ msgid "%1$s (#%2$s &ndash; %3$s)"
420
  msgstr "%1$s (#%2$s &ndash; %3$s)"
421
 
422
  #: templates/fields/ajax-posts.php:41
423
- msgid "Search Posts"
424
- msgstr "Posts zoeken"
425
 
426
- #: templates/fields/ajax-products.php:14
427
- msgid "Search Product"
428
- msgstr "Zoek Product"
429
 
430
  #: templates/fields/ajax-terms.php:41
431
- msgid "Search Categories"
432
- msgstr "Zoek categorieën"
433
 
434
  #: templates/fields/customtabs.php:17
435
  msgid "Close all"
@@ -738,13 +738,10 @@ msgid "Thank you for purchasing %s!"
738
  msgstr "Bedankt voor het kopen van %s!"
739
 
740
  #: includes/class-yit-plugin-panel.php:806
741
- #, fuzzy
742
  msgctxt "Help tab default description"
743
  msgid ""
744
  "We want to help you enjoy a wonderful experience with all of our products."
745
  msgstr ""
746
- "We willen je helpen om te genieten van de geweldige ervaringen met al onze "
747
- "producten."
748
 
749
  #: includes/class-yit-plugin-panel.php:853
750
  msgctxt "Premium tab name"
@@ -889,16 +886,14 @@ msgid "to learn how the plugin works from the basics."
889
  msgstr ""
890
 
891
  #: templates/panel/help-tab.php:137
892
- #, fuzzy
893
  msgctxt "Help tab Watch video tutorials link"
894
  msgid "Watch our video tutorials"
895
- msgstr "Bekijk onze video uitleg"
896
 
897
  #: templates/panel/help-tab.php:140
898
- #, fuzzy
899
  msgctxt "Help tab Watch video tutorials link"
900
  msgid "to see some helpful use cases."
901
- msgstr "We tonen je enkele gebruikscasussen"
902
 
903
  #: templates/panel/help-tab.php:150
904
  msgctxt "Help tab view FAQs link"
@@ -906,10 +901,9 @@ msgid "Check the FAQs"
906
  msgstr "Check de FAQs"
907
 
908
  #: templates/panel/help-tab.php:153
909
- #, fuzzy
910
  msgctxt "Help tab view FAQs link"
911
  msgid "to find answers to your doubts."
912
- msgstr "om je twijfels te beantwoorden"
913
 
914
  #: templates/panel/help-tab.php:169
915
  msgctxt "Help tab FAQ title"
@@ -927,16 +921,12 @@ msgid "Need help?"
927
  msgstr "Hulp nodig?"
928
 
929
  #: templates/panel/help-tab.php:195
930
- #, fuzzy
931
  msgctxt "Help tab submit ticket description"
932
  msgid ""
933
  "If you are experiencing any technical issues, ask for help from our "
934
  "developers. Submit a ticket through our support desk and we will help you as "
935
  "soon as possible."
936
  msgstr ""
937
- "Als je een technisch probleem ondervindt, vraag dan hulp aan onze "
938
- "developers. Je kunt een ticket indienen bij onze supportdesk en we helpen je "
939
- "zo snel mogelijk verder."
940
 
941
  #: templates/panel/help-tab.php:203
942
  msgctxt "Help tab submit ticket button"
@@ -1053,7 +1043,3 @@ msgstr "Premium versie"
1053
  msgctxt "Action links"
1054
  msgid "Settings"
1055
  msgstr "Instellingen"
1056
-
1057
- #~ msgctxt "Help tab Read Documentation link"
1058
- #~ msgid "to learn from basics how it works"
1059
- #~ msgstr "om vanaf de basis te leren hoe het werkt"
4
  msgstr ""
5
  "Project-Id-Version: YITH Framework\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-04-02 10:27:44+00:00\n"
8
  "PO-Revision-Date: 2021-12-13 12:45:02+0000\n"
9
  "Language: nl\n"
10
  "MIME-Version: 1.0\n"
410
  "vanwege een verbindingsprobleem tussen je site en onze server."
411
 
412
  #: templates/fields/ajax-customers.php:41
413
+ msgid "Search for a customer..."
414
+ msgstr ""
415
 
416
  #. translators: 1. user display name; 2. user ID; 3. user email.
417
  #: templates/fields/ajax-customers.php:68
420
  msgstr "%1$s (#%2$s &ndash; %3$s)"
421
 
422
  #: templates/fields/ajax-posts.php:41
423
+ msgid "Search for a post..."
424
+ msgstr ""
425
 
426
+ #: templates/fields/ajax-products.php:16
427
+ msgid "Search for a product..."
428
+ msgstr ""
429
 
430
  #: templates/fields/ajax-terms.php:41
431
+ msgid "Search for a category..."
432
+ msgstr ""
433
 
434
  #: templates/fields/customtabs.php:17
435
  msgid "Close all"
738
  msgstr "Bedankt voor het kopen van %s!"
739
 
740
  #: includes/class-yit-plugin-panel.php:806
 
741
  msgctxt "Help tab default description"
742
  msgid ""
743
  "We want to help you enjoy a wonderful experience with all of our products."
744
  msgstr ""
 
 
745
 
746
  #: includes/class-yit-plugin-panel.php:853
747
  msgctxt "Premium tab name"
886
  msgstr ""
887
 
888
  #: templates/panel/help-tab.php:137
 
889
  msgctxt "Help tab Watch video tutorials link"
890
  msgid "Watch our video tutorials"
891
+ msgstr ""
892
 
893
  #: templates/panel/help-tab.php:140
 
894
  msgctxt "Help tab Watch video tutorials link"
895
  msgid "to see some helpful use cases."
896
+ msgstr ""
897
 
898
  #: templates/panel/help-tab.php:150
899
  msgctxt "Help tab view FAQs link"
901
  msgstr "Check de FAQs"
902
 
903
  #: templates/panel/help-tab.php:153
 
904
  msgctxt "Help tab view FAQs link"
905
  msgid "to find answers to your doubts."
906
+ msgstr ""
907
 
908
  #: templates/panel/help-tab.php:169
909
  msgctxt "Help tab FAQ title"
921
  msgstr "Hulp nodig?"
922
 
923
  #: templates/panel/help-tab.php:195
 
924
  msgctxt "Help tab submit ticket description"
925
  msgid ""
926
  "If you are experiencing any technical issues, ask for help from our "
927
  "developers. Submit a ticket through our support desk and we will help you as "
928
  "soon as possible."
929
  msgstr ""
 
 
 
930
 
931
  #: templates/panel/help-tab.php:203
932
  msgctxt "Help tab submit ticket button"
1043
  msgctxt "Action links"
1044
  msgid "Settings"
1045
  msgstr "Instellingen"
 
 
 
 
plugin-fw/languages/yith-plugin-fw.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
- "POT-Creation-Date: 2022-03-02 14:53:34+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -390,7 +390,7 @@ msgid ""
390
  msgstr ""
391
 
392
  #: templates/fields/ajax-customers.php:41
393
- msgid "Search Customers"
394
  msgstr ""
395
 
396
  #: templates/fields/ajax-customers.php:68
@@ -400,15 +400,15 @@ msgid "%1$s (#%2$s &ndash; %3$s)"
400
  msgstr ""
401
 
402
  #: templates/fields/ajax-posts.php:41
403
- msgid "Search Posts"
404
  msgstr ""
405
 
406
- #: templates/fields/ajax-products.php:14
407
- msgid "Search Product"
408
  msgstr ""
409
 
410
  #: templates/fields/ajax-terms.php:41
411
- msgid "Search Categories"
412
  msgstr ""
413
 
414
  #: templates/fields/customtabs.php:17
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
+ "POT-Creation-Date: 2022-04-02 10:27:44+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
390
  msgstr ""
391
 
392
  #: templates/fields/ajax-customers.php:41
393
+ msgid "Search for a customer..."
394
  msgstr ""
395
 
396
  #: templates/fields/ajax-customers.php:68
400
  msgstr ""
401
 
402
  #: templates/fields/ajax-posts.php:41
403
+ msgid "Search for a post..."
404
  msgstr ""
405
 
406
+ #: templates/fields/ajax-products.php:16
407
+ msgid "Search for a product..."
408
  msgstr ""
409
 
410
  #: templates/fields/ajax-terms.php:41
411
+ msgid "Search for a category..."
412
  msgstr ""
413
 
414
  #: templates/fields/customtabs.php:17
plugin-fw/templates/fields/ajax-customers.php CHANGED
@@ -38,7 +38,7 @@ if ( $no_value ) {
38
 
39
  $default_data = array(
40
  'action' => 'woocommerce_json_search_customers',
41
- 'placeholder' => __( 'Search Customers', 'yith-plugin-fw' ),
42
  'allow_clear' => false,
43
  );
44
  $data = wp_parse_args( $data, $default_data );
38
 
39
  $default_data = array(
40
  'action' => 'woocommerce_json_search_customers',
41
+ 'placeholder' => __( 'Search for a customer...', 'yith-plugin-fw' ),
42
  'allow_clear' => false,
43
  );
44
  $data = wp_parse_args( $data, $default_data );
plugin-fw/templates/fields/ajax-posts.php CHANGED
@@ -38,7 +38,7 @@ if ( $no_value ) {
38
 
39
  $default_data = array(
40
  'action' => 'yith_plugin_fw_json_search_posts',
41
- 'placeholder' => __( 'Search Posts', 'yith-plugin-fw' ),
42
  'allow_clear' => false,
43
  );
44
  $data = wp_parse_args( $data, $default_data );
38
 
39
  $default_data = array(
40
  'action' => 'yith_plugin_fw_json_search_posts',
41
+ 'placeholder' => __( 'Search for a post...', 'yith-plugin-fw' ),
42
  'allow_clear' => false,
43
  );
44
  $data = wp_parse_args( $data, $default_data );
plugin-fw/templates/fields/ajax-products.php CHANGED
@@ -8,14 +8,16 @@
8
 
9
  defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
10
 
 
 
11
  $field['type'] = 'ajax-posts';
12
  $field_data = array(
13
  'post_type' => 'product',
14
- 'placeholder' => __( 'Search Product', 'yith-plugin-fw' ),
15
  'action' => 'yith_plugin_fw_json_search_products',
16
  );
17
- if ( isset( $field['data'] ) ) {
18
- $field_data = wp_parse_args( $field['data'], $field_data );
19
  }
20
 
21
  $field['data'] = $field_data;
8
 
9
  defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
10
 
11
+ list ( $data ) = yith_plugin_fw_extract( $field, 'data' );
12
+
13
  $field['type'] = 'ajax-posts';
14
  $field_data = array(
15
  'post_type' => 'product',
16
+ 'placeholder' => __( 'Search for a product...', 'yith-plugin-fw' ),
17
  'action' => 'yith_plugin_fw_json_search_products',
18
  );
19
+ if ( ! ! $data ) {
20
+ $field_data = wp_parse_args( $data, $field_data );
21
  }
22
 
23
  $field['data'] = $field_data;
plugin-fw/templates/fields/ajax-terms.php CHANGED
@@ -38,7 +38,7 @@ if ( $no_value ) {
38
 
39
  $default_data = array(
40
  'action' => 'yith_plugin_fw_json_search_terms',
41
- 'placeholder' => __( 'Search Categories', 'yith-plugin-fw' ),
42
  'allow_clear' => false,
43
  'taxonomy' => 'category',
44
  'term_field' => 'id',
38
 
39
  $default_data = array(
40
  'action' => 'yith_plugin_fw_json_search_terms',
41
+ 'placeholder' => __( 'Search for a category...', 'yith-plugin-fw' ),
42
  'allow_clear' => false,
43
  'taxonomy' => 'category',
44
  'term_field' => 'id',
plugin-fw/templates/fields/text-array.php CHANGED
@@ -27,7 +27,7 @@ foreach ( $fields as $field_name => $single_field ) {
27
 
28
  if ( empty( $inline ) ) : ?>
29
 
30
- <table class="yith-plugin-fw-text-array-table">
31
  <?php foreach ( $text_array as $key => $single ) : ?>
32
  <tr>
33
  <td><?php echo esc_html( $single['label'] ); ?></td>
@@ -46,7 +46,7 @@ if ( empty( $inline ) ) : ?>
46
 
47
  <?php else : ?>
48
 
49
- <div class="yith-plugin-fw-text-array-inline">
50
  <?php foreach ( $text_array as $key => $single ) : ?>
51
  <div class="yith-single-text"
52
  <?php if ( isset( $size ) ) : ?>
27
 
28
  if ( empty( $inline ) ) : ?>
29
 
30
+ <table id="<?php echo esc_attr( $field_id ); ?>" class="yith-plugin-fw-text-array-table">
31
  <?php foreach ( $text_array as $key => $single ) : ?>
32
  <tr>
33
  <td><?php echo esc_html( $single['label'] ); ?></td>
46
 
47
  <?php else : ?>
48
 
49
+ <div id="<?php echo esc_attr( $field_id ); ?>" class="yith-plugin-fw-text-array-inline">
50
  <?php foreach ( $text_array as $key => $single ) : ?>
51
  <div class="yith-single-text"
52
  <?php if ( isset( $size ) ) : ?>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: yithemes
4
  Tags: woocommerce catalog mode plugin, woocommerce catalog only, woocommerce, products, themes, yit, yith, yithemes, e-commerce, shop, catalog mode, catalogue mode, remove add to cart, ask for price, ask price, asking for price, asking price, button remove, call, call for price, call me, call us, contact, email, hide add to cart, hide price
5
  Requires at least: 5.7
6
  Tested up to: 5.9
7
- Stable tag: 2.8.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -131,6 +131,11 @@ yith-woocommerce-catalog-mode-<WORDPRESS LOCALE >.mo
131
 
132
  == Changelog ==
133
 
 
 
 
 
 
134
  = Version 2.8.0 - Released: 10 March 2022 =
135
 
136
  * New: support for WooCommerce 6.3
@@ -480,7 +485,7 @@ yith-woocommerce-catalog-mode-<WORDPRESS LOCALE >.mo
480
 
481
  == Upgrade Notice ==
482
 
483
- Last Stable Tag 2.8.0
484
 
485
  == Suggestions ==
486
 
4
  Tags: woocommerce catalog mode plugin, woocommerce catalog only, woocommerce, products, themes, yit, yith, yithemes, e-commerce, shop, catalog mode, catalogue mode, remove add to cart, ask for price, ask price, asking for price, asking price, button remove, call, call for price, call me, call us, contact, email, hide add to cart, hide price
5
  Requires at least: 5.7
6
  Tested up to: 5.9
7
+ Stable tag: 2.9.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
131
 
132
  == Changelog ==
133
 
134
+ = Version 2.9.0 - Released: 07 April 2022 =
135
+
136
+ * New: support for WooCommerce 6.4
137
+ * Update: YITH plugin framework
138
+
139
  = Version 2.8.0 - Released: 10 March 2022 =
140
 
141
  * New: support for WooCommerce 6.3
485
 
486
  == Upgrade Notice ==
487
 
488
+ Last Stable Tag 2.9.0
489
 
490
  == Suggestions ==
491