YITH WooCommerce Wishlist - Version 3.0.11

Version Description

  • Released on 08 Jun 2020 =

  • New: support for WooCommerce 4.2

  • Update: plugin framework

  • Tweak: added WordPress among blocked bot user agents

  • Tweak: make sure to finalize session when possible

  • Tweak: added link to product in wishlist mobile template

  • Fix: Prevent error if default wishlist doesn't exists

  • Fix: correctly applied yith_wcwl_is_wishlist_responsive filter to yith_wcwl_is_mobile function

  • Fix: avoid to use cache that cannot be invalidated (stop caching queries results, use cache for user wishlists)

  • Fix: clear_caches method wasnt properly cleaning cache for guest users

  • Dev: added yith_wcwl_add_to_wishlist_icon_html filter

  • Dev: added yith_wcwl_add_to_wishlist_heading_icon_html filter

  • Dev: added yith_wcwl_add_to_wishlist_data trigger, to allow third party code change data submitted with ATW ajax call

Download this release

Release Info

Developer yithemes
Plugin Icon 128x128 YITH WooCommerce Wishlist
Version 3.0.11
Comparing to
See all releases

Code changes from version 3.0.10 to 3.0.11

Files changed (66) hide show
  1. README.md +12 -16
  2. README.txt +17 -2
  3. assets/js/jquery.yith-wcwl.js +1 -1
  4. assets/js/unminified/jquery.yith-wcwl.js +12 -4
  5. includes/class.yith-wcwl-form-handler.php +1 -1
  6. includes/class.yith-wcwl-frontend.php +1 -1
  7. includes/class.yith-wcwl-session.php +33 -26
  8. includes/class.yith-wcwl-shortcode.php +4 -4
  9. includes/class.yith-wcwl-wishlist-item.php +1 -1
  10. includes/class.yith-wcwl.php +25 -0
  11. includes/data-stores/class.yith-wcwl-wishlist-data-store.php +14 -9
  12. includes/functions.yith-wcwl.php +1 -1
  13. init.php +2 -2
  14. languages/yith-woocommerce-wishlist-da_DK.mo +0 -0
  15. languages/yith-woocommerce-wishlist-da_DK.po +21 -22
  16. languages/yith-woocommerce-wishlist-de_DE.mo +0 -0
  17. languages/yith-woocommerce-wishlist-de_DE.po +21 -22
  18. languages/yith-woocommerce-wishlist-es_AR.mo +0 -0
  19. languages/yith-woocommerce-wishlist-es_AR.po +18 -22
  20. languages/yith-woocommerce-wishlist-es_ES.mo +0 -0
  21. languages/yith-woocommerce-wishlist-es_ES.po +21 -22
  22. languages/yith-woocommerce-wishlist-es_MX.mo +0 -0
  23. languages/yith-woocommerce-wishlist-es_MX.po +18 -22
  24. languages/yith-woocommerce-wishlist-fa_IR.mo +0 -0
  25. languages/yith-woocommerce-wishlist-fa_IR.po +18 -22
  26. languages/yith-woocommerce-wishlist-fr_FR.mo +0 -0
  27. languages/yith-woocommerce-wishlist-fr_FR.po +18 -22
  28. languages/yith-woocommerce-wishlist-he_IL.mo +0 -0
  29. languages/yith-woocommerce-wishlist-he_IL.po +18 -22
  30. languages/yith-woocommerce-wishlist-hr.mo +0 -0
  31. languages/yith-woocommerce-wishlist-hr.po +21 -22
  32. languages/yith-woocommerce-wishlist-it_IT.mo +0 -0
  33. languages/yith-woocommerce-wishlist-it_IT.po +21 -22
  34. languages/yith-woocommerce-wishlist-ko_KR.mo +0 -0
  35. languages/yith-woocommerce-wishlist-ko_KR.po +21 -22
  36. languages/yith-woocommerce-wishlist-nl_NL.mo +0 -0
  37. languages/yith-woocommerce-wishlist-nl_NL.po +21 -22
  38. languages/yith-woocommerce-wishlist-pl_PL.mo +0 -0
  39. languages/yith-woocommerce-wishlist-pl_PL.po +21 -22
  40. languages/yith-woocommerce-wishlist-pt_BR.mo +0 -0
  41. languages/yith-woocommerce-wishlist-pt_BR.po +18 -22
  42. languages/yith-woocommerce-wishlist-pt_PT.mo +0 -0
  43. languages/yith-woocommerce-wishlist-pt_PT.po +18 -22
  44. languages/yith-woocommerce-wishlist-ru_RU.mo +0 -0
  45. languages/yith-woocommerce-wishlist-ru_RU.po +18 -22
  46. languages/yith-woocommerce-wishlist-sv_SE.mo +0 -0
  47. languages/yith-woocommerce-wishlist-sv_SE.po +21 -22
  48. languages/yith-woocommerce-wishlist-tr_TR.mo +0 -0
  49. languages/yith-woocommerce-wishlist-tr_TR.po +18 -22
  50. languages/yith-woocommerce-wishlist-uk_UA.mo +0 -0
  51. languages/yith-woocommerce-wishlist-uk_UA.po +18 -22
  52. languages/yith-woocommerce-wishlist-zh_CN.mo +0 -0
  53. languages/yith-woocommerce-wishlist-zh_CN.po +18 -22
  54. languages/yith-woocommerce-wishlist-zh_TW.mo +0 -0
  55. languages/yith-woocommerce-wishlist-zh_TW.po +18 -22
  56. languages/yith-woocommerce-wishlist.pot +17 -21
  57. plugin-fw/assets/css/yith-fields.css +7 -2
  58. plugin-fw/init.php +1 -1
  59. plugin-fw/languages/yith-plugin-fw-it_IT.mo +0 -0
  60. plugin-fw/languages/yith-plugin-fw-it_IT.po +3 -3
  61. plugin-fw/lib/yit-plugin-panel-wc.php +68 -21
  62. plugin-fw/lib/yit-plugin-panel.php +0 -3
  63. plugin-fw/templates/fields/toggle-element-fixed.php +11 -3
  64. templates/wishlist-view-footer-mobile.php +3 -2
  65. templates/wishlist-view-footer.php +1 -1
  66. templates/wishlist-view-mobile.php +6 -2
README.md CHANGED
@@ -151,24 +151,20 @@ Yes, of course you can. To avoid Wishlist page to show product prices, you can h
151
 
152
  ## Changelog
153
 
154
- ### 3.0.10 - Released on 07 May 2020
155
 
156
- * New: support for WooCommerce 4.1
157
- * New: prevent some UserAgents from triggering wishlist handling (avoid spam)
158
- * New: added minor css fixes for Storefront theme
159
  * Update: plugin framework
160
- * Tweak: review add process, to avoid unnecessary items update
161
- * Tweak: improved localized date on wishlist table
162
- * Tweak: added wishlist as gutenberg block in new wishlist page
163
- * Tweak: added "Wishlist page" post status
164
- * Tweak: added new check to avoid "Cannot read property contains of undefined" error
165
- * Tweak: added search box to All Wishlist view
166
- * Fix: show remove button on list mobile when at least one of the two buttons is shown on desktop
167
- * Fix: fatal error on empty wishlist page
168
- * Dev: added yith_wcwl_is_wishlist_responsive filter, to allow developers disable responsive behaviour for the wishlist
169
- * Dev: added yith_wcwl_generated_default_wishlist action
170
- * Dev: added yith_wcwl_default_wishlist filter
171
- * Dev: added yith_wcwl_add_notice wrapper function, to avoid possible fatal errors when calling wc_add_notice
172
 
173
 
174
  ## Support
151
 
152
  ## Changelog
153
 
154
+ ### 3.0.11 - Released on 08 June 2020
155
 
156
+ * New: support for WooCommerce 4.2
 
 
157
  * Update: plugin framework
158
+ * Tweak: added WordPress among blocked bot user agents
159
+ * Tweak: make sure to finalize session when possible
160
+ * Tweak: added link to product in wishlist mobile template
161
+ * Fix: Prevent error if default wishlist doesn't exists
162
+ * Fix: correctly applied yith_wcwl_is_wishlist_responsive filter to yith_wcwl_is_mobile function
163
+ * Fix: avoid to use cache that cannot be invalidated (stop caching queries results, use cache for user wishlists)
164
+ * Fix: clear_caches method wasnt properly cleaning cache for guest users
165
+ * Dev: added yith_wcwl_add_to_wishlist_icon_html filter
166
+ * Dev: added yith_wcwl_add_to_wishlist_heading_icon_html filter
167
+ * Dev: added yith_wcwl_add_to_wishlist_data trigger, to allow third party code change data submitted with ATW ajax call
 
 
168
 
169
 
170
  ## Support
README.txt CHANGED
@@ -4,12 +4,12 @@ Contributors: yithemes
4
  Tags: wishlist, woocommerce, products, yit, e-commerce, shop, ecommerce wishlist, yith, woocommerce wishlist, shop wishlist
5
  Requires at least: 4.0
6
  Tested up to: 5.4
7
- Stable tag: 3.0.10
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  YITH WooCommerce Wishlist add all Wishlist features to your website. Needs WooCommerce to work.
12
- WooCommerce 4.1.x compatible.
13
 
14
  == Description ==
15
 
@@ -113,6 +113,21 @@ Yes, of course you can. To avoid Wishlist page to show product prices, you can h
113
 
114
  == Changelog ==
115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  = 3.0.10 - Released on 07 May 2020 =
117
 
118
  * New: support for WooCommerce 4.1
4
  Tags: wishlist, woocommerce, products, yit, e-commerce, shop, ecommerce wishlist, yith, woocommerce wishlist, shop wishlist
5
  Requires at least: 4.0
6
  Tested up to: 5.4
7
+ Stable tag: 3.0.11
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  YITH WooCommerce Wishlist add all Wishlist features to your website. Needs WooCommerce to work.
12
+ WooCommerce 4.2.x compatible.
13
 
14
  == Description ==
15
 
113
 
114
  == Changelog ==
115
 
116
+ = 3.0.11 - Released on 08 Jun 2020 =
117
+
118
+ * New: support for WooCommerce 4.2
119
+ * Update: plugin framework
120
+ * Tweak: added WordPress among blocked bot user agents
121
+ * Tweak: make sure to finalize session when possible
122
+ * Tweak: added link to product in wishlist mobile template
123
+ * Fix: Prevent error if default wishlist doesn't exists
124
+ * Fix: correctly applied yith_wcwl_is_wishlist_responsive filter to yith_wcwl_is_mobile function
125
+ * Fix: avoid to use cache that cannot be invalidated (stop caching queries results, use cache for user wishlists)
126
+ * Fix: clear_caches method wasnt properly cleaning cache for guest users
127
+ * Dev: added yith_wcwl_add_to_wishlist_icon_html filter
128
+ * Dev: added yith_wcwl_add_to_wishlist_heading_icon_html filter
129
+ * Dev: added yith_wcwl_add_to_wishlist_data trigger, to allow third party code change data submitted with ATW ajax call
130
+
131
  = 3.0.10 - Released on 07 May 2020 =
132
 
133
  * New: support for WooCommerce 4.1
assets/js/jquery.yith-wcwl.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(r){function i(){void 0!==r.fn.selectBox&&r("select.selectBox").filter(":visible").not(".enhanced").selectBox().addClass("enhanced")}function e(){if(void 0!==r.prettyPhoto){var t={hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1,overlay_gallery:!1,default_width:500,changepicturecallback:function(){i(),r(".wishlist-select").change(),r(document).trigger("yith_wcwl_popup_opened",[this])},markup:'<div class="pp_pic_holder"><div class="ppt">&nbsp;</div><div class="pp_top"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div><div class="pp_content_container"><div class="pp_left"><div class="pp_right"><div class="pp_content"><div class="pp_loaderIcon"></div><div class="pp_fade"><a href="#" class="pp_expand" title="Expand the image">Expand</a><div class="pp_hoverContainer"><a class="pp_next" href="#">next</a><a class="pp_previous" href="#">previous</a></div><div id="pp_full_res"></div><div class="pp_details"><a class="pp_close" href="#">Close</a></div></div></div></div></div></div><div class="pp_bottom"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div></div><div class="pp_overlay yith-wcwl-overlay"></div>'};r('a[data-rel^="prettyPhoto[add_to_wishlist_"]').add('a[data-rel="prettyPhoto[ask_an_estimate]"]').add('a[data-rel="prettyPhoto[create_wishlist]"]').unbind("click").prettyPhoto(t),r('a[data-rel="prettyPhoto[move_to_another_wishlist]"]').on("click",function(){var t=r(this),i=r("#move_to_another_wishlist").find("form"),e=i.find(".row-id"),a=t.closest("[data-row-id]").data("row-id");e.length&&e.remove(),i.append('<input type="hidden" name="row_id" class="row-id" value="'+a+'"/>')}).prettyPhoto(t),new MutationObserver(function(t,i){for(var e in t){var a=t[e];"childList"===a.type&&(void 0!==a.addedNodes&&a.addedNodes.forEach(function(t){void 0!==t.classList&&t.classList.contains("yith-wcwl-overlay")&&r("body").addClass("yith-wcwl-with-pretty-photo")}),void 0!==a.removedNodes&&a.removedNodes.forEach(function(t){void 0!==t.classList&&t.classList.contains("yith-wcwl-overlay")&&r("body").removeClass("yith-wcwl-with-pretty-photo")}))}}).observe(document.body,{childList:!0})}}function a(){r(".wishlist_table").find('.product-checkbox input[type="checkbox"]').off("change").on("change",function(){var t=r(this);t.parent().removeClass("checked").removeClass("unchecked").addClass(t.is(":checked")?"checked":"unchecked")}).trigger("change")}function o(){r(".add_to_cart").filter("[data-icon]").not(".icon-added").each(function(){var t,i=r(this),e=i.data("icon");t=e.match(/[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)?/gi)?r("<img/>",{src:e}):r("<i/>",{class:"fa "+e}),i.prepend(t).addClass("icon-added")})}function h(){i(),e(),a(),o(),d(),n(),_(),l(),c(),r(document).trigger("yith_wcwl_init_after_ajax")}function n(){yith_wcwl_l10n.enable_tooltip&&r(".yith-wcwl-add-to-wishlist").find("[data-title]").each(function(){var t=r(this);t.hasClass("tooltip-added")||(t.on("mouseenter",function(){var t,i=r(this),e=null,a=i.outerWidth(),o=0;e=r("<span>",{class:"yith-wcwl-tooltip",text:i.data("title")}),i.append(e),t=e.outerWidth()+6,e.outerWidth(t),o=(a-t)/2,e.css({left:o.toFixed(0)+"px"}).fadeIn(200),i.addClass("with-tooltip")}).on("mouseleave",function(){var t=r(this);t.find(".yith-wcwl-tooltip").fadeOut(200,function(){t.removeClass("with-tooltip").find(".yith-wcwl-tooltip").remove()})}),t.addClass("tooltip-added"))})}function d(){r(".yith-wcwl-add-button").filter(".with-dropdown").on("mouseleave",function(){var t=r(this).find(".yith-wcwl-dropdown");t.length&&t.fadeOut(200)}).children("a").on("mouseenter",function(){var t=r(this).closest(".with-dropdown"),i=t.find(".yith-wcwl-dropdown");i.length&&i.children().length&&t.find(".yith-wcwl-dropdown").fadeIn(200)})}function l(){void 0!==yith_wcwl_l10n.enable_drag_n_drop&&yith_wcwl_l10n.enable_drag_n_drop&&r(".wishlist_table").filter(".sortable").not(".no-interactions").each(function(){var e=r(this),a=!1;e.sortable({items:"[data-row-id]",helper:function(t,i){return i.children().each(function(){r(this).width(r(this).width())}),i},update:function(){var t=e.find("[data-row-id]"),i=[];t.length&&(a&&a.abort(),t.each(function(){var t=r(this);i.push(t.data("row-id"))}),a=r.ajax({data:{action:yith_wcwl_l10n.actions.sort_wishlist_items,positions:i,wishlist_token:e.data("token"),page:e.data("page"),per_page:e.data("per-page")},method:"POST",url:yith_wcwl_l10n.ajax_url}))}})})}function c(){r(".copy-trigger").on("click",function(){var t=r(".copy-target");if(0<t.length)if(t.is("input"))s()?t[0].setSelectionRange(0,9999):t.select(),document.execCommand("copy");else{var i=r("<input/>",{val:t.text(),type:"text"});b("body").append(i),s()?i[0].setSelectionRange(0,9999):i.select(),document.execCommand("copy"),i.remove()}})}function _(){r(".wishlist_table").filter(".images_grid").not(".enhanced").on("click","[data-row-id] .product-thumbnail a",function(t){var i=r(this).closest("[data-row-id]"),e=i.siblings("[data-row-id]"),a=i.find(".item-details");t.preventDefault(),a.length&&(e.removeClass("show"),i.toggleClass("show"))}).on("click","[data-row-id] a.close",function(t){var i=r(this).closest("[data-row-id]"),e=i.find(".item-details");t.preventDefault(),e.length&&i.removeClass("show")}).on("click","[data-row-id] a.remove_from_wishlist",function(t){var i=r(this);return t.stopPropagation(),f(i),!1}).addClass("enhanced"),r(document).on("click",function(t){r(t.target).closest("[data-row-id]").length||r(".wishlist_table").filter(".images_grid").find(".show").removeClass("show")}).on("added_to_cart",function(){r(".wishlist_table").filter(".images_grid").find(".show").removeClass("show")})}function w(i,t,e){i.action=yith_wcwl_l10n.actions.move_to_another_wishlist_action,""!==i.wishlist_token&&""!==i.destination_wishlist_token&&""!==i.item_id&&r.ajax({beforeSend:t,url:yith_wcwl_l10n.ajax_url,data:i,dataType:"json",method:"post",success:function(t){e(t),h(),r("body").trigger("moved_to_another_wishlist",[r(this),i.item_id])}})}function f(i){var t=i.parents(".cart.wishlist_table"),e=i.parents("[data-row-id]"),a=e.data("row-id"),o=t.data("id"),n=t.data("token"),s={action:yith_wcwl_l10n.actions.remove_from_wishlist_action,remove_from_wishlist:a,wishlist_id:o,wishlist_token:n,fragments:T(a)};r.ajax({beforeSend:function(){x(t)},complete:function(){j(t)},data:s,method:"post",success:function(t){void 0!==t.fragments&&P(t.fragments),h(),r("body").trigger("removed_from_wishlist",[i,e])},url:yith_wcwl_l10n.ajax_url})}function p(t){var i=r(this),e=i.closest(".wishlist_table"),a=null;t.preventDefault(),(a=e.length?i.closest("[data-wishlist-id]").find(".wishlist-title"):i.parents(".wishlist-title")).next().show().find('input[type="text"]').focus(),a.hide()}function u(t){var i=r(this);t.preventDefault(),i.parents(".hidden-title-form").hide(),i.parents(".hidden-title-form").prev().show()}function m(t){var i,e=r(this),a=e.closest(".hidden-title-form"),o=e.closest("[data-wishlist-id]").data("wishlist-id"),n=a.find('input[type="text"]'),s=n.val();if(t.preventDefault(),!s)return a.addClass("woocommerce-invalid"),void n.focus();i={action:yith_wcwl_l10n.actions.save_title_action,wishlist_id:o,title:s,fragments:T()},r.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:i,dataType:"json",beforeSend:function(){x(a)},complete:function(){j(a)},success:function(t){var i=t.fragments;t.result?(a.hide(),a.prev().find(".wishlist-anchor").text(s).end().show()):(a.addClass("woocommerce-invalid"),n.focus()),void 0!==i&&P(i)}})}function v(t){var i=r(this),e=i.val(),a=i.closest("[data-wishlist-id]").data("wishlist-id"),o={action:yith_wcwl_l10n.actions.save_privacy_action,wishlist_id:a,privacy:e,fragments:T()};r.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:o,dataType:"json",success:function(t){var i=t.fragments;void 0!==i&&P(i)}})}function y(t){if(void 0!==r.prettyPhoto&&void 0!==r.prettyPhoto.close)if(void 0!==t){var i=r(".pp_content_container"),e=i.find(".pp_content"),a=i.find(".yith-wcwl-popup-form"),o=a.closest(".pp_pic_holder");if(a.length){var n=r("<div/>",{class:"yith-wcwl-popup-feedback"});n.append(r("<i/>",{class:"fa fa-check heading-icon"})),n.append(r("<p/>",{class:"feedback",html:t})),n.css("display","none"),e.css("height","auto"),a.after(n),a.fadeOut(200,function(){n.fadeIn()}),o.addClass("feedback"),o.css("left",r(window).innerWidth()/2-o.outerWidth()/2+"px"),void 0!==yith_wcwl_l10n.auto_close_popup&&!yith_wcwl_l10n.auto_close_popup||setTimeout(y,yith_wcwl_l10n.popup_timeout)}}else try{r.prettyPhoto.close()}catch(t){}}function g(t){var i=r("#yith-wcwl-popup-message"),e=r("#yith-wcwl-message"),a=void 0!==yith_wcwl_l10n.popup_timeout?yith_wcwl_l10n.popup_timeout:3e3;void 0!==yith_wcwl_l10n.enable_notices&&!yith_wcwl_l10n.enable_notices||(e.html(t),i.css("margin-left","-"+r(i).width()+"px").fadeIn(),window.setTimeout(function(){i.fadeOut()},a))}function k(n){var t=r("select.wishlist-select"),i=r("ul.yith-wcwl-dropdown");t.each(function(){var e=r(this),t=e.find("option"),i=t.filter('[value="new"]');t.not(i).remove(),r.each(n,function(t,i){r("<option>",{value:i.id,html:i.wishlist_name}).appendTo(e)}),e.append(i)}),i.each(function(){var e=r(this),t=e.find("li"),i=e.closest(".yith-wcwl-add-button").children("a.add_to_wishlist"),a=i.attr("data-product-id"),o=i.attr("data-product-type");t.remove(),r.each(n,function(t,i){r("<li>").append(r("<a>",{rel:"nofollow",html:i.wishlist_name,class:"add_to_wishlist",href:i.add_to_this_wishlist_url,"data-product-id":a,"data-product-type":o,"data-wishlist-id":i.id})).appendTo(e)})})}function x(t){void 0!==r.fn.block&&t.fadeTo("400","0.6").block({message:null,overlayCSS:{background:"transparent url("+yith_wcwl_l10n.ajax_loader_url+") no-repeat center",backgroundSize:"40px 40px",opacity:1}})}function j(t){void 0!==r.fn.unblock&&t.stop(!0).css("opacity","1").unblock()}function C(){if(navigator.cookieEnabled)return!0;document.cookie="cookietest=1";var t=-1!==document.cookie.indexOf("cookietest=");return document.cookie="cookietest=1; expires=Thu, 01-Jan-1970 00:00:01 GMT",t}function T(t){var e={},i=null;return t?"object"==typeof t?(i=(t=r.extend({s:"",container:r(document),firstLoad:!1},t)).container.find(".wishlist-fragment"),t.s&&(i=i.not("[data-fragment-ref]").add(i.filter('[data-fragment-ref="'+t.s+'"]'))),t.firstLoad&&(i=i.filter(".on-first-load"))):(i=r(".wishlist-fragment"),"string"!=typeof t&&"number"!=typeof t||(i=i.not("[data-fragment-ref]").add(i.filter('[data-fragment-ref="'+t+'"]')))):i=r(".wishlist-fragment"),i.each(function(){var t=r(this),i=t.attr("class");e[i]=t.data("fragment-options")}),e}function S(t){if(yith_wcwl_l10n.enable_ajax_loading){var i=T(t=r.extend({firstLoad:!0},t));i&&r.ajax({data:{action:yith_wcwl_l10n.actions.load_fragments,fragments:i},method:"post",success:function(t){void 0!==t.fragments&&(P(t.fragments),h(),r(document).trigger("yith_wcwl_fragments_loaded",[i,t.fragments]))},url:yith_wcwl_l10n.ajax_url})}}function P(t){r.each(t,function(t,i){var e="."+t.split(" ").filter(function(t){return t.length&&"exists"!==t}).join("."),a=r(e),o=r(i).filter(e);o.length||(o=r(i).find(e)),a.length&&o.length&&a.replaceWith(o)})}function s(){return navigator.userAgent.match(/ipad|iphone/i)}r(document).on("yith_wcwl_init",function(){var t=r(this),s="undefined"!=typeof wc_add_to_cart_params&&null!==wc_add_to_cart_params?wc_add_to_cart_params.cart_redirect_after_add:"";t.on("click",".add_to_wishlist",function(t){var a=r(this),i=a.attr("data-product-id"),o=r(".add-to-wishlist-"+i),e={add_to_wishlist:i,product_type:a.data("product-type"),wishlist_id:a.data("wishlist-id"),action:yith_wcwl_l10n.actions.add_to_wishlist_action,fragments:T(i)};if(t.preventDefault(),jQuery(document.body).trigger("adding_to_wishlist"),yith_wcwl_l10n.multi_wishlist&&yith_wcwl_l10n.modal_enable){var n=a.parents(".yith-wcwl-popup-footer").prev(".yith-wcwl-popup-content"),s=n.find(".wishlist-select"),d=n.find(".wishlist-name"),l=n.find(".wishlist-visibility").filter(":checked");if(e.wishlist_id=s.is(":visible")?s.val():"new",e.wishlist_name=d.val(),e.wishlist_visibility=l.val(),"new"===e.wishlist_id&&!e.wishlist_name)return d.closest("p").addClass("woocommerce-invalid"),!1;d.closest("p").removeClass("woocommerce-invalid")}if(C())return r.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:e,dataType:"json",beforeSend:function(){x(a)},complete:function(){j(a)},success:function(t){var i=t.result,e=t.message;yith_wcwl_l10n.multi_wishlist?(y(e),void 0!==t.user_wishlists&&k(t.user_wishlists)):g(e),"true"!==i&&"exists"!==i||(void 0!==t.fragments&&P(t.fragments),yith_wcwl_l10n.multi_wishlist&&!yith_wcwl_l10n.hide_add_button||o.find(".yith-wcwl-add-button").remove(),o.addClass("exists")),h(),r("body").trigger("added_to_wishlist",[a,o])}}),!1;alert(yith_wcwl_l10n.labels.cookie_disabled)}),t.on("click",".wishlist_table .remove_from_wishlist",function(t){var i=r(this);return t.preventDefault(),f(i),!1}),t.on("adding_to_cart","body",function(t,i,e){void 0!==i&&void 0!==e&&i.closest(".wishlist_table").length&&(e.remove_from_wishlist_after_add_to_cart=i.closest("[data-row-id]").data("row-id"),e.wishlist_id=i.closest(".wishlist_table").data("id"),"undefined"!=typeof wc_add_to_cart_params&&(wc_add_to_cart_params.cart_redirect_after_add=yith_wcwl_l10n.redirect_to_cart),"undefined"!=typeof yith_wccl_general&&(yith_wccl_general.cart_redirect=yith_wcwl_l10n.redirect_to_cart))}),t.on("added_to_cart","body",function(t,i,e,a){if(void 0!==a&&a.closest(".wishlist_table").length){"undefined"!=typeof wc_add_to_cart_params&&(wc_add_to_cart_params.cart_redirect_after_add=s),"undefined"!=typeof yith_wccl_general&&(yith_wccl_general.cart_redirect=s);var o=a.closest("[data-row-id]"),n=o.closest(".wishlist-fragment").data("fragment-options");a.removeClass("added"),o.find(".added_to_cart").remove(),yith_wcwl_l10n.remove_from_wishlist_after_add_to_cart&&n.is_user_owner&&o.remove()}}),t.on("added_to_cart","body",function(){var t=r(".woocommerce-message");0===t.length?r("#yith-wcwl-form").prepend(yith_wcwl_l10n.labels.added_to_cart_message):t.fadeOut(300,function(){r(this).replaceWith(yith_wcwl_l10n.labels.added_to_cart_message).fadeIn()})}),t.on("cart_page_refreshed","body",h),t.on("click",".show-title-form",p),t.on("click",".wishlist-title-with-form h2",p),t.on("click",".remove_from_all_wishlists",function(t){var i=r(this),e=i.attr("data-product-id"),a=i.data("wishlist-id"),o=i.closest(".content"),n={action:yith_wcwl_l10n.actions.remove_from_all_wishlists,prod_id:e,wishlist_id:a,fragments:T(e)};t.preventDefault(),r.ajax({beforeSend:function(){x(o)},complete:function(){j(o)},data:n,dataType:"json",method:"post",success:function(t){void 0!==t.fragments&&P(t.fragments),h()},url:yith_wcwl_l10n.ajax_url})}),t.on("click",".hide-title-form",u),t.on("click",".save-title-form",m),t.on("change",".wishlist_manage_table .wishlist-visibility",v),t.on("change",".change-wishlist",function(){var t=r(this),i=t.parents(".cart.wishlist_table"),e=i.data("token"),a=t.parents("[data-row-id]").data("row-id");w({wishlist_token:e,destination_wishlist_token:t.val(),item_id:a,fragments:T()},function(){x(i)},function(t){void 0!==t.fragments&&P(t.fragments),j(i)})}),t.on("click",".yith-wcwl-popup-footer .move_to_wishlist",function(){var e=r(this),t=e.attr("data-product-id"),i=e.data("origin-wishlist-id"),a=e.closest("form"),o=a.find(".wishlist-select").val(),n=a.find(".wishlist-name"),s=n.val(),d=a.find(".wishlist-visibility").filter(":checked").val();if("new"===o&&!s)return n.closest("p").addClass("woocommerce-invalid"),!1;n.closest("p").removeClass("woocommerce-invalid"),w({wishlist_token:i,destination_wishlist_token:o,item_id:t,wishlist_name:s,wishlist_visibility:d,fragments:T(t)},function(){x(e)},function(t){var i=t.message;yith_wcwl_l10n.multi_wishlist?(y(i),void 0!==t.user_wishlists&&k(t.user_wishlists)):g(i),void 0!==t.fragments&&P(t.fragments),h(),j(e)})}),t.on("click",".delete_item",function(){var a=r(this),t=a.attr("data-product-id"),i=a.data("item-id"),o=r(".add-to-wishlist-"+t);return r.ajax({url:yith_wcwl_l10n.ajax_url,data:{action:yith_wcwl_l10n.actions.delete_item_action,item_id:i,fragments:T(t)},dataType:"json",beforeSend:function(){x(a)},complete:function(){j(a)},method:"post",success:function(t){var i=t.fragments,e=t.message;yith_wcwl_l10n.multi_wishlist&&y(e),a.closest(".yith-wcwl-remove-button").length||g(e),void 0!==i&&P(i),h(),r("body").trigger("removed_from_wishlist",[a,o])}}),!1}),t.on("change",".yith-wcwl-popup-content .wishlist-select",function(){var t=r(this);"new"===t.val()?t.parents(".yith-wcwl-first-row").next(".yith-wcwl-second-row").show():t.parents(".yith-wcwl-first-row").next(".yith-wcwl-second-row").hide()}),t.on("change","#bulk_add_to_cart",function(){var t=r(this),i=t.closest(".wishlist_table").find("[data-row-id]").find('input[type="checkbox"]:not(:disabled)');t.is(":checked")?i.attr("checked","checked").change():i.removeAttr("checked").change()}),t.on("submit",".wishlist-ask-an-estimate-popup",function(){var t=r(this),e=t.closest("form"),a=t.closest(".pp_content"),i=e.serialize();return r.ajax({beforeSend:function(){x(e)},complete:function(){j(e)},data:i+"&action="+yith_wcwl_l10n.actions.ask_an_estimate,dataType:"json",method:"post",success:function(t){if(void 0!==t.result&&t.result){var i=t.template;void 0!==i&&(e.replaceWith(i),a.css("height","auto"),setTimeout(y,3e3))}else void 0!==t.message&&(e.find(".woocommerce-error").remove(),e.find(".popup-description").after(r("<div>",{text:t.message,class:"woocommerce-error"})))},url:yith_wcwl_l10n.ajax_url}),!1}),t.on("click",".yith-wfbt-add-wishlist",function(t){t.preventDefault();var i=r(this),e=r("#yith-wcwl-form");r("html, body").animate({scrollTop:e.offset().top},500),function(t,e){var i=t.data("data-product-id"),a=r(document).find(".cart.wishlist_table"),o=a.data("pagination"),n=a.data("per-page"),s=a.data("id"),d=a.data("token"),l={action:yith_wcwl_l10n.actions.reload_wishlist_and_adding_elem_action,pagination:o,per_page:n,wishlist_id:s,wishlist_token:d,add_to_wishlist:i,product_type:t.data("product-type")};if(!C())return alert(yith_wcwl_l10n.labels.cookie_disabled);r.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:l,dataType:"html",beforeSend:function(){x(a)},complete:function(){j(a)},success:function(t){var i=r(t).find("#yith-wcwl-form");e.replaceWith(i),h()}})}(i,e)}),t.on("submit",".yith-wcwl-popup-form",function(){return!1}),t.on("yith_infs_added_elem",function(){e()}),t.on("found_variation",function(t,i){var a=r(t.target).data("product_id"),o=i.variation_id,e=r('.add_to_wishlist[data-product-id="'+a+'"]').add('.add_to_wishlist[data-original-product-id="'+a+'"]');a&&o&&e.length&&e.each(function(){var t,i=r(this),e=i.closest(".yith-wcwl-add-to-wishlist");i.attr("data-original-product-id",a),i.attr("data-product-id",o),console.log(i,i.attr("data-product-id")),e.length&&(void 0!==(t=e.data("fragment-options"))&&(t.product_id=o,e.data("fragment-options",t)),e.removeClass(function(t,i){return i.match(/add-to-wishlist-\S+/g).join(" ")}).addClass("add-to-wishlist-"+o).attr("data-fragment-ref",o))})}),t.on("reset_data",function(t){var o=r(t.target).data("product_id"),i=r('.add_to_wishlist[data-original-product-id="'+o+'"]');o&&i.length&&i.each(function(){var t,i=r(this),e=i.closest(".yith-wcwl-add-to-wishlist"),a=i.attr("data-product-id");i.attr("data-product-id",o),i.attr("data-original-product-id",""),e.length&&(void 0!==(t=e.data("fragment-options"))&&(t.product_id=o,e.data("fragment-options",t)),e.removeClass("add-to-wishlist-"+a).addClass("add-to-wishlist-"+o).attr("data-fragment-ref",o))})}),t.on("yith_wcwl_reload_fragments",S),t.on("yith_infs_added_elem",function(t,i){S({container:i,firstLoad:!1})}),t.on("yith_wcwl_fragments_loaded",function(t){r(".variations_form").find(".variations select").last().change()}),t.on("click",".yith-wcwl-popup-feedback .close-popup",function(){y()}),function(){if(void 0!==yith_wcwl_l10n.enable_notices&&!yith_wcwl_l10n.enable_notices)return;if(r(".yith-wcwl-add-to-wishlist").length&&!r("#yith-wcwl-popup-message").length){var t=r("<div>").attr("id","yith-wcwl-message"),i=r("<div>").attr("id","yith-wcwl-popup-message").html(t).hide();r("body").prepend(i)}}(),n(),d(),l(),function(){var n,s;r(".wishlist_table").on("change",".product-quantity input",function(){var t=r(this),i=t.closest("[data-row-id]"),e=i.data("row-id"),a=t.closest(".wishlist_table"),o=a.data("token");clearTimeout(s),i.find(".add_to_cart").data("quantity",t.val()),s=setTimeout(function(){n&&n.abort(),n=r.ajax({beforeSend:function(){x(a)},complete:function(){j(a)},data:{product_id:e,wishlist_token:o,quantity:t.val(),action:yith_wcwl_l10n.actions.update_item_quantity},method:"POST",url:yith_wcwl_l10n.ajax_url})},1e3)})}(),_(),r(document).on("click",".show-tab",function(t){var i=r(this),e=i.closest(".yith-wcwl-popup-content"),a=i.data("tab"),o=e.find(".tab").filter("."+a);if(t.preventDefault(),!o.length)return!1;i.addClass("active").siblings(".show-tab").removeClass("active"),o.show().siblings(".tab").hide(),"create"===a?e.prepend('<input type="hidden" id="new_wishlist_selector" class="wishlist-select" value="new">'):e.find("#new_wishlist_selector").remove()}),r(document).on("change",".wishlist-select",function(t){var i=r(this),e=i.closest(".yith-wcwl-popup-content"),a=i.closest(".tab"),o=e.find(".tab.create"),n=e.find(".show-tab"),s=n.filter('[data-tab="create"]');"new"===i.val()&&o.length&&(a.hide(),o.show(),n.removeClass("active"),s.addClass("active"),i.find("option").removeProp("selected"),i.change())}),i(),a(),e(),o(),function(){var c=!1;if(!yith_wcwl_l10n.is_wishlist_responsive)return;r(window).on("resize",function(t){var i=r(".wishlist_table.responsive"),e=i.is(".mobile"),a=window.matchMedia("(max-width: 768px)"),o=i.closest("form"),n=o.attr("class"),s=o.data("fragment-options"),d={},l=!1;i.length&&(a.matches&&i&&!e?(s.is_mobile="yes",l=!0):!a.matches&&i&&e&&(s.is_mobile="no",l=!0),l&&(c&&c.abort(),d[n]=s,c=r.ajax({beforeSend:function(){x(i)},complete:function(){j(i)},data:{action:yith_wcwl_l10n.actions.load_mobile_action,fragments:d},method:"post",success:function(t){void 0!==t.fragments&&(P(t.fragments),h(),r(document).trigger("yith_wcwl_responsive_template",[e,t.fragments]))},url:yith_wcwl_l10n.ajax_url})))})}(),c(),S()}).trigger("yith_wcwl_init")});
1
+ jQuery(document).ready(function(r){function i(){void 0!==r.fn.selectBox&&r("select.selectBox").filter(":visible").not(".enhanced").selectBox().addClass("enhanced")}function e(){if(void 0!==r.prettyPhoto){var t={hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1,overlay_gallery:!1,default_width:500,changepicturecallback:function(){i(),r(".wishlist-select").change(),r(document).trigger("yith_wcwl_popup_opened",[this])},markup:'<div class="pp_pic_holder"><div class="ppt">&nbsp;</div><div class="pp_top"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div><div class="pp_content_container"><div class="pp_left"><div class="pp_right"><div class="pp_content"><div class="pp_loaderIcon"></div><div class="pp_fade"><a href="#" class="pp_expand" title="Expand the image">Expand</a><div class="pp_hoverContainer"><a class="pp_next" href="#">next</a><a class="pp_previous" href="#">previous</a></div><div id="pp_full_res"></div><div class="pp_details"><a class="pp_close" href="#">Close</a></div></div></div></div></div></div><div class="pp_bottom"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div></div><div class="pp_overlay yith-wcwl-overlay"></div>'};r('a[data-rel^="prettyPhoto[add_to_wishlist_"]').add('a[data-rel="prettyPhoto[ask_an_estimate]"]').add('a[data-rel="prettyPhoto[create_wishlist]"]').unbind("click").prettyPhoto(t),r('a[data-rel="prettyPhoto[move_to_another_wishlist]"]').on("click",function(){var t=r(this),i=r("#move_to_another_wishlist").find("form"),e=i.find(".row-id"),a=t.closest("[data-row-id]").data("row-id");e.length&&e.remove(),i.append('<input type="hidden" name="row_id" class="row-id" value="'+a+'"/>')}).prettyPhoto(t),new MutationObserver(function(t,i){for(var e in t){var a=t[e];"childList"===a.type&&(void 0!==a.addedNodes&&a.addedNodes.forEach(function(t){void 0!==t.classList&&t.classList.contains("yith-wcwl-overlay")&&r("body").addClass("yith-wcwl-with-pretty-photo")}),void 0!==a.removedNodes&&a.removedNodes.forEach(function(t){void 0!==t.classList&&t.classList.contains("yith-wcwl-overlay")&&r("body").removeClass("yith-wcwl-with-pretty-photo")}))}}).observe(document.body,{childList:!0})}}function a(){r(".wishlist_table").find('.product-checkbox input[type="checkbox"]').off("change").on("change",function(){var t=r(this);t.parent().removeClass("checked").removeClass("unchecked").addClass(t.is(":checked")?"checked":"unchecked")}).trigger("change")}function o(){r(".add_to_cart").filter("[data-icon]").not(".icon-added").each(function(){var t,i=r(this),e=i.data("icon");t=e.match(/[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)?/gi)?r("<img/>",{src:e}):r("<i/>",{class:"fa "+e}),i.prepend(t).addClass("icon-added")})}function h(){i(),e(),a(),o(),d(),n(),_(),l(),c(),r(document).trigger("yith_wcwl_init_after_ajax")}function n(){yith_wcwl_l10n.enable_tooltip&&r(".yith-wcwl-add-to-wishlist").find("[data-title]").each(function(){var t=r(this);t.hasClass("tooltip-added")||(t.on("mouseenter",function(){var t,i=r(this),e=null,a=i.outerWidth(),o=0;e=r("<span>",{class:"yith-wcwl-tooltip",text:i.data("title")}),i.append(e),t=e.outerWidth()+6,e.outerWidth(t),o=(a-t)/2,e.css({left:o.toFixed(0)+"px"}).fadeIn(200),i.addClass("with-tooltip")}).on("mouseleave",function(){var t=r(this);t.find(".yith-wcwl-tooltip").fadeOut(200,function(){t.removeClass("with-tooltip").find(".yith-wcwl-tooltip").remove()})}),t.addClass("tooltip-added"))})}function d(){r(".yith-wcwl-add-button").filter(".with-dropdown").on("mouseleave",function(){var t=r(this).find(".yith-wcwl-dropdown");t.length&&t.fadeOut(200)}).children("a").on("mouseenter",function(){var t=r(this).closest(".with-dropdown"),i=t.find(".yith-wcwl-dropdown");i.length&&i.children().length&&t.find(".yith-wcwl-dropdown").fadeIn(200)})}function l(){void 0!==yith_wcwl_l10n.enable_drag_n_drop&&yith_wcwl_l10n.enable_drag_n_drop&&r(".wishlist_table").filter(".sortable").not(".no-interactions").each(function(){var a=r(this),o=!1;a.sortable({items:"[data-row-id]",scroll:!0,helper:function(t,i){return i.children().each(function(){r(this).width(r(this).width())}),i},update:function(){var t=a.find("[data-row-id]"),i=[],e=0;t.length&&(o&&o.abort(),t.each(function(){var t=r(this);t.find('input[name*="[position]"]').val(e++),i.push(t.data("row-id"))}),o=r.ajax({data:{action:yith_wcwl_l10n.actions.sort_wishlist_items,positions:i,wishlist_token:a.data("token"),page:a.data("page"),per_page:a.data("per-page")},method:"POST",url:yith_wcwl_l10n.ajax_url}))}})})}function c(){r(".copy-trigger").on("click",function(){var t=r(".copy-target");if(0<t.length)if(t.is("input"))s()?t[0].setSelectionRange(0,9999):t.select(),document.execCommand("copy");else{var i=r("<input/>",{val:t.text(),type:"text"});b("body").append(i),s()?i[0].setSelectionRange(0,9999):i.select(),document.execCommand("copy"),i.remove()}})}function _(){r(".wishlist_table").filter(".images_grid").not(".enhanced").on("click","[data-row-id] .product-thumbnail a",function(t){var i=r(this).closest("[data-row-id]"),e=i.siblings("[data-row-id]"),a=i.find(".item-details");t.preventDefault(),a.length&&(e.removeClass("show"),i.toggleClass("show"))}).on("click","[data-row-id] a.close",function(t){var i=r(this).closest("[data-row-id]"),e=i.find(".item-details");t.preventDefault(),e.length&&i.removeClass("show")}).on("click","[data-row-id] a.remove_from_wishlist",function(t){var i=r(this);return t.stopPropagation(),f(i),!1}).addClass("enhanced"),r(document).on("click",function(t){r(t.target).closest("[data-row-id]").length||r(".wishlist_table").filter(".images_grid").find(".show").removeClass("show")}).on("added_to_cart",function(){r(".wishlist_table").filter(".images_grid").find(".show").removeClass("show")})}function w(i,t,e){i.action=yith_wcwl_l10n.actions.move_to_another_wishlist_action,""!==i.wishlist_token&&""!==i.destination_wishlist_token&&""!==i.item_id&&r.ajax({beforeSend:t,url:yith_wcwl_l10n.ajax_url,data:i,dataType:"json",method:"post",success:function(t){e(t),h(),r("body").trigger("moved_to_another_wishlist",[r(this),i.item_id])}})}function f(i){var t=i.parents(".cart.wishlist_table"),e=i.parents("[data-row-id]"),a=e.data("row-id"),o=t.data("id"),n=t.data("token"),s={action:yith_wcwl_l10n.actions.remove_from_wishlist_action,remove_from_wishlist:a,wishlist_id:o,wishlist_token:n,fragments:T(a)};r.ajax({beforeSend:function(){x(t)},complete:function(){j(t)},data:s,method:"post",success:function(t){void 0!==t.fragments&&P(t.fragments),h(),r("body").trigger("removed_from_wishlist",[i,e])},url:yith_wcwl_l10n.ajax_url})}function p(t){var i=r(this),e=i.closest(".wishlist_table"),a=null;t.preventDefault(),(a=e.length?i.closest("[data-wishlist-id]").find(".wishlist-title"):i.parents(".wishlist-title")).next().show().find('input[type="text"]').focus(),a.hide()}function u(t){var i=r(this);t.preventDefault(),i.parents(".hidden-title-form").hide(),i.parents(".hidden-title-form").prev().show()}function m(t){var i,e=r(this),a=e.closest(".hidden-title-form"),o=e.closest("[data-wishlist-id]").data("wishlist-id"),n=a.find('input[type="text"]'),s=n.val();if(t.preventDefault(),!s)return a.addClass("woocommerce-invalid"),void n.focus();i={action:yith_wcwl_l10n.actions.save_title_action,wishlist_id:o,title:s,fragments:T()},r.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:i,dataType:"json",beforeSend:function(){x(a)},complete:function(){j(a)},success:function(t){var i=t.fragments;t.result?(a.hide(),a.prev().find(".wishlist-anchor").text(s).end().show()):(a.addClass("woocommerce-invalid"),n.focus()),void 0!==i&&P(i)}})}function v(t){var i=r(this),e=i.val(),a=i.closest("[data-wishlist-id]").data("wishlist-id"),o={action:yith_wcwl_l10n.actions.save_privacy_action,wishlist_id:a,privacy:e,fragments:T()};r.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:o,dataType:"json",success:function(t){var i=t.fragments;void 0!==i&&P(i)}})}function y(t){if(void 0!==r.prettyPhoto&&void 0!==r.prettyPhoto.close)if(void 0!==t){var i=r(".pp_content_container"),e=i.find(".pp_content"),a=i.find(".yith-wcwl-popup-form"),o=a.closest(".pp_pic_holder");if(a.length){var n=r("<div/>",{class:"yith-wcwl-popup-feedback"});n.append(r("<i/>",{class:"fa fa-check heading-icon"})),n.append(r("<p/>",{class:"feedback",html:t})),n.css("display","none"),e.css("height","auto"),a.after(n),a.fadeOut(200,function(){n.fadeIn()}),o.addClass("feedback"),o.css("left",r(window).innerWidth()/2-o.outerWidth()/2+"px"),void 0!==yith_wcwl_l10n.auto_close_popup&&!yith_wcwl_l10n.auto_close_popup||setTimeout(y,yith_wcwl_l10n.popup_timeout)}}else try{r.prettyPhoto.close()}catch(t){}}function g(t){var i=r("#yith-wcwl-popup-message"),e=r("#yith-wcwl-message"),a=void 0!==yith_wcwl_l10n.popup_timeout?yith_wcwl_l10n.popup_timeout:3e3;void 0!==yith_wcwl_l10n.enable_notices&&!yith_wcwl_l10n.enable_notices||(e.html(t),i.css("margin-left","-"+r(i).width()+"px").fadeIn(),window.setTimeout(function(){i.fadeOut()},a))}function k(n){var t=r("select.wishlist-select"),i=r("ul.yith-wcwl-dropdown");t.each(function(){var e=r(this),t=e.find("option"),i=t.filter('[value="new"]');t.not(i).remove(),r.each(n,function(t,i){r("<option>",{value:i.id,html:i.wishlist_name}).appendTo(e)}),e.append(i)}),i.each(function(){var e=r(this),t=e.find("li"),i=e.closest(".yith-wcwl-add-button").children("a.add_to_wishlist"),a=i.attr("data-product-id"),o=i.attr("data-product-type");t.remove(),r.each(n,function(t,i){r("<li>").append(r("<a>",{rel:"nofollow",html:i.wishlist_name,class:"add_to_wishlist",href:i.add_to_this_wishlist_url,"data-product-id":a,"data-product-type":o,"data-wishlist-id":i.id})).appendTo(e)})})}function x(t){void 0!==r.fn.block&&t.fadeTo("400","0.6").block({message:null,overlayCSS:{background:"transparent url("+yith_wcwl_l10n.ajax_loader_url+") no-repeat center",backgroundSize:"40px 40px",opacity:1}})}function j(t){void 0!==r.fn.unblock&&t.stop(!0).css("opacity","1").unblock()}function C(){if(navigator.cookieEnabled)return!0;document.cookie="cookietest=1";var t=-1!==document.cookie.indexOf("cookietest=");return document.cookie="cookietest=1; expires=Thu, 01-Jan-1970 00:00:01 GMT",t}function T(t){var e={},i=null;return t?"object"==typeof t?(i=(t=r.extend({s:"",container:r(document),firstLoad:!1},t)).container.find(".wishlist-fragment"),t.s&&(i=i.not("[data-fragment-ref]").add(i.filter('[data-fragment-ref="'+t.s+'"]'))),t.firstLoad&&(i=i.filter(".on-first-load"))):(i=r(".wishlist-fragment"),"string"!=typeof t&&"number"!=typeof t||(i=i.not("[data-fragment-ref]").add(i.filter('[data-fragment-ref="'+t+'"]')))):i=r(".wishlist-fragment"),i.each(function(){var t=r(this),i=t.attr("class");e[i]=t.data("fragment-options")}),e}function S(t){if(yith_wcwl_l10n.enable_ajax_loading){var i=T(t=r.extend({firstLoad:!0},t));i&&r.ajax({data:{action:yith_wcwl_l10n.actions.load_fragments,fragments:i},method:"post",success:function(t){void 0!==t.fragments&&(P(t.fragments),h(),r(document).trigger("yith_wcwl_fragments_loaded",[i,t.fragments]))},url:yith_wcwl_l10n.ajax_url})}}function P(t){r.each(t,function(t,i){var e="."+t.split(" ").filter(function(t){return t.length&&"exists"!==t}).join("."),a=r(e),o=r(i).filter(e);o.length||(o=r(i).find(e)),a.length&&o.length&&a.replaceWith(o)})}function s(){return navigator.userAgent.match(/ipad|iphone/i)}r(document).on("yith_wcwl_init",function(){var t=r(this),s="undefined"!=typeof wc_add_to_cart_params&&null!==wc_add_to_cart_params?wc_add_to_cart_params.cart_redirect_after_add:"";t.on("click",".add_to_wishlist",function(t){var i,a=r(this),e=a.attr("data-product-id"),o=r(".add-to-wishlist-"+e),n={add_to_wishlist:e,product_type:a.data("product-type"),wishlist_id:a.data("wishlist-id"),action:yith_wcwl_l10n.actions.add_to_wishlist_action,fragments:T(e)};if((i=r(document).triggerHandler("yith_wcwl_add_to_wishlist_data",[a,n]))&&(n=i),t.preventDefault(),jQuery(document.body).trigger("adding_to_wishlist"),yith_wcwl_l10n.multi_wishlist&&yith_wcwl_l10n.modal_enable){var s=a.parents(".yith-wcwl-popup-footer").prev(".yith-wcwl-popup-content"),d=s.find(".wishlist-select"),l=s.find(".wishlist-name"),c=s.find(".wishlist-visibility").filter(":checked");if(n.wishlist_id=d.is(":visible")?d.val():"new",n.wishlist_name=l.val(),n.wishlist_visibility=c.val(),"new"===n.wishlist_id&&!n.wishlist_name)return l.closest("p").addClass("woocommerce-invalid"),!1;l.closest("p").removeClass("woocommerce-invalid")}if(C())return r.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:n,dataType:"json",beforeSend:function(){x(a)},complete:function(){j(a)},success:function(t){var i=t.result,e=t.message;yith_wcwl_l10n.multi_wishlist?(y(e),void 0!==t.user_wishlists&&k(t.user_wishlists)):g(e),"true"!==i&&"exists"!==i||(void 0!==t.fragments&&P(t.fragments),yith_wcwl_l10n.multi_wishlist&&!yith_wcwl_l10n.hide_add_button||o.find(".yith-wcwl-add-button").remove(),o.addClass("exists")),h(),r("body").trigger("added_to_wishlist",[a,o])}}),!1;alert(yith_wcwl_l10n.labels.cookie_disabled)}),t.on("click",".wishlist_table .remove_from_wishlist",function(t){var i=r(this);return t.preventDefault(),f(i),!1}),t.on("adding_to_cart","body",function(t,i,e){void 0!==i&&void 0!==e&&i.closest(".wishlist_table").length&&(e.remove_from_wishlist_after_add_to_cart=i.closest("[data-row-id]").data("row-id"),e.wishlist_id=i.closest(".wishlist_table").data("id"),"undefined"!=typeof wc_add_to_cart_params&&(wc_add_to_cart_params.cart_redirect_after_add=yith_wcwl_l10n.redirect_to_cart),"undefined"!=typeof yith_wccl_general&&(yith_wccl_general.cart_redirect=yith_wcwl_l10n.redirect_to_cart))}),t.on("added_to_cart","body",function(t,i,e,a){if(void 0!==a&&a.closest(".wishlist_table").length){"undefined"!=typeof wc_add_to_cart_params&&(wc_add_to_cart_params.cart_redirect_after_add=s),"undefined"!=typeof yith_wccl_general&&(yith_wccl_general.cart_redirect=s);var o=a.closest("[data-row-id]"),n=o.closest(".wishlist-fragment").data("fragment-options");a.removeClass("added"),o.find(".added_to_cart").remove(),yith_wcwl_l10n.remove_from_wishlist_after_add_to_cart&&n.is_user_owner&&o.remove()}}),t.on("added_to_cart","body",function(){var t=r(".woocommerce-message");0===t.length?r("#yith-wcwl-form").prepend(yith_wcwl_l10n.labels.added_to_cart_message):t.fadeOut(300,function(){r(this).replaceWith(yith_wcwl_l10n.labels.added_to_cart_message).fadeIn()})}),t.on("cart_page_refreshed","body",h),t.on("click",".show-title-form",p),t.on("click",".wishlist-title-with-form h2",p),t.on("click",".remove_from_all_wishlists",function(t){var i=r(this),e=i.attr("data-product-id"),a=i.data("wishlist-id"),o=i.closest(".content"),n={action:yith_wcwl_l10n.actions.remove_from_all_wishlists,prod_id:e,wishlist_id:a,fragments:T(e)};t.preventDefault(),r.ajax({beforeSend:function(){x(o)},complete:function(){j(o)},data:n,dataType:"json",method:"post",success:function(t){void 0!==t.fragments&&P(t.fragments),h()},url:yith_wcwl_l10n.ajax_url})}),t.on("click",".hide-title-form",u),t.on("click",".save-title-form",m),t.on("change",".wishlist_manage_table .wishlist-visibility",v),t.on("change",".change-wishlist",function(){var t=r(this),i=t.parents(".cart.wishlist_table"),e=i.data("token"),a=t.parents("[data-row-id]").data("row-id");w({wishlist_token:e,destination_wishlist_token:t.val(),item_id:a,fragments:T()},function(){x(i)},function(t){void 0!==t.fragments&&P(t.fragments),j(i)})}),t.on("click",".yith-wcwl-popup-footer .move_to_wishlist",function(){var e=r(this),t=e.attr("data-product-id"),i=e.data("origin-wishlist-id"),a=e.closest("form"),o=a.find(".wishlist-select").val(),n=a.find(".wishlist-name"),s=n.val(),d=a.find(".wishlist-visibility").filter(":checked").val();if("new"===o&&!s)return n.closest("p").addClass("woocommerce-invalid"),!1;n.closest("p").removeClass("woocommerce-invalid"),w({wishlist_token:i,destination_wishlist_token:o,item_id:t,wishlist_name:s,wishlist_visibility:d,fragments:T(t)},function(){x(e)},function(t){var i=t.message;yith_wcwl_l10n.multi_wishlist?(y(i),void 0!==t.user_wishlists&&k(t.user_wishlists)):g(i),void 0!==t.fragments&&P(t.fragments),h(),j(e)})}),t.on("click",".delete_item",function(){var a=r(this),t=a.attr("data-product-id"),i=a.data("item-id"),o=r(".add-to-wishlist-"+t);return r.ajax({url:yith_wcwl_l10n.ajax_url,data:{action:yith_wcwl_l10n.actions.delete_item_action,item_id:i,fragments:T(t)},dataType:"json",beforeSend:function(){x(a)},complete:function(){j(a)},method:"post",success:function(t){var i=t.fragments,e=t.message;yith_wcwl_l10n.multi_wishlist&&y(e),a.closest(".yith-wcwl-remove-button").length||g(e),void 0!==i&&P(i),h(),r("body").trigger("removed_from_wishlist",[a,o])}}),!1}),t.on("change",".yith-wcwl-popup-content .wishlist-select",function(){var t=r(this);"new"===t.val()?t.parents(".yith-wcwl-first-row").next(".yith-wcwl-second-row").show():t.parents(".yith-wcwl-first-row").next(".yith-wcwl-second-row").hide()}),t.on("change","#bulk_add_to_cart",function(){var t=r(this),i=t.closest(".wishlist_table").find("[data-row-id]").find('input[type="checkbox"]:not(:disabled)');t.is(":checked")?i.attr("checked","checked").change():i.removeAttr("checked").change()}),t.on("submit",".wishlist-ask-an-estimate-popup",function(){var t=r(this),e=t.closest("form"),a=t.closest(".pp_content"),i=e.serialize();return r.ajax({beforeSend:function(){x(e)},complete:function(){j(e)},data:i+"&action="+yith_wcwl_l10n.actions.ask_an_estimate,dataType:"json",method:"post",success:function(t){if(void 0!==t.result&&t.result){var i=t.template;void 0!==i&&(e.replaceWith(i),a.css("height","auto"),setTimeout(y,3e3))}else void 0!==t.message&&(e.find(".woocommerce-error").remove(),e.find(".popup-description").after(r("<div>",{text:t.message,class:"woocommerce-error"})))},url:yith_wcwl_l10n.ajax_url}),!1}),t.on("click",".yith-wfbt-add-wishlist",function(t){t.preventDefault();var i=r(this),e=r("#yith-wcwl-form");r("html, body").animate({scrollTop:e.offset().top},500),function(t,e){var i=t.data("data-product-id"),a=r(document).find(".cart.wishlist_table"),o=a.data("pagination"),n=a.data("per-page"),s=a.data("id"),d=a.data("token"),l={action:yith_wcwl_l10n.actions.reload_wishlist_and_adding_elem_action,pagination:o,per_page:n,wishlist_id:s,wishlist_token:d,add_to_wishlist:i,product_type:t.data("product-type")};if(!C())return alert(yith_wcwl_l10n.labels.cookie_disabled);r.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:l,dataType:"html",beforeSend:function(){x(a)},complete:function(){j(a)},success:function(t){var i=r(t).find("#yith-wcwl-form");e.replaceWith(i),h()}})}(i,e)}),t.on("submit",".yith-wcwl-popup-form",function(){return!1}),t.on("yith_infs_added_elem",function(){e()}),t.on("found_variation",function(t,i){var a=r(t.target).data("product_id"),o=i.variation_id,e=r('.add_to_wishlist[data-product-id="'+a+'"]').add('.add_to_wishlist[data-original-product-id="'+a+'"]');a&&o&&e.length&&e.each(function(){var t,i=r(this),e=i.closest(".yith-wcwl-add-to-wishlist");i.attr("data-original-product-id",a),i.attr("data-product-id",o),e.length&&(void 0!==(t=e.data("fragment-options"))&&(t.product_id=o,e.data("fragment-options",t)),e.removeClass(function(t,i){return i.match(/add-to-wishlist-\S+/g).join(" ")}).addClass("add-to-wishlist-"+o).attr("data-fragment-ref",o))})}),t.on("reset_data",function(t){var o=r(t.target).data("product_id"),i=r('.add_to_wishlist[data-original-product-id="'+o+'"]');o&&i.length&&i.each(function(){var t,i=r(this),e=i.closest(".yith-wcwl-add-to-wishlist"),a=i.attr("data-product-id");i.attr("data-product-id",o),i.attr("data-original-product-id",""),e.length&&(void 0!==(t=e.data("fragment-options"))&&(t.product_id=o,e.data("fragment-options",t)),e.removeClass("add-to-wishlist-"+a).addClass("add-to-wishlist-"+o).attr("data-fragment-ref",o))})}),t.on("yith_wcwl_reload_fragments",S),t.on("yith_infs_added_elem",function(t,i){S({container:i,firstLoad:!1})}),t.on("yith_wcwl_fragments_loaded",function(t){r(".variations_form").find(".variations select").last().change()}),t.on("click",".yith-wcwl-popup-feedback .close-popup",function(){y()}),function(){if(void 0!==yith_wcwl_l10n.enable_notices&&!yith_wcwl_l10n.enable_notices)return;if(r(".yith-wcwl-add-to-wishlist").length&&!r("#yith-wcwl-popup-message").length){var t=r("<div>").attr("id","yith-wcwl-message"),i=r("<div>").attr("id","yith-wcwl-popup-message").html(t).hide();r("body").prepend(i)}}(),n(),d(),l(),function(){var n,s;r(".wishlist_table").on("change",".product-quantity input",function(){var t=r(this),i=t.closest("[data-row-id]"),e=i.data("row-id"),a=t.closest(".wishlist_table"),o=a.data("token");clearTimeout(s),i.find(".add_to_cart").data("quantity",t.val()),s=setTimeout(function(){n&&n.abort(),n=r.ajax({beforeSend:function(){x(a)},complete:function(){j(a)},data:{product_id:e,wishlist_token:o,quantity:t.val(),action:yith_wcwl_l10n.actions.update_item_quantity},method:"POST",url:yith_wcwl_l10n.ajax_url})},1e3)})}(),_(),r(document).on("click",".show-tab",function(t){var i=r(this),e=i.closest(".yith-wcwl-popup-content"),a=i.data("tab"),o=e.find(".tab").filter("."+a);if(t.preventDefault(),!o.length)return!1;i.addClass("active").siblings(".show-tab").removeClass("active"),o.show().siblings(".tab").hide(),"create"===a?e.prepend('<input type="hidden" id="new_wishlist_selector" class="wishlist-select" value="new">'):e.find("#new_wishlist_selector").remove()}),r(document).on("change",".wishlist-select",function(t){var i=r(this),e=i.closest(".yith-wcwl-popup-content"),a=i.closest(".tab"),o=e.find(".tab.create"),n=e.find(".show-tab"),s=n.filter('[data-tab="create"]');"new"===i.val()&&o.length&&(a.hide(),o.show(),n.removeClass("active"),s.addClass("active"),i.find("option").removeProp("selected"),i.change())}),i(),a(),e(),o(),function(){var c=!1;if(!yith_wcwl_l10n.is_wishlist_responsive)return;r(window).on("resize",function(t){var i=r(".wishlist_table.responsive"),e=i.is(".mobile"),a=window.matchMedia("(max-width: 768px)"),o=i.closest("form"),n=o.attr("class"),s=o.data("fragment-options"),d={},l=!1;i.length&&(a.matches&&i&&!e?(s.is_mobile="yes",l=!0):!a.matches&&i&&e&&(s.is_mobile="no",l=!0),l&&(c&&c.abort(),d[n]=s,c=r.ajax({beforeSend:function(){x(i)},complete:function(){j(i)},data:{action:yith_wcwl_l10n.actions.load_mobile_action,fragments:d},method:"post",success:function(t){void 0!==t.fragments&&(P(t.fragments),h(),r(document).trigger("yith_wcwl_responsive_template",[e,t.fragments]))},url:yith_wcwl_l10n.ajax_url})))})}(),c(),S()}).trigger("yith_wcwl_init")});
assets/js/unminified/jquery.yith-wcwl.js CHANGED
@@ -15,9 +15,10 @@ jQuery( document ).ready( function( $ ){
15
  cart_redirect_after_add = ( typeof( wc_add_to_cart_params ) !== 'undefined' && wc_add_to_cart_params !== null ) ? wc_add_to_cart_params.cart_redirect_after_add : '';
16
 
17
  t.on( 'click', '.add_to_wishlist', function( ev ) {
18
- var t = $( this),
19
  product_id = t.attr( 'data-product-id' ),
20
  el_wrap = $( '.add-to-wishlist-' + product_id ),
 
21
  data = {
22
  add_to_wishlist: product_id,
23
  product_type: t.data( 'product-type' ),
@@ -26,6 +27,11 @@ jQuery( document ).ready( function( $ ){
26
  fragments: retrieve_fragments( product_id )
27
  };
28
 
 
 
 
 
 
29
  ev.preventDefault();
30
 
31
  jQuery( document.body ).trigger( 'adding_to_wishlist' );
@@ -432,8 +438,6 @@ jQuery( document ).ready( function( $ ){
432
  t.attr( 'data-original-product-id', product_id );
433
  t.attr( 'data-product-id', variation_id );
434
 
435
- console.log(t, t.attr('data-product-id'));
436
-
437
  if( container.length ) {
438
  options = container.data( 'fragment-options' );
439
 
@@ -834,6 +838,7 @@ jQuery( document ).ready( function( $ ){
834
 
835
  t.sortable( {
836
  items: '[data-row-id]',
 
837
  helper: function( e, ui ){
838
  ui.children().each(function() {
839
  $(this).width($(this).width());
@@ -842,7 +847,8 @@ jQuery( document ).ready( function( $ ){
842
  },
843
  update: function(){
844
  var row = t.find('[data-row-id]'),
845
- positions = [];
 
846
 
847
  if( ! row.length ){
848
  return;
@@ -855,6 +861,8 @@ jQuery( document ).ready( function( $ ){
855
  row.each( function(){
856
  var t = $(this);
857
 
 
 
858
  positions.push( t.data('row-id') );
859
  } );
860
 
15
  cart_redirect_after_add = ( typeof( wc_add_to_cart_params ) !== 'undefined' && wc_add_to_cart_params !== null ) ? wc_add_to_cart_params.cart_redirect_after_add : '';
16
 
17
  t.on( 'click', '.add_to_wishlist', function( ev ) {
18
+ var t = $(this),
19
  product_id = t.attr( 'data-product-id' ),
20
  el_wrap = $( '.add-to-wishlist-' + product_id ),
21
+ filtered_data = null,
22
  data = {
23
  add_to_wishlist: product_id,
24
  product_type: t.data( 'product-type' ),
27
  fragments: retrieve_fragments( product_id )
28
  };
29
 
30
+ // allow third party code to filter data
31
+ if( filtered_data = $(document).triggerHandler( 'yith_wcwl_add_to_wishlist_data', [ t, data ] ) ) {
32
+ data = filtered_data;
33
+ }
34
+
35
  ev.preventDefault();
36
 
37
  jQuery( document.body ).trigger( 'adding_to_wishlist' );
438
  t.attr( 'data-original-product-id', product_id );
439
  t.attr( 'data-product-id', variation_id );
440
 
 
 
441
  if( container.length ) {
442
  options = container.data( 'fragment-options' );
443
 
838
 
839
  t.sortable( {
840
  items: '[data-row-id]',
841
+ scroll: true,
842
  helper: function( e, ui ){
843
  ui.children().each(function() {
844
  $(this).width($(this).width());
847
  },
848
  update: function(){
849
  var row = t.find('[data-row-id]'),
850
+ positions = [],
851
+ i = 0;
852
 
853
  if( ! row.length ){
854
  return;
861
  row.each( function(){
862
  var t = $(this);
863
 
864
+ t.find( 'input[name*="[position]"]' ).val(i++);
865
+
866
  positions.push( t.data('row-id') );
867
  } );
868
 
includes/class.yith-wcwl-form-handler.php CHANGED
@@ -54,7 +54,7 @@ if ( ! class_exists( 'YITH_WCWL_Form_Handler' ) ) {
54
  public static function process_form_handling() {
55
  $user_agent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ) : false;
56
 
57
- if ( $user_agent && apply_filters( 'yith_wcwl_block_user_agent', preg_match( '/bot|crawl|slurp|spider/i', $user_agent ), $user_agent ) ) {
58
  return false;
59
  }
60
 
54
  public static function process_form_handling() {
55
  $user_agent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ) : false;
56
 
57
+ if ( $user_agent && apply_filters( 'yith_wcwl_block_user_agent', preg_match( '/bot|crawl|slurp|spider|wordpress/i', $user_agent ), $user_agent ) ) {
58
  return false;
59
  }
60
 
includes/class.yith-wcwl-frontend.php CHANGED
@@ -33,7 +33,7 @@ if ( ! class_exists( 'YITH_WCWL_Frontend' ) ) {
33
  * @var string
34
  * @since 1.0.0
35
  */
36
- public $version = '3.0.10';
37
 
38
  /**
39
  * Plugin database version
33
  * @var string
34
  * @since 1.0.0
35
  */
36
+ public $version = '3.0.11';
37
 
38
  /**
39
  * Plugin database version
includes/class.yith-wcwl-session.php CHANGED
@@ -68,7 +68,7 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
68
  * Construct session class
69
  */
70
  public function __construct() {
71
- // add_action( 'init', array( $this, 'init_session_cookie' ), 0 );
72
  }
73
 
74
  /**
@@ -84,15 +84,14 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
84
  $this->_session_expiration = $cookie['session_expiration'];
85
  $this->_session_expiring = $cookie['session_expiring'];
86
 
87
- // If the user logs in, forget session.
88
  if ( is_user_logged_in() ) {
 
89
  /**
90
  * Once customer logs in, we can permanently register wishlists for his account
91
  */
92
  $this->finalize_session();
93
- }
94
- // Update session if its close to expiring.
95
- elseif ( time() > $this->_session_expiring ) {
96
  $this->set_session_expiration();
97
  $this->update_session_timestamp( $this->_session_id, $this->_session_expiration );
98
  }
@@ -101,7 +100,7 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
101
  $this->_session_id = $this->_session_id ? $this->_session_id : $this->generate_session_id();
102
  }
103
 
104
- if( ! $this->_has_cookie ) {
105
  $this->set_session_cookie();
106
  }
107
  }
@@ -112,7 +111,7 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
112
  * @return void
113
  */
114
  public function set_session_cookie() {
115
- if( headers_sent() ){
116
  return;
117
  }
118
 
@@ -123,11 +122,11 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
123
  'session_id' => $this->_session_id,
124
  'session_expiration' => $this->_session_expiration,
125
  'session_expiring' => $this->_session_expiring,
126
- 'cookie_hash' => $hash
127
  );
128
  yith_setcookie( $this->get_session_cookie_name(), $cookie_value, $this->_session_expiration, $this->use_secure_cookie(), true );
129
 
130
- // cookie has been set
131
  $this->_has_cookie = true;
132
  }
133
 
@@ -166,7 +165,7 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
166
  * @return bool
167
  */
168
  public function use_secure_cookie() {
169
- return apply_filters( 'yith_wcwl_session_use_secure_cookie', wc_site_is_https() && is_ssl() );
170
  }
171
 
172
  /**
@@ -176,7 +175,7 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
176
  * @since 3.0.3
177
  */
178
  public function get_session_cookie_name() {
179
- if( empty( $this->_cookie ) ){
180
  $this->_cookie = apply_filters( 'yith_wcwl_session_cookie', 'yith_wcwl_session_' . COOKIEHASH );
181
  }
182
 
@@ -191,7 +190,7 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
191
  public function get_session_expiration() {
192
  $session_id = $this->get_session_id();
193
 
194
- if( $session_id ){
195
  return $this->_session_expiration;
196
  }
197
 
@@ -221,10 +220,9 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
221
  * @return string Current customer id
222
  */
223
  public function get_session_id() {
224
- if( $this->has_session() ){
225
  return $this->_session_id;
226
- }
227
- elseif( ! is_user_logged_in() ){
228
  $this->init_session_cookie();
229
 
230
  return $this->_session_id;
@@ -260,16 +258,26 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
260
  * @return void
261
  */
262
  public function finalize_session() {
263
- if( ! is_user_logged_in() ){
264
  return;
265
  }
266
 
267
- $user_id = get_current_user_id();
 
 
 
 
268
 
269
- try{
270
- WC_Data_Store::load( 'wishlist' )->assign_to_user( $this->_session_id, $user_id );
271
  }
272
- catch( Exception $e ){
 
 
 
 
 
 
273
  wc_caught_exception( $e, __FUNCTION__, func_get_args() );
274
  return;
275
  }
@@ -284,15 +292,14 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
284
  * @param int $timestamp Timestamp to expire the cookie.
285
  */
286
  public function update_session_timestamp( $session_id, $timestamp ) {
287
- try{
288
  WC_Data_Store::load( 'wishlist' )->update_raw(
289
  array( 'expiration' => 'FROM_UNIXTIME(%d)' ),
290
  array( $timestamp ),
291
  array( 'session_id' => '%s' ),
292
  array( $session_id )
293
  );
294
- }
295
- catch( Exception $e ){
296
  wc_caught_exception( $e, __FUNCTION__, func_get_args() );
297
  return;
298
  }
@@ -313,8 +320,8 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
313
  * @return \YITH_WCWL_Session
314
  * @since 3.0.0
315
  */
316
- public static function get_instance(){
317
- if( is_null( self::$instance ) ){
318
  self::$instance = new self();
319
  }
320
 
@@ -329,6 +336,6 @@ if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
329
  * @return \YITH_WCWL_Session
330
  * @since 3.0.0
331
  */
332
- function YITH_WCWL_Session(){
333
  return YITH_WCWL_Session::get_instance();
334
  }
68
  * Construct session class
69
  */
70
  public function __construct() {
71
+ add_action( 'init', array( $this, 'finalize_session' ) );
72
  }
73
 
74
  /**
84
  $this->_session_expiration = $cookie['session_expiration'];
85
  $this->_session_expiring = $cookie['session_expiring'];
86
 
 
87
  if ( is_user_logged_in() ) {
88
+ // If the user logs in, forget session.
89
  /**
90
  * Once customer logs in, we can permanently register wishlists for his account
91
  */
92
  $this->finalize_session();
93
+ } elseif ( time() > $this->_session_expiring ) {
94
+ // Update session if its close to expiring.
 
95
  $this->set_session_expiration();
96
  $this->update_session_timestamp( $this->_session_id, $this->_session_expiration );
97
  }
100
  $this->_session_id = $this->_session_id ? $this->_session_id : $this->generate_session_id();
101
  }
102
 
103
+ if ( ! $this->_has_cookie ) {
104
  $this->set_session_cookie();
105
  }
106
  }
111
  * @return void
112
  */
113
  public function set_session_cookie() {
114
+ if ( headers_sent() ) {
115
  return;
116
  }
117
 
122
  'session_id' => $this->_session_id,
123
  'session_expiration' => $this->_session_expiration,
124
  'session_expiring' => $this->_session_expiring,
125
+ 'cookie_hash' => $hash,
126
  );
127
  yith_setcookie( $this->get_session_cookie_name(), $cookie_value, $this->_session_expiration, $this->use_secure_cookie(), true );
128
 
129
+ // cookie has been set.
130
  $this->_has_cookie = true;
131
  }
132
 
165
  * @return bool
166
  */
167
  public function use_secure_cookie() {
168
+ return apply_filters( 'yith_wcwl_session_use_secure_cookie', wc_site_is_https() && is_ssl() );
169
  }
170
 
171
  /**
175
  * @since 3.0.3
176
  */
177
  public function get_session_cookie_name() {
178
+ if ( empty( $this->_cookie ) ) {
179
  $this->_cookie = apply_filters( 'yith_wcwl_session_cookie', 'yith_wcwl_session_' . COOKIEHASH );
180
  }
181
 
190
  public function get_session_expiration() {
191
  $session_id = $this->get_session_id();
192
 
193
+ if ( $session_id ) {
194
  return $this->_session_expiration;
195
  }
196
 
220
  * @return string Current customer id
221
  */
222
  public function get_session_id() {
223
+ if ( $this->has_session() ) {
224
  return $this->_session_id;
225
+ } elseif ( ! is_user_logged_in() ) {
 
226
  $this->init_session_cookie();
227
 
228
  return $this->_session_id;
258
  * @return void
259
  */
260
  public function finalize_session() {
261
+ if ( ! is_user_logged_in() ) {
262
  return;
263
  }
264
 
265
+ $cookie = $this->get_session_cookie();
266
+
267
+ if ( ! $cookie ) {
268
+ return;
269
+ }
270
 
271
+ if ( empty( $cookie['session_id'] ) ) {
272
+ return;
273
  }
274
+
275
+ $user_id = get_current_user_id();
276
+ $session_id = $cookie['session_id'];
277
+
278
+ try {
279
+ WC_Data_Store::load( 'wishlist' )->assign_to_user( $session_id, $user_id );
280
+ } catch ( Exception $e ) {
281
  wc_caught_exception( $e, __FUNCTION__, func_get_args() );
282
  return;
283
  }
292
  * @param int $timestamp Timestamp to expire the cookie.
293
  */
294
  public function update_session_timestamp( $session_id, $timestamp ) {
295
+ try {
296
  WC_Data_Store::load( 'wishlist' )->update_raw(
297
  array( 'expiration' => 'FROM_UNIXTIME(%d)' ),
298
  array( $timestamp ),
299
  array( 'session_id' => '%s' ),
300
  array( $session_id )
301
  );
302
+ } catch ( Exception $e ) {
 
303
  wc_caught_exception( $e, __FUNCTION__, func_get_args() );
304
  return;
305
  }
320
  * @return \YITH_WCWL_Session
321
  * @since 3.0.0
322
  */
323
+ public static function get_instance() {
324
+ if ( is_null( self::$instance ) ) {
325
  self::$instance = new self();
326
  }
327
 
336
  * @return \YITH_WCWL_Session
337
  * @since 3.0.0
338
  */
339
+ function YITH_WCWL_Session() {
340
  return YITH_WCWL_Session::get_instance();
341
  }
includes/class.yith-wcwl-shortcode.php CHANGED
@@ -406,7 +406,7 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
406
  if ( ! $no_interactions && $enable_share && ( $share_facebook_enabled || $share_twitter_enabled || $share_pinterest_enabled || $share_email_enabled || $share_whatsapp_enabled || $share_url_enabled ) ) {
407
  $share_title = apply_filters( 'yith_wcwl_socials_share_title', __( 'Share on:', 'yith-woocommerce-wishlist' ) );
408
  $share_link_url = apply_filters( 'yith_wcwl_shortcode_share_link_url', $wishlist->get_url(), $wishlist );
409
- $share_links_title = apply_filters( 'plugin_text', urlencode( get_option( 'yith_wcwl_socials_title' ) ) );
410
  $share_summary = urlencode( str_replace( '%wishlist_url%', $share_link_url, get_option( 'yith_wcwl_socials_text' ) ) );
411
 
412
  $share_atts = array(
@@ -418,7 +418,7 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
418
  'share_url_enabled' => $share_url_enabled,
419
  'share_title' => $share_title,
420
  'share_link_url' => $share_link_url,
421
- 'share_link_title' => $share_links_title,
422
  );
423
 
424
  if ( $share_facebook_enabled ) {
@@ -688,8 +688,8 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
688
 
689
  // set fragment options.
690
  $atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'add_to_wishlist' );
691
- $atts['icon'] = $icon_html;
692
- $atts['heading_icon'] = $heading_icon_html;
693
 
694
  $template = yith_wcwl_get_template( 'add-to-wishlist.php', $atts, true );
695
 
406
  if ( ! $no_interactions && $enable_share && ( $share_facebook_enabled || $share_twitter_enabled || $share_pinterest_enabled || $share_email_enabled || $share_whatsapp_enabled || $share_url_enabled ) ) {
407
  $share_title = apply_filters( 'yith_wcwl_socials_share_title', __( 'Share on:', 'yith-woocommerce-wishlist' ) );
408
  $share_link_url = apply_filters( 'yith_wcwl_shortcode_share_link_url', $wishlist->get_url(), $wishlist );
409
+ $share_link_title = apply_filters( 'plugin_text', urlencode( get_option( 'yith_wcwl_socials_title' ) ) );
410
  $share_summary = urlencode( str_replace( '%wishlist_url%', $share_link_url, get_option( 'yith_wcwl_socials_text' ) ) );
411
 
412
  $share_atts = array(
418
  'share_url_enabled' => $share_url_enabled,
419
  'share_title' => $share_title,
420
  'share_link_url' => $share_link_url,
421
+ 'share_link_title' => $share_link_title,
422
  );
423
 
424
  if ( $share_facebook_enabled ) {
688
 
689
  // set fragment options.
690
  $atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'add_to_wishlist' );
691
+ $atts['icon'] = apply_filters( 'yith_wcwl_add_to_wishlist_icon_html', $icon_html, $atts );
692
+ $atts['heading_icon'] = apply_filters( 'yith_wcwl_add_to_wishlist_heading_icon_html', $heading_icon_html, $atts );
693
 
694
  $template = yith_wcwl_get_template( 'add-to-wishlist.php', $atts, true );
695
 
includes/class.yith-wcwl-wishlist-item.php CHANGED
@@ -210,7 +210,7 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Item' ) ) {
210
  * @return int Quantity
211
  */
212
  public function get_quantity( $context = 'view' ) {
213
- return intval( $this->get_prop( 'quantity', $context ) );
214
  }
215
 
216
  /**
210
  * @return int Quantity
211
  */
212
  public function get_quantity( $context = 'view' ) {
213
+ return max( 1, intval( $this->get_prop( 'quantity', $context ) ) );
214
  }
215
 
216
  /**
includes/class.yith-wcwl.php CHANGED
@@ -482,6 +482,31 @@ if ( ! class_exists( 'YITH_WCWL' ) ) {
482
  return YITH_WCWL_Wishlist_Factory::get_wishlists( $args );
483
  }
484
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
485
  /**
486
  * Returns details of a wishlist, searching it by wishlist id
487
  *
482
  return YITH_WCWL_Wishlist_Factory::get_wishlists( $args );
483
  }
484
 
485
+ /**
486
+ * Wrapper for \YITH_WCWL::get_wishlists, will return wishlists for current user
487
+ *
488
+ * @return YITH_WCWL_Wishlist[]
489
+ * @since 2.0.0
490
+ */
491
+ public function get_current_user_wishlists() {
492
+ $id = is_user_logged_in() ? get_current_user_id() : YITH_WCWL_Session()->get_session_id();
493
+
494
+ $lists = wp_cache_get( 'user-wishlists-' . $id, 'wishlists' );
495
+
496
+ if ( ! $lists ) {
497
+ $lists = YITH_WCWL_Wishlist_Factory::get_wishlists(
498
+ array(
499
+ 'orderby' => 'dateadded',
500
+ 'order' => 'ASC',
501
+ )
502
+ );
503
+
504
+ wp_cache_set( 'user-wishlists-' . $id, $lists, 'wishlists' );
505
+ }
506
+
507
+ return $lists;
508
+ }
509
+
510
  /**
511
  * Returns details of a wishlist, searching it by wishlist id
512
  *
includes/data-stores/class.yith-wcwl-wishlist-data-store.php CHANGED
@@ -264,6 +264,8 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
264
 
265
  do_action( 'yith_wcwl_before_delete_wishlist', $wishlist->get_id() );
266
 
 
 
267
  // delete wishlist and all its items.
268
  $wpdb->delete( $wpdb->yith_wcwl_items, array( 'wishlist_id' => $id ) );
269
  $wpdb->delete( $wpdb->yith_wcwl_wishlists, array( 'ID' => $id ) );
@@ -434,15 +436,7 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
434
  $sql = $wpdb->prepare( $sql, $sql_args );
435
  }
436
 
437
- // search for cached results
438
- $query_hash = md5( $sql );
439
- $lists = wp_cache_get( 'queried-wishlists-' . $query_hash, 'wishlists' );
440
-
441
- if( ! $lists ) {
442
- $lists = $wpdb->get_col( $sql );
443
-
444
- wp_cache_set( 'queried-wishlists-' . $query_hash, $lists, 'wishlists' );
445
- }
446
 
447
  if( ! empty( $lists ) ){
448
  $lists = array_map( array( 'YITH_WCWL_Wishlist_Factory', 'get_wishlist' ), $lists );
@@ -932,9 +926,20 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
932
  $id = $wishlist ? $wishlist->get_id() : false;
933
  }
934
 
 
 
 
935
  wp_cache_delete( 'wishlist-items-' . $id, 'wishlists' );
936
  wp_cache_delete( 'wishlist-id-' . $id, 'wishlists' );
937
  wp_cache_delete( 'wishlist-token-' . $token, 'wishlists' );
 
 
 
 
 
 
 
 
938
  }
939
  }
940
  }
264
 
265
  do_action( 'yith_wcwl_before_delete_wishlist', $wishlist->get_id() );
266
 
267
+ $this->clear_caches( $wishlist );
268
+
269
  // delete wishlist and all its items.
270
  $wpdb->delete( $wpdb->yith_wcwl_items, array( 'wishlist_id' => $id ) );
271
  $wpdb->delete( $wpdb->yith_wcwl_wishlists, array( 'ID' => $id ) );
436
  $sql = $wpdb->prepare( $sql, $sql_args );
437
  }
438
 
439
+ $lists = $wpdb->get_col( $sql );
 
 
 
 
 
 
 
 
440
 
441
  if( ! empty( $lists ) ){
442
  $lists = array_map( array( 'YITH_WCWL_Wishlist_Factory', 'get_wishlist' ), $lists );
926
  $id = $wishlist ? $wishlist->get_id() : false;
927
  }
928
 
929
+ $user_id = $wishlist ? $wishlist->get_user_id() : false;
930
+ $session_id = $wishlist ? $wishlist->get_session_id() : false;
931
+
932
  wp_cache_delete( 'wishlist-items-' . $id, 'wishlists' );
933
  wp_cache_delete( 'wishlist-id-' . $id, 'wishlists' );
934
  wp_cache_delete( 'wishlist-token-' . $token, 'wishlists' );
935
+
936
+ if ( $user_id ) {
937
+ wp_cache_delete( 'user-wishlists-' . $user_id, 'wishlists' );
938
+ }
939
+
940
+ if ( $session_id ) {
941
+ wp_cache_delete( 'user-wishlists-' . $session_id, 'wishlists' );
942
+ }
943
  }
944
  }
945
  }
includes/functions.yith-wcwl.php CHANGED
@@ -648,7 +648,7 @@ if ( ! function_exists( 'yith_wcwl_is_mobile' ) ) {
648
  function yith_wcwl_is_mobile() {
649
  global $yith_wcwl_is_mobile;
650
 
651
- return wp_is_mobile() || $yith_wcwl_is_mobile;
652
  }
653
  }
654
 
648
  function yith_wcwl_is_mobile() {
649
  global $yith_wcwl_is_mobile;
650
 
651
+ return apply_filters( 'yith_wcwl_is_wishlist_responsive', true ) && ( wp_is_mobile() || $yith_wcwl_is_mobile );
652
  }
653
  }
654
 
init.php CHANGED
@@ -3,13 +3,13 @@
3
  * Plugin Name: YITH WooCommerce Wishlist
4
  * Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/
5
  * Description: <code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the possibility to create, fill, manage and share their wishlists allowing you to analyze their interests and needs to improve your marketing strategies. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce on <strong>YITH</strong></a>
6
- * Version: 3.0.10
7
  * Author: YITH
8
  * Author URI: https://yithemes.com/
9
  * Text Domain: yith-woocommerce-wishlist
10
  * Domain Path: /languages/
11
  * WC requires at least: 2.5.0
12
- * WC tested up to: 4.1.0
13
  *
14
  * @author YITHEMES
15
  * @package YITH WooCommerce Wishlist
3
  * Plugin Name: YITH WooCommerce Wishlist
4
  * Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/
5
  * Description: <code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the possibility to create, fill, manage and share their wishlists allowing you to analyze their interests and needs to improve your marketing strategies. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce on <strong>YITH</strong></a>
6
+ * Version: 3.0.11
7
  * Author: YITH
8
  * Author URI: https://yithemes.com/
9
  * Text Domain: yith-woocommerce-wishlist
10
  * Domain Path: /languages/
11
  * WC requires at least: 2.5.0
12
+ * WC tested up to: 4.2.0
13
  *
14
  * @author YITHEMES
15
  * @package YITH WooCommerce Wishlist
languages/yith-woocommerce-wishlist-da_DK.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-da_DK.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WCWL\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:20+0200\n"
9
  "Last-Translator: Morten Ruus <altombasketball@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
11
  "Language: da_DK\n"
@@ -92,7 +92,7 @@ msgstr ""
92
  #: ../includes/class.yith-wcwl-frontend.php:645,
93
  #: ../includes/class.yith-wcwl-shortcode.php:237,
94
  #: ../plugin-options/wishlist_page-options.php:237,
95
- #: ../templates/wishlist-view-footer-mobile.php:43,
96
  #: ../templates/wishlist-view-footer.php:44
97
  msgid "Add to cart"
98
  msgstr ""
@@ -1503,41 +1503,37 @@ msgstr ""
1503
  msgid "this wishlist link and share it anywhere)"
1504
  msgstr ""
1505
 
1506
- #: ../templates/wishlist-view-footer-mobile.php:41,
1507
  #: ../templates/wishlist-view-footer.php:42
1508
  msgid "Apply this action to all the selected items:"
1509
  msgstr ""
1510
 
1511
- #: ../templates/wishlist-view-footer-mobile.php:46,
1512
  #: ../templates/wishlist-view-footer.php:47
1513
  msgid "Remove from wishlist"
1514
  msgstr ""
1515
 
1516
  #. translators: 1. Wishlist formatted name.
1517
- #: ../templates/wishlist-view-footer-mobile.php:59,
1518
  #: ../templates/wishlist-view-footer.php:63
1519
  msgid "Move to %s"
1520
  msgstr ""
1521
 
1522
- #: ../templates/wishlist-view-footer-mobile.php:63,
1523
  #: ../templates/wishlist-view-footer.php:69
1524
  msgid "Apply"
1525
  msgstr ""
1526
 
1527
- #: ../templates/wishlist-view-footer-mobile.php:71,
1528
  #: ../templates/wishlist-view-footer.php:77
1529
  msgid "Update"
1530
  msgstr ""
1531
 
1532
- #: ../templates/wishlist-view-footer-mobile.php:77,
1533
  #: ../templates/wishlist-view-footer.php:99
1534
  msgid "Add all to cart"
1535
  msgstr ""
1536
 
1537
- #: ../templates/wishlist-view-footer-mobile.php:87
1538
- msgid "Ask for an estimate"
1539
- msgstr "Efterspørg estimat"
1540
-
1541
  #: ../templates/wishlist-view-header.php:41
1542
  msgid "Edit title"
1543
  msgstr "Rediger titel"
@@ -1550,48 +1546,48 @@ msgstr "Gem"
1550
  msgid "Cancel"
1551
  msgstr "Annullere"
1552
 
1553
- #: ../templates/wishlist-view-mobile.php:122
1554
  msgid "Added on:"
1555
  msgstr ""
1556
 
1557
- #: ../templates/wishlist-view-mobile.php:133
1558
  msgid "Price:"
1559
  msgstr ""
1560
 
1561
- #: ../templates/wishlist-view-mobile.php:160
1562
  msgid "Quantity:"
1563
  msgstr ""
1564
 
1565
- #: ../templates/wishlist-view-mobile.php:175
1566
  msgid "Stock:"
1567
  msgstr ""
1568
 
1569
- #: ../templates/wishlist-view-mobile.php:178,
1570
  #: ../templates/wishlist-view.php:224
1571
  msgid "Out of stock"
1572
  msgstr ""
1573
 
1574
- #: ../templates/wishlist-view-mobile.php:178,
1575
  #: ../templates/wishlist-view.php:224
1576
  msgid "In Stock"
1577
  msgstr "På lager"
1578
 
1579
- #: ../templates/wishlist-view-mobile.php:197,
1580
  #: ../templates/wishlist-view.php:257
1581
  msgid "Move"
1582
  msgstr "Flyt"
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:216,
1585
  #: ../templates/wishlist-view.php:277
1586
  msgid "Move to another list &rsaquo;"
1587
  msgstr ""
1588
 
1589
- #: ../templates/wishlist-view-mobile.php:224,
1590
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1591
  msgid "Remove this product"
1592
  msgstr "Fjern denne vare"
1593
 
1594
- #: ../templates/wishlist-view-mobile.php:234,
1595
  #: ../templates/wishlist-view.php:307
1596
  msgid "No products added to the wishlist"
1597
  msgstr ""
@@ -1624,3 +1620,6 @@ msgstr ""
1624
  #: ../templates/wishlist-view.php:287
1625
  msgid "Remove"
1626
  msgstr "Fjern"
 
 
 
5
  "Project-Id-Version: YITH WCWL\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:47+0200\n"
9
  "Last-Translator: Morten Ruus <altombasketball@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
11
  "Language: da_DK\n"
92
  #: ../includes/class.yith-wcwl-frontend.php:645,
93
  #: ../includes/class.yith-wcwl-shortcode.php:237,
94
  #: ../plugin-options/wishlist_page-options.php:237,
95
+ #: ../templates/wishlist-view-footer-mobile.php:44,
96
  #: ../templates/wishlist-view-footer.php:44
97
  msgid "Add to cart"
98
  msgstr ""
1503
  msgid "this wishlist link and share it anywhere)"
1504
  msgstr ""
1505
 
1506
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1507
  #: ../templates/wishlist-view-footer.php:42
1508
  msgid "Apply this action to all the selected items:"
1509
  msgstr ""
1510
 
1511
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1512
  #: ../templates/wishlist-view-footer.php:47
1513
  msgid "Remove from wishlist"
1514
  msgstr ""
1515
 
1516
  #. translators: 1. Wishlist formatted name.
1517
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1518
  #: ../templates/wishlist-view-footer.php:63
1519
  msgid "Move to %s"
1520
  msgstr ""
1521
 
1522
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1523
  #: ../templates/wishlist-view-footer.php:69
1524
  msgid "Apply"
1525
  msgstr ""
1526
 
1527
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1528
  #: ../templates/wishlist-view-footer.php:77
1529
  msgid "Update"
1530
  msgstr ""
1531
 
1532
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1533
  #: ../templates/wishlist-view-footer.php:99
1534
  msgid "Add all to cart"
1535
  msgstr ""
1536
 
 
 
 
 
1537
  #: ../templates/wishlist-view-header.php:41
1538
  msgid "Edit title"
1539
  msgstr "Rediger titel"
1546
  msgid "Cancel"
1547
  msgstr "Annullere"
1548
 
1549
+ #: ../templates/wishlist-view-mobile.php:126
1550
  msgid "Added on:"
1551
  msgstr ""
1552
 
1553
+ #: ../templates/wishlist-view-mobile.php:137
1554
  msgid "Price:"
1555
  msgstr ""
1556
 
1557
+ #: ../templates/wishlist-view-mobile.php:164
1558
  msgid "Quantity:"
1559
  msgstr ""
1560
 
1561
+ #: ../templates/wishlist-view-mobile.php:179
1562
  msgid "Stock:"
1563
  msgstr ""
1564
 
1565
+ #: ../templates/wishlist-view-mobile.php:182,
1566
  #: ../templates/wishlist-view.php:224
1567
  msgid "Out of stock"
1568
  msgstr ""
1569
 
1570
+ #: ../templates/wishlist-view-mobile.php:182,
1571
  #: ../templates/wishlist-view.php:224
1572
  msgid "In Stock"
1573
  msgstr "På lager"
1574
 
1575
+ #: ../templates/wishlist-view-mobile.php:201,
1576
  #: ../templates/wishlist-view.php:257
1577
  msgid "Move"
1578
  msgstr "Flyt"
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:220,
1581
  #: ../templates/wishlist-view.php:277
1582
  msgid "Move to another list &rsaquo;"
1583
  msgstr ""
1584
 
1585
+ #: ../templates/wishlist-view-mobile.php:228,
1586
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1587
  msgid "Remove this product"
1588
  msgstr "Fjern denne vare"
1589
 
1590
+ #: ../templates/wishlist-view-mobile.php:238,
1591
  #: ../templates/wishlist-view.php:307
1592
  msgid "No products added to the wishlist"
1593
  msgstr ""
1620
  #: ../templates/wishlist-view.php:287
1621
  msgid "Remove"
1622
  msgstr "Fjern"
1623
+
1624
+ #~ msgid "Ask for an estimate"
1625
+ #~ msgstr "Efterspørg estimat"
languages/yith-woocommerce-wishlist-de_DE.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-de_DE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:21+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: de_DE\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1522,41 +1522,37 @@ msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
- #: ../templates/wishlist-view-footer-mobile.php:41,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
- #: ../templates/wishlist-view-footer-mobile.php:46,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
- #: ../templates/wishlist-view-footer-mobile.php:59,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:63,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:71,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
- #: ../templates/wishlist-view-footer-mobile.php:77,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
1556
- #: ../templates/wishlist-view-footer-mobile.php:87
1557
- msgid "Ask for an estimate"
1558
- msgstr "Nach einem Angebot Fragen"
1559
-
1560
  #: ../templates/wishlist-view-header.php:41
1561
  msgid "Edit title"
1562
  msgstr "Titel bearbeiten"
@@ -1569,48 +1565,48 @@ msgstr "Speichern"
1569
  msgid "Cancel"
1570
  msgstr "Abbrechen"
1571
 
1572
- #: ../templates/wishlist-view-mobile.php:122
1573
  msgid "Added on:"
1574
  msgstr ""
1575
 
1576
- #: ../templates/wishlist-view-mobile.php:133
1577
  msgid "Price:"
1578
  msgstr ""
1579
 
1580
- #: ../templates/wishlist-view-mobile.php:160
1581
  msgid "Quantity:"
1582
  msgstr ""
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:175
1585
  msgid "Stock:"
1586
  msgstr ""
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:178,
1589
  #: ../templates/wishlist-view.php:224
1590
  msgid "Out of stock"
1591
  msgstr ""
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:178,
1594
  #: ../templates/wishlist-view.php:224
1595
  msgid "In Stock"
1596
  msgstr "Auf Lager"
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:197,
1599
  #: ../templates/wishlist-view.php:257
1600
  msgid "Move"
1601
  msgstr "Verschieben"
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:216,
1604
  #: ../templates/wishlist-view.php:277
1605
  msgid "Move to another list &rsaquo;"
1606
  msgstr ""
1607
 
1608
- #: ../templates/wishlist-view-mobile.php:224,
1609
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1610
  msgid "Remove this product"
1611
  msgstr "Artikel entfernen"
1612
 
1613
- #: ../templates/wishlist-view-mobile.php:234,
1614
  #: ../templates/wishlist-view.php:307
1615
  msgid "No products added to the wishlist"
1616
  msgstr ""
@@ -1643,3 +1639,6 @@ msgstr ""
1643
  #: ../templates/wishlist-view.php:287
1644
  msgid "Remove"
1645
  msgstr "Entfernen"
 
 
 
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:47+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: de_DE\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
 
 
 
 
1556
  #: ../templates/wishlist-view-header.php:41
1557
  msgid "Edit title"
1558
  msgstr "Titel bearbeiten"
1565
  msgid "Cancel"
1566
  msgstr "Abbrechen"
1567
 
1568
+ #: ../templates/wishlist-view-mobile.php:126
1569
  msgid "Added on:"
1570
  msgstr ""
1571
 
1572
+ #: ../templates/wishlist-view-mobile.php:137
1573
  msgid "Price:"
1574
  msgstr ""
1575
 
1576
+ #: ../templates/wishlist-view-mobile.php:164
1577
  msgid "Quantity:"
1578
  msgstr ""
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:179
1581
  msgid "Stock:"
1582
  msgstr ""
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:182,
1585
  #: ../templates/wishlist-view.php:224
1586
  msgid "Out of stock"
1587
  msgstr ""
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:182,
1590
  #: ../templates/wishlist-view.php:224
1591
  msgid "In Stock"
1592
  msgstr "Auf Lager"
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:201,
1595
  #: ../templates/wishlist-view.php:257
1596
  msgid "Move"
1597
  msgstr "Verschieben"
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:220,
1600
  #: ../templates/wishlist-view.php:277
1601
  msgid "Move to another list &rsaquo;"
1602
  msgstr ""
1603
 
1604
+ #: ../templates/wishlist-view-mobile.php:228,
1605
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1606
  msgid "Remove this product"
1607
  msgstr "Artikel entfernen"
1608
 
1609
+ #: ../templates/wishlist-view-mobile.php:238,
1610
  #: ../templates/wishlist-view.php:307
1611
  msgid "No products added to the wishlist"
1612
  msgstr ""
1639
  #: ../templates/wishlist-view.php:287
1640
  msgid "Remove"
1641
  msgstr "Entfernen"
1642
+
1643
+ #~ msgid "Ask for an estimate"
1644
+ #~ msgstr "Nach einem Angebot Fragen"
languages/yith-woocommerce-wishlist-es_AR.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-es_AR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:21+0200\n"
9
  "Last-Translator: YIThemes <support@yithemes.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: es_AR\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1524,41 +1524,37 @@ msgstr ""
1524
  msgid "this wishlist link and share it anywhere)"
1525
  msgstr ""
1526
 
1527
- #: ../templates/wishlist-view-footer-mobile.php:41,
1528
  #: ../templates/wishlist-view-footer.php:42
1529
  msgid "Apply this action to all the selected items:"
1530
  msgstr ""
1531
 
1532
- #: ../templates/wishlist-view-footer-mobile.php:46,
1533
  #: ../templates/wishlist-view-footer.php:47
1534
  msgid "Remove from wishlist"
1535
  msgstr ""
1536
 
1537
  #. translators: 1. Wishlist formatted name.
1538
- #: ../templates/wishlist-view-footer-mobile.php:59,
1539
  #: ../templates/wishlist-view-footer.php:63
1540
  msgid "Move to %s"
1541
  msgstr ""
1542
 
1543
- #: ../templates/wishlist-view-footer-mobile.php:63,
1544
  #: ../templates/wishlist-view-footer.php:69
1545
  msgid "Apply"
1546
  msgstr ""
1547
 
1548
- #: ../templates/wishlist-view-footer-mobile.php:71,
1549
  #: ../templates/wishlist-view-footer.php:77
1550
  msgid "Update"
1551
  msgstr ""
1552
 
1553
- #: ../templates/wishlist-view-footer-mobile.php:77,
1554
  #: ../templates/wishlist-view-footer.php:99
1555
  msgid "Add all to cart"
1556
  msgstr ""
1557
 
1558
- #: ../templates/wishlist-view-footer-mobile.php:87
1559
- msgid "Ask for an estimate"
1560
- msgstr ""
1561
-
1562
  #: ../templates/wishlist-view-header.php:41
1563
  msgid "Edit title"
1564
  msgstr "Título de la Lista de deseos"
@@ -1571,48 +1567,48 @@ msgstr ""
1571
  msgid "Cancel"
1572
  msgstr ""
1573
 
1574
- #: ../templates/wishlist-view-mobile.php:122
1575
  msgid "Added on:"
1576
  msgstr ""
1577
 
1578
- #: ../templates/wishlist-view-mobile.php:133
1579
  msgid "Price:"
1580
  msgstr ""
1581
 
1582
- #: ../templates/wishlist-view-mobile.php:160
1583
  msgid "Quantity:"
1584
  msgstr ""
1585
 
1586
- #: ../templates/wishlist-view-mobile.php:175
1587
  msgid "Stock:"
1588
  msgstr ""
1589
 
1590
- #: ../templates/wishlist-view-mobile.php:178,
1591
  #: ../templates/wishlist-view.php:224
1592
  msgid "Out of stock"
1593
  msgstr ""
1594
 
1595
- #: ../templates/wishlist-view-mobile.php:178,
1596
  #: ../templates/wishlist-view.php:224
1597
  msgid "In Stock"
1598
  msgstr "¡Disponible!"
1599
 
1600
- #: ../templates/wishlist-view-mobile.php:197,
1601
  #: ../templates/wishlist-view.php:257
1602
  msgid "Move"
1603
  msgstr ""
1604
 
1605
- #: ../templates/wishlist-view-mobile.php:216,
1606
  #: ../templates/wishlist-view.php:277
1607
  msgid "Move to another list &rsaquo;"
1608
  msgstr ""
1609
 
1610
- #: ../templates/wishlist-view-mobile.php:224,
1611
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1612
  msgid "Remove this product"
1613
  msgstr "Ya no lo quiero"
1614
 
1615
- #: ../templates/wishlist-view-mobile.php:234,
1616
  #: ../templates/wishlist-view.php:307
1617
  msgid "No products added to the wishlist"
1618
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:47+0200\n"
9
  "Last-Translator: YIThemes <support@yithemes.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: es_AR\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1524
  msgid "this wishlist link and share it anywhere)"
1525
  msgstr ""
1526
 
1527
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1528
  #: ../templates/wishlist-view-footer.php:42
1529
  msgid "Apply this action to all the selected items:"
1530
  msgstr ""
1531
 
1532
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1533
  #: ../templates/wishlist-view-footer.php:47
1534
  msgid "Remove from wishlist"
1535
  msgstr ""
1536
 
1537
  #. translators: 1. Wishlist formatted name.
1538
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1539
  #: ../templates/wishlist-view-footer.php:63
1540
  msgid "Move to %s"
1541
  msgstr ""
1542
 
1543
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1544
  #: ../templates/wishlist-view-footer.php:69
1545
  msgid "Apply"
1546
  msgstr ""
1547
 
1548
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1549
  #: ../templates/wishlist-view-footer.php:77
1550
  msgid "Update"
1551
  msgstr ""
1552
 
1553
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1554
  #: ../templates/wishlist-view-footer.php:99
1555
  msgid "Add all to cart"
1556
  msgstr ""
1557
 
 
 
 
 
1558
  #: ../templates/wishlist-view-header.php:41
1559
  msgid "Edit title"
1560
  msgstr "Título de la Lista de deseos"
1567
  msgid "Cancel"
1568
  msgstr ""
1569
 
1570
+ #: ../templates/wishlist-view-mobile.php:126
1571
  msgid "Added on:"
1572
  msgstr ""
1573
 
1574
+ #: ../templates/wishlist-view-mobile.php:137
1575
  msgid "Price:"
1576
  msgstr ""
1577
 
1578
+ #: ../templates/wishlist-view-mobile.php:164
1579
  msgid "Quantity:"
1580
  msgstr ""
1581
 
1582
+ #: ../templates/wishlist-view-mobile.php:179
1583
  msgid "Stock:"
1584
  msgstr ""
1585
 
1586
+ #: ../templates/wishlist-view-mobile.php:182,
1587
  #: ../templates/wishlist-view.php:224
1588
  msgid "Out of stock"
1589
  msgstr ""
1590
 
1591
+ #: ../templates/wishlist-view-mobile.php:182,
1592
  #: ../templates/wishlist-view.php:224
1593
  msgid "In Stock"
1594
  msgstr "¡Disponible!"
1595
 
1596
+ #: ../templates/wishlist-view-mobile.php:201,
1597
  #: ../templates/wishlist-view.php:257
1598
  msgid "Move"
1599
  msgstr ""
1600
 
1601
+ #: ../templates/wishlist-view-mobile.php:220,
1602
  #: ../templates/wishlist-view.php:277
1603
  msgid "Move to another list &rsaquo;"
1604
  msgstr ""
1605
 
1606
+ #: ../templates/wishlist-view-mobile.php:228,
1607
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1608
  msgid "Remove this product"
1609
  msgstr "Ya no lo quiero"
1610
 
1611
+ #: ../templates/wishlist-view-mobile.php:238,
1612
  #: ../templates/wishlist-view.php:307
1613
  msgid "No products added to the wishlist"
1614
  msgstr ""
languages/yith-woocommerce-wishlist-es_ES.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-es_ES.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:21+0200\n"
9
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: es_ES\n"
@@ -99,7 +99,7 @@ msgstr "Producto añadido al carrito con éxito"
99
  #: ../includes/class.yith-wcwl-frontend.php:645,
100
  #: ../includes/class.yith-wcwl-shortcode.php:237,
101
  #: ../plugin-options/wishlist_page-options.php:237,
102
- #: ../templates/wishlist-view-footer-mobile.php:43,
103
  #: ../templates/wishlist-view-footer.php:44
104
  msgid "Add to cart"
105
  msgstr "Añadir al carrito"
@@ -1665,41 +1665,37 @@ msgstr "copiar"
1665
  msgid "this wishlist link and share it anywhere)"
1666
  msgstr "este enlace a la lista de deseos y compártelo en cualquier parte)"
1667
 
1668
- #: ../templates/wishlist-view-footer-mobile.php:41,
1669
  #: ../templates/wishlist-view-footer.php:42
1670
  msgid "Apply this action to all the selected items:"
1671
  msgstr "Aplicar esta acción a todos los artículos seleccionados:"
1672
 
1673
- #: ../templates/wishlist-view-footer-mobile.php:46,
1674
  #: ../templates/wishlist-view-footer.php:47
1675
  msgid "Remove from wishlist"
1676
  msgstr "Eliminar de la lista de deseos"
1677
 
1678
  #. translators: 1. Wishlist formatted name.
1679
- #: ../templates/wishlist-view-footer-mobile.php:59,
1680
  #: ../templates/wishlist-view-footer.php:63
1681
  msgid "Move to %s"
1682
  msgstr ""
1683
 
1684
- #: ../templates/wishlist-view-footer-mobile.php:63,
1685
  #: ../templates/wishlist-view-footer.php:69
1686
  msgid "Apply"
1687
  msgstr "Aplicar"
1688
 
1689
- #: ../templates/wishlist-view-footer-mobile.php:71,
1690
  #: ../templates/wishlist-view-footer.php:77
1691
  msgid "Update"
1692
  msgstr "Actualizar"
1693
 
1694
- #: ../templates/wishlist-view-footer-mobile.php:77,
1695
  #: ../templates/wishlist-view-footer.php:99
1696
  msgid "Add all to cart"
1697
  msgstr "Añadir todo al carrito"
1698
 
1699
- #: ../templates/wishlist-view-footer-mobile.php:87
1700
- msgid "Ask for an estimate"
1701
- msgstr "Solicitar una estimación"
1702
-
1703
  #: ../templates/wishlist-view-header.php:41
1704
  msgid "Edit title"
1705
  msgstr "Editar título"
@@ -1712,48 +1708,48 @@ msgstr "Guardar"
1712
  msgid "Cancel"
1713
  msgstr "Cancelar"
1714
 
1715
- #: ../templates/wishlist-view-mobile.php:122
1716
  msgid "Added on:"
1717
  msgstr "Añadido el:"
1718
 
1719
- #: ../templates/wishlist-view-mobile.php:133
1720
  msgid "Price:"
1721
  msgstr "Precio:"
1722
 
1723
- #: ../templates/wishlist-view-mobile.php:160
1724
  msgid "Quantity:"
1725
  msgstr "Cantidad:"
1726
 
1727
- #: ../templates/wishlist-view-mobile.php:175
1728
  msgid "Stock:"
1729
  msgstr "En inventario:"
1730
 
1731
- #: ../templates/wishlist-view-mobile.php:178,
1732
  #: ../templates/wishlist-view.php:224
1733
  msgid "Out of stock"
1734
  msgstr "Agotado"
1735
 
1736
- #: ../templates/wishlist-view-mobile.php:178,
1737
  #: ../templates/wishlist-view.php:224
1738
  msgid "In Stock"
1739
  msgstr "En stock"
1740
 
1741
- #: ../templates/wishlist-view-mobile.php:197,
1742
  #: ../templates/wishlist-view.php:257
1743
  msgid "Move"
1744
  msgstr "Mover"
1745
 
1746
- #: ../templates/wishlist-view-mobile.php:216,
1747
  #: ../templates/wishlist-view.php:277
1748
  msgid "Move to another list &rsaquo;"
1749
  msgstr "Mover a otra lista &rsaquo;"
1750
 
1751
- #: ../templates/wishlist-view-mobile.php:224,
1752
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1753
  msgid "Remove this product"
1754
  msgstr "Eliminar este producto"
1755
 
1756
- #: ../templates/wishlist-view-mobile.php:234,
1757
  #: ../templates/wishlist-view.php:307
1758
  msgid "No products added to the wishlist"
1759
  msgstr "No se han añadido productos a la lista de deseos"
@@ -1786,3 +1782,6 @@ msgstr "Añadido el: %s"
1786
  #: ../templates/wishlist-view.php:287
1787
  msgid "Remove"
1788
  msgstr "Quitar"
 
 
 
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:47+0200\n"
9
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: es_ES\n"
99
  #: ../includes/class.yith-wcwl-frontend.php:645,
100
  #: ../includes/class.yith-wcwl-shortcode.php:237,
101
  #: ../plugin-options/wishlist_page-options.php:237,
102
+ #: ../templates/wishlist-view-footer-mobile.php:44,
103
  #: ../templates/wishlist-view-footer.php:44
104
  msgid "Add to cart"
105
  msgstr "Añadir al carrito"
1665
  msgid "this wishlist link and share it anywhere)"
1666
  msgstr "este enlace a la lista de deseos y compártelo en cualquier parte)"
1667
 
1668
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1669
  #: ../templates/wishlist-view-footer.php:42
1670
  msgid "Apply this action to all the selected items:"
1671
  msgstr "Aplicar esta acción a todos los artículos seleccionados:"
1672
 
1673
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1674
  #: ../templates/wishlist-view-footer.php:47
1675
  msgid "Remove from wishlist"
1676
  msgstr "Eliminar de la lista de deseos"
1677
 
1678
  #. translators: 1. Wishlist formatted name.
1679
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1680
  #: ../templates/wishlist-view-footer.php:63
1681
  msgid "Move to %s"
1682
  msgstr ""
1683
 
1684
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1685
  #: ../templates/wishlist-view-footer.php:69
1686
  msgid "Apply"
1687
  msgstr "Aplicar"
1688
 
1689
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1690
  #: ../templates/wishlist-view-footer.php:77
1691
  msgid "Update"
1692
  msgstr "Actualizar"
1693
 
1694
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1695
  #: ../templates/wishlist-view-footer.php:99
1696
  msgid "Add all to cart"
1697
  msgstr "Añadir todo al carrito"
1698
 
 
 
 
 
1699
  #: ../templates/wishlist-view-header.php:41
1700
  msgid "Edit title"
1701
  msgstr "Editar título"
1708
  msgid "Cancel"
1709
  msgstr "Cancelar"
1710
 
1711
+ #: ../templates/wishlist-view-mobile.php:126
1712
  msgid "Added on:"
1713
  msgstr "Añadido el:"
1714
 
1715
+ #: ../templates/wishlist-view-mobile.php:137
1716
  msgid "Price:"
1717
  msgstr "Precio:"
1718
 
1719
+ #: ../templates/wishlist-view-mobile.php:164
1720
  msgid "Quantity:"
1721
  msgstr "Cantidad:"
1722
 
1723
+ #: ../templates/wishlist-view-mobile.php:179
1724
  msgid "Stock:"
1725
  msgstr "En inventario:"
1726
 
1727
+ #: ../templates/wishlist-view-mobile.php:182,
1728
  #: ../templates/wishlist-view.php:224
1729
  msgid "Out of stock"
1730
  msgstr "Agotado"
1731
 
1732
+ #: ../templates/wishlist-view-mobile.php:182,
1733
  #: ../templates/wishlist-view.php:224
1734
  msgid "In Stock"
1735
  msgstr "En stock"
1736
 
1737
+ #: ../templates/wishlist-view-mobile.php:201,
1738
  #: ../templates/wishlist-view.php:257
1739
  msgid "Move"
1740
  msgstr "Mover"
1741
 
1742
+ #: ../templates/wishlist-view-mobile.php:220,
1743
  #: ../templates/wishlist-view.php:277
1744
  msgid "Move to another list &rsaquo;"
1745
  msgstr "Mover a otra lista &rsaquo;"
1746
 
1747
+ #: ../templates/wishlist-view-mobile.php:228,
1748
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1749
  msgid "Remove this product"
1750
  msgstr "Eliminar este producto"
1751
 
1752
+ #: ../templates/wishlist-view-mobile.php:238,
1753
  #: ../templates/wishlist-view.php:307
1754
  msgid "No products added to the wishlist"
1755
  msgstr "No se han añadido productos a la lista de deseos"
1782
  #: ../templates/wishlist-view.php:287
1783
  msgid "Remove"
1784
  msgstr "Quitar"
1785
+
1786
+ #~ msgid "Ask for an estimate"
1787
+ #~ msgstr "Solicitar una estimación"
languages/yith-woocommerce-wishlist-es_MX.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-es_MX.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:21+0200\n"
9
  "Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: es_MX\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1522,41 +1522,37 @@ msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
- #: ../templates/wishlist-view-footer-mobile.php:41,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
- #: ../templates/wishlist-view-footer-mobile.php:46,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
- #: ../templates/wishlist-view-footer-mobile.php:59,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:63,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:71,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
- #: ../templates/wishlist-view-footer-mobile.php:77,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
1556
- #: ../templates/wishlist-view-footer-mobile.php:87
1557
- msgid "Ask for an estimate"
1558
- msgstr ""
1559
-
1560
  #: ../templates/wishlist-view-header.php:41
1561
  msgid "Edit title"
1562
  msgstr "Título de la Lista de deseos"
@@ -1569,48 +1565,48 @@ msgstr ""
1569
  msgid "Cancel"
1570
  msgstr ""
1571
 
1572
- #: ../templates/wishlist-view-mobile.php:122
1573
  msgid "Added on:"
1574
  msgstr ""
1575
 
1576
- #: ../templates/wishlist-view-mobile.php:133
1577
  msgid "Price:"
1578
  msgstr ""
1579
 
1580
- #: ../templates/wishlist-view-mobile.php:160
1581
  msgid "Quantity:"
1582
  msgstr ""
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:175
1585
  msgid "Stock:"
1586
  msgstr ""
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:178,
1589
  #: ../templates/wishlist-view.php:224
1590
  msgid "Out of stock"
1591
  msgstr ""
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:178,
1594
  #: ../templates/wishlist-view.php:224
1595
  msgid "In Stock"
1596
  msgstr "Disponilbe."
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:197,
1599
  #: ../templates/wishlist-view.php:257
1600
  msgid "Move"
1601
  msgstr ""
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:216,
1604
  #: ../templates/wishlist-view.php:277
1605
  msgid "Move to another list &rsaquo;"
1606
  msgstr ""
1607
 
1608
- #: ../templates/wishlist-view-mobile.php:224,
1609
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1610
  msgid "Remove this product"
1611
  msgstr "Remover este producto"
1612
 
1613
- #: ../templates/wishlist-view-mobile.php:234,
1614
  #: ../templates/wishlist-view.php:307
1615
  msgid "No products added to the wishlist"
1616
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:47+0200\n"
9
  "Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: es_MX\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
 
 
 
 
1556
  #: ../templates/wishlist-view-header.php:41
1557
  msgid "Edit title"
1558
  msgstr "Título de la Lista de deseos"
1565
  msgid "Cancel"
1566
  msgstr ""
1567
 
1568
+ #: ../templates/wishlist-view-mobile.php:126
1569
  msgid "Added on:"
1570
  msgstr ""
1571
 
1572
+ #: ../templates/wishlist-view-mobile.php:137
1573
  msgid "Price:"
1574
  msgstr ""
1575
 
1576
+ #: ../templates/wishlist-view-mobile.php:164
1577
  msgid "Quantity:"
1578
  msgstr ""
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:179
1581
  msgid "Stock:"
1582
  msgstr ""
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:182,
1585
  #: ../templates/wishlist-view.php:224
1586
  msgid "Out of stock"
1587
  msgstr ""
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:182,
1590
  #: ../templates/wishlist-view.php:224
1591
  msgid "In Stock"
1592
  msgstr "Disponilbe."
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:201,
1595
  #: ../templates/wishlist-view.php:257
1596
  msgid "Move"
1597
  msgstr ""
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:220,
1600
  #: ../templates/wishlist-view.php:277
1601
  msgid "Move to another list &rsaquo;"
1602
  msgstr ""
1603
 
1604
+ #: ../templates/wishlist-view-mobile.php:228,
1605
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1606
  msgid "Remove this product"
1607
  msgstr "Remover este producto"
1608
 
1609
+ #: ../templates/wishlist-view-mobile.php:238,
1610
  #: ../templates/wishlist-view.php:307
1611
  msgid "No products added to the wishlist"
1612
  msgstr ""
languages/yith-woocommerce-wishlist-fa_IR.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-fa_IR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:21+0200\n"
9
  "Last-Translator: Am!n <amin.pe94@gmail.com>\n"
10
  "Language-Team: YITH - translated to persian by dornaweb <info@dornaweb.com>\n"
11
  "Language: fa\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1524,41 +1524,37 @@ msgstr ""
1524
  msgid "this wishlist link and share it anywhere)"
1525
  msgstr ""
1526
 
1527
- #: ../templates/wishlist-view-footer-mobile.php:41,
1528
  #: ../templates/wishlist-view-footer.php:42
1529
  msgid "Apply this action to all the selected items:"
1530
  msgstr ""
1531
 
1532
- #: ../templates/wishlist-view-footer-mobile.php:46,
1533
  #: ../templates/wishlist-view-footer.php:47
1534
  msgid "Remove from wishlist"
1535
  msgstr ""
1536
 
1537
  #. translators: 1. Wishlist formatted name.
1538
- #: ../templates/wishlist-view-footer-mobile.php:59,
1539
  #: ../templates/wishlist-view-footer.php:63
1540
  msgid "Move to %s"
1541
  msgstr ""
1542
 
1543
- #: ../templates/wishlist-view-footer-mobile.php:63,
1544
  #: ../templates/wishlist-view-footer.php:69
1545
  msgid "Apply"
1546
  msgstr ""
1547
 
1548
- #: ../templates/wishlist-view-footer-mobile.php:71,
1549
  #: ../templates/wishlist-view-footer.php:77
1550
  msgid "Update"
1551
  msgstr ""
1552
 
1553
- #: ../templates/wishlist-view-footer-mobile.php:77,
1554
  #: ../templates/wishlist-view-footer.php:99
1555
  msgid "Add all to cart"
1556
  msgstr ""
1557
 
1558
- #: ../templates/wishlist-view-footer-mobile.php:87
1559
- msgid "Ask for an estimate"
1560
- msgstr ""
1561
-
1562
  #: ../templates/wishlist-view-header.php:41
1563
  msgid "Edit title"
1564
  msgstr "ویرایش عنوان"
@@ -1571,48 +1567,48 @@ msgstr "ذخیره"
1571
  msgid "Cancel"
1572
  msgstr "لغو"
1573
 
1574
- #: ../templates/wishlist-view-mobile.php:122
1575
  msgid "Added on:"
1576
  msgstr ""
1577
 
1578
- #: ../templates/wishlist-view-mobile.php:133
1579
  msgid "Price:"
1580
  msgstr ""
1581
 
1582
- #: ../templates/wishlist-view-mobile.php:160
1583
  msgid "Quantity:"
1584
  msgstr ""
1585
 
1586
- #: ../templates/wishlist-view-mobile.php:175
1587
  msgid "Stock:"
1588
  msgstr ""
1589
 
1590
- #: ../templates/wishlist-view-mobile.php:178,
1591
  #: ../templates/wishlist-view.php:224
1592
  msgid "Out of stock"
1593
  msgstr ""
1594
 
1595
- #: ../templates/wishlist-view-mobile.php:178,
1596
  #: ../templates/wishlist-view.php:224
1597
  msgid "In Stock"
1598
  msgstr "موجود"
1599
 
1600
- #: ../templates/wishlist-view-mobile.php:197,
1601
  #: ../templates/wishlist-view.php:257
1602
  msgid "Move"
1603
  msgstr ""
1604
 
1605
- #: ../templates/wishlist-view-mobile.php:216,
1606
  #: ../templates/wishlist-view.php:277
1607
  msgid "Move to another list &rsaquo;"
1608
  msgstr ""
1609
 
1610
- #: ../templates/wishlist-view-mobile.php:224,
1611
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1612
  msgid "Remove this product"
1613
  msgstr "حذف این محصول"
1614
 
1615
- #: ../templates/wishlist-view-mobile.php:234,
1616
  #: ../templates/wishlist-view.php:307
1617
  msgid "No products added to the wishlist"
1618
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:48+0200\n"
9
  "Last-Translator: Am!n <amin.pe94@gmail.com>\n"
10
  "Language-Team: YITH - translated to persian by dornaweb <info@dornaweb.com>\n"
11
  "Language: fa\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1524
  msgid "this wishlist link and share it anywhere)"
1525
  msgstr ""
1526
 
1527
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1528
  #: ../templates/wishlist-view-footer.php:42
1529
  msgid "Apply this action to all the selected items:"
1530
  msgstr ""
1531
 
1532
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1533
  #: ../templates/wishlist-view-footer.php:47
1534
  msgid "Remove from wishlist"
1535
  msgstr ""
1536
 
1537
  #. translators: 1. Wishlist formatted name.
1538
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1539
  #: ../templates/wishlist-view-footer.php:63
1540
  msgid "Move to %s"
1541
  msgstr ""
1542
 
1543
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1544
  #: ../templates/wishlist-view-footer.php:69
1545
  msgid "Apply"
1546
  msgstr ""
1547
 
1548
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1549
  #: ../templates/wishlist-view-footer.php:77
1550
  msgid "Update"
1551
  msgstr ""
1552
 
1553
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1554
  #: ../templates/wishlist-view-footer.php:99
1555
  msgid "Add all to cart"
1556
  msgstr ""
1557
 
 
 
 
 
1558
  #: ../templates/wishlist-view-header.php:41
1559
  msgid "Edit title"
1560
  msgstr "ویرایش عنوان"
1567
  msgid "Cancel"
1568
  msgstr "لغو"
1569
 
1570
+ #: ../templates/wishlist-view-mobile.php:126
1571
  msgid "Added on:"
1572
  msgstr ""
1573
 
1574
+ #: ../templates/wishlist-view-mobile.php:137
1575
  msgid "Price:"
1576
  msgstr ""
1577
 
1578
+ #: ../templates/wishlist-view-mobile.php:164
1579
  msgid "Quantity:"
1580
  msgstr ""
1581
 
1582
+ #: ../templates/wishlist-view-mobile.php:179
1583
  msgid "Stock:"
1584
  msgstr ""
1585
 
1586
+ #: ../templates/wishlist-view-mobile.php:182,
1587
  #: ../templates/wishlist-view.php:224
1588
  msgid "Out of stock"
1589
  msgstr ""
1590
 
1591
+ #: ../templates/wishlist-view-mobile.php:182,
1592
  #: ../templates/wishlist-view.php:224
1593
  msgid "In Stock"
1594
  msgstr "موجود"
1595
 
1596
+ #: ../templates/wishlist-view-mobile.php:201,
1597
  #: ../templates/wishlist-view.php:257
1598
  msgid "Move"
1599
  msgstr ""
1600
 
1601
+ #: ../templates/wishlist-view-mobile.php:220,
1602
  #: ../templates/wishlist-view.php:277
1603
  msgid "Move to another list &rsaquo;"
1604
  msgstr ""
1605
 
1606
+ #: ../templates/wishlist-view-mobile.php:228,
1607
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1608
  msgid "Remove this product"
1609
  msgstr "حذف این محصول"
1610
 
1611
+ #: ../templates/wishlist-view-mobile.php:238,
1612
  #: ../templates/wishlist-view.php:307
1613
  msgid "No products added to the wishlist"
1614
  msgstr ""
languages/yith-woocommerce-wishlist-fr_FR.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-fr_FR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:21+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: fr_FR\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1522,41 +1522,37 @@ msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
- #: ../templates/wishlist-view-footer-mobile.php:41,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
- #: ../templates/wishlist-view-footer-mobile.php:46,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
- #: ../templates/wishlist-view-footer-mobile.php:59,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:63,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:71,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
- #: ../templates/wishlist-view-footer-mobile.php:77,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
1556
- #: ../templates/wishlist-view-footer-mobile.php:87
1557
- msgid "Ask for an estimate"
1558
- msgstr ""
1559
-
1560
  #: ../templates/wishlist-view-header.php:41
1561
  msgid "Edit title"
1562
  msgstr "Titre de la Wishlist"
@@ -1569,48 +1565,48 @@ msgstr ""
1569
  msgid "Cancel"
1570
  msgstr ""
1571
 
1572
- #: ../templates/wishlist-view-mobile.php:122
1573
  msgid "Added on:"
1574
  msgstr ""
1575
 
1576
- #: ../templates/wishlist-view-mobile.php:133
1577
  msgid "Price:"
1578
  msgstr ""
1579
 
1580
- #: ../templates/wishlist-view-mobile.php:160
1581
  msgid "Quantity:"
1582
  msgstr ""
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:175
1585
  msgid "Stock:"
1586
  msgstr ""
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:178,
1589
  #: ../templates/wishlist-view.php:224
1590
  msgid "Out of stock"
1591
  msgstr ""
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:178,
1594
  #: ../templates/wishlist-view.php:224
1595
  msgid "In Stock"
1596
  msgstr "En stock"
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:197,
1599
  #: ../templates/wishlist-view.php:257
1600
  msgid "Move"
1601
  msgstr ""
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:216,
1604
  #: ../templates/wishlist-view.php:277
1605
  msgid "Move to another list &rsaquo;"
1606
  msgstr ""
1607
 
1608
- #: ../templates/wishlist-view-mobile.php:224,
1609
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1610
  msgid "Remove this product"
1611
  msgstr "Enlever ce produit"
1612
 
1613
- #: ../templates/wishlist-view-mobile.php:234,
1614
  #: ../templates/wishlist-view.php:307
1615
  msgid "No products added to the wishlist"
1616
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:48+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: fr_FR\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
 
 
 
 
1556
  #: ../templates/wishlist-view-header.php:41
1557
  msgid "Edit title"
1558
  msgstr "Titre de la Wishlist"
1565
  msgid "Cancel"
1566
  msgstr ""
1567
 
1568
+ #: ../templates/wishlist-view-mobile.php:126
1569
  msgid "Added on:"
1570
  msgstr ""
1571
 
1572
+ #: ../templates/wishlist-view-mobile.php:137
1573
  msgid "Price:"
1574
  msgstr ""
1575
 
1576
+ #: ../templates/wishlist-view-mobile.php:164
1577
  msgid "Quantity:"
1578
  msgstr ""
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:179
1581
  msgid "Stock:"
1582
  msgstr ""
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:182,
1585
  #: ../templates/wishlist-view.php:224
1586
  msgid "Out of stock"
1587
  msgstr ""
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:182,
1590
  #: ../templates/wishlist-view.php:224
1591
  msgid "In Stock"
1592
  msgstr "En stock"
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:201,
1595
  #: ../templates/wishlist-view.php:257
1596
  msgid "Move"
1597
  msgstr ""
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:220,
1600
  #: ../templates/wishlist-view.php:277
1601
  msgid "Move to another list &rsaquo;"
1602
  msgstr ""
1603
 
1604
+ #: ../templates/wishlist-view-mobile.php:228,
1605
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1606
  msgid "Remove this product"
1607
  msgstr "Enlever ce produit"
1608
 
1609
+ #: ../templates/wishlist-view-mobile.php:238,
1610
  #: ../templates/wishlist-view.php:307
1611
  msgid "No products added to the wishlist"
1612
  msgstr ""
languages/yith-woocommerce-wishlist-he_IL.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-he_IL.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:21+0200\n"
9
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: he_IL\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1522,41 +1522,37 @@ msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
- #: ../templates/wishlist-view-footer-mobile.php:41,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
- #: ../templates/wishlist-view-footer-mobile.php:46,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
- #: ../templates/wishlist-view-footer-mobile.php:59,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:63,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:71,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
- #: ../templates/wishlist-view-footer-mobile.php:77,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
1556
- #: ../templates/wishlist-view-footer-mobile.php:87
1557
- msgid "Ask for an estimate"
1558
- msgstr ""
1559
-
1560
  #: ../templates/wishlist-view-header.php:41
1561
  msgid "Edit title"
1562
  msgstr "כותרת רשימת משאלות"
@@ -1569,48 +1565,48 @@ msgstr ""
1569
  msgid "Cancel"
1570
  msgstr ""
1571
 
1572
- #: ../templates/wishlist-view-mobile.php:122
1573
  msgid "Added on:"
1574
  msgstr ""
1575
 
1576
- #: ../templates/wishlist-view-mobile.php:133
1577
  msgid "Price:"
1578
  msgstr ""
1579
 
1580
- #: ../templates/wishlist-view-mobile.php:160
1581
  msgid "Quantity:"
1582
  msgstr ""
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:175
1585
  msgid "Stock:"
1586
  msgstr ""
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:178,
1589
  #: ../templates/wishlist-view.php:224
1590
  msgid "Out of stock"
1591
  msgstr ""
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:178,
1594
  #: ../templates/wishlist-view.php:224
1595
  msgid "In Stock"
1596
  msgstr "קיים במלאי"
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:197,
1599
  #: ../templates/wishlist-view.php:257
1600
  msgid "Move"
1601
  msgstr ""
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:216,
1604
  #: ../templates/wishlist-view.php:277
1605
  msgid "Move to another list &rsaquo;"
1606
  msgstr ""
1607
 
1608
- #: ../templates/wishlist-view-mobile.php:224,
1609
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1610
  msgid "Remove this product"
1611
  msgstr "הסרת מוצר מהרשימה"
1612
 
1613
- #: ../templates/wishlist-view-mobile.php:234,
1614
  #: ../templates/wishlist-view.php:307
1615
  msgid "No products added to the wishlist"
1616
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:48+0200\n"
9
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: he_IL\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
 
 
 
 
1556
  #: ../templates/wishlist-view-header.php:41
1557
  msgid "Edit title"
1558
  msgstr "כותרת רשימת משאלות"
1565
  msgid "Cancel"
1566
  msgstr ""
1567
 
1568
+ #: ../templates/wishlist-view-mobile.php:126
1569
  msgid "Added on:"
1570
  msgstr ""
1571
 
1572
+ #: ../templates/wishlist-view-mobile.php:137
1573
  msgid "Price:"
1574
  msgstr ""
1575
 
1576
+ #: ../templates/wishlist-view-mobile.php:164
1577
  msgid "Quantity:"
1578
  msgstr ""
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:179
1581
  msgid "Stock:"
1582
  msgstr ""
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:182,
1585
  #: ../templates/wishlist-view.php:224
1586
  msgid "Out of stock"
1587
  msgstr ""
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:182,
1590
  #: ../templates/wishlist-view.php:224
1591
  msgid "In Stock"
1592
  msgstr "קיים במלאי"
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:201,
1595
  #: ../templates/wishlist-view.php:257
1596
  msgid "Move"
1597
  msgstr ""
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:220,
1600
  #: ../templates/wishlist-view.php:277
1601
  msgid "Move to another list &rsaquo;"
1602
  msgstr ""
1603
 
1604
+ #: ../templates/wishlist-view-mobile.php:228,
1605
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1606
  msgid "Remove this product"
1607
  msgstr "הסרת מוצר מהרשימה"
1608
 
1609
+ #: ../templates/wishlist-view-mobile.php:238,
1610
  #: ../templates/wishlist-view.php:307
1611
  msgid "No products added to the wishlist"
1612
  msgstr ""
languages/yith-woocommerce-wishlist-hr.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-hr.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:22+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: hr_HR\n"
@@ -96,7 +96,7 @@ msgstr ""
96
  #: ../includes/class.yith-wcwl-frontend.php:645,
97
  #: ../includes/class.yith-wcwl-shortcode.php:237,
98
  #: ../plugin-options/wishlist_page-options.php:237,
99
- #: ../templates/wishlist-view-footer-mobile.php:43,
100
  #: ../templates/wishlist-view-footer.php:44
101
  msgid "Add to cart"
102
  msgstr ""
@@ -1532,41 +1532,37 @@ msgstr ""
1532
  msgid "this wishlist link and share it anywhere)"
1533
  msgstr ""
1534
 
1535
- #: ../templates/wishlist-view-footer-mobile.php:41,
1536
  #: ../templates/wishlist-view-footer.php:42
1537
  msgid "Apply this action to all the selected items:"
1538
  msgstr ""
1539
 
1540
- #: ../templates/wishlist-view-footer-mobile.php:46,
1541
  #: ../templates/wishlist-view-footer.php:47
1542
  msgid "Remove from wishlist"
1543
  msgstr ""
1544
 
1545
  #. translators: 1. Wishlist formatted name.
1546
- #: ../templates/wishlist-view-footer-mobile.php:59,
1547
  #: ../templates/wishlist-view-footer.php:63
1548
  msgid "Move to %s"
1549
  msgstr ""
1550
 
1551
- #: ../templates/wishlist-view-footer-mobile.php:63,
1552
  #: ../templates/wishlist-view-footer.php:69
1553
  msgid "Apply"
1554
  msgstr ""
1555
 
1556
- #: ../templates/wishlist-view-footer-mobile.php:71,
1557
  #: ../templates/wishlist-view-footer.php:77
1558
  msgid "Update"
1559
  msgstr ""
1560
 
1561
- #: ../templates/wishlist-view-footer-mobile.php:77,
1562
  #: ../templates/wishlist-view-footer.php:99
1563
  msgid "Add all to cart"
1564
  msgstr ""
1565
 
1566
- #: ../templates/wishlist-view-footer-mobile.php:87
1567
- msgid "Ask for an estimate"
1568
- msgstr "Zatraži procjenu cijene"
1569
-
1570
  #: ../templates/wishlist-view-header.php:41
1571
  msgid "Edit title"
1572
  msgstr "Uredi naslov"
@@ -1579,48 +1575,48 @@ msgstr "Spremi"
1579
  msgid "Cancel"
1580
  msgstr "Odustani"
1581
 
1582
- #: ../templates/wishlist-view-mobile.php:122
1583
  msgid "Added on:"
1584
  msgstr ""
1585
 
1586
- #: ../templates/wishlist-view-mobile.php:133
1587
  msgid "Price:"
1588
  msgstr ""
1589
 
1590
- #: ../templates/wishlist-view-mobile.php:160
1591
  msgid "Quantity:"
1592
  msgstr ""
1593
 
1594
- #: ../templates/wishlist-view-mobile.php:175
1595
  msgid "Stock:"
1596
  msgstr ""
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:178,
1599
  #: ../templates/wishlist-view.php:224
1600
  msgid "Out of stock"
1601
  msgstr ""
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:178,
1604
  #: ../templates/wishlist-view.php:224
1605
  msgid "In Stock"
1606
  msgstr "Na zalihi"
1607
 
1608
- #: ../templates/wishlist-view-mobile.php:197,
1609
  #: ../templates/wishlist-view.php:257
1610
  msgid "Move"
1611
  msgstr "Premjesti"
1612
 
1613
- #: ../templates/wishlist-view-mobile.php:216,
1614
  #: ../templates/wishlist-view.php:277
1615
  msgid "Move to another list &rsaquo;"
1616
  msgstr ""
1617
 
1618
- #: ../templates/wishlist-view-mobile.php:224,
1619
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1620
  msgid "Remove this product"
1621
  msgstr "Obriši ovaj proizvod"
1622
 
1623
- #: ../templates/wishlist-view-mobile.php:234,
1624
  #: ../templates/wishlist-view.php:307
1625
  msgid "No products added to the wishlist"
1626
  msgstr ""
@@ -1653,3 +1649,6 @@ msgstr ""
1653
  #: ../templates/wishlist-view.php:287
1654
  msgid "Remove"
1655
  msgstr "Obriši"
 
 
 
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:48+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: hr_HR\n"
96
  #: ../includes/class.yith-wcwl-frontend.php:645,
97
  #: ../includes/class.yith-wcwl-shortcode.php:237,
98
  #: ../plugin-options/wishlist_page-options.php:237,
99
+ #: ../templates/wishlist-view-footer-mobile.php:44,
100
  #: ../templates/wishlist-view-footer.php:44
101
  msgid "Add to cart"
102
  msgstr ""
1532
  msgid "this wishlist link and share it anywhere)"
1533
  msgstr ""
1534
 
1535
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1536
  #: ../templates/wishlist-view-footer.php:42
1537
  msgid "Apply this action to all the selected items:"
1538
  msgstr ""
1539
 
1540
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1541
  #: ../templates/wishlist-view-footer.php:47
1542
  msgid "Remove from wishlist"
1543
  msgstr ""
1544
 
1545
  #. translators: 1. Wishlist formatted name.
1546
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1547
  #: ../templates/wishlist-view-footer.php:63
1548
  msgid "Move to %s"
1549
  msgstr ""
1550
 
1551
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1552
  #: ../templates/wishlist-view-footer.php:69
1553
  msgid "Apply"
1554
  msgstr ""
1555
 
1556
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1557
  #: ../templates/wishlist-view-footer.php:77
1558
  msgid "Update"
1559
  msgstr ""
1560
 
1561
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1562
  #: ../templates/wishlist-view-footer.php:99
1563
  msgid "Add all to cart"
1564
  msgstr ""
1565
 
 
 
 
 
1566
  #: ../templates/wishlist-view-header.php:41
1567
  msgid "Edit title"
1568
  msgstr "Uredi naslov"
1575
  msgid "Cancel"
1576
  msgstr "Odustani"
1577
 
1578
+ #: ../templates/wishlist-view-mobile.php:126
1579
  msgid "Added on:"
1580
  msgstr ""
1581
 
1582
+ #: ../templates/wishlist-view-mobile.php:137
1583
  msgid "Price:"
1584
  msgstr ""
1585
 
1586
+ #: ../templates/wishlist-view-mobile.php:164
1587
  msgid "Quantity:"
1588
  msgstr ""
1589
 
1590
+ #: ../templates/wishlist-view-mobile.php:179
1591
  msgid "Stock:"
1592
  msgstr ""
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:182,
1595
  #: ../templates/wishlist-view.php:224
1596
  msgid "Out of stock"
1597
  msgstr ""
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:182,
1600
  #: ../templates/wishlist-view.php:224
1601
  msgid "In Stock"
1602
  msgstr "Na zalihi"
1603
 
1604
+ #: ../templates/wishlist-view-mobile.php:201,
1605
  #: ../templates/wishlist-view.php:257
1606
  msgid "Move"
1607
  msgstr "Premjesti"
1608
 
1609
+ #: ../templates/wishlist-view-mobile.php:220,
1610
  #: ../templates/wishlist-view.php:277
1611
  msgid "Move to another list &rsaquo;"
1612
  msgstr ""
1613
 
1614
+ #: ../templates/wishlist-view-mobile.php:228,
1615
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1616
  msgid "Remove this product"
1617
  msgstr "Obriši ovaj proizvod"
1618
 
1619
+ #: ../templates/wishlist-view-mobile.php:238,
1620
  #: ../templates/wishlist-view.php:307
1621
  msgid "No products added to the wishlist"
1622
  msgstr ""
1649
  #: ../templates/wishlist-view.php:287
1650
  msgid "Remove"
1651
  msgstr "Obriši"
1652
+
1653
+ #~ msgid "Ask for an estimate"
1654
+ #~ msgstr "Zatraži procjenu cijene"
languages/yith-woocommerce-wishlist-it_IT.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-it_IT.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:22+0200\n"
9
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: it_IT\n"
@@ -99,7 +99,7 @@ msgstr "Prodotto aggiunto al carrello con successo"
99
  #: ../includes/class.yith-wcwl-frontend.php:645,
100
  #: ../includes/class.yith-wcwl-shortcode.php:237,
101
  #: ../plugin-options/wishlist_page-options.php:237,
102
- #: ../templates/wishlist-view-footer-mobile.php:43,
103
  #: ../templates/wishlist-view-footer.php:44
104
  msgid "Add to cart"
105
  msgstr "Aggiungi al carrello"
@@ -1663,41 +1663,37 @@ msgstr "copia"
1663
  msgid "this wishlist link and share it anywhere)"
1664
  msgstr "questo URL e condividilo dove vuoi)"
1665
 
1666
- #: ../templates/wishlist-view-footer-mobile.php:41,
1667
  #: ../templates/wishlist-view-footer.php:42
1668
  msgid "Apply this action to all the selected items:"
1669
  msgstr "Applica a tutti gli articoli selezionati:"
1670
 
1671
- #: ../templates/wishlist-view-footer-mobile.php:46,
1672
  #: ../templates/wishlist-view-footer.php:47
1673
  msgid "Remove from wishlist"
1674
  msgstr "Rimuovi dalla lista"
1675
 
1676
  #. translators: 1. Wishlist formatted name.
1677
- #: ../templates/wishlist-view-footer-mobile.php:59,
1678
  #: ../templates/wishlist-view-footer.php:63
1679
  msgid "Move to %s"
1680
  msgstr ""
1681
 
1682
- #: ../templates/wishlist-view-footer-mobile.php:63,
1683
  #: ../templates/wishlist-view-footer.php:69
1684
  msgid "Apply"
1685
  msgstr "Applica"
1686
 
1687
- #: ../templates/wishlist-view-footer-mobile.php:71,
1688
  #: ../templates/wishlist-view-footer.php:77
1689
  msgid "Update"
1690
  msgstr "Aggiorna"
1691
 
1692
- #: ../templates/wishlist-view-footer-mobile.php:77,
1693
  #: ../templates/wishlist-view-footer.php:99
1694
  msgid "Add all to cart"
1695
  msgstr "Aggiungi tutti al carrello"
1696
 
1697
- #: ../templates/wishlist-view-footer-mobile.php:87
1698
- msgid "Ask for an estimate"
1699
- msgstr "Richiedi un preventivo"
1700
-
1701
  #: ../templates/wishlist-view-header.php:41
1702
  msgid "Edit title"
1703
  msgstr "Modifica titolo"
@@ -1710,48 +1706,48 @@ msgstr "Salva"
1710
  msgid "Cancel"
1711
  msgstr "Annulla"
1712
 
1713
- #: ../templates/wishlist-view-mobile.php:122
1714
  msgid "Added on:"
1715
  msgstr "Aggiunto il:"
1716
 
1717
- #: ../templates/wishlist-view-mobile.php:133
1718
  msgid "Price:"
1719
  msgstr "Prezzo:"
1720
 
1721
- #: ../templates/wishlist-view-mobile.php:160
1722
  msgid "Quantity:"
1723
  msgstr "Quantità:"
1724
 
1725
- #: ../templates/wishlist-view-mobile.php:175
1726
  msgid "Stock:"
1727
  msgstr "Disponibilità in magazzino:"
1728
 
1729
- #: ../templates/wishlist-view-mobile.php:178,
1730
  #: ../templates/wishlist-view.php:224
1731
  msgid "Out of stock"
1732
  msgstr "Esaurito"
1733
 
1734
- #: ../templates/wishlist-view-mobile.php:178,
1735
  #: ../templates/wishlist-view.php:224
1736
  msgid "In Stock"
1737
  msgstr "Disponibile"
1738
 
1739
- #: ../templates/wishlist-view-mobile.php:197,
1740
  #: ../templates/wishlist-view.php:257
1741
  msgid "Move"
1742
  msgstr "Sposta"
1743
 
1744
- #: ../templates/wishlist-view-mobile.php:216,
1745
  #: ../templates/wishlist-view.php:277
1746
  msgid "Move to another list &rsaquo;"
1747
  msgstr "Sposta in un'altra lista &rsaquo;"
1748
 
1749
- #: ../templates/wishlist-view-mobile.php:224,
1750
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1751
  msgid "Remove this product"
1752
  msgstr "Rimuovi questo prodotto"
1753
 
1754
- #: ../templates/wishlist-view-mobile.php:234,
1755
  #: ../templates/wishlist-view.php:307
1756
  msgid "No products added to the wishlist"
1757
  msgstr "Non è stato ancora aggiunto nessun prodotto alla lista"
@@ -1784,3 +1780,6 @@ msgstr "Aggiunto il: %s"
1784
  #: ../templates/wishlist-view.php:287
1785
  msgid "Remove"
1786
  msgstr "Rimuovi"
 
 
 
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:48+0200\n"
9
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: it_IT\n"
99
  #: ../includes/class.yith-wcwl-frontend.php:645,
100
  #: ../includes/class.yith-wcwl-shortcode.php:237,
101
  #: ../plugin-options/wishlist_page-options.php:237,
102
+ #: ../templates/wishlist-view-footer-mobile.php:44,
103
  #: ../templates/wishlist-view-footer.php:44
104
  msgid "Add to cart"
105
  msgstr "Aggiungi al carrello"
1663
  msgid "this wishlist link and share it anywhere)"
1664
  msgstr "questo URL e condividilo dove vuoi)"
1665
 
1666
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1667
  #: ../templates/wishlist-view-footer.php:42
1668
  msgid "Apply this action to all the selected items:"
1669
  msgstr "Applica a tutti gli articoli selezionati:"
1670
 
1671
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1672
  #: ../templates/wishlist-view-footer.php:47
1673
  msgid "Remove from wishlist"
1674
  msgstr "Rimuovi dalla lista"
1675
 
1676
  #. translators: 1. Wishlist formatted name.
1677
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1678
  #: ../templates/wishlist-view-footer.php:63
1679
  msgid "Move to %s"
1680
  msgstr ""
1681
 
1682
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1683
  #: ../templates/wishlist-view-footer.php:69
1684
  msgid "Apply"
1685
  msgstr "Applica"
1686
 
1687
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1688
  #: ../templates/wishlist-view-footer.php:77
1689
  msgid "Update"
1690
  msgstr "Aggiorna"
1691
 
1692
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1693
  #: ../templates/wishlist-view-footer.php:99
1694
  msgid "Add all to cart"
1695
  msgstr "Aggiungi tutti al carrello"
1696
 
 
 
 
 
1697
  #: ../templates/wishlist-view-header.php:41
1698
  msgid "Edit title"
1699
  msgstr "Modifica titolo"
1706
  msgid "Cancel"
1707
  msgstr "Annulla"
1708
 
1709
+ #: ../templates/wishlist-view-mobile.php:126
1710
  msgid "Added on:"
1711
  msgstr "Aggiunto il:"
1712
 
1713
+ #: ../templates/wishlist-view-mobile.php:137
1714
  msgid "Price:"
1715
  msgstr "Prezzo:"
1716
 
1717
+ #: ../templates/wishlist-view-mobile.php:164
1718
  msgid "Quantity:"
1719
  msgstr "Quantità:"
1720
 
1721
+ #: ../templates/wishlist-view-mobile.php:179
1722
  msgid "Stock:"
1723
  msgstr "Disponibilità in magazzino:"
1724
 
1725
+ #: ../templates/wishlist-view-mobile.php:182,
1726
  #: ../templates/wishlist-view.php:224
1727
  msgid "Out of stock"
1728
  msgstr "Esaurito"
1729
 
1730
+ #: ../templates/wishlist-view-mobile.php:182,
1731
  #: ../templates/wishlist-view.php:224
1732
  msgid "In Stock"
1733
  msgstr "Disponibile"
1734
 
1735
+ #: ../templates/wishlist-view-mobile.php:201,
1736
  #: ../templates/wishlist-view.php:257
1737
  msgid "Move"
1738
  msgstr "Sposta"
1739
 
1740
+ #: ../templates/wishlist-view-mobile.php:220,
1741
  #: ../templates/wishlist-view.php:277
1742
  msgid "Move to another list &rsaquo;"
1743
  msgstr "Sposta in un'altra lista &rsaquo;"
1744
 
1745
+ #: ../templates/wishlist-view-mobile.php:228,
1746
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1747
  msgid "Remove this product"
1748
  msgstr "Rimuovi questo prodotto"
1749
 
1750
+ #: ../templates/wishlist-view-mobile.php:238,
1751
  #: ../templates/wishlist-view.php:307
1752
  msgid "No products added to the wishlist"
1753
  msgstr "Non è stato ancora aggiunto nessun prodotto alla lista"
1780
  #: ../templates/wishlist-view.php:287
1781
  msgid "Remove"
1782
  msgstr "Rimuovi"
1783
+
1784
+ #~ msgid "Ask for an estimate"
1785
+ #~ msgstr "Richiedi un preventivo"
languages/yith-woocommerce-wishlist-ko_KR.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-ko_KR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:22+0200\n"
9
  "Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: uk_UA\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1528,41 +1528,37 @@ msgstr ""
1528
  msgid "this wishlist link and share it anywhere)"
1529
  msgstr ""
1530
 
1531
- #: ../templates/wishlist-view-footer-mobile.php:41,
1532
  #: ../templates/wishlist-view-footer.php:42
1533
  msgid "Apply this action to all the selected items:"
1534
  msgstr ""
1535
 
1536
- #: ../templates/wishlist-view-footer-mobile.php:46,
1537
  #: ../templates/wishlist-view-footer.php:47
1538
  msgid "Remove from wishlist"
1539
  msgstr ""
1540
 
1541
  #. translators: 1. Wishlist formatted name.
1542
- #: ../templates/wishlist-view-footer-mobile.php:59,
1543
  #: ../templates/wishlist-view-footer.php:63
1544
  msgid "Move to %s"
1545
  msgstr ""
1546
 
1547
- #: ../templates/wishlist-view-footer-mobile.php:63,
1548
  #: ../templates/wishlist-view-footer.php:69
1549
  msgid "Apply"
1550
  msgstr ""
1551
 
1552
- #: ../templates/wishlist-view-footer-mobile.php:71,
1553
  #: ../templates/wishlist-view-footer.php:77
1554
  msgid "Update"
1555
  msgstr ""
1556
 
1557
- #: ../templates/wishlist-view-footer-mobile.php:77,
1558
  #: ../templates/wishlist-view-footer.php:99
1559
  msgid "Add all to cart"
1560
  msgstr ""
1561
 
1562
- #: ../templates/wishlist-view-footer-mobile.php:87
1563
- msgid "Ask for an estimate"
1564
- msgstr "견적가 요청 "
1565
-
1566
  #: ../templates/wishlist-view-header.php:41
1567
  msgid "Edit title"
1568
  msgstr "타이틀 편집 "
@@ -1575,48 +1571,48 @@ msgstr "저장 "
1575
  msgid "Cancel"
1576
  msgstr "취소 "
1577
 
1578
- #: ../templates/wishlist-view-mobile.php:122
1579
  msgid "Added on:"
1580
  msgstr ""
1581
 
1582
- #: ../templates/wishlist-view-mobile.php:133
1583
  msgid "Price:"
1584
  msgstr ""
1585
 
1586
- #: ../templates/wishlist-view-mobile.php:160
1587
  msgid "Quantity:"
1588
  msgstr ""
1589
 
1590
- #: ../templates/wishlist-view-mobile.php:175
1591
  msgid "Stock:"
1592
  msgstr ""
1593
 
1594
- #: ../templates/wishlist-view-mobile.php:178,
1595
  #: ../templates/wishlist-view.php:224
1596
  msgid "Out of stock"
1597
  msgstr ""
1598
 
1599
- #: ../templates/wishlist-view-mobile.php:178,
1600
  #: ../templates/wishlist-view.php:224
1601
  msgid "In Stock"
1602
  msgstr "재고 있음 "
1603
 
1604
- #: ../templates/wishlist-view-mobile.php:197,
1605
  #: ../templates/wishlist-view.php:257
1606
  msgid "Move"
1607
  msgstr "이동 "
1608
 
1609
- #: ../templates/wishlist-view-mobile.php:216,
1610
  #: ../templates/wishlist-view.php:277
1611
  msgid "Move to another list &rsaquo;"
1612
  msgstr ""
1613
 
1614
- #: ../templates/wishlist-view-mobile.php:224,
1615
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1616
  msgid "Remove this product"
1617
  msgstr "이 상품 제거 "
1618
 
1619
- #: ../templates/wishlist-view-mobile.php:234,
1620
  #: ../templates/wishlist-view.php:307
1621
  msgid "No products added to the wishlist"
1622
  msgstr ""
@@ -1649,3 +1645,6 @@ msgstr ""
1649
  #: ../templates/wishlist-view.php:287
1650
  msgid "Remove"
1651
  msgstr "제거 "
 
 
 
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:48+0200\n"
9
  "Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: uk_UA\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1528
  msgid "this wishlist link and share it anywhere)"
1529
  msgstr ""
1530
 
1531
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1532
  #: ../templates/wishlist-view-footer.php:42
1533
  msgid "Apply this action to all the selected items:"
1534
  msgstr ""
1535
 
1536
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1537
  #: ../templates/wishlist-view-footer.php:47
1538
  msgid "Remove from wishlist"
1539
  msgstr ""
1540
 
1541
  #. translators: 1. Wishlist formatted name.
1542
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1543
  #: ../templates/wishlist-view-footer.php:63
1544
  msgid "Move to %s"
1545
  msgstr ""
1546
 
1547
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1548
  #: ../templates/wishlist-view-footer.php:69
1549
  msgid "Apply"
1550
  msgstr ""
1551
 
1552
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1553
  #: ../templates/wishlist-view-footer.php:77
1554
  msgid "Update"
1555
  msgstr ""
1556
 
1557
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1558
  #: ../templates/wishlist-view-footer.php:99
1559
  msgid "Add all to cart"
1560
  msgstr ""
1561
 
 
 
 
 
1562
  #: ../templates/wishlist-view-header.php:41
1563
  msgid "Edit title"
1564
  msgstr "타이틀 편집 "
1571
  msgid "Cancel"
1572
  msgstr "취소 "
1573
 
1574
+ #: ../templates/wishlist-view-mobile.php:126
1575
  msgid "Added on:"
1576
  msgstr ""
1577
 
1578
+ #: ../templates/wishlist-view-mobile.php:137
1579
  msgid "Price:"
1580
  msgstr ""
1581
 
1582
+ #: ../templates/wishlist-view-mobile.php:164
1583
  msgid "Quantity:"
1584
  msgstr ""
1585
 
1586
+ #: ../templates/wishlist-view-mobile.php:179
1587
  msgid "Stock:"
1588
  msgstr ""
1589
 
1590
+ #: ../templates/wishlist-view-mobile.php:182,
1591
  #: ../templates/wishlist-view.php:224
1592
  msgid "Out of stock"
1593
  msgstr ""
1594
 
1595
+ #: ../templates/wishlist-view-mobile.php:182,
1596
  #: ../templates/wishlist-view.php:224
1597
  msgid "In Stock"
1598
  msgstr "재고 있음 "
1599
 
1600
+ #: ../templates/wishlist-view-mobile.php:201,
1601
  #: ../templates/wishlist-view.php:257
1602
  msgid "Move"
1603
  msgstr "이동 "
1604
 
1605
+ #: ../templates/wishlist-view-mobile.php:220,
1606
  #: ../templates/wishlist-view.php:277
1607
  msgid "Move to another list &rsaquo;"
1608
  msgstr ""
1609
 
1610
+ #: ../templates/wishlist-view-mobile.php:228,
1611
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1612
  msgid "Remove this product"
1613
  msgstr "이 상품 제거 "
1614
 
1615
+ #: ../templates/wishlist-view-mobile.php:238,
1616
  #: ../templates/wishlist-view.php:307
1617
  msgid "No products added to the wishlist"
1618
  msgstr ""
1645
  #: ../templates/wishlist-view.php:287
1646
  msgid "Remove"
1647
  msgstr "제거 "
1648
+
1649
+ #~ msgid "Ask for an estimate"
1650
+ #~ msgstr "견적가 요청 "
languages/yith-woocommerce-wishlist-nl_NL.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-nl_NL.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:22+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: nl_NL\n"
@@ -99,7 +99,7 @@ msgstr "Product succesvol toegevoegd aan winkelwagen"
99
  #: ../includes/class.yith-wcwl-frontend.php:645,
100
  #: ../includes/class.yith-wcwl-shortcode.php:237,
101
  #: ../plugin-options/wishlist_page-options.php:237,
102
- #: ../templates/wishlist-view-footer-mobile.php:43,
103
  #: ../templates/wishlist-view-footer.php:44
104
  msgid "Add to cart"
105
  msgstr "Toevoegen aan winkelwagen"
@@ -1665,41 +1665,37 @@ msgstr "de verlanglijst link kopiëren"
1665
  msgid "this wishlist link and share it anywhere)"
1666
  msgstr "en overal delen)"
1667
 
1668
- #: ../templates/wishlist-view-footer-mobile.php:41,
1669
  #: ../templates/wishlist-view-footer.php:42
1670
  msgid "Apply this action to all the selected items:"
1671
  msgstr "Deze actie toepassen op alle geselecteerde items:"
1672
 
1673
- #: ../templates/wishlist-view-footer-mobile.php:46,
1674
  #: ../templates/wishlist-view-footer.php:47
1675
  msgid "Remove from wishlist"
1676
  msgstr "Verwijderen van verlanglijst"
1677
 
1678
  #. translators: 1. Wishlist formatted name.
1679
- #: ../templates/wishlist-view-footer-mobile.php:59,
1680
  #: ../templates/wishlist-view-footer.php:63
1681
  msgid "Move to %s"
1682
  msgstr ""
1683
 
1684
- #: ../templates/wishlist-view-footer-mobile.php:63,
1685
  #: ../templates/wishlist-view-footer.php:69
1686
  msgid "Apply"
1687
  msgstr "Toepassen"
1688
 
1689
- #: ../templates/wishlist-view-footer-mobile.php:71,
1690
  #: ../templates/wishlist-view-footer.php:77
1691
  msgid "Update"
1692
  msgstr "Bijwerken"
1693
 
1694
- #: ../templates/wishlist-view-footer-mobile.php:77,
1695
  #: ../templates/wishlist-view-footer.php:99
1696
  msgid "Add all to cart"
1697
  msgstr "Allen toevoegen aan winkelwagen"
1698
 
1699
- #: ../templates/wishlist-view-footer-mobile.php:87
1700
- msgid "Ask for an estimate"
1701
- msgstr "Vraag om een offerte"
1702
-
1703
  #: ../templates/wishlist-view-header.php:41
1704
  msgid "Edit title"
1705
  msgstr "Bewerk titel"
@@ -1712,48 +1708,48 @@ msgstr "Opslaan"
1712
  msgid "Cancel"
1713
  msgstr "Annuleren"
1714
 
1715
- #: ../templates/wishlist-view-mobile.php:122
1716
  msgid "Added on:"
1717
  msgstr "Toegevoegd op:"
1718
 
1719
- #: ../templates/wishlist-view-mobile.php:133
1720
  msgid "Price:"
1721
  msgstr "Prijs:"
1722
 
1723
- #: ../templates/wishlist-view-mobile.php:160
1724
  msgid "Quantity:"
1725
  msgstr "Hoeveelheid:"
1726
 
1727
- #: ../templates/wishlist-view-mobile.php:175
1728
  msgid "Stock:"
1729
  msgstr "Voorraad:"
1730
 
1731
- #: ../templates/wishlist-view-mobile.php:178,
1732
  #: ../templates/wishlist-view.php:224
1733
  msgid "Out of stock"
1734
  msgstr "Niet op voorraad"
1735
 
1736
- #: ../templates/wishlist-view-mobile.php:178,
1737
  #: ../templates/wishlist-view.php:224
1738
  msgid "In Stock"
1739
  msgstr "Op voorraad"
1740
 
1741
- #: ../templates/wishlist-view-mobile.php:197,
1742
  #: ../templates/wishlist-view.php:257
1743
  msgid "Move"
1744
  msgstr "Verplaatsen"
1745
 
1746
- #: ../templates/wishlist-view-mobile.php:216,
1747
  #: ../templates/wishlist-view.php:277
1748
  msgid "Move to another list &rsaquo;"
1749
  msgstr "Verplaatsen naar een andere lijst &rsaquo;"
1750
 
1751
- #: ../templates/wishlist-view-mobile.php:224,
1752
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1753
  msgid "Remove this product"
1754
  msgstr "Verwijder dit product"
1755
 
1756
- #: ../templates/wishlist-view-mobile.php:234,
1757
  #: ../templates/wishlist-view.php:307
1758
  msgid "No products added to the wishlist"
1759
  msgstr "Geen producten toegevoegd aan de verlanglijst"
@@ -1786,3 +1782,6 @@ msgstr "Toegevoegd op: %s"
1786
  #: ../templates/wishlist-view.php:287
1787
  msgid "Remove"
1788
  msgstr "Verwijderen"
 
 
 
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:49+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: nl_NL\n"
99
  #: ../includes/class.yith-wcwl-frontend.php:645,
100
  #: ../includes/class.yith-wcwl-shortcode.php:237,
101
  #: ../plugin-options/wishlist_page-options.php:237,
102
+ #: ../templates/wishlist-view-footer-mobile.php:44,
103
  #: ../templates/wishlist-view-footer.php:44
104
  msgid "Add to cart"
105
  msgstr "Toevoegen aan winkelwagen"
1665
  msgid "this wishlist link and share it anywhere)"
1666
  msgstr "en overal delen)"
1667
 
1668
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1669
  #: ../templates/wishlist-view-footer.php:42
1670
  msgid "Apply this action to all the selected items:"
1671
  msgstr "Deze actie toepassen op alle geselecteerde items:"
1672
 
1673
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1674
  #: ../templates/wishlist-view-footer.php:47
1675
  msgid "Remove from wishlist"
1676
  msgstr "Verwijderen van verlanglijst"
1677
 
1678
  #. translators: 1. Wishlist formatted name.
1679
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1680
  #: ../templates/wishlist-view-footer.php:63
1681
  msgid "Move to %s"
1682
  msgstr ""
1683
 
1684
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1685
  #: ../templates/wishlist-view-footer.php:69
1686
  msgid "Apply"
1687
  msgstr "Toepassen"
1688
 
1689
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1690
  #: ../templates/wishlist-view-footer.php:77
1691
  msgid "Update"
1692
  msgstr "Bijwerken"
1693
 
1694
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1695
  #: ../templates/wishlist-view-footer.php:99
1696
  msgid "Add all to cart"
1697
  msgstr "Allen toevoegen aan winkelwagen"
1698
 
 
 
 
 
1699
  #: ../templates/wishlist-view-header.php:41
1700
  msgid "Edit title"
1701
  msgstr "Bewerk titel"
1708
  msgid "Cancel"
1709
  msgstr "Annuleren"
1710
 
1711
+ #: ../templates/wishlist-view-mobile.php:126
1712
  msgid "Added on:"
1713
  msgstr "Toegevoegd op:"
1714
 
1715
+ #: ../templates/wishlist-view-mobile.php:137
1716
  msgid "Price:"
1717
  msgstr "Prijs:"
1718
 
1719
+ #: ../templates/wishlist-view-mobile.php:164
1720
  msgid "Quantity:"
1721
  msgstr "Hoeveelheid:"
1722
 
1723
+ #: ../templates/wishlist-view-mobile.php:179
1724
  msgid "Stock:"
1725
  msgstr "Voorraad:"
1726
 
1727
+ #: ../templates/wishlist-view-mobile.php:182,
1728
  #: ../templates/wishlist-view.php:224
1729
  msgid "Out of stock"
1730
  msgstr "Niet op voorraad"
1731
 
1732
+ #: ../templates/wishlist-view-mobile.php:182,
1733
  #: ../templates/wishlist-view.php:224
1734
  msgid "In Stock"
1735
  msgstr "Op voorraad"
1736
 
1737
+ #: ../templates/wishlist-view-mobile.php:201,
1738
  #: ../templates/wishlist-view.php:257
1739
  msgid "Move"
1740
  msgstr "Verplaatsen"
1741
 
1742
+ #: ../templates/wishlist-view-mobile.php:220,
1743
  #: ../templates/wishlist-view.php:277
1744
  msgid "Move to another list &rsaquo;"
1745
  msgstr "Verplaatsen naar een andere lijst &rsaquo;"
1746
 
1747
+ #: ../templates/wishlist-view-mobile.php:228,
1748
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1749
  msgid "Remove this product"
1750
  msgstr "Verwijder dit product"
1751
 
1752
+ #: ../templates/wishlist-view-mobile.php:238,
1753
  #: ../templates/wishlist-view.php:307
1754
  msgid "No products added to the wishlist"
1755
  msgstr "Geen producten toegevoegd aan de verlanglijst"
1782
  #: ../templates/wishlist-view.php:287
1783
  msgid "Remove"
1784
  msgstr "Verwijderen"
1785
+
1786
+ #~ msgid "Ask for an estimate"
1787
+ #~ msgstr "Vraag om een offerte"
languages/yith-woocommerce-wishlist-pl_PL.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-pl_PL.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:22+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: pl_PL\n"
@@ -96,7 +96,7 @@ msgstr ""
96
  #: ../includes/class.yith-wcwl-frontend.php:645,
97
  #: ../includes/class.yith-wcwl-shortcode.php:237,
98
  #: ../plugin-options/wishlist_page-options.php:237,
99
- #: ../templates/wishlist-view-footer-mobile.php:43,
100
  #: ../templates/wishlist-view-footer.php:44
101
  msgid "Add to cart"
102
  msgstr ""
@@ -1512,41 +1512,37 @@ msgstr ""
1512
  msgid "this wishlist link and share it anywhere)"
1513
  msgstr ""
1514
 
1515
- #: ../templates/wishlist-view-footer-mobile.php:41,
1516
  #: ../templates/wishlist-view-footer.php:42
1517
  msgid "Apply this action to all the selected items:"
1518
  msgstr ""
1519
 
1520
- #: ../templates/wishlist-view-footer-mobile.php:46,
1521
  #: ../templates/wishlist-view-footer.php:47
1522
  msgid "Remove from wishlist"
1523
  msgstr ""
1524
 
1525
  #. translators: 1. Wishlist formatted name.
1526
- #: ../templates/wishlist-view-footer-mobile.php:59,
1527
  #: ../templates/wishlist-view-footer.php:63
1528
  msgid "Move to %s"
1529
  msgstr ""
1530
 
1531
- #: ../templates/wishlist-view-footer-mobile.php:63,
1532
  #: ../templates/wishlist-view-footer.php:69
1533
  msgid "Apply"
1534
  msgstr ""
1535
 
1536
- #: ../templates/wishlist-view-footer-mobile.php:71,
1537
  #: ../templates/wishlist-view-footer.php:77
1538
  msgid "Update"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:77,
1542
  #: ../templates/wishlist-view-footer.php:99
1543
  msgid "Add all to cart"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:87
1547
- msgid "Ask for an estimate"
1548
- msgstr "Poproś o oszacowanie kosztów"
1549
-
1550
  #: ../templates/wishlist-view-header.php:41
1551
  msgid "Edit title"
1552
  msgstr "Edytuj tytuł"
@@ -1559,48 +1555,48 @@ msgstr "Zapisz"
1559
  msgid "Cancel"
1560
  msgstr "Anuluj"
1561
 
1562
- #: ../templates/wishlist-view-mobile.php:122
1563
  msgid "Added on:"
1564
  msgstr ""
1565
 
1566
- #: ../templates/wishlist-view-mobile.php:133
1567
  msgid "Price:"
1568
  msgstr ""
1569
 
1570
- #: ../templates/wishlist-view-mobile.php:160
1571
  msgid "Quantity:"
1572
  msgstr ""
1573
 
1574
- #: ../templates/wishlist-view-mobile.php:175
1575
  msgid "Stock:"
1576
  msgstr ""
1577
 
1578
- #: ../templates/wishlist-view-mobile.php:178,
1579
  #: ../templates/wishlist-view.php:224
1580
  msgid "Out of stock"
1581
  msgstr ""
1582
 
1583
- #: ../templates/wishlist-view-mobile.php:178,
1584
  #: ../templates/wishlist-view.php:224
1585
  msgid "In Stock"
1586
  msgstr "Dostępny"
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:197,
1589
  #: ../templates/wishlist-view.php:257
1590
  msgid "Move"
1591
  msgstr "Przenieś"
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:216,
1594
  #: ../templates/wishlist-view.php:277
1595
  msgid "Move to another list &rsaquo;"
1596
  msgstr ""
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:224,
1599
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1600
  msgid "Remove this product"
1601
  msgstr "Usuń"
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:234,
1604
  #: ../templates/wishlist-view.php:307
1605
  msgid "No products added to the wishlist"
1606
  msgstr ""
@@ -1633,3 +1629,6 @@ msgstr ""
1633
  #: ../templates/wishlist-view.php:287
1634
  msgid "Remove"
1635
  msgstr "Usuń"
 
 
 
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:49+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: pl_PL\n"
96
  #: ../includes/class.yith-wcwl-frontend.php:645,
97
  #: ../includes/class.yith-wcwl-shortcode.php:237,
98
  #: ../plugin-options/wishlist_page-options.php:237,
99
+ #: ../templates/wishlist-view-footer-mobile.php:44,
100
  #: ../templates/wishlist-view-footer.php:44
101
  msgid "Add to cart"
102
  msgstr ""
1512
  msgid "this wishlist link and share it anywhere)"
1513
  msgstr ""
1514
 
1515
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1516
  #: ../templates/wishlist-view-footer.php:42
1517
  msgid "Apply this action to all the selected items:"
1518
  msgstr ""
1519
 
1520
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1521
  #: ../templates/wishlist-view-footer.php:47
1522
  msgid "Remove from wishlist"
1523
  msgstr ""
1524
 
1525
  #. translators: 1. Wishlist formatted name.
1526
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1527
  #: ../templates/wishlist-view-footer.php:63
1528
  msgid "Move to %s"
1529
  msgstr ""
1530
 
1531
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1532
  #: ../templates/wishlist-view-footer.php:69
1533
  msgid "Apply"
1534
  msgstr ""
1535
 
1536
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1537
  #: ../templates/wishlist-view-footer.php:77
1538
  msgid "Update"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1542
  #: ../templates/wishlist-view-footer.php:99
1543
  msgid "Add all to cart"
1544
  msgstr ""
1545
 
 
 
 
 
1546
  #: ../templates/wishlist-view-header.php:41
1547
  msgid "Edit title"
1548
  msgstr "Edytuj tytuł"
1555
  msgid "Cancel"
1556
  msgstr "Anuluj"
1557
 
1558
+ #: ../templates/wishlist-view-mobile.php:126
1559
  msgid "Added on:"
1560
  msgstr ""
1561
 
1562
+ #: ../templates/wishlist-view-mobile.php:137
1563
  msgid "Price:"
1564
  msgstr ""
1565
 
1566
+ #: ../templates/wishlist-view-mobile.php:164
1567
  msgid "Quantity:"
1568
  msgstr ""
1569
 
1570
+ #: ../templates/wishlist-view-mobile.php:179
1571
  msgid "Stock:"
1572
  msgstr ""
1573
 
1574
+ #: ../templates/wishlist-view-mobile.php:182,
1575
  #: ../templates/wishlist-view.php:224
1576
  msgid "Out of stock"
1577
  msgstr ""
1578
 
1579
+ #: ../templates/wishlist-view-mobile.php:182,
1580
  #: ../templates/wishlist-view.php:224
1581
  msgid "In Stock"
1582
  msgstr "Dostępny"
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:201,
1585
  #: ../templates/wishlist-view.php:257
1586
  msgid "Move"
1587
  msgstr "Przenieś"
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:220,
1590
  #: ../templates/wishlist-view.php:277
1591
  msgid "Move to another list &rsaquo;"
1592
  msgstr ""
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:228,
1595
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1596
  msgid "Remove this product"
1597
  msgstr "Usuń"
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:238,
1600
  #: ../templates/wishlist-view.php:307
1601
  msgid "No products added to the wishlist"
1602
  msgstr ""
1629
  #: ../templates/wishlist-view.php:287
1630
  msgid "Remove"
1631
  msgstr "Usuń"
1632
+
1633
+ #~ msgid "Ask for an estimate"
1634
+ #~ msgstr "Poproś o oszacowanie kosztów"
languages/yith-woocommerce-wishlist-pt_BR.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-pt_BR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:22+0200\n"
9
  "Last-Translator: YIThemes <support@yithemes.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: pt_BR\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1522,41 +1522,37 @@ msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
- #: ../templates/wishlist-view-footer-mobile.php:41,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
- #: ../templates/wishlist-view-footer-mobile.php:46,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
- #: ../templates/wishlist-view-footer-mobile.php:59,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:63,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:71,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
- #: ../templates/wishlist-view-footer-mobile.php:77,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
1556
- #: ../templates/wishlist-view-footer-mobile.php:87
1557
- msgid "Ask for an estimate"
1558
- msgstr ""
1559
-
1560
  #: ../templates/wishlist-view-header.php:41
1561
  msgid "Edit title"
1562
  msgstr "Titulo da lista de desejos"
@@ -1569,48 +1565,48 @@ msgstr ""
1569
  msgid "Cancel"
1570
  msgstr ""
1571
 
1572
- #: ../templates/wishlist-view-mobile.php:122
1573
  msgid "Added on:"
1574
  msgstr ""
1575
 
1576
- #: ../templates/wishlist-view-mobile.php:133
1577
  msgid "Price:"
1578
  msgstr ""
1579
 
1580
- #: ../templates/wishlist-view-mobile.php:160
1581
  msgid "Quantity:"
1582
  msgstr ""
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:175
1585
  msgid "Stock:"
1586
  msgstr ""
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:178,
1589
  #: ../templates/wishlist-view.php:224
1590
  msgid "Out of stock"
1591
  msgstr ""
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:178,
1594
  #: ../templates/wishlist-view.php:224
1595
  msgid "In Stock"
1596
  msgstr "Em estoque"
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:197,
1599
  #: ../templates/wishlist-view.php:257
1600
  msgid "Move"
1601
  msgstr ""
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:216,
1604
  #: ../templates/wishlist-view.php:277
1605
  msgid "Move to another list &rsaquo;"
1606
  msgstr ""
1607
 
1608
- #: ../templates/wishlist-view-mobile.php:224,
1609
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1610
  msgid "Remove this product"
1611
  msgstr "Remover este produto"
1612
 
1613
- #: ../templates/wishlist-view-mobile.php:234,
1614
  #: ../templates/wishlist-view.php:307
1615
  msgid "No products added to the wishlist"
1616
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:49+0200\n"
9
  "Last-Translator: YIThemes <support@yithemes.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: pt_BR\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
 
 
 
 
1556
  #: ../templates/wishlist-view-header.php:41
1557
  msgid "Edit title"
1558
  msgstr "Titulo da lista de desejos"
1565
  msgid "Cancel"
1566
  msgstr ""
1567
 
1568
+ #: ../templates/wishlist-view-mobile.php:126
1569
  msgid "Added on:"
1570
  msgstr ""
1571
 
1572
+ #: ../templates/wishlist-view-mobile.php:137
1573
  msgid "Price:"
1574
  msgstr ""
1575
 
1576
+ #: ../templates/wishlist-view-mobile.php:164
1577
  msgid "Quantity:"
1578
  msgstr ""
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:179
1581
  msgid "Stock:"
1582
  msgstr ""
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:182,
1585
  #: ../templates/wishlist-view.php:224
1586
  msgid "Out of stock"
1587
  msgstr ""
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:182,
1590
  #: ../templates/wishlist-view.php:224
1591
  msgid "In Stock"
1592
  msgstr "Em estoque"
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:201,
1595
  #: ../templates/wishlist-view.php:257
1596
  msgid "Move"
1597
  msgstr ""
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:220,
1600
  #: ../templates/wishlist-view.php:277
1601
  msgid "Move to another list &rsaquo;"
1602
  msgstr ""
1603
 
1604
+ #: ../templates/wishlist-view-mobile.php:228,
1605
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1606
  msgid "Remove this product"
1607
  msgstr "Remover este produto"
1608
 
1609
+ #: ../templates/wishlist-view-mobile.php:238,
1610
  #: ../templates/wishlist-view.php:307
1611
  msgid "No products added to the wishlist"
1612
  msgstr ""
languages/yith-woocommerce-wishlist-pt_PT.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-pt_PT.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:22+0200\n"
9
  "Last-Translator: YIThemes <support@yithemes.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: pt_PT\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1522,41 +1522,37 @@ msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
- #: ../templates/wishlist-view-footer-mobile.php:41,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
- #: ../templates/wishlist-view-footer-mobile.php:46,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
- #: ../templates/wishlist-view-footer-mobile.php:59,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:63,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:71,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
- #: ../templates/wishlist-view-footer-mobile.php:77,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
1556
- #: ../templates/wishlist-view-footer-mobile.php:87
1557
- msgid "Ask for an estimate"
1558
- msgstr ""
1559
-
1560
  #: ../templates/wishlist-view-header.php:41
1561
  msgid "Edit title"
1562
  msgstr "Titulo da lista de desejos"
@@ -1569,48 +1565,48 @@ msgstr ""
1569
  msgid "Cancel"
1570
  msgstr ""
1571
 
1572
- #: ../templates/wishlist-view-mobile.php:122
1573
  msgid "Added on:"
1574
  msgstr ""
1575
 
1576
- #: ../templates/wishlist-view-mobile.php:133
1577
  msgid "Price:"
1578
  msgstr ""
1579
 
1580
- #: ../templates/wishlist-view-mobile.php:160
1581
  msgid "Quantity:"
1582
  msgstr ""
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:175
1585
  msgid "Stock:"
1586
  msgstr ""
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:178,
1589
  #: ../templates/wishlist-view.php:224
1590
  msgid "Out of stock"
1591
  msgstr ""
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:178,
1594
  #: ../templates/wishlist-view.php:224
1595
  msgid "In Stock"
1596
  msgstr "Em stock"
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:197,
1599
  #: ../templates/wishlist-view.php:257
1600
  msgid "Move"
1601
  msgstr ""
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:216,
1604
  #: ../templates/wishlist-view.php:277
1605
  msgid "Move to another list &rsaquo;"
1606
  msgstr ""
1607
 
1608
- #: ../templates/wishlist-view-mobile.php:224,
1609
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1610
  msgid "Remove this product"
1611
  msgstr "Remover este produto"
1612
 
1613
- #: ../templates/wishlist-view-mobile.php:234,
1614
  #: ../templates/wishlist-view.php:307
1615
  msgid "No products added to the wishlist"
1616
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:49+0200\n"
9
  "Last-Translator: YIThemes <support@yithemes.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: pt_PT\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
 
 
 
 
1556
  #: ../templates/wishlist-view-header.php:41
1557
  msgid "Edit title"
1558
  msgstr "Titulo da lista de desejos"
1565
  msgid "Cancel"
1566
  msgstr ""
1567
 
1568
+ #: ../templates/wishlist-view-mobile.php:126
1569
  msgid "Added on:"
1570
  msgstr ""
1571
 
1572
+ #: ../templates/wishlist-view-mobile.php:137
1573
  msgid "Price:"
1574
  msgstr ""
1575
 
1576
+ #: ../templates/wishlist-view-mobile.php:164
1577
  msgid "Quantity:"
1578
  msgstr ""
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:179
1581
  msgid "Stock:"
1582
  msgstr ""
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:182,
1585
  #: ../templates/wishlist-view.php:224
1586
  msgid "Out of stock"
1587
  msgstr ""
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:182,
1590
  #: ../templates/wishlist-view.php:224
1591
  msgid "In Stock"
1592
  msgstr "Em stock"
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:201,
1595
  #: ../templates/wishlist-view.php:257
1596
  msgid "Move"
1597
  msgstr ""
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:220,
1600
  #: ../templates/wishlist-view.php:277
1601
  msgid "Move to another list &rsaquo;"
1602
  msgstr ""
1603
 
1604
+ #: ../templates/wishlist-view-mobile.php:228,
1605
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1606
  msgid "Remove this product"
1607
  msgstr "Remover este produto"
1608
 
1609
+ #: ../templates/wishlist-view-mobile.php:238,
1610
  #: ../templates/wishlist-view.php:307
1611
  msgid "No products added to the wishlist"
1612
  msgstr ""
languages/yith-woocommerce-wishlist-ru_RU.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-ru_RU.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WCWL\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:23+0200\n"
9
  "Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
11
  "Language: ru\n"
@@ -93,7 +93,7 @@ msgstr ""
93
  #: ../includes/class.yith-wcwl-frontend.php:645,
94
  #: ../includes/class.yith-wcwl-shortcode.php:237,
95
  #: ../plugin-options/wishlist_page-options.php:237,
96
- #: ../templates/wishlist-view-footer-mobile.php:43,
97
  #: ../templates/wishlist-view-footer.php:44
98
  msgid "Add to cart"
99
  msgstr ""
@@ -1513,41 +1513,37 @@ msgstr ""
1513
  msgid "this wishlist link and share it anywhere)"
1514
  msgstr ""
1515
 
1516
- #: ../templates/wishlist-view-footer-mobile.php:41,
1517
  #: ../templates/wishlist-view-footer.php:42
1518
  msgid "Apply this action to all the selected items:"
1519
  msgstr ""
1520
 
1521
- #: ../templates/wishlist-view-footer-mobile.php:46,
1522
  #: ../templates/wishlist-view-footer.php:47
1523
  msgid "Remove from wishlist"
1524
  msgstr ""
1525
 
1526
  #. translators: 1. Wishlist formatted name.
1527
- #: ../templates/wishlist-view-footer-mobile.php:59,
1528
  #: ../templates/wishlist-view-footer.php:63
1529
  msgid "Move to %s"
1530
  msgstr ""
1531
 
1532
- #: ../templates/wishlist-view-footer-mobile.php:63,
1533
  #: ../templates/wishlist-view-footer.php:69
1534
  msgid "Apply"
1535
  msgstr ""
1536
 
1537
- #: ../templates/wishlist-view-footer-mobile.php:71,
1538
  #: ../templates/wishlist-view-footer.php:77
1539
  msgid "Update"
1540
  msgstr ""
1541
 
1542
- #: ../templates/wishlist-view-footer-mobile.php:77,
1543
  #: ../templates/wishlist-view-footer.php:99
1544
  msgid "Add all to cart"
1545
  msgstr ""
1546
 
1547
- #: ../templates/wishlist-view-footer-mobile.php:87
1548
- msgid "Ask for an estimate"
1549
- msgstr ""
1550
-
1551
  #: ../templates/wishlist-view-header.php:41
1552
  msgid "Edit title"
1553
  msgstr ""
@@ -1560,48 +1556,48 @@ msgstr ""
1560
  msgid "Cancel"
1561
  msgstr ""
1562
 
1563
- #: ../templates/wishlist-view-mobile.php:122
1564
  msgid "Added on:"
1565
  msgstr ""
1566
 
1567
- #: ../templates/wishlist-view-mobile.php:133
1568
  msgid "Price:"
1569
  msgstr ""
1570
 
1571
- #: ../templates/wishlist-view-mobile.php:160
1572
  msgid "Quantity:"
1573
  msgstr ""
1574
 
1575
- #: ../templates/wishlist-view-mobile.php:175
1576
  msgid "Stock:"
1577
  msgstr ""
1578
 
1579
- #: ../templates/wishlist-view-mobile.php:178,
1580
  #: ../templates/wishlist-view.php:224
1581
  msgid "Out of stock"
1582
  msgstr ""
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:178,
1585
  #: ../templates/wishlist-view.php:224
1586
  msgid "In Stock"
1587
  msgstr "в наличии"
1588
 
1589
- #: ../templates/wishlist-view-mobile.php:197,
1590
  #: ../templates/wishlist-view.php:257
1591
  msgid "Move"
1592
  msgstr ""
1593
 
1594
- #: ../templates/wishlist-view-mobile.php:216,
1595
  #: ../templates/wishlist-view.php:277
1596
  msgid "Move to another list &rsaquo;"
1597
  msgstr ""
1598
 
1599
- #: ../templates/wishlist-view-mobile.php:224,
1600
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1601
  msgid "Remove this product"
1602
  msgstr ""
1603
 
1604
- #: ../templates/wishlist-view-mobile.php:234,
1605
  #: ../templates/wishlist-view.php:307
1606
  msgid "No products added to the wishlist"
1607
  msgstr ""
5
  "Project-Id-Version: YITH WCWL\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:49+0200\n"
9
  "Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
11
  "Language: ru\n"
93
  #: ../includes/class.yith-wcwl-frontend.php:645,
94
  #: ../includes/class.yith-wcwl-shortcode.php:237,
95
  #: ../plugin-options/wishlist_page-options.php:237,
96
+ #: ../templates/wishlist-view-footer-mobile.php:44,
97
  #: ../templates/wishlist-view-footer.php:44
98
  msgid "Add to cart"
99
  msgstr ""
1513
  msgid "this wishlist link and share it anywhere)"
1514
  msgstr ""
1515
 
1516
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1517
  #: ../templates/wishlist-view-footer.php:42
1518
  msgid "Apply this action to all the selected items:"
1519
  msgstr ""
1520
 
1521
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1522
  #: ../templates/wishlist-view-footer.php:47
1523
  msgid "Remove from wishlist"
1524
  msgstr ""
1525
 
1526
  #. translators: 1. Wishlist formatted name.
1527
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1528
  #: ../templates/wishlist-view-footer.php:63
1529
  msgid "Move to %s"
1530
  msgstr ""
1531
 
1532
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1533
  #: ../templates/wishlist-view-footer.php:69
1534
  msgid "Apply"
1535
  msgstr ""
1536
 
1537
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1538
  #: ../templates/wishlist-view-footer.php:77
1539
  msgid "Update"
1540
  msgstr ""
1541
 
1542
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1543
  #: ../templates/wishlist-view-footer.php:99
1544
  msgid "Add all to cart"
1545
  msgstr ""
1546
 
 
 
 
 
1547
  #: ../templates/wishlist-view-header.php:41
1548
  msgid "Edit title"
1549
  msgstr ""
1556
  msgid "Cancel"
1557
  msgstr ""
1558
 
1559
+ #: ../templates/wishlist-view-mobile.php:126
1560
  msgid "Added on:"
1561
  msgstr ""
1562
 
1563
+ #: ../templates/wishlist-view-mobile.php:137
1564
  msgid "Price:"
1565
  msgstr ""
1566
 
1567
+ #: ../templates/wishlist-view-mobile.php:164
1568
  msgid "Quantity:"
1569
  msgstr ""
1570
 
1571
+ #: ../templates/wishlist-view-mobile.php:179
1572
  msgid "Stock:"
1573
  msgstr ""
1574
 
1575
+ #: ../templates/wishlist-view-mobile.php:182,
1576
  #: ../templates/wishlist-view.php:224
1577
  msgid "Out of stock"
1578
  msgstr ""
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:182,
1581
  #: ../templates/wishlist-view.php:224
1582
  msgid "In Stock"
1583
  msgstr "в наличии"
1584
 
1585
+ #: ../templates/wishlist-view-mobile.php:201,
1586
  #: ../templates/wishlist-view.php:257
1587
  msgid "Move"
1588
  msgstr ""
1589
 
1590
+ #: ../templates/wishlist-view-mobile.php:220,
1591
  #: ../templates/wishlist-view.php:277
1592
  msgid "Move to another list &rsaquo;"
1593
  msgstr ""
1594
 
1595
+ #: ../templates/wishlist-view-mobile.php:228,
1596
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1597
  msgid "Remove this product"
1598
  msgstr ""
1599
 
1600
+ #: ../templates/wishlist-view-mobile.php:238,
1601
  #: ../templates/wishlist-view.php:307
1602
  msgid "No products added to the wishlist"
1603
  msgstr ""
languages/yith-woocommerce-wishlist-sv_SE.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-sv_SE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WCWL\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:23+0200\n"
9
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
10
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
11
  "Language: sv\n"
@@ -92,7 +92,7 @@ msgstr ""
92
  #: ../includes/class.yith-wcwl-frontend.php:645,
93
  #: ../includes/class.yith-wcwl-shortcode.php:237,
94
  #: ../plugin-options/wishlist_page-options.php:237,
95
- #: ../templates/wishlist-view-footer-mobile.php:43,
96
  #: ../templates/wishlist-view-footer.php:44
97
  msgid "Add to cart"
98
  msgstr ""
@@ -1521,41 +1521,37 @@ msgstr ""
1521
  msgid "this wishlist link and share it anywhere)"
1522
  msgstr ""
1523
 
1524
- #: ../templates/wishlist-view-footer-mobile.php:41,
1525
  #: ../templates/wishlist-view-footer.php:42
1526
  msgid "Apply this action to all the selected items:"
1527
  msgstr ""
1528
 
1529
- #: ../templates/wishlist-view-footer-mobile.php:46,
1530
  #: ../templates/wishlist-view-footer.php:47
1531
  msgid "Remove from wishlist"
1532
  msgstr ""
1533
 
1534
  #. translators: 1. Wishlist formatted name.
1535
- #: ../templates/wishlist-view-footer-mobile.php:59,
1536
  #: ../templates/wishlist-view-footer.php:63
1537
  msgid "Move to %s"
1538
  msgstr ""
1539
 
1540
- #: ../templates/wishlist-view-footer-mobile.php:63,
1541
  #: ../templates/wishlist-view-footer.php:69
1542
  msgid "Apply"
1543
  msgstr ""
1544
 
1545
- #: ../templates/wishlist-view-footer-mobile.php:71,
1546
  #: ../templates/wishlist-view-footer.php:77
1547
  msgid "Update"
1548
  msgstr ""
1549
 
1550
- #: ../templates/wishlist-view-footer-mobile.php:77,
1551
  #: ../templates/wishlist-view-footer.php:99
1552
  msgid "Add all to cart"
1553
  msgstr ""
1554
 
1555
- #: ../templates/wishlist-view-footer-mobile.php:87
1556
- msgid "Ask for an estimate"
1557
- msgstr "Fråga efter en uppskattning"
1558
-
1559
  #: ../templates/wishlist-view-header.php:41
1560
  msgid "Edit title"
1561
  msgstr "Ändra titel"
@@ -1568,48 +1564,48 @@ msgstr "Spara"
1568
  msgid "Cancel"
1569
  msgstr "Avbryt"
1570
 
1571
- #: ../templates/wishlist-view-mobile.php:122
1572
  msgid "Added on:"
1573
  msgstr ""
1574
 
1575
- #: ../templates/wishlist-view-mobile.php:133
1576
  msgid "Price:"
1577
  msgstr ""
1578
 
1579
- #: ../templates/wishlist-view-mobile.php:160
1580
  msgid "Quantity:"
1581
  msgstr ""
1582
 
1583
- #: ../templates/wishlist-view-mobile.php:175
1584
  msgid "Stock:"
1585
  msgstr ""
1586
 
1587
- #: ../templates/wishlist-view-mobile.php:178,
1588
  #: ../templates/wishlist-view.php:224
1589
  msgid "Out of stock"
1590
  msgstr ""
1591
 
1592
- #: ../templates/wishlist-view-mobile.php:178,
1593
  #: ../templates/wishlist-view.php:224
1594
  msgid "In Stock"
1595
  msgstr "Finns i lager"
1596
 
1597
- #: ../templates/wishlist-view-mobile.php:197,
1598
  #: ../templates/wishlist-view.php:257
1599
  msgid "Move"
1600
  msgstr "Flytta"
1601
 
1602
- #: ../templates/wishlist-view-mobile.php:216,
1603
  #: ../templates/wishlist-view.php:277
1604
  msgid "Move to another list &rsaquo;"
1605
  msgstr ""
1606
 
1607
- #: ../templates/wishlist-view-mobile.php:224,
1608
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1609
  msgid "Remove this product"
1610
  msgstr "Ta bort denna produkt"
1611
 
1612
- #: ../templates/wishlist-view-mobile.php:234,
1613
  #: ../templates/wishlist-view.php:307
1614
  msgid "No products added to the wishlist"
1615
  msgstr ""
@@ -1642,3 +1638,6 @@ msgstr ""
1642
  #: ../templates/wishlist-view.php:287
1643
  msgid "Remove"
1644
  msgstr "Ta bort"
 
 
 
5
  "Project-Id-Version: YITH WCWL\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:49+0200\n"
9
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
10
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
11
  "Language: sv\n"
92
  #: ../includes/class.yith-wcwl-frontend.php:645,
93
  #: ../includes/class.yith-wcwl-shortcode.php:237,
94
  #: ../plugin-options/wishlist_page-options.php:237,
95
+ #: ../templates/wishlist-view-footer-mobile.php:44,
96
  #: ../templates/wishlist-view-footer.php:44
97
  msgid "Add to cart"
98
  msgstr ""
1521
  msgid "this wishlist link and share it anywhere)"
1522
  msgstr ""
1523
 
1524
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1525
  #: ../templates/wishlist-view-footer.php:42
1526
  msgid "Apply this action to all the selected items:"
1527
  msgstr ""
1528
 
1529
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1530
  #: ../templates/wishlist-view-footer.php:47
1531
  msgid "Remove from wishlist"
1532
  msgstr ""
1533
 
1534
  #. translators: 1. Wishlist formatted name.
1535
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1536
  #: ../templates/wishlist-view-footer.php:63
1537
  msgid "Move to %s"
1538
  msgstr ""
1539
 
1540
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1541
  #: ../templates/wishlist-view-footer.php:69
1542
  msgid "Apply"
1543
  msgstr ""
1544
 
1545
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1546
  #: ../templates/wishlist-view-footer.php:77
1547
  msgid "Update"
1548
  msgstr ""
1549
 
1550
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1551
  #: ../templates/wishlist-view-footer.php:99
1552
  msgid "Add all to cart"
1553
  msgstr ""
1554
 
 
 
 
 
1555
  #: ../templates/wishlist-view-header.php:41
1556
  msgid "Edit title"
1557
  msgstr "Ändra titel"
1564
  msgid "Cancel"
1565
  msgstr "Avbryt"
1566
 
1567
+ #: ../templates/wishlist-view-mobile.php:126
1568
  msgid "Added on:"
1569
  msgstr ""
1570
 
1571
+ #: ../templates/wishlist-view-mobile.php:137
1572
  msgid "Price:"
1573
  msgstr ""
1574
 
1575
+ #: ../templates/wishlist-view-mobile.php:164
1576
  msgid "Quantity:"
1577
  msgstr ""
1578
 
1579
+ #: ../templates/wishlist-view-mobile.php:179
1580
  msgid "Stock:"
1581
  msgstr ""
1582
 
1583
+ #: ../templates/wishlist-view-mobile.php:182,
1584
  #: ../templates/wishlist-view.php:224
1585
  msgid "Out of stock"
1586
  msgstr ""
1587
 
1588
+ #: ../templates/wishlist-view-mobile.php:182,
1589
  #: ../templates/wishlist-view.php:224
1590
  msgid "In Stock"
1591
  msgstr "Finns i lager"
1592
 
1593
+ #: ../templates/wishlist-view-mobile.php:201,
1594
  #: ../templates/wishlist-view.php:257
1595
  msgid "Move"
1596
  msgstr "Flytta"
1597
 
1598
+ #: ../templates/wishlist-view-mobile.php:220,
1599
  #: ../templates/wishlist-view.php:277
1600
  msgid "Move to another list &rsaquo;"
1601
  msgstr ""
1602
 
1603
+ #: ../templates/wishlist-view-mobile.php:228,
1604
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1605
  msgid "Remove this product"
1606
  msgstr "Ta bort denna produkt"
1607
 
1608
+ #: ../templates/wishlist-view-mobile.php:238,
1609
  #: ../templates/wishlist-view.php:307
1610
  msgid "No products added to the wishlist"
1611
  msgstr ""
1638
  #: ../templates/wishlist-view.php:287
1639
  msgid "Remove"
1640
  msgstr "Ta bort"
1641
+
1642
+ #~ msgid "Ask for an estimate"
1643
+ #~ msgstr "Fråga efter en uppskattning"
languages/yith-woocommerce-wishlist-tr_TR.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-tr_TR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:23+0200\n"
9
  "Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
10
  "Language-Team: Caner Öncel (@egonomik) <caneroncel@gmail.com>\n"
11
  "Language: tr_TR\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1522,41 +1522,37 @@ msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
- #: ../templates/wishlist-view-footer-mobile.php:41,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
- #: ../templates/wishlist-view-footer-mobile.php:46,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
- #: ../templates/wishlist-view-footer-mobile.php:59,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:63,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:71,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
- #: ../templates/wishlist-view-footer-mobile.php:77,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
1556
- #: ../templates/wishlist-view-footer-mobile.php:87
1557
- msgid "Ask for an estimate"
1558
- msgstr ""
1559
-
1560
  #: ../templates/wishlist-view-header.php:41
1561
  msgid "Edit title"
1562
  msgstr "İstek listesi başlığı"
@@ -1569,48 +1565,48 @@ msgstr ""
1569
  msgid "Cancel"
1570
  msgstr ""
1571
 
1572
- #: ../templates/wishlist-view-mobile.php:122
1573
  msgid "Added on:"
1574
  msgstr ""
1575
 
1576
- #: ../templates/wishlist-view-mobile.php:133
1577
  msgid "Price:"
1578
  msgstr ""
1579
 
1580
- #: ../templates/wishlist-view-mobile.php:160
1581
  msgid "Quantity:"
1582
  msgstr ""
1583
 
1584
- #: ../templates/wishlist-view-mobile.php:175
1585
  msgid "Stock:"
1586
  msgstr ""
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:178,
1589
  #: ../templates/wishlist-view.php:224
1590
  msgid "Out of stock"
1591
  msgstr ""
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:178,
1594
  #: ../templates/wishlist-view.php:224
1595
  msgid "In Stock"
1596
  msgstr "Stokta"
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:197,
1599
  #: ../templates/wishlist-view.php:257
1600
  msgid "Move"
1601
  msgstr ""
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:216,
1604
  #: ../templates/wishlist-view.php:277
1605
  msgid "Move to another list &rsaquo;"
1606
  msgstr ""
1607
 
1608
- #: ../templates/wishlist-view-mobile.php:224,
1609
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1610
  msgid "Remove this product"
1611
  msgstr "Bu ürünü kaldır"
1612
 
1613
- #: ../templates/wishlist-view-mobile.php:234,
1614
  #: ../templates/wishlist-view.php:307
1615
  msgid "No products added to the wishlist"
1616
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:49+0200\n"
9
  "Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
10
  "Language-Team: Caner Öncel (@egonomik) <caneroncel@gmail.com>\n"
11
  "Language: tr_TR\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1522
  msgid "this wishlist link and share it anywhere)"
1523
  msgstr ""
1524
 
1525
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1526
  #: ../templates/wishlist-view-footer.php:42
1527
  msgid "Apply this action to all the selected items:"
1528
  msgstr ""
1529
 
1530
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1531
  #: ../templates/wishlist-view-footer.php:47
1532
  msgid "Remove from wishlist"
1533
  msgstr ""
1534
 
1535
  #. translators: 1. Wishlist formatted name.
1536
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1537
  #: ../templates/wishlist-view-footer.php:63
1538
  msgid "Move to %s"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1542
  #: ../templates/wishlist-view-footer.php:69
1543
  msgid "Apply"
1544
  msgstr ""
1545
 
1546
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1547
  #: ../templates/wishlist-view-footer.php:77
1548
  msgid "Update"
1549
  msgstr ""
1550
 
1551
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1552
  #: ../templates/wishlist-view-footer.php:99
1553
  msgid "Add all to cart"
1554
  msgstr ""
1555
 
 
 
 
 
1556
  #: ../templates/wishlist-view-header.php:41
1557
  msgid "Edit title"
1558
  msgstr "İstek listesi başlığı"
1565
  msgid "Cancel"
1566
  msgstr ""
1567
 
1568
+ #: ../templates/wishlist-view-mobile.php:126
1569
  msgid "Added on:"
1570
  msgstr ""
1571
 
1572
+ #: ../templates/wishlist-view-mobile.php:137
1573
  msgid "Price:"
1574
  msgstr ""
1575
 
1576
+ #: ../templates/wishlist-view-mobile.php:164
1577
  msgid "Quantity:"
1578
  msgstr ""
1579
 
1580
+ #: ../templates/wishlist-view-mobile.php:179
1581
  msgid "Stock:"
1582
  msgstr ""
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:182,
1585
  #: ../templates/wishlist-view.php:224
1586
  msgid "Out of stock"
1587
  msgstr ""
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:182,
1590
  #: ../templates/wishlist-view.php:224
1591
  msgid "In Stock"
1592
  msgstr "Stokta"
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:201,
1595
  #: ../templates/wishlist-view.php:257
1596
  msgid "Move"
1597
  msgstr ""
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:220,
1600
  #: ../templates/wishlist-view.php:277
1601
  msgid "Move to another list &rsaquo;"
1602
  msgstr ""
1603
 
1604
+ #: ../templates/wishlist-view-mobile.php:228,
1605
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1606
  msgid "Remove this product"
1607
  msgstr "Bu ürünü kaldır"
1608
 
1609
+ #: ../templates/wishlist-view-mobile.php:238,
1610
  #: ../templates/wishlist-view.php:307
1611
  msgid "No products added to the wishlist"
1612
  msgstr ""
languages/yith-woocommerce-wishlist-uk_UA.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-uk_UA.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:23+0200\n"
9
  "Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: uk_UA\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1512,41 +1512,37 @@ msgstr ""
1512
  msgid "this wishlist link and share it anywhere)"
1513
  msgstr ""
1514
 
1515
- #: ../templates/wishlist-view-footer-mobile.php:41,
1516
  #: ../templates/wishlist-view-footer.php:42
1517
  msgid "Apply this action to all the selected items:"
1518
  msgstr ""
1519
 
1520
- #: ../templates/wishlist-view-footer-mobile.php:46,
1521
  #: ../templates/wishlist-view-footer.php:47
1522
  msgid "Remove from wishlist"
1523
  msgstr ""
1524
 
1525
  #. translators: 1. Wishlist formatted name.
1526
- #: ../templates/wishlist-view-footer-mobile.php:59,
1527
  #: ../templates/wishlist-view-footer.php:63
1528
  msgid "Move to %s"
1529
  msgstr ""
1530
 
1531
- #: ../templates/wishlist-view-footer-mobile.php:63,
1532
  #: ../templates/wishlist-view-footer.php:69
1533
  msgid "Apply"
1534
  msgstr ""
1535
 
1536
- #: ../templates/wishlist-view-footer-mobile.php:71,
1537
  #: ../templates/wishlist-view-footer.php:77
1538
  msgid "Update"
1539
  msgstr ""
1540
 
1541
- #: ../templates/wishlist-view-footer-mobile.php:77,
1542
  #: ../templates/wishlist-view-footer.php:99
1543
  msgid "Add all to cart"
1544
  msgstr ""
1545
 
1546
- #: ../templates/wishlist-view-footer-mobile.php:87
1547
- msgid "Ask for an estimate"
1548
- msgstr ""
1549
-
1550
  #: ../templates/wishlist-view-header.php:41
1551
  msgid "Edit title"
1552
  msgstr ""
@@ -1559,48 +1555,48 @@ msgstr ""
1559
  msgid "Cancel"
1560
  msgstr ""
1561
 
1562
- #: ../templates/wishlist-view-mobile.php:122
1563
  msgid "Added on:"
1564
  msgstr ""
1565
 
1566
- #: ../templates/wishlist-view-mobile.php:133
1567
  msgid "Price:"
1568
  msgstr ""
1569
 
1570
- #: ../templates/wishlist-view-mobile.php:160
1571
  msgid "Quantity:"
1572
  msgstr ""
1573
 
1574
- #: ../templates/wishlist-view-mobile.php:175
1575
  msgid "Stock:"
1576
  msgstr ""
1577
 
1578
- #: ../templates/wishlist-view-mobile.php:178,
1579
  #: ../templates/wishlist-view.php:224
1580
  msgid "Out of stock"
1581
  msgstr ""
1582
 
1583
- #: ../templates/wishlist-view-mobile.php:178,
1584
  #: ../templates/wishlist-view.php:224
1585
  msgid "In Stock"
1586
  msgstr "в наявності"
1587
 
1588
- #: ../templates/wishlist-view-mobile.php:197,
1589
  #: ../templates/wishlist-view.php:257
1590
  msgid "Move"
1591
  msgstr ""
1592
 
1593
- #: ../templates/wishlist-view-mobile.php:216,
1594
  #: ../templates/wishlist-view.php:277
1595
  msgid "Move to another list &rsaquo;"
1596
  msgstr ""
1597
 
1598
- #: ../templates/wishlist-view-mobile.php:224,
1599
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1600
  msgid "Remove this product"
1601
  msgstr ""
1602
 
1603
- #: ../templates/wishlist-view-mobile.php:234,
1604
  #: ../templates/wishlist-view.php:307
1605
  msgid "No products added to the wishlist"
1606
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:50+0200\n"
9
  "Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: uk_UA\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1512
  msgid "this wishlist link and share it anywhere)"
1513
  msgstr ""
1514
 
1515
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1516
  #: ../templates/wishlist-view-footer.php:42
1517
  msgid "Apply this action to all the selected items:"
1518
  msgstr ""
1519
 
1520
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1521
  #: ../templates/wishlist-view-footer.php:47
1522
  msgid "Remove from wishlist"
1523
  msgstr ""
1524
 
1525
  #. translators: 1. Wishlist formatted name.
1526
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1527
  #: ../templates/wishlist-view-footer.php:63
1528
  msgid "Move to %s"
1529
  msgstr ""
1530
 
1531
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1532
  #: ../templates/wishlist-view-footer.php:69
1533
  msgid "Apply"
1534
  msgstr ""
1535
 
1536
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1537
  #: ../templates/wishlist-view-footer.php:77
1538
  msgid "Update"
1539
  msgstr ""
1540
 
1541
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1542
  #: ../templates/wishlist-view-footer.php:99
1543
  msgid "Add all to cart"
1544
  msgstr ""
1545
 
 
 
 
 
1546
  #: ../templates/wishlist-view-header.php:41
1547
  msgid "Edit title"
1548
  msgstr ""
1555
  msgid "Cancel"
1556
  msgstr ""
1557
 
1558
+ #: ../templates/wishlist-view-mobile.php:126
1559
  msgid "Added on:"
1560
  msgstr ""
1561
 
1562
+ #: ../templates/wishlist-view-mobile.php:137
1563
  msgid "Price:"
1564
  msgstr ""
1565
 
1566
+ #: ../templates/wishlist-view-mobile.php:164
1567
  msgid "Quantity:"
1568
  msgstr ""
1569
 
1570
+ #: ../templates/wishlist-view-mobile.php:179
1571
  msgid "Stock:"
1572
  msgstr ""
1573
 
1574
+ #: ../templates/wishlist-view-mobile.php:182,
1575
  #: ../templates/wishlist-view.php:224
1576
  msgid "Out of stock"
1577
  msgstr ""
1578
 
1579
+ #: ../templates/wishlist-view-mobile.php:182,
1580
  #: ../templates/wishlist-view.php:224
1581
  msgid "In Stock"
1582
  msgstr "в наявності"
1583
 
1584
+ #: ../templates/wishlist-view-mobile.php:201,
1585
  #: ../templates/wishlist-view.php:257
1586
  msgid "Move"
1587
  msgstr ""
1588
 
1589
+ #: ../templates/wishlist-view-mobile.php:220,
1590
  #: ../templates/wishlist-view.php:277
1591
  msgid "Move to another list &rsaquo;"
1592
  msgstr ""
1593
 
1594
+ #: ../templates/wishlist-view-mobile.php:228,
1595
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1596
  msgid "Remove this product"
1597
  msgstr ""
1598
 
1599
+ #: ../templates/wishlist-view-mobile.php:238,
1600
  #: ../templates/wishlist-view.php:307
1601
  msgid "No products added to the wishlist"
1602
  msgstr ""
languages/yith-woocommerce-wishlist-zh_CN.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-zh_CN.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:23+0200\n"
9
  "Last-Translator: 李明軒 <eggeggxuan@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: zh_CN\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1520,41 +1520,37 @@ msgstr ""
1520
  msgid "this wishlist link and share it anywhere)"
1521
  msgstr ""
1522
 
1523
- #: ../templates/wishlist-view-footer-mobile.php:41,
1524
  #: ../templates/wishlist-view-footer.php:42
1525
  msgid "Apply this action to all the selected items:"
1526
  msgstr ""
1527
 
1528
- #: ../templates/wishlist-view-footer-mobile.php:46,
1529
  #: ../templates/wishlist-view-footer.php:47
1530
  msgid "Remove from wishlist"
1531
  msgstr ""
1532
 
1533
  #. translators: 1. Wishlist formatted name.
1534
- #: ../templates/wishlist-view-footer-mobile.php:59,
1535
  #: ../templates/wishlist-view-footer.php:63
1536
  msgid "Move to %s"
1537
  msgstr ""
1538
 
1539
- #: ../templates/wishlist-view-footer-mobile.php:63,
1540
  #: ../templates/wishlist-view-footer.php:69
1541
  msgid "Apply"
1542
  msgstr ""
1543
 
1544
- #: ../templates/wishlist-view-footer-mobile.php:71,
1545
  #: ../templates/wishlist-view-footer.php:77
1546
  msgid "Update"
1547
  msgstr ""
1548
 
1549
- #: ../templates/wishlist-view-footer-mobile.php:77,
1550
  #: ../templates/wishlist-view-footer.php:99
1551
  msgid "Add all to cart"
1552
  msgstr ""
1553
 
1554
- #: ../templates/wishlist-view-footer-mobile.php:87
1555
- msgid "Ask for an estimate"
1556
- msgstr ""
1557
-
1558
  #: ../templates/wishlist-view-header.php:41
1559
  msgid "Edit title"
1560
  msgstr ""
@@ -1567,48 +1563,48 @@ msgstr ""
1567
  msgid "Cancel"
1568
  msgstr ""
1569
 
1570
- #: ../templates/wishlist-view-mobile.php:122
1571
  msgid "Added on:"
1572
  msgstr ""
1573
 
1574
- #: ../templates/wishlist-view-mobile.php:133
1575
  msgid "Price:"
1576
  msgstr ""
1577
 
1578
- #: ../templates/wishlist-view-mobile.php:160
1579
  msgid "Quantity:"
1580
  msgstr ""
1581
 
1582
- #: ../templates/wishlist-view-mobile.php:175
1583
  msgid "Stock:"
1584
  msgstr ""
1585
 
1586
- #: ../templates/wishlist-view-mobile.php:178,
1587
  #: ../templates/wishlist-view.php:224
1588
  msgid "Out of stock"
1589
  msgstr ""
1590
 
1591
- #: ../templates/wishlist-view-mobile.php:178,
1592
  #: ../templates/wishlist-view.php:224
1593
  msgid "In Stock"
1594
  msgstr "有货"
1595
 
1596
- #: ../templates/wishlist-view-mobile.php:197,
1597
  #: ../templates/wishlist-view.php:257
1598
  msgid "Move"
1599
  msgstr ""
1600
 
1601
- #: ../templates/wishlist-view-mobile.php:216,
1602
  #: ../templates/wishlist-view.php:277
1603
  msgid "Move to another list &rsaquo;"
1604
  msgstr ""
1605
 
1606
- #: ../templates/wishlist-view-mobile.php:224,
1607
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1608
  msgid "Remove this product"
1609
  msgstr "移除这个商品"
1610
 
1611
- #: ../templates/wishlist-view-mobile.php:234,
1612
  #: ../templates/wishlist-view.php:307
1613
  msgid "No products added to the wishlist"
1614
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:50+0200\n"
9
  "Last-Translator: 李明軒 <eggeggxuan@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: zh_CN\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1520
  msgid "this wishlist link and share it anywhere)"
1521
  msgstr ""
1522
 
1523
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1524
  #: ../templates/wishlist-view-footer.php:42
1525
  msgid "Apply this action to all the selected items:"
1526
  msgstr ""
1527
 
1528
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1529
  #: ../templates/wishlist-view-footer.php:47
1530
  msgid "Remove from wishlist"
1531
  msgstr ""
1532
 
1533
  #. translators: 1. Wishlist formatted name.
1534
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1535
  #: ../templates/wishlist-view-footer.php:63
1536
  msgid "Move to %s"
1537
  msgstr ""
1538
 
1539
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1540
  #: ../templates/wishlist-view-footer.php:69
1541
  msgid "Apply"
1542
  msgstr ""
1543
 
1544
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1545
  #: ../templates/wishlist-view-footer.php:77
1546
  msgid "Update"
1547
  msgstr ""
1548
 
1549
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1550
  #: ../templates/wishlist-view-footer.php:99
1551
  msgid "Add all to cart"
1552
  msgstr ""
1553
 
 
 
 
 
1554
  #: ../templates/wishlist-view-header.php:41
1555
  msgid "Edit title"
1556
  msgstr ""
1563
  msgid "Cancel"
1564
  msgstr ""
1565
 
1566
+ #: ../templates/wishlist-view-mobile.php:126
1567
  msgid "Added on:"
1568
  msgstr ""
1569
 
1570
+ #: ../templates/wishlist-view-mobile.php:137
1571
  msgid "Price:"
1572
  msgstr ""
1573
 
1574
+ #: ../templates/wishlist-view-mobile.php:164
1575
  msgid "Quantity:"
1576
  msgstr ""
1577
 
1578
+ #: ../templates/wishlist-view-mobile.php:179
1579
  msgid "Stock:"
1580
  msgstr ""
1581
 
1582
+ #: ../templates/wishlist-view-mobile.php:182,
1583
  #: ../templates/wishlist-view.php:224
1584
  msgid "Out of stock"
1585
  msgstr ""
1586
 
1587
+ #: ../templates/wishlist-view-mobile.php:182,
1588
  #: ../templates/wishlist-view.php:224
1589
  msgid "In Stock"
1590
  msgstr "有货"
1591
 
1592
+ #: ../templates/wishlist-view-mobile.php:201,
1593
  #: ../templates/wishlist-view.php:257
1594
  msgid "Move"
1595
  msgstr ""
1596
 
1597
+ #: ../templates/wishlist-view-mobile.php:220,
1598
  #: ../templates/wishlist-view.php:277
1599
  msgid "Move to another list &rsaquo;"
1600
  msgstr ""
1601
 
1602
+ #: ../templates/wishlist-view-mobile.php:228,
1603
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1604
  msgid "Remove this product"
1605
  msgstr "移除这个商品"
1606
 
1607
+ #: ../templates/wishlist-view-mobile.php:238,
1608
  #: ../templates/wishlist-view.php:307
1609
  msgid "No products added to the wishlist"
1610
  msgstr ""
languages/yith-woocommerce-wishlist-zh_TW.mo CHANGED
Binary file
languages/yith-woocommerce-wishlist-zh_TW.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2020-05-07 16:23+0200\n"
9
  "Last-Translator: 李明軒 <eggeggxuan@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: zh_TW\n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
- #: ../templates/wishlist-view-footer-mobile.php:43,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
@@ -1520,41 +1520,37 @@ msgstr ""
1520
  msgid "this wishlist link and share it anywhere)"
1521
  msgstr ""
1522
 
1523
- #: ../templates/wishlist-view-footer-mobile.php:41,
1524
  #: ../templates/wishlist-view-footer.php:42
1525
  msgid "Apply this action to all the selected items:"
1526
  msgstr ""
1527
 
1528
- #: ../templates/wishlist-view-footer-mobile.php:46,
1529
  #: ../templates/wishlist-view-footer.php:47
1530
  msgid "Remove from wishlist"
1531
  msgstr ""
1532
 
1533
  #. translators: 1. Wishlist formatted name.
1534
- #: ../templates/wishlist-view-footer-mobile.php:59,
1535
  #: ../templates/wishlist-view-footer.php:63
1536
  msgid "Move to %s"
1537
  msgstr ""
1538
 
1539
- #: ../templates/wishlist-view-footer-mobile.php:63,
1540
  #: ../templates/wishlist-view-footer.php:69
1541
  msgid "Apply"
1542
  msgstr ""
1543
 
1544
- #: ../templates/wishlist-view-footer-mobile.php:71,
1545
  #: ../templates/wishlist-view-footer.php:77
1546
  msgid "Update"
1547
  msgstr ""
1548
 
1549
- #: ../templates/wishlist-view-footer-mobile.php:77,
1550
  #: ../templates/wishlist-view-footer.php:99
1551
  msgid "Add all to cart"
1552
  msgstr ""
1553
 
1554
- #: ../templates/wishlist-view-footer-mobile.php:87
1555
- msgid "Ask for an estimate"
1556
- msgstr ""
1557
-
1558
  #: ../templates/wishlist-view-header.php:41
1559
  msgid "Edit title"
1560
  msgstr ""
@@ -1567,48 +1563,48 @@ msgstr ""
1567
  msgid "Cancel"
1568
  msgstr ""
1569
 
1570
- #: ../templates/wishlist-view-mobile.php:122
1571
  msgid "Added on:"
1572
  msgstr ""
1573
 
1574
- #: ../templates/wishlist-view-mobile.php:133
1575
  msgid "Price:"
1576
  msgstr ""
1577
 
1578
- #: ../templates/wishlist-view-mobile.php:160
1579
  msgid "Quantity:"
1580
  msgstr ""
1581
 
1582
- #: ../templates/wishlist-view-mobile.php:175
1583
  msgid "Stock:"
1584
  msgstr ""
1585
 
1586
- #: ../templates/wishlist-view-mobile.php:178,
1587
  #: ../templates/wishlist-view.php:224
1588
  msgid "Out of stock"
1589
  msgstr ""
1590
 
1591
- #: ../templates/wishlist-view-mobile.php:178,
1592
  #: ../templates/wishlist-view.php:224
1593
  msgid "In Stock"
1594
  msgstr "有貨"
1595
 
1596
- #: ../templates/wishlist-view-mobile.php:197,
1597
  #: ../templates/wishlist-view.php:257
1598
  msgid "Move"
1599
  msgstr ""
1600
 
1601
- #: ../templates/wishlist-view-mobile.php:216,
1602
  #: ../templates/wishlist-view.php:277
1603
  msgid "Move to another list &rsaquo;"
1604
  msgstr ""
1605
 
1606
- #: ../templates/wishlist-view-mobile.php:224,
1607
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1608
  msgid "Remove this product"
1609
  msgstr "移除這個商品"
1610
 
1611
- #: ../templates/wishlist-view-mobile.php:234,
1612
  #: ../templates/wishlist-view.php:307
1613
  msgid "No products added to the wishlist"
1614
  msgstr ""
5
  "Project-Id-Version: YITH WooCommerce Wishlist\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2020-06-08 18:50+0200\n"
9
  "Last-Translator: 李明軒 <eggeggxuan@gmail.com>\n"
10
  "Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
11
  "Language: zh_TW\n"
95
  #: ../includes/class.yith-wcwl-frontend.php:645,
96
  #: ../includes/class.yith-wcwl-shortcode.php:237,
97
  #: ../plugin-options/wishlist_page-options.php:237,
98
+ #: ../templates/wishlist-view-footer-mobile.php:44,
99
  #: ../templates/wishlist-view-footer.php:44
100
  msgid "Add to cart"
101
  msgstr ""
1520
  msgid "this wishlist link and share it anywhere)"
1521
  msgstr ""
1522
 
1523
+ #: ../templates/wishlist-view-footer-mobile.php:42,
1524
  #: ../templates/wishlist-view-footer.php:42
1525
  msgid "Apply this action to all the selected items:"
1526
  msgstr ""
1527
 
1528
+ #: ../templates/wishlist-view-footer-mobile.php:47,
1529
  #: ../templates/wishlist-view-footer.php:47
1530
  msgid "Remove from wishlist"
1531
  msgstr ""
1532
 
1533
  #. translators: 1. Wishlist formatted name.
1534
+ #: ../templates/wishlist-view-footer-mobile.php:60,
1535
  #: ../templates/wishlist-view-footer.php:63
1536
  msgid "Move to %s"
1537
  msgstr ""
1538
 
1539
+ #: ../templates/wishlist-view-footer-mobile.php:64,
1540
  #: ../templates/wishlist-view-footer.php:69
1541
  msgid "Apply"
1542
  msgstr ""
1543
 
1544
+ #: ../templates/wishlist-view-footer-mobile.php:72,
1545
  #: ../templates/wishlist-view-footer.php:77
1546
  msgid "Update"
1547
  msgstr ""
1548
 
1549
+ #: ../templates/wishlist-view-footer-mobile.php:78,
1550
  #: ../templates/wishlist-view-footer.php:99
1551
  msgid "Add all to cart"
1552
  msgstr ""
1553
 
 
 
 
 
1554
  #: ../templates/wishlist-view-header.php:41
1555
  msgid "Edit title"
1556
  msgstr ""
1563
  msgid "Cancel"
1564
  msgstr ""
1565
 
1566
+ #: ../templates/wishlist-view-mobile.php:126
1567
  msgid "Added on:"
1568
  msgstr ""
1569
 
1570
+ #: ../templates/wishlist-view-mobile.php:137
1571
  msgid "Price:"
1572
  msgstr ""
1573
 
1574
+ #: ../templates/wishlist-view-mobile.php:164
1575
  msgid "Quantity:"
1576
  msgstr ""
1577
 
1578
+ #: ../templates/wishlist-view-mobile.php:179
1579
  msgid "Stock:"
1580
  msgstr ""
1581
 
1582
+ #: ../templates/wishlist-view-mobile.php:182,
1583
  #: ../templates/wishlist-view.php:224
1584
  msgid "Out of stock"
1585
  msgstr ""
1586
 
1587
+ #: ../templates/wishlist-view-mobile.php:182,
1588
  #: ../templates/wishlist-view.php:224
1589
  msgid "In Stock"
1590
  msgstr "有貨"
1591
 
1592
+ #: ../templates/wishlist-view-mobile.php:201,
1593
  #: ../templates/wishlist-view.php:257
1594
  msgid "Move"
1595
  msgstr ""
1596
 
1597
+ #: ../templates/wishlist-view-mobile.php:220,
1598
  #: ../templates/wishlist-view.php:277
1599
  msgid "Move to another list &rsaquo;"
1600
  msgstr ""
1601
 
1602
+ #: ../templates/wishlist-view-mobile.php:228,
1603
  #: ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1604
  msgid "Remove this product"
1605
  msgstr "移除這個商品"
1606
 
1607
+ #: ../templates/wishlist-view-mobile.php:238,
1608
  #: ../templates/wishlist-view.php:307
1609
  msgid "No products added to the wishlist"
1610
  msgstr ""
languages/yith-woocommerce-wishlist.pot CHANGED
@@ -77,7 +77,7 @@ msgstr ""
77
  msgid "Product added to cart successfully"
78
  msgstr ""
79
 
80
- #: ../includes/class.yith-wcwl-frontend.php:645, ../includes/class.yith-wcwl-shortcode.php:237, ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:44
81
  msgid "Add to cart"
82
  msgstr ""
83
 
@@ -1285,35 +1285,31 @@ msgstr ""
1285
  msgid "this wishlist link and share it anywhere)"
1286
  msgstr ""
1287
 
1288
- #: ../templates/wishlist-view-footer-mobile.php:41, ../templates/wishlist-view-footer.php:42
1289
  msgid "Apply this action to all the selected items:"
1290
  msgstr ""
1291
 
1292
- #: ../templates/wishlist-view-footer-mobile.php:46, ../templates/wishlist-view-footer.php:47
1293
  msgid "Remove from wishlist"
1294
  msgstr ""
1295
 
1296
  #. translators: 1. Wishlist formatted name.
1297
- #: ../templates/wishlist-view-footer-mobile.php:59, ../templates/wishlist-view-footer.php:63
1298
  msgid "Move to %s"
1299
  msgstr ""
1300
 
1301
- #: ../templates/wishlist-view-footer-mobile.php:63, ../templates/wishlist-view-footer.php:69
1302
  msgid "Apply"
1303
  msgstr ""
1304
 
1305
- #: ../templates/wishlist-view-footer-mobile.php:71, ../templates/wishlist-view-footer.php:77
1306
  msgid "Update"
1307
  msgstr ""
1308
 
1309
- #: ../templates/wishlist-view-footer-mobile.php:77, ../templates/wishlist-view-footer.php:99
1310
  msgid "Add all to cart"
1311
  msgstr ""
1312
 
1313
- #: ../templates/wishlist-view-footer-mobile.php:87
1314
- msgid "Ask for an estimate"
1315
- msgstr ""
1316
-
1317
  #: ../templates/wishlist-view-header.php:41
1318
  msgid "Edit title"
1319
  msgstr ""
@@ -1326,43 +1322,43 @@ msgstr ""
1326
  msgid "Cancel"
1327
  msgstr ""
1328
 
1329
- #: ../templates/wishlist-view-mobile.php:122
1330
  msgid "Added on:"
1331
  msgstr ""
1332
 
1333
- #: ../templates/wishlist-view-mobile.php:133
1334
  msgid "Price:"
1335
  msgstr ""
1336
 
1337
- #: ../templates/wishlist-view-mobile.php:160
1338
  msgid "Quantity:"
1339
  msgstr ""
1340
 
1341
- #: ../templates/wishlist-view-mobile.php:175
1342
  msgid "Stock:"
1343
  msgstr ""
1344
 
1345
- #: ../templates/wishlist-view-mobile.php:178, ../templates/wishlist-view.php:224
1346
  msgid "Out of stock"
1347
  msgstr ""
1348
 
1349
- #: ../templates/wishlist-view-mobile.php:178, ../templates/wishlist-view.php:224
1350
  msgid "In Stock"
1351
  msgstr ""
1352
 
1353
- #: ../templates/wishlist-view-mobile.php:197, ../templates/wishlist-view.php:257
1354
  msgid "Move"
1355
  msgstr ""
1356
 
1357
- #: ../templates/wishlist-view-mobile.php:216, ../templates/wishlist-view.php:277
1358
  msgid "Move to another list &rsaquo;"
1359
  msgstr ""
1360
 
1361
- #: ../templates/wishlist-view-mobile.php:224, ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1362
  msgid "Remove this product"
1363
  msgstr ""
1364
 
1365
- #: ../templates/wishlist-view-mobile.php:234, ../templates/wishlist-view.php:307
1366
  msgid "No products added to the wishlist"
1367
  msgstr ""
1368
 
77
  msgid "Product added to cart successfully"
78
  msgstr ""
79
 
80
+ #: ../includes/class.yith-wcwl-frontend.php:645, ../includes/class.yith-wcwl-shortcode.php:237, ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:44, ../templates/wishlist-view-footer.php:44
81
  msgid "Add to cart"
82
  msgstr ""
83
 
1285
  msgid "this wishlist link and share it anywhere)"
1286
  msgstr ""
1287
 
1288
+ #: ../templates/wishlist-view-footer-mobile.php:42, ../templates/wishlist-view-footer.php:42
1289
  msgid "Apply this action to all the selected items:"
1290
  msgstr ""
1291
 
1292
+ #: ../templates/wishlist-view-footer-mobile.php:47, ../templates/wishlist-view-footer.php:47
1293
  msgid "Remove from wishlist"
1294
  msgstr ""
1295
 
1296
  #. translators: 1. Wishlist formatted name.
1297
+ #: ../templates/wishlist-view-footer-mobile.php:60, ../templates/wishlist-view-footer.php:63
1298
  msgid "Move to %s"
1299
  msgstr ""
1300
 
1301
+ #: ../templates/wishlist-view-footer-mobile.php:64, ../templates/wishlist-view-footer.php:69
1302
  msgid "Apply"
1303
  msgstr ""
1304
 
1305
+ #: ../templates/wishlist-view-footer-mobile.php:72, ../templates/wishlist-view-footer.php:77
1306
  msgid "Update"
1307
  msgstr ""
1308
 
1309
+ #: ../templates/wishlist-view-footer-mobile.php:78, ../templates/wishlist-view-footer.php:99
1310
  msgid "Add all to cart"
1311
  msgstr ""
1312
 
 
 
 
 
1313
  #: ../templates/wishlist-view-header.php:41
1314
  msgid "Edit title"
1315
  msgstr ""
1322
  msgid "Cancel"
1323
  msgstr ""
1324
 
1325
+ #: ../templates/wishlist-view-mobile.php:126
1326
  msgid "Added on:"
1327
  msgstr ""
1328
 
1329
+ #: ../templates/wishlist-view-mobile.php:137
1330
  msgid "Price:"
1331
  msgstr ""
1332
 
1333
+ #: ../templates/wishlist-view-mobile.php:164
1334
  msgid "Quantity:"
1335
  msgstr ""
1336
 
1337
+ #: ../templates/wishlist-view-mobile.php:179
1338
  msgid "Stock:"
1339
  msgstr ""
1340
 
1341
+ #: ../templates/wishlist-view-mobile.php:182, ../templates/wishlist-view.php:224
1342
  msgid "Out of stock"
1343
  msgstr ""
1344
 
1345
+ #: ../templates/wishlist-view-mobile.php:182, ../templates/wishlist-view.php:224
1346
  msgid "In Stock"
1347
  msgstr ""
1348
 
1349
+ #: ../templates/wishlist-view-mobile.php:201, ../templates/wishlist-view.php:257
1350
  msgid "Move"
1351
  msgstr ""
1352
 
1353
+ #: ../templates/wishlist-view-mobile.php:220, ../templates/wishlist-view.php:277
1354
  msgid "Move to another list &rsaquo;"
1355
  msgstr ""
1356
 
1357
+ #: ../templates/wishlist-view-mobile.php:228, ../templates/wishlist-view.php:155, ../templates/wishlist-view.php:287
1358
  msgid "Remove this product"
1359
  msgstr ""
1360
 
1361
+ #: ../templates/wishlist-view-mobile.php:238, ../templates/wishlist-view.php:307
1362
  msgid "No products added to the wishlist"
1363
  msgstr ""
1364
 
plugin-fw/assets/css/yith-fields.css CHANGED
@@ -1209,6 +1209,10 @@ span.select2.select2-container.select2-container--default.yith-plugin-fw-select2
1209
  font-size : 13px;
1210
  }
1211
 
 
 
 
 
1212
  .yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow:before {
1213
  content : "\e900";
1214
  font-family : 'yith-icon' !important;
@@ -1427,8 +1431,9 @@ span.select2.select2-container.select2-container--default.yith-plugin-fw-select2
1427
  .yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
1428
  border : 1px solid #d8d8d8;
1429
  background-color : #fff;
1430
- width : 60px;
1431
  height : 24px;
 
1432
  }
1433
 
1434
  .yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
@@ -1465,7 +1470,7 @@ span.select2.select2-container.select2-container--default.yith-plugin-fw-select2
1465
  .yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before,
1466
  .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
1467
  background-color : #98aa36;
1468
- left : 41px;
1469
  }
1470
 
1471
  .yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after,
1209
  font-size : 13px;
1210
  }
1211
 
1212
+ .wc-wp-version-gte-53 .yith-plugin-ui .select2-container .select2-selection--single .select2-selection__arrow{
1213
+ background-image: none;
1214
+ }
1215
+
1216
  .yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow:before {
1217
  content : "\e900";
1218
  font-family : 'yith-icon' !important;
1431
  .yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
1432
  border : 1px solid #d8d8d8;
1433
  background-color : #fff;
1434
+ width : 58px;
1435
  height : 24px;
1436
+ line-height :14px;
1437
  }
1438
 
1439
  .yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
1470
  .yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before,
1471
  .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
1472
  background-color : #98aa36;
1473
+ left: 38px;
1474
  }
1475
 
1476
  .yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after,
plugin-fw/init.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Framework Name: YIT Plugin Framework
4
- * Version: 3.4.21
5
  * Author: YITH
6
  * Text Domain: yith-plugin-fw
7
  * Domain Path: /languages/
1
  <?php
2
  /**
3
  * Framework Name: YIT Plugin Framework
4
+ * Version: 3.4.23
5
  * Author: YITH
6
  * Text Domain: yith-plugin-fw
7
  * Domain Path: /languages/
plugin-fw/languages/yith-plugin-fw-it_IT.mo CHANGED
Binary file
plugin-fw/languages/yith-plugin-fw-it_IT.po CHANGED
@@ -5,14 +5,14 @@ msgstr ""
5
  "Project-Id-Version: YITH Plugin Starter 1.0.0 Plugin FW\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
  "POT-Creation-Date: 2020-04-23 06:38:32+00:00\n"
8
- "PO-Revision-Date: 2020-04-06 10:46+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: YIThemes <plugins@yithemes.com>\n"
11
  "Language: it_IT\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.2.1\n"
16
  "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
17
  "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
18
  "esc_html_x:1,2c\n"
@@ -779,7 +779,7 @@ msgstr ""
779
  #: templates/fields/onoff.php:24
780
  msgctxt "YES/NO button: use MAX 3 characters!"
781
  msgid "YES"
782
- msgstr "SI"
783
 
784
  #: templates/fields/onoff.php:25
785
  msgctxt "YES/NO button: use MAX 3 characters!"
5
  "Project-Id-Version: YITH Plugin Starter 1.0.0 Plugin FW\n"
6
  "Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
7
  "POT-Creation-Date: 2020-04-23 06:38:32+00:00\n"
8
+ "PO-Revision-Date: 2020-06-01 13:46+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: YIThemes <plugins@yithemes.com>\n"
11
  "Language: it_IT\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.3.1\n"
16
  "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
17
  "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
18
  "esc_html_x:1,2c\n"
779
  #: templates/fields/onoff.php:24
780
  msgctxt "YES/NO button: use MAX 3 characters!"
781
  msgid "YES"
782
+ msgstr ""
783
 
784
  #: templates/fields/onoff.php:25
785
  msgctxt "YES/NO button: use MAX 3 characters!"
plugin-fw/lib/yit-plugin-panel-wc.php CHANGED
@@ -94,8 +94,9 @@ if ( !class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
94
  add_action( 'yith_plugin_fw_get_field_after', array( $this, 'add_yith_ui' ) );
95
  add_action( 'yith_plugin_fw_before_woocommerce_panel', array( $this, 'add_plugin_banner' ), 10, 1 );
96
  add_action( 'admin_action_yith_plugin_fw_save_toggle_element', array( $this, 'save_toggle_element_options' ) );
 
97
 
98
- add_action( 'admin_enqueue_scripts', array( $this, 'init_wp_with_tabs' ), 11 );
99
  add_action( 'admin_init', array( $this, 'maybe_redirect_to_proper_wp_page' ) );
100
 
101
  // init actions once to prevent multiple actions
@@ -302,12 +303,13 @@ if ( !class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
302
 
303
  $yit_options = $this->get_main_array_options();
304
  $option_key = $this->get_current_option_key();
 
305
 
306
  if ( version_compare( WC()->version, '2.4.0', '>=' ) ) {
307
  if ( !empty( $yit_options[ $option_key ] ) ) {
308
  foreach ( $yit_options[ $option_key ] as $option ) {
309
  if ( isset( $option[ 'id' ] ) && isset( $_POST[ $option[ 'id' ] ] ) && isset( $option[ 'type' ] ) && !in_array( $option[ 'type' ], self::$wc_type ) ) {
310
- $_POST[ $option[ 'id' ] ] = maybe_serialize( $_POST[ $option[ 'id' ] ] );
311
  }
312
  }
313
  }
@@ -327,7 +329,7 @@ if ( !class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
327
  }
328
  }
329
 
330
- woocommerce_update_options( $yit_options[ $option_key ] );
331
 
332
  do_action( 'yit_panel_wc_after_update' );
333
 
@@ -339,6 +341,8 @@ if ( !class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
339
 
340
  $yit_options = $this->get_main_array_options();
341
  $option_key = $this->get_current_option_key();
 
 
342
  foreach ( $yit_options[ $option_key ] as $id => $option ) {
343
  if ( isset( $option[ 'yith-type' ] ) && $option[ 'yith-type' ] == 'multi-colorpicker' && !empty( $option[ 'colorpickers' ] ) ) {
344
  $default = [];
@@ -460,25 +464,26 @@ if ( !class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
460
  delete_option( 'yit_plugin_fw_panel_wc_default_options_set' );
461
  }
462
 
463
- /**
464
- * Add the WooCommerce body class in plugin panel page
465
- *
466
- * @param array $admin_body_classes The body classes
467
- * @return array Filtered body classes
468
- * @author Andrea Grillo <andrea.grillo@yithemes.com>
469
- * @since 2.0
470
- */
471
- public static function admin_body_class( $admin_body_classes ) {
472
- global $pagenow;
473
-
474
- $assets_screen_ids = (array) apply_filters( 'yith_plugin_fw_wc_panel_screen_ids_for_assets', array() );
475
 
 
476
 
477
- if ( ( 'admin.php' == $pagenow && ( strpos( get_current_screen()->id, 'yith-plugins_page' ) !== false || in_array( get_current_screen()->id, $assets_screen_ids ) ) ) )
478
- $admin_body_classes = substr_count( $admin_body_classes, self::$body_class ) == 0 ? $admin_body_classes . self::$body_class : $admin_body_classes;
 
 
479
 
480
- return 'admin.php' == $pagenow && substr_count( $admin_body_classes, 'woocommerce' ) == 0 ? $admin_body_classes .= ' woocommerce ' : $admin_body_classes;
481
- }
482
 
483
  /**
484
  * Maybe unserialize panel data
@@ -491,8 +496,8 @@ if ( !class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
491
  * @since 2.0
492
  */
493
  public function maybe_unserialize_panel_data( $value, $option, $raw_value ) {
494
- if ( !version_compare( WC()->version, '2.4.0', '>=' ) || !isset( $option[ 'type' ] ) || in_array( $option[ 'type' ], self::$wc_type ) ) {
495
- return $value;
496
  }
497
 
498
  $yit_options = $this->get_main_array_options();
@@ -687,5 +692,47 @@ if ( !class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
687
 
688
  parent::print_tabs_nav( $args );
689
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
690
  }
691
  }
94
  add_action( 'yith_plugin_fw_get_field_after', array( $this, 'add_yith_ui' ) );
95
  add_action( 'yith_plugin_fw_before_woocommerce_panel', array( $this, 'add_plugin_banner' ), 10, 1 );
96
  add_action( 'admin_action_yith_plugin_fw_save_toggle_element', array( $this, 'save_toggle_element_options' ) );
97
+ add_filter( 'woocommerce_admin_settings_sanitize_option', array( $this, 'sanitize_onoff_value' ), 20, 3 );
98
 
99
+ add_action( 'admin_enqueue_scripts', array( $this, 'init_wp_with_tabs' ), 11 );
100
  add_action( 'admin_init', array( $this, 'maybe_redirect_to_proper_wp_page' ) );
101
 
102
  // init actions once to prevent multiple actions
303
 
304
  $yit_options = $this->get_main_array_options();
305
  $option_key = $this->get_current_option_key();
306
+ $yit_options = $this->check_for_save_single_option( $yit_options );
307
 
308
  if ( version_compare( WC()->version, '2.4.0', '>=' ) ) {
309
  if ( !empty( $yit_options[ $option_key ] ) ) {
310
  foreach ( $yit_options[ $option_key ] as $option ) {
311
  if ( isset( $option[ 'id' ] ) && isset( $_POST[ $option[ 'id' ] ] ) && isset( $option[ 'type' ] ) && !in_array( $option[ 'type' ], self::$wc_type ) ) {
312
+ $_POST[ $option[ 'id' ] ] = maybe_serialize( $_POST[ $option[ 'id' ] ] );
313
  }
314
  }
315
  }
329
  }
330
  }
331
 
332
+ woocommerce_update_options( $yit_options[ $option_key ] );
333
 
334
  do_action( 'yit_panel_wc_after_update' );
335
 
341
 
342
  $yit_options = $this->get_main_array_options();
343
  $option_key = $this->get_current_option_key();
344
+ $yit_options = $this->check_for_save_single_option( $yit_options );
345
+
346
  foreach ( $yit_options[ $option_key ] as $id => $option ) {
347
  if ( isset( $option[ 'yith-type' ] ) && $option[ 'yith-type' ] == 'multi-colorpicker' && !empty( $option[ 'colorpickers' ] ) ) {
348
  $default = [];
464
  delete_option( 'yit_plugin_fw_panel_wc_default_options_set' );
465
  }
466
 
467
+ /**
468
+ * Add the WooCommerce body class in plugin panel page
469
+ *
470
+ * @param string $admin_body_classes The body classes.
471
+ * @return string Filtered body classes
472
+ * @author Andrea Grillo <andrea.grillo@yithemes.com>
473
+ * @since 2.0
474
+ */
475
+ public static function admin_body_class( $admin_body_classes ) {
476
+ global $pagenow;
 
 
477
 
478
+ $assets_screen_ids = (array) apply_filters( 'yith_plugin_fw_wc_panel_screen_ids_for_assets', array() );
479
 
480
+ if ( ( 'admin.php' == $pagenow && ( strpos( get_current_screen()->id, 'yith-plugins_page' ) !== false || in_array( get_current_screen()->id, $assets_screen_ids ) ) ) ) {
481
+ $admin_body_classes = substr_count( $admin_body_classes, self::$body_class ) == 0 ? $admin_body_classes . self::$body_class : $admin_body_classes;
482
+ $admin_body_classes = substr_count( $admin_body_classes, 'woocommerce' ) == 0 ? $admin_body_classes . ' woocommerce ' : $admin_body_classes;
483
+ }
484
 
485
+ return $admin_body_classes;
486
+ }
487
 
488
  /**
489
  * Maybe unserialize panel data
496
  * @since 2.0
497
  */
498
  public function maybe_unserialize_panel_data( $value, $option, $raw_value ) {
499
+ if ( ! version_compare( WC()->version, '2.4.0', '>=' ) || !isset( $option[ 'type' ] ) || in_array( $option[ 'type' ], self::$wc_type ) ) {
500
+ return $value;
501
  }
502
 
503
  $yit_options = $this->get_main_array_options();
692
 
693
  parent::print_tabs_nav( $args );
694
  }
695
+
696
+ /**
697
+ * Sanitize OnOff Option
698
+ *
699
+ * @param $value mixed Option value
700
+ * @param $option mixed Option settings array
701
+ * @param $raw_value string Raw option value
702
+ * @return mixed Filtered return value
703
+ * @author Andrea Grillo <andrea.grillo@yithemes.com>
704
+ * @since 3.0.0
705
+ */
706
+ public static function sanitize_onoff_value( $value, $option, $raw_value ) {
707
+ if ( isset( $option[ 'type' ] ) && in_array( $option[ 'type' ], array( 'checkbox', 'onoff' ) ) ) {
708
+ $value = yith_plugin_fw_is_true( $raw_value ) ? 'yes' : 'no';
709
+
710
+ if ( !empty( $option[ 'yith-sanitize-callback' ] ) && is_callable( $option[ 'yith-sanitize-callback' ] ) ) {
711
+ $value = call_user_func( $option[ 'yith-sanitize-callback' ], $value );
712
+ }
713
+ }
714
+
715
+ return $value;
716
+ }
717
+
718
+ /**
719
+ * Check if need to save the toggle element to a single options instead of an array
720
+ *
721
+ * @param $yit_options mixed|array Original options array
722
+ *
723
+ * @return mixed|array New options array
724
+ * @author Andrea Grillo <andrea.grillo@yithemes.com>
725
+ * @since 3.0.0
726
+ */
727
+ public function check_for_save_single_option( $yit_options ){
728
+ foreach ( $yit_options as $key => $options_list ){
729
+ foreach ( $options_list as $value ){
730
+ if( ! empty( $value['yith-type'] ) && 'toggle-element-fixed' == $value['yith-type'] && isset( $value['save_single_options'] ) && true === $value['save_single_options'] ){
731
+ $yit_options[ $key ] = array_merge( $yit_options[ $key ] , $value['elements'] );
732
+ }
733
+ }
734
+ }
735
+ return $yit_options;
736
+ }
737
  }
738
  }
plugin-fw/lib/yit-plugin-panel.php CHANGED
@@ -116,7 +116,6 @@ if ( !class_exists( 'YIT_Plugin_Panel' ) ) {
116
  //yith-plugin-ui
117
  add_action( 'yith_plugin_fw_before_yith_panel', array( $this, 'add_plugin_banner' ), 10, 1 );
118
  add_action( 'wp_ajax_yith_plugin_fw_save_toggle_element', array( $this, 'save_toggle_element_options' ) );
119
-
120
  }
121
 
122
  /**
@@ -1418,6 +1417,4 @@ if ( !class_exists( 'YIT_Plugin_Panel' ) ) {
1418
  return true;
1419
  }
1420
  }
1421
-
1422
-
1423
  }
116
  //yith-plugin-ui
117
  add_action( 'yith_plugin_fw_before_yith_panel', array( $this, 'add_plugin_banner' ), 10, 1 );
118
  add_action( 'wp_ajax_yith_plugin_fw_save_toggle_element', array( $this, 'save_toggle_element_options' ) );
 
119
  }
120
 
121
  /**
1417
  return true;
1418
  }
1419
  }
 
 
1420
  }
plugin-fw/templates/fields/toggle-element-fixed.php CHANGED
@@ -10,6 +10,7 @@ $defaults = array(
10
  'custom_attributes' => '',
11
  'elements' => [],
12
  'onoff_field' => true,
 
13
 
14
  );
15
  $field = wp_parse_args( $field, $defaults );
@@ -48,10 +49,17 @@ $value = get_option( $name, [] );
48
  <?php foreach ( $elements as $element ):
49
  // build correct name and id
50
  $field_id = $element['id'];
51
- $element['name'] = "{$name}[{$field_id}]";
52
  $element['id'] = "{$id}_{$field_id}";
53
  // get value
54
- $element['value'] = isset( $value[ $field_id ] ) ? $value[ $field_id ] : ( isset( $element['default'] ) ? $element['default'] : '' );
 
 
 
 
 
 
 
55
  ?>
56
  <div class="yith-toggle-content-row <?php echo $element['type'] ?>">
57
  <label for="<?php echo $element['id']; ?>"><?php echo $element['title']; ?></label>
@@ -65,4 +73,4 @@ $value = get_option( $name, [] );
65
  </div>
66
  </div>
67
  </div>
68
- </div>
10
  'custom_attributes' => '',
11
  'elements' => [],
12
  'onoff_field' => true,
13
+ 'save_single_options' => false,
14
 
15
  );
16
  $field = wp_parse_args( $field, $defaults );
49
  <?php foreach ( $elements as $element ):
50
  // build correct name and id
51
  $field_id = $element['id'];
52
+ $element['name'] = false === $save_single_options ? "{$name}[{$field_id}]" : $field_id;
53
  $element['id'] = "{$id}_{$field_id}";
54
  // get value
55
+ $element['value'] = '';
56
+ if( false === $save_single_options ){
57
+ $element['value'] = isset( $value[ $field_id ] ) ? $value[ $field_id ] : ( isset( $element['default'] ) ? $element['default'] : '' );
58
+ }
59
+
60
+ else {
61
+ $element['value'] = get_option( $field_id, $element['default'] );
62
+ }
63
  ?>
64
  <div class="yith-toggle-content-row <?php echo $element['type'] ?>">
65
  <label for="<?php echo $element['id']; ?>"><?php echo $element['title']; ?></label>
73
  </div>
74
  </div>
75
  </div>
76
+ </div>
templates/wishlist-view-footer-mobile.php CHANGED
@@ -21,6 +21,7 @@
21
  * @var $show_ask_estimate_button bool Whether to show Ask an Estimate form
22
  * @var $ask_estimate_url string Ask an estimate destination url
23
  * @var $ask_an_estimate_icon string Ask an estimate button icon
 
24
  * @var $ask_an_estimate_classes string Classes to use for Ask for an estimate button
25
  * @var $additional_info bool Whether to show Additional info textarea in Ask an estimate form
26
  * @var $enable_add_all_to_cart bool Whether to show "Add all to Cart" button
@@ -82,9 +83,9 @@ if ( ! defined( 'YITH_WCWL' ) ) {
82
  <div class="yith_wcwl_footer_additional_action">
83
  <?php if ( $count && $show_ask_estimate_button ) : ?>
84
  <!-- Ask an estimate button -->
85
- <a href="<?php echo ( $additional_info || ! is_user_logged_in() ) ? '#ask_an_estimate_popup' : esc_url( $ask_estimate_url ); ?>" class="<?php echo esc_attr( $ask_an_estimate_classes ); ?> ask-an-estimate-button" <?php echo ( $additional_info ) ? 'data-rel="prettyPhoto[ask_an_estimate]"' : ''; ?> >
86
  <?php echo apply_filters( 'yith_wcwl_ask_an_estimate_icon', $ask_an_estimate_icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
87
- <?php echo esc_html( apply_filters( 'yith_wcwl_ask_an_estimate_text', __( 'Ask for an estimate', 'yith-woocommerce-wishlist' ) ) ); ?>
88
  </a>
89
  <?php endif; ?>
90
 
21
  * @var $show_ask_estimate_button bool Whether to show Ask an Estimate form
22
  * @var $ask_estimate_url string Ask an estimate destination url
23
  * @var $ask_an_estimate_icon string Ask an estimate button icon
24
+ * @var $ask_an_estimate_text string Ask an estimate button text
25
  * @var $ask_an_estimate_classes string Classes to use for Ask for an estimate button
26
  * @var $additional_info bool Whether to show Additional info textarea in Ask an estimate form
27
  * @var $enable_add_all_to_cart bool Whether to show "Add all to Cart" button
83
  <div class="yith_wcwl_footer_additional_action">
84
  <?php if ( $count && $show_ask_estimate_button ) : ?>
85
  <!-- Ask an estimate button -->
86
+ <a href="<?php echo ( $additional_info || ! is_user_logged_in() ) ? '#ask_an_estimate_popup' : esc_url( $ask_estimate_url ); ?>" class="<?php echo esc_attr( $ask_an_estimate_classes ); ?> ask-an-estimate-button" <?php echo ( $additional_info || ! is_user_logged_in() ) ? 'data-rel="prettyPhoto[ask_an_estimate]"' : ''; ?> >
87
  <?php echo apply_filters( 'yith_wcwl_ask_an_estimate_icon', $ask_an_estimate_icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
88
+ <?php echo esc_html( apply_filters( 'yith_wcwl_ask_an_estimate_text', $ask_an_estimate_text ) ); ?>
89
  </a>
90
  <?php endif; ?>
91
 
templates/wishlist-view-footer.php CHANGED
@@ -88,7 +88,7 @@ if ( ! defined( 'YITH_WCWL' ) ) {
88
  <div class="yith_wcwl_footer_additional_action">
89
  <?php if ( $count && $show_ask_estimate_button ) : ?>
90
  <!-- Ask an estimate button -->
91
- <a href="<?php echo ( $additional_info || ! is_user_logged_in() ) ? '#ask_an_estimate_popup' : esc_url( $ask_estimate_url ); ?>" class="<?php echo esc_attr( $ask_an_estimate_classes ); ?> ask-an-estimate-button" <?php echo $additional_info ? 'data-rel="prettyPhoto[ask_an_estimate]"' : ''; ?> >
92
  <?php echo apply_filters( 'yith_wcwl_ask_an_estimate_icon', $ask_an_estimate_icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
93
  <?php echo esc_html( apply_filters( 'yith_wcwl_ask_an_estimate_text', $ask_an_estimate_text ) ); ?>
94
  </a>
88
  <div class="yith_wcwl_footer_additional_action">
89
  <?php if ( $count && $show_ask_estimate_button ) : ?>
90
  <!-- Ask an estimate button -->
91
+ <a href="<?php echo ( $additional_info || ! is_user_logged_in() ) ? '#ask_an_estimate_popup' : esc_url( $ask_estimate_url ); ?>" class="<?php echo esc_attr( $ask_an_estimate_classes ); ?> ask-an-estimate-button" <?php echo ( $additional_info || ! is_user_logged_in() ) ? 'data-rel="prettyPhoto[ask_an_estimate]"' : ''; ?> >
92
  <?php echo apply_filters( 'yith_wcwl_ask_an_estimate_icon', $ask_an_estimate_icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
93
  <?php echo esc_html( apply_filters( 'yith_wcwl_ask_an_estimate_text', $ask_an_estimate_text ) ); ?>
94
  </a>
templates/wishlist-view-mobile.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 3.0.0
8
  */
9
 
10
  /**
@@ -76,7 +76,11 @@ if ( ! defined( 'YITH_WCWL' ) ) {
76
 
77
  <div class="item-details">
78
  <div class="product-name">
79
- <h3><?php echo esc_html( apply_filters( 'woocommerce_in_cartproduct_obj_title', $product->get_title(), $product ) ); ?></h3>
 
 
 
 
80
  <?php do_action( 'yith_wcwl_table_after_product_name', $item ); ?>
81
  </div>
82
 
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 3.0.11
8
  */
9
 
10
  /**
76
 
77
  <div class="item-details">
78
  <div class="product-name">
79
+ <h3>
80
+ <a href="<?php echo esc_url( get_permalink( apply_filters( 'woocommerce_in_cart_product', $item->get_product_id() ) ) ); ?>">
81
+ <?php echo esc_html( apply_filters( 'woocommerce_in_cartproduct_obj_title', $product->get_title(), $product ) ); ?>
82
+ </a>
83
+ </h3>
84
  <?php do_action( 'yith_wcwl_table_after_product_name', $item ); ?>
85
  </div>
86