Version Description
Released on 07 May 2020 =
New: support for WooCommerce 4.1
New: prevent some UserAgents from triggering wishlist handling (avoid spam)
New: added minor css fixes for Storefront theme
Update: plugin framework
Tweak: review add process, to avoid unnecessary items update
Tweak: improved localized date on wishlist table
Tweak: added wishlist as gutenberg block in new wishlist page
Tweak: added "Wishlist page" post status
Tweak: added new check to avoid "Cannot read property contains of undefined" error
Tweak: added search box to All Wishlist view
Fix: show remove button on list mobile when at least one of the two buttons is shown on desktop
Fix: fatal error on empty wishlist page
Dev: added yith_wcwl_is_wishlist_responsive filter, to allow developers disable responsive behaviour for the wishlist
Dev: added yith_wcwl_generated_default_wishlist action
Dev: added yith_wcwl_default_wishlist filter
Dev: added yith_wcwl_add_notice wrapper function, to avoid possible fatal errors when calling wc_add_notice
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Wishlist |
Version | 3.0.10 |
Comparing to | |
See all releases |
Code changes from version 3.0.9 to 3.0.10
- .jshintrc +26 -0
- README.md +17 -2
- README.txt +21 -2
- assets/css/style.css +1 -1
- assets/css/themes/storefront.css +1 -0
- assets/css/unminified/style.css +36 -1
- assets/css/unminified/themes/storefront.css +35 -0
- assets/js/jquery.yith-wcwl.js +1 -1
- assets/js/unminified/jquery.yith-wcwl.js +14 -4
- gulpfile.js +17 -9
- includes/class.yith-wcwl-admin.php +62 -39
- includes/class.yith-wcwl-ajax-handler.php +16 -7
- includes/class.yith-wcwl-form-handler.php +56 -35
- includes/class.yith-wcwl-frontend.php +2 -1
- includes/class.yith-wcwl-install.php +53 -78
- includes/class.yith-wcwl-shortcode.php +184 -181
- includes/class.yith-wcwl-wishlist-factory.php +6 -5
- includes/class.yith-wcwl-wishlist.php +6 -3
- includes/class.yith-wcwl.php +2 -0
- includes/data-stores/class.yith-wcwl-wishlist-data-store.php +42 -8
- includes/data-stores/class.yith-wcwl-wishlist-item-data-store.php +16 -13
- includes/functions.yith-wcwl.php +224 -176
- init.php +2 -2
- languages/yith-woocommerce-wishlist-da_DK.mo +0 -0
- languages/yith-woocommerce-wishlist-da_DK.po +681 -327
- languages/yith-woocommerce-wishlist-de_DE.mo +0 -0
- languages/yith-woocommerce-wishlist-de_DE.po +700 -328
- languages/yith-woocommerce-wishlist-es_AR.mo +0 -0
- languages/yith-woocommerce-wishlist-es_AR.po +703 -329
- languages/yith-woocommerce-wishlist-es_ES.mo +0 -0
- languages/yith-woocommerce-wishlist-es_ES.po +904 -389
- languages/yith-woocommerce-wishlist-es_MX.mo +0 -0
- languages/yith-woocommerce-wishlist-es_MX.po +700 -328
- languages/yith-woocommerce-wishlist-fa_IR.mo +0 -0
- languages/yith-woocommerce-wishlist-fa_IR.po +703 -329
- languages/yith-woocommerce-wishlist-fr_FR.mo +0 -0
- languages/yith-woocommerce-wishlist-fr_FR.po +700 -328
- languages/yith-woocommerce-wishlist-he_IL.mo +0 -0
- languages/yith-woocommerce-wishlist-he_IL.po +700 -328
- languages/yith-woocommerce-wishlist-hr.mo +0 -0
- languages/yith-woocommerce-wishlist-hr.po +709 -330
- languages/yith-woocommerce-wishlist-it_IT.mo +0 -0
- languages/yith-woocommerce-wishlist-it_IT.po +901 -388
- languages/yith-woocommerce-wishlist-ko_KR.mo +0 -0
- languages/yith-woocommerce-wishlist-ko_KR.po +707 -329
- languages/yith-woocommerce-wishlist-nl_NL.mo +0 -0
- languages/yith-woocommerce-wishlist-nl_NL.po +410 -96
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"boss": true,
|
3 |
+
"curly": true,
|
4 |
+
"eqeqeq": true,
|
5 |
+
"eqnull": true,
|
6 |
+
"es3": true,
|
7 |
+
"expr": true,
|
8 |
+
"immed": true,
|
9 |
+
"noarg": true,
|
10 |
+
"onevar": true,
|
11 |
+
"quotmark": "single",
|
12 |
+
"trailing": true,
|
13 |
+
"undef": true,
|
14 |
+
"unused": true,
|
15 |
+
"multistr": true,
|
16 |
+
|
17 |
+
"browser": true,
|
18 |
+
|
19 |
+
"globals": {
|
20 |
+
"_": false,
|
21 |
+
"Backbone": false,
|
22 |
+
"jQuery": false,
|
23 |
+
"JSON": false,
|
24 |
+
"wp": false
|
25 |
+
}
|
26 |
+
}
|
@@ -56,6 +56,7 @@ The free version of our plugin works like a charm, but the premium one is an eve
|
|
56 |
* Allow users to manage wishlists, rename and delete them, add or remove items
|
57 |
* Allow users to search and see registered wishlists
|
58 |
* Allow users to set visibility options for each wishlist, by making them either public (visible to everyone), private (visible to the owner only) or shared (visible only to people it has been shared with)
|
|
|
59 |
* Show multiple ‘Add to Cart’ buttons in the wishlist table
|
60 |
* Show product price variations (Amazon style)
|
61 |
* Allow users to move an element from one wishlist to another, right from the wishlist table
|
@@ -150,10 +151,24 @@ Yes, of course you can. To avoid Wishlist page to show product prices, you can h
|
|
150 |
|
151 |
## Changelog
|
152 |
|
153 |
-
### 3.0.
|
154 |
|
155 |
-
*
|
|
|
|
|
156 |
* Update: plugin framework
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
|
159 |
## Support
|
56 |
* Allow users to manage wishlists, rename and delete them, add or remove items
|
57 |
* Allow users to search and see registered wishlists
|
58 |
* Allow users to set visibility options for each wishlist, by making them either public (visible to everyone), private (visible to the owner only) or shared (visible only to people it has been shared with)
|
59 |
+
* Allow users to manage the item quantity in the wishlist
|
60 |
* Show multiple ‘Add to Cart’ buttons in the wishlist table
|
61 |
* Show product price variations (Amazon style)
|
62 |
* Allow users to move an element from one wishlist to another, right from the wishlist table
|
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
|
@@ -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.
|
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.
|
13 |
|
14 |
== Description ==
|
15 |
|
@@ -113,6 +113,25 @@ Yes, of course you can. To avoid Wishlist page to show product prices, you can h
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
= 3.0.9 - Released on 09 March 2020 =
|
117 |
|
118 |
* Tweak: use wp_kses_post instead of esc_html for browse wishlist text
|
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 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= 3.0.10 - Released on 07 May 2020 =
|
117 |
+
|
118 |
+
* New: support for WooCommerce 4.1
|
119 |
+
* New: prevent some UserAgents from triggering wishlist handling (avoid spam)
|
120 |
+
* New: added minor css fixes for Storefront theme
|
121 |
+
* Update: plugin framework
|
122 |
+
* Tweak: review add process, to avoid unnecessary items update
|
123 |
+
* Tweak: improved localized date on wishlist table
|
124 |
+
* Tweak: added wishlist as gutenberg block in new wishlist page
|
125 |
+
* Tweak: added "Wishlist page" post status
|
126 |
+
* Tweak: added new check to avoid "Cannot read property contains of undefined" error
|
127 |
+
* Tweak: added search box to All Wishlist view
|
128 |
+
* Fix: show remove button on list mobile when at least one of the two buttons is shown on desktop
|
129 |
+
* Fix: fatal error on empty wishlist page
|
130 |
+
* Dev: added yith_wcwl_is_wishlist_responsive filter, to allow developers disable responsive behaviour for the wishlist
|
131 |
+
* Dev: added yith_wcwl_generated_default_wishlist action
|
132 |
+
* Dev: added yith_wcwl_default_wishlist filter
|
133 |
+
* Dev: added yith_wcwl_add_notice wrapper function, to avoid possible fatal errors when calling wc_add_notice
|
134 |
+
|
135 |
= 3.0.9 - Released on 09 March 2020 =
|
136 |
|
137 |
* Tweak: use wp_kses_post instead of esc_html for browse wishlist text
|
@@ -1 +1 @@
|
|
1 |
-
.woocommerce a.selectBox{background:#fff;min-width:100px;margin-right:10px;color:inherit}.woocommerce a.selectBox,.woocommerce a.selectBox:hover{border-bottom:1px solid #bbb!important}.woocommerce a.selectBox:hover{color:inherit}.woocommerce a.selectBox:focus{border:1px solid #ccc}.selectBox-dropdown .selectBox-label{vertical-align:middle;padding:3px 8px}.selectBox-dropdown .selectBox-arrow{border:none;background:url(../images/jquery.selectBox-arrow.png) center right no-repeat}.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow{background:url(../images/jquery.selectBox-arrow.png) center left no-repeat}.selectBox-dropdown-menu{border-bottom-left-radius:3px;border-bottom-right-radius:3px;padding:5px;font-size:80%}.selectBox-dropdown-menu li a{color:inherit;padding:5px 8px;border-radius:3px}.selectBox-dropdown-menu a:hover{color:inherit;text-decoration:none}select.selectBox.change-wishlist{max-width:100px}.selectBox.change-wishlist{width:auto!important}.change-wishlist-selectBox-dropdown-menu{width:auto!important}.yith-wcwl-with-pretty-photo{overflow:hidden}.woocommerce .wishlist-fragment .blockUI.blockOverlay::before,.woocommerce .yith-wcwl-popup-form .blockUI.blockOverlay::before{display:none}.yith-wcwl-popup{display:none}.yith-wcwl-popup-content h3{text-align:center;font-size:1.5em}.yith-wcwl-popup-content .heading-icon,.yith-wcwl-popup-feedback .heading-icon{text-align:center;display:block;font-size:70px;color:#333;margin-bottom:15px}.yith-wcwl-popup-content .popup-description{text-align:center;font-weight:600;margin-bottom:15px}.yith-wcwl-popup-content .popup-description a.show-tab.active{cursor:inherit;color:inherit;pointer-events:none}.yith-wcwl-popup-feedback p.feedback{margin-top:1.5em;text-align:center;font-size:1.1rem;font-weight:600}.yith-wcwl-popup-content label{display:block}.yith-wcwl-popup-content input[type=text],.yith-wcwl-popup-content select{padding:10px 7px}.yith-wcwl-popup-content .create{display:none}.yith-wcwl-popup-content .yith-wcwl-second-row{display:none}.yith-wcwl-popup-footer{margin-top:15px}.yith-wcwl-popup-footer .button.wishlist-submit{display:block;width:100%;text-align:center}.pp_pic_holder.pp_woocommerce.feedback{max-width:450px!important}.pp_pic_holder.pp_woocommerce.feedback .pp_content{width:auto!important}.yith-wcwl-popup-feedback{margin-top:2em;margin-bottom:2em}.yith-wcwl-add-button.with-dropdown{position:relative;padding:15px 0}.yes-js .yith-wcwl-add-button ul.yith-wcwl-dropdown{display:none;list-style:none;margin-bottom:0;padding:5px 25px;border:1px solid #cdcdcd;background:#fff;position:absolute;z-index:15;top:calc(100% - 5px);min-width:200px}.yith-wcwl-add-button.show-dropdown ul.yith-wcwl-dropdown{display:block}.yith-wcwl-add-button ul.yith-wcwl-dropdown li{padding:15px;padding-left:0;text-transform:uppercase;font-size:.8em}.yith-wcwl-add-button ul.yith-wcwl-dropdown li a{font-size:1em!important;color:inherit;box-shadow:none}.yith-wcwl-add-button ul.yith-wcwl-dropdown li a:hover{color:initial}.yith-wcwl-add-button ul.yith-wcwl-dropdown li:before{font-family:FontAwesome;content:'\f067';margin-right:15px}.yith-wcwl-add-button ul.yith-wcwl-dropdown li:not(:last-child){border-bottom:1px solid #cdcdcd}.yith-wcwl-add-to-wishlist .separator+[data-title]{display:inline-block}.yith-wcwl-add-to-wishlist .with-tooltip{position:relative}.yith-wcwl-tooltip{z-index:10;padding:5px 10px;border-radius:5px;text-align:center;top:calc(100% + 5px);pointer-events:none;cursor:initial;font-size:.6875rem;line-height:normal;display:none}.with-dropdown .yith-wcwl-tooltip{top:auto;bottom:calc(100% + 10px)}.with-tooltip .yith-wcwl-tooltip{position:absolute}.with-tooltip .yith-wcwl-tooltip:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 2px);width:0;height:0;background:0 0!important;border-left:5px solid transparent!important;border-right:5px solid transparent!important;border-bottom:5px solid}.with-dropdown .with-tooltip .yith-wcwl-tooltip:before{bottom:-5px;top:auto;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;border-bottom:none}#yith-wcwl-popup-message{font-weight:700;line-height:50px;text-align:center;background:#fff;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3);position:fixed;top:50%;left:50%;padding:7px 40px;z-index:10000}.wishlist-title{display:inline-block}.wishlist-title h2{display:inline-block;padding:5px}.wishlist-title.wishlist-title-with-form h2:hover{background:#efefef}.wishlist-title a.show-title-form{cursor:pointer;visibility:hidden}.wishlist-title:hover a.show-title-form{visibility:visible}.yes-js #yith-wcwl-form .hidden-title-form{display:none;margin:25px 0 39px}table.wishlist_table{font-size:80%}table.wishlist_table tr{position:relative}table.wishlist_table thead th{border-top:1px solid;padding:16px 12px}table.wishlist_table tbody td{padding:16px 12px}table.wishlist_table tbody td,table.wishlist_table thead th{border-color:#e7e7e7}.wishlist_table tr td,.wishlist_table tr th.product-checkbox,.wishlist_table tr th.wishlist-delete{text-align:center}.wishlist_table tr th.product-checkbox{vertical-align:middle;width:40px}.wishlist_table tr th.product-remove{vertical-align:middle;width:40px}.wishlist_table tr th.product-thumbnail{width:80px}.wishlist_table tfoot td,.wishlist_table tr td.product-name,.wishlist_table tr td.product-thumbnail,.wishlist_table tr td.wishlist-name,.wishlist_table tr td.wishlist-privacy{text-align:left}.wishlist_table tr td.product-remove{padding:16px 0}.wishlist_table tr td.product-thumbnail a{display:block;border:none;max-width:80px}.wishlist_table tr td.product-thumbnail a img{width:100%}.wishlist_table tr td.product-arrange{cursor:grab}.wishlist_table tr td.product-arrange:active{cursor:grabbing}.wishlist_table .product-stock-status span.wishlist-in-stock{color:#297e29}.wishlist_table .product-stock-status span.wishlist-out-of-stock{color:red}.wishlist_table .product-add-to-cart span.dateadded{display:block}.wishlist_table .product-add-to-cart a{display:table!important;margin:0 auto 5px!important;text-align:center}.wishlist_table .product-add-to-cart a.button{padding:6px 25px!important}.wishlist_table .product-add-to-cart a>img{display:inline;max-width:2em}.wishlist_table .price-variation{display:block}.wishlist_table .price-variation.decrease .variation-rate{color:red}.wishlist_table .price-variation .old-price{display:block}.wishlist_table a.button{white-space:normal;margin-bottom:5px!important}.wishlist_table.modern_grid{list-style:none;margin:0 -7px 35px;font-size:0}.wishlist_table.modern_grid li{display:inline-block;vertical-align:top;width:33.33%;padding:0 7px;margin-bottom:15px}.wishlist_table.images_grid li.wishlist-empty,.wishlist_table.modern_grid li.wishlist-empty{width:100%;font-size:1rem}.wishlist_table.images_grid li.show{z-index:10}.wishlist_table.modern_grid li .item-wrapper{display:table;margin:0 -7px}.wishlist_table.modern_grid li .item-details,.wishlist_table.modern_grid li .product-thumbnail{display:table-cell;vertical-align:top;box-sizing:border-box;width:50%;padding:0 7px;font-size:1rem}.wishlist_table.images_grid li .product-thumbnail,.wishlist_table.modern_grid li .product-thumbnail{position:relative}.wishlist_table.images_grid li .product-thumbnail .product-checkbox,.wishlist_table.modern_grid li .product-thumbnail .product-checkbox{position:absolute;top:7px;left:15px;z-index:2}.wishlist_table.modern_grid li .product-thumbnail>a{display:block}.wishlist_table.modern_grid li .product-thumbnail>a img{display:block}.wishlist_table.images_grid li.show .product-thumbnail>a img,.wishlist_table.images_grid li:hover .product-thumbnail>a img{filter:brightness(1.1)}.wishlist_table.modern_grid.wishlist_view li .item-details{position:relative}.wishlist_table.modern_grid.wishlist_view li .item-details:before{content:'';display:block;top:0;bottom:0;left:7px;background:#fff;position:absolute;right:7px;z-index:0;border:1px solid #cdcdcd}.wishlist_table.images_grid li .item-details{display:none;position:absolute;z-index:2;bottom:15px;left:calc(50% - 150px);width:300px;background:#fff;padding:10px 20px;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3)}.wishlist_table.images_grid li.show .item-details{display:block}.wishlist_table.modern_grid li .item-details .item-details-wrapper{padding:15px 20px;line-height:normal;position:relative}.wishlist_table.images_grid li .item-details a.close{position:absolute;top:10px;right:20px}.wishlist_table.images_grid li .item-details h3,.wishlist_table.mobile li .item-details h3,.wishlist_table.modern_grid li .item-details h3{margin-bottom:7px}.wishlist_table.images_grid li .item-details table.item-details-table,.wishlist_table.mobile li .item-details table.item-details-table,.wishlist_table.mobile li table.additional-info,.wishlist_table.modern_grid li .item-details table.item-details-table{border:none;margin-bottom:7px}.wishlist_table.images_grid li .item-details table.item-details-table td,.wishlist_table.mobile li .item-details table.item-details-table td,.wishlist_table.mobile li table.additional-info td,.wishlist_table.modern_grid li .item-details table.item-details-table td{border:none;font-size:.7em;padding:3px;vertical-align:top}.wishlist_table.images_grid li .item-details table.item-details-table td.label,.wishlist_table.mobile li .item-details table.item-details-table td.label,.wishlist_table.mobile li table.additional-info td.label,.wishlist_table.modern_grid li .item-details table.item-details-table td.label{text-align:left;font-weight:700;width:40%}.wishlist_table.images_grid li .item-details table.item-details-table td.value,.wishlist_table.mobile li .item-details table.item-details-table td.value,.wishlist_table.mobile li table.additional-info td.value,.wishlist_table.modern_grid li .item-details table.item-details-table td.value{text-align:right}.wishlist_table.modern_grid li .item-details table.item-details-table td.value a.selectBox{margin-right:0}.wishlist_table.images_grid li .item-details table.item-details-table td.value input,.wishlist_table.mobile li table.additional-info td.value input,.wishlist_table.modern_grid li .item-details table.item-details-table td.value input{width:auto}.wishlist_table.images_grid li .item-details .product-add-to-cart,.wishlist_table.modern_grid li .item-details .product-add-to-cart{text-align:center;margin-bottom:7px}.wishlist_table.images_grid li .item-details .move-to-another-wishlist,.wishlist_table.modern_grid li .item-details .move-to-another-wishlist{text-align:center;margin-bottom:7px}.wishlist_table.images_grid li .item-details .product-remove,.wishlist_table.modern_grid li .item-details .product-remove{text-align:right}.wishlist_table.images_grid li .item-details .product-remove a,.wishlist_table.modern_grid li .item-details .product-remove a{border:none;border-radius:0;display:inline-block}.wishlist_table.mobile{list-style:none;margin-left:0}.wishlist_table.mobile li{margin-bottom:7px}.wishlist_table.mobile li .product-checkbox{display:inline-block;width:20px;vertical-align:top}.wishlist_table.mobile li .item-wrapper{display:inline-block;width:calc(100% - 25px);vertical-align:top;margin-bottom:7px}.wishlist_table.wishlist_manage_table.mobile li .item-wrapper{width:100%}.wishlist_table.mobile li .item-wrapper .product-thumbnail{display:inline-block;max-width:60px;margin-right:10px}.wishlist_table.mobile li .item-wrapper .item-details{display:inline-block;width:calc(100% - 80px);vertical-align:top}.wishlist_table.mobile.with-checkbox li .additional-info-wrapper{padding-left:20px}.wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist,.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart{text-align:center;margin-bottom:7px}.wishlist_table.mobile li .additional-info-wrapper .product-remove{text-align:right}a.add_to_wishlist{cursor:pointer}.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon{margin-right:5px}.yith-wcwl-add-to-wishlist a.add_to_wishlist>img,.yith-wcwl-add-to-wishlist a.delete_item>img,.yith-wcwl-add-to-wishlist a.move_to_another_wishlist>img{max-width:32px;display:inline-block;margin-right:10px}a.add_to_wishlist+a.view-wishlist,a.delete_item+a.view-wishlist{margin-left:15px}.summary .single_add_to_wishlist.button,div.product .woocommerce-price-and-add .single_add_to_wishlist.button{margin:0}.wishlist_table .add_to_cart.button{padding:7px 12px;line-height:normal}.yith-wcwl-add-to-wishlist{margin-top:10px}.hidden-title-form a.hide-title-form i,.hidden-title-form button i,.wishlist-title a.show-title-form i,.wishlist_manage_table tfoot a.create-new-wishlist i,.wishlist_manage_table tfoot button.submit-wishlist-changes i,.wishlist_table .add_to_cart.button i,.wishlist_table .ask-an-estimate-button i,.yith-wcwl-add-button>a i,.yith-wcwl-wishlist-new button i,.yith-wcwl-wishlist-search-form button.wishlist-search-button i{margin-right:10px}.hidden-title-form a.hide-title-form,.wishlist-title a.show-title-form,.wishlist_manage_table a.create-new-wishlist,.wishlist_manage_table button.submit-wishlist-changes,.wishlist_table .add_to_cart.button,.wishlist_table a.ask-an-estimate-button,.woocommerce .yith-wcwl-wishlist-new button,.yith-wcwl-add-button a.add_to_wishlist,.yith-wcwl-popup-button a.add_to_wishlist,.yith-wcwl-wishlist-search-form button.wishlist-search-button{margin:0;box-shadow:none;text-shadow:none}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist{position:absolute;z-index:10;margin:0;top:10px;left:10px}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .with-dropdown{padding:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .add_to_wishlist,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .disabled_item,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .open-pretty-photo{font-size:0;background:0 0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .delete_item,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .move_to_another_wishlist{font-size:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback{display:none}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback+a{font-size:0;background:0 0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist i{font-size:1.6rem;margin:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist img{margin:0}.woocommerce .wishlist-title{margin-bottom:30px}.woocommerce .wishlist-title h2{vertical-align:middle;margin-bottom:0}.woocommerce .hidden-title-form button{padding:7px 24px;vertical-align:middle;border:none;position:relative}.woocommerce .hidden-title-form button:active{top:1px}.woocommerce .hidden-title-form a.hide-title-form{vertical-align:middle;line-height:normal}.woocommerce .back-to-all-wishlists{margin-bottom:20px}.woocommerce #content table.wishlist_table.cart a.remove{color:#c3c3c3;margin:0 auto}.woocommerce #content table.wishlist_table.cart a.remove:hover{background-color:#c3c3c3;color:#fff}.yith-wcwl-share{margin-bottom:35px}.yith-wcwl-share h4.yith-wcwl-share-title{margin:10px 0}.yith-wcwl-share ul{margin:5px 0;padding:0}.entry-content .yith-wcwl-share ul li,.yith-wcwl-share ul li{display:inline-block;margin-left:0;margin-right:0}.yith-wcwl-share li a{color:#fff;text-align:center;text-decoration:none;line-height:1;padding:5px;display:block;border:none;min-width:26px;min-height:26px}.yith-wcwl-share li a:hover{color:#fff}.yith-wcwl-share li a>img{max-width:1em}.copy-trigger{cursor:pointer}.woocommerce .ask-an-estimate-button>img{max-width:1em;display:inline;margin-right:5px}#ask_an_estimate_popup{display:none}.wishlist-ask-an-estimate-popup .ask-an-estimate-button-popup{width:100%}.wishlist-ask-an-estimate-popup .woocommerce-error{margin-bottom:0}.wishlist-ask-an-estimate-popup #additional_notes{min-height:150px}.ask-an-estimate-confirmation{padding:0 30px;text-align:center}.yith_wcwl_wishlist_footer>div{margin-bottom:15px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action{float:left}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action #bulk_actions{min-width:250px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_update{float:right}.yith_wcwl_wishlist_footer .yith-wcwl-share{float:left;clear:both}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action{float:right}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action>*{vertical-align:middle}.yith_wcwl_wishlist_update+.yith_wcwl_footer_additional_action{clear:both}.wishlist-page-links{clear:both}#move_to_another_wishlist{display:none}.yith-wcwl-wishlist-new{padding:20px 0}.yith-wcwl-popup-content .yith-wcwl-wishlist-new{padding:0}.yith-wcwl-wishlist-new .wishlist-name{display:inline-block}.yith-wcwl-wishlist-new .wishlist-privacy-radio label{display:block}.yith-wcwl-popup-content .create-wishlist-button{margin-top:15px;width:100%}#create_new_wishlist{display:none}.wishlist_manage_table select{vertical-align:middle;margin-right:10px}.wishlist_manage_table td.wishlist-name .wishlist-title{margin-bottom:0}.wishlist_manage_table td.wishlist-name .wishlist-title .show-title-form{display:inline-block;padding:0;border:none;background:0 0;top:0;margin:0}.wishlist_manage_table td.wishlist-name a.show-title-form i{padding:5px;margin:0}.wishlist_manage_table td.wishlist-name:hover a.show-title-form{visibility:visible}.wishlist_manage_table td.wishlist-name .hidden-title-form{margin:0!important}.wishlist_manage_table td.wishlist-name .hidden-title-form input[type=text]{width:100%;min-width:0}.wishlist_manage_table td.wishlist-name .hidden-title-form{position:relative}.wishlist_manage_table td.wishlist-name .hidden-title-form .edit-title-buttons{position:absolute;right:0;top:0}.wishlist_manage_table td.wishlist-name .hidden-title-form a{float:right;cursor:pointer;margin-left:5px}.wishlist_manage_table td.wishlist-name .hidden-title-form a i{padding:5px;margin:0}table.wishlist_manage_table tfoot td{text-align:right;padding:24px 12px}.wishlist_manage_table tfoot button.submit-wishlist-changes{padding:7px 24px;vertical-align:middle;border:1px solid;border-radius:3px;position:relative;line-height:normal}.wishlist_manage_table tfoot button.submit-wishlist-changes:active{top:1px}.wishlist_manage_table tfoot a.create-new-wishlist{vertical-align:middle;line-height:normal;padding:7px 24px}.wishlist_manage_table.modern_grid li .item-wrapper{display:block;margin:0;padding:40px 50px;background:#fff;border:1px solid #cdcdcd}.wishlist_manage_table.modern_grid li .item-details,.wishlist_manage_table.modern_grid li .product-thumbnail{display:block;width:100%;padding:0}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form{position:relative}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form .edit-title-buttons{position:absolute;right:0;top:0}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form .edit-title-buttons a{float:right;line-height:1;cursor:pointer;margin-left:5px}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form .edit-title-buttons a i{padding:5px;margin:0}.wishlist_manage_table.modern_grid li .product-thumbnail img:first-child{width:100%;margin-bottom:15px}.wishlist_manage_table.modern_grid li .product-thumbnail img{width:calc(50% - 8px)}.wishlist_manage_table.modern_grid li .product-thumbnail img:nth-child(3){margin-left:15px}.wishlist_manage_table.modern_grid li .wishlist-title-with-form{display:block}.wishlist_manage_table.modern_grid li .wishlist-title-with-form h3{display:inline-block}.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form,.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form:hover{visibility:visible;float:right;margin:0;background:0 0;color:inherit}.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form i{margin:0}.wishlist_manage_table.modern_grid li .hidden-title-form{margin-top:0!important}.wishlist_manage_table.modern_grid li .hidden-title-form input[type=text]{width:100%;min-width:0}.wishlist_manage_table.mobile li{margin-bottom:30px}.wishlist_manage_table.mobile li .item-wrapper .item-details{width:100%}.wishlist_manage_table.mobile li .item-details .hidden-title-form{position:relative}.wishlist_manage_table.mobile li .item-details .hidden-title-form input[type=text]{width:100%}.wishlist_manage_table.mobile li .item-details .hidden-title-form .edit-title-buttons{position:absolute;right:0;top:0}.wishlist_manage_table.mobile li .item-details .hidden-title-form .edit-title-buttons a{float:right;line-height:1;cursor:pointer;margin-left:5px}.wishlist_manage_table.mobile li .item-details .hidden-title-form .edit-title-buttons a i{padding:5px;margin:0}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title{display:block;border-bottom:1px solid #cdcdcd;position:relative}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title-with-form a.show-title-form{position:absolute;right:0;top:0;visibility:visible}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title-with-form a.show-title-form i{margin-right:0}.wishlist_manage_table.mobile li .item-details table.item-details-table td.value a.selectBox{margin-right:0}.wishlist_manage_table.mobile li .item-details table.item-details-table td.value a.wishlist-download{float:left}.yith-wcwl-wishlist-search-form{text-align:center;padding:20px 0}.yith-wcwl-wishlist-search-form #wishlist_search{display:inline-block;max-width:300px;vertical-align:middle}.yith-wcwl-wishlist-search-form button.wishlist-search-button{display:inline-block;padding:7px 24px;vertical-align:middle;border:1px solid;border-radius:3px;position:relative;line-height:normal}.yith-wcwl-wishlist-search-form button.wishlist-search-button i{margin:0}.yith-wcwl-wishlist-search-form button.wishlist-search-button:active{top:1px}.yith-wcwl-search-results .wishlist-owner{text-align:left}.yith-wcwl-search-results .wishlist-owner .thumb{display:inline-block;margin-right:15px}.yith-wcwl-add-to-wishlist .ajax-loading{box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important;display:inline!important;margin-left:5px;vertical-align:middle;visibility:hidden;width:16px!important;height:16px!important}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown li,.widget_yith-wcwl-lists ul.dropdown li{padding:0}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists>li a,.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown>li a,.widget_yith-wcwl-lists ul.dropdown ul.lists>li a,.widget_yith-wcwl-lists ul.dropdown>li a{display:block;padding:5px 15px}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists>li a,.widget_yith-wcwl-lists ul.dropdown ul.lists>li a{padding:5px 25px}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown>li.lists-section,.widget_yith-wcwl-lists ul.dropdown>li.lists-section{border-bottom:1px solid #e7e7e7}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists,.widget_yith-wcwl-lists ul.dropdown ul.lists{margin:0}.elementor-widget-wp-widget-yith-wcwl-items .mini,.widget_yith-wcwl-items .mini{position:relative}.elementor-widget-wp-widget-yith-wcwl-items .heading,.widget_yith-wcwl-items .heading{text-align:center;cursor:pointer}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading,.widget_yith-wcwl-items .mini .heading{display:inline-block}.elementor-widget-wp-widget-yith-wcwl-items .heading a,.widget_yith-wcwl-items .heading a{color:inherit}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter,.widget_yith-wcwl-items .extended .heading .items-counter{position:relative}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter i,.widget_yith-wcwl-items .extended .heading .items-counter i{font-size:70px;position:relative;margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading .items-counter i,.widget_yith-wcwl-items .mini .heading .items-counter i{font-size:30px}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter .items-count,.widget_yith-wcwl-items .extended .heading .items-counter .items-count{display:block;position:absolute;left:0;right:0;text-align:center;top:calc(50% - 20px);font-size:1rem}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading .items-counter .items-count,.widget_yith-wcwl-items .mini .heading .items-counter .items-count{font-size:1rem}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading h3:after,.widget_yith-wcwl-items .extended .heading h3:after{content:'';display:block;max-width:80px;border-bottom:1px solid #cdcdcd;margin:10px auto}.elementor-widget-wp-widget-yith-wcwl-items .mini .list,.widget_yith-wcwl-items .mini .list{position:absolute;z-index:1;left:0;background:#fff;padding:25px 40px;display:none;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3)}.elementor-widget-wp-widget-yith-wcwl-items .mini:hover .list,.widget_yith-wcwl-items .mini:hover .list{display:block}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget,.widget_yith-wcwl-items ul.product_list_widget{margin-bottom:40px!important}.elementor-widget-wp-widget-yith-wcwl-items p.empty-wishlist,.widget_yith-wcwl-items p.empty-wishlist{margin-bottom:0!important}.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget,.widget_yith-wcwl-items .mini ul.product_list_widget{margin-left:-20px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li,.widget_yith-wcwl-items ul.product_list_widget li{display:table}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li:not(:last-child),.widget_yith-wcwl-items ul.product_list_widget li:not(:last-child){margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .image-thumb,.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,.widget_yith-wcwl-items ul.product_list_widget li .image-thumb,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.widget_yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists{display:table-cell;vertical-align:middle}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,.widget_yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists{font-size:1.2rem}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .image-thumb img. .widget_yith-wcwl-items ul.product_list_widget li .image-thumb img{margin-left:10px;max-width:40px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info{display:inline-block;vertical-align:middle;margin-left:10px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info a,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info a{display:inline-block}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info>*,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info>*{display:block}.elementor-widget-wp-widget-yith-wcwl-items .show-wishlist,.elementor-widget-wp-widget-yith-wcwl-items a.add_all_to_cart,.widget_yith-wcwl-items .show-wishlist,.widget_yith-wcwl-items a.add_all_to_cart{display:block!important}.elementor-widget-wp-widget-yith-wcwl-items .show-wishlist,.widget_yith-wcwl-items .show-wishlist{margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items a.add_all_to_cart,.widget_yith-wcwl-items a.add_all_to_cart{text-align:center}@media(max-width:768px){.yith_wcwl_wishlist_bulk_action select{width:100%;margin-bottom:15px}.yith_wcwl_wishlist_bulk_action input{float:right}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action{float:none}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action .ask-an-estimate-button{width:100%;text-align:center}}
|
1 |
+
.woocommerce a.selectBox{background:#fff;min-width:100px;margin-right:10px;color:inherit}.woocommerce a.selectBox,.woocommerce a.selectBox:hover{border-bottom:1px solid #bbb!important}.woocommerce a.selectBox:hover{color:inherit}.woocommerce a.selectBox:focus{border:1px solid #ccc}.selectBox-dropdown .selectBox-label{vertical-align:middle;padding:3px 8px}.selectBox-dropdown .selectBox-arrow{border:none;background:url(../images/jquery.selectBox-arrow.png) center right no-repeat}.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow{background:url(../images/jquery.selectBox-arrow.png) center left no-repeat}.selectBox-dropdown-menu{border-bottom-left-radius:3px;border-bottom-right-radius:3px;padding:5px;font-size:80%}.selectBox-dropdown-menu li a{color:inherit;padding:5px 8px;border-radius:3px}.selectBox-dropdown-menu a:hover{color:inherit;text-decoration:none}select.selectBox.change-wishlist{max-width:100px}.selectBox.change-wishlist{width:auto!important}.change-wishlist-selectBox-dropdown-menu{width:auto!important}.yith-wcwl-with-pretty-photo{overflow:hidden}.yith-wcwl-with-pretty-photo .pp_content{height:auto!important}.woocommerce .wishlist-fragment .blockUI.blockOverlay::before,.woocommerce .yith-wcwl-popup-form .blockUI.blockOverlay::before{display:none}.yith-wcwl-popup{display:none}.yith-wcwl-popup-content h3{text-align:center;font-size:1.5em}.yith-wcwl-popup-content .heading-icon,.yith-wcwl-popup-feedback .heading-icon{text-align:center;display:block;font-size:70px;color:#333;margin-bottom:15px}.yith-wcwl-popup-content .popup-description{text-align:center;font-weight:600;margin-bottom:15px}.yith-wcwl-popup-content .popup-description a.show-tab.active{cursor:inherit;color:inherit;pointer-events:none}.yith-wcwl-popup-feedback p.feedback{margin-top:1.5em;text-align:center;font-size:1.1rem;font-weight:600}.yith-wcwl-popup-content label{display:block}.yith-wcwl-popup-content input[type=text],.yith-wcwl-popup-content select{padding:10px 7px}.yith-wcwl-popup-content .create{display:none}.yith-wcwl-popup-content .yith-wcwl-second-row{display:none}.yith-wcwl-popup-footer{margin:15px 0}.yith-wcwl-popup-footer .button.wishlist-submit{display:block;width:100%;text-align:center}.pp_pic_holder.pp_woocommerce.feedback{max-width:450px!important}.pp_pic_holder.pp_woocommerce.feedback .pp_content{width:auto!important}.yith-wcwl-popup-feedback{margin-top:2em;margin-bottom:2em}.yith-wcwl-add-button.with-dropdown{position:relative;padding:15px 0}.yes-js .yith-wcwl-add-button ul.yith-wcwl-dropdown{display:none;list-style:none;margin-bottom:0;padding:5px 25px;border:1px solid #cdcdcd;background:#fff;position:absolute;z-index:15;top:calc(100% - 5px);min-width:200px}.yith-wcwl-add-button.show-dropdown ul.yith-wcwl-dropdown{display:block}.yith-wcwl-add-button ul.yith-wcwl-dropdown li{padding:15px;padding-left:0;text-transform:uppercase;font-size:.8em}.yith-wcwl-add-button ul.yith-wcwl-dropdown li a{font-size:1em!important;color:inherit;box-shadow:none}.yith-wcwl-add-button ul.yith-wcwl-dropdown li a:hover{color:initial}.yith-wcwl-add-button ul.yith-wcwl-dropdown li:before{font-family:FontAwesome;content:'\f067';margin-right:15px}.yith-wcwl-add-button ul.yith-wcwl-dropdown li:not(:last-child){border-bottom:1px solid #cdcdcd}.yith-wcwl-add-to-wishlist .separator+[data-title]{display:inline-block}.yith-wcwl-add-to-wishlist .with-tooltip{position:relative}.yith-wcwl-tooltip{z-index:10;padding:5px 10px;border-radius:5px;text-align:center;top:calc(100% + 5px);pointer-events:none;cursor:initial;font-size:.6875rem;line-height:normal;display:none}.with-dropdown .yith-wcwl-tooltip{top:auto;bottom:calc(100% + 10px)}.with-tooltip .yith-wcwl-tooltip{position:absolute}.with-tooltip .yith-wcwl-tooltip:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 2px);width:0;height:0;background:0 0!important;border-left:5px solid transparent!important;border-right:5px solid transparent!important;border-bottom:5px solid}.with-dropdown .with-tooltip .yith-wcwl-tooltip:before{bottom:-5px;top:auto;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;border-bottom:none}#yith-wcwl-popup-message{font-weight:700;line-height:50px;text-align:center;background:#fff;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3);position:fixed;top:50%;left:50%;padding:7px 40px;z-index:10000}.wishlist-title{display:inline-block}.wishlist-title h2{display:inline-block;padding:5px}.wishlist-title.wishlist-title-with-form h2:hover{background:#efefef}.wishlist-title a.show-title-form{cursor:pointer;visibility:hidden}.wishlist-title:hover a.show-title-form{visibility:visible}.yes-js #yith-wcwl-form .hidden-title-form{display:none;margin:25px 0 39px}table.wishlist_table{font-size:80%}table.wishlist_table tr{position:relative}table.wishlist_table thead th{border-top:1px solid;padding:16px 12px}table.wishlist_table tbody td{padding:16px 12px}table.wishlist_table tbody td,table.wishlist_table thead th{border-color:#e7e7e7}.wishlist_table tr td,.wishlist_table tr th.product-checkbox,.wishlist_table tr th.wishlist-delete{text-align:center}.wishlist_table tr th.product-checkbox{vertical-align:middle;width:40px}.wishlist_table tr th.product-remove{vertical-align:middle;width:40px}.wishlist_table tr th.product-thumbnail{width:80px}.wishlist_table tfoot td,.wishlist_table tr td.product-name,.wishlist_table tr td.product-thumbnail,.wishlist_table tr td.wishlist-name,.wishlist_table tr td.wishlist-privacy{text-align:left}.wishlist_table tr td.product-remove{padding:16px 0}.wishlist_table tr td.product-thumbnail a{display:block;border:none;max-width:80px}.wishlist_table tr td.product-thumbnail a img{width:100%}.wishlist_table tr td.product-arrange{cursor:grab}.wishlist_table tr td.product-arrange:active{cursor:grabbing}.wishlist_table .product-stock-status span.wishlist-in-stock{color:#297e29}.wishlist_table .product-stock-status span.wishlist-out-of-stock{color:red}.wishlist_table .product-add-to-cart span.dateadded{display:block}.wishlist_table .product-add-to-cart a{display:table!important;margin:0 auto 5px!important;text-align:center}.wishlist_table .product-add-to-cart a.button{padding:6px 25px!important}.wishlist_table .product-add-to-cart a>img{display:inline;max-width:2em}.wishlist_table .price-variation{display:block}.wishlist_table .price-variation.decrease .variation-rate{color:red}.wishlist_table .price-variation .old-price{display:block}.wishlist_table a.button{white-space:normal;margin-bottom:5px!important}.wishlist_table.modern_grid{list-style:none;margin:0 -7px 35px;font-size:0}.wishlist_table.modern_grid li{display:inline-block;vertical-align:top;width:33.33%;padding:0 7px;margin-bottom:15px}.wishlist_table.images_grid li.wishlist-empty,.wishlist_table.modern_grid li.wishlist-empty{width:100%;font-size:1rem}.wishlist_table.images_grid li.show{z-index:10}.wishlist_table.modern_grid li .item-wrapper{display:table;margin:0 -7px}.wishlist_table.modern_grid li .item-details,.wishlist_table.modern_grid li .product-thumbnail{display:table-cell;vertical-align:top;box-sizing:border-box;width:50%;padding:0 7px;font-size:1rem}.wishlist_table.images_grid li .product-thumbnail,.wishlist_table.modern_grid li .product-thumbnail{position:relative}.wishlist_table.images_grid li .product-thumbnail .product-checkbox,.wishlist_table.modern_grid li .product-thumbnail .product-checkbox{position:absolute;top:7px;left:15px;z-index:2}.wishlist_table.modern_grid li .product-thumbnail>a{display:block}.wishlist_table.modern_grid li .product-thumbnail>a img{display:block}.wishlist_table.images_grid li.show .product-thumbnail>a img,.wishlist_table.images_grid li:hover .product-thumbnail>a img{filter:brightness(1.1)}.wishlist_table.modern_grid.wishlist_view li .item-details{position:relative}.wishlist_table.modern_grid.wishlist_view li .item-details:before{content:'';display:block;top:0;bottom:0;left:7px;background:#fff;position:absolute;right:7px;z-index:0;border:1px solid #cdcdcd}.wishlist_table.images_grid li .item-details{display:none;position:absolute;z-index:2;bottom:15px;left:calc(50% - 150px);width:300px;background:#fff;padding:10px 20px;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3)}.wishlist_table.images_grid li.show .item-details{display:block}.wishlist_table.modern_grid li .item-details .item-details-wrapper{padding:15px 20px;line-height:normal;position:relative}.wishlist_table.images_grid li .item-details a.close{position:absolute;top:10px;right:20px}.wishlist_table.images_grid li .item-details h3,.wishlist_table.mobile li .item-details h3,.wishlist_table.modern_grid li .item-details h3{margin-bottom:7px}.wishlist_table.images_grid li .item-details table.item-details-table,.wishlist_table.mobile li .item-details table.item-details-table,.wishlist_table.mobile li table.additional-info,.wishlist_table.modern_grid li .item-details table.item-details-table{border:none;margin-bottom:7px}.wishlist_table.images_grid li .item-details table.item-details-table td,.wishlist_table.mobile li .item-details table.item-details-table td,.wishlist_table.mobile li table.additional-info td,.wishlist_table.modern_grid li .item-details table.item-details-table td{border:none;font-size:.7em;padding:3px;vertical-align:top}.wishlist_table.images_grid li .item-details table.item-details-table td.label,.wishlist_table.mobile li .item-details table.item-details-table td.label,.wishlist_table.mobile li table.additional-info td.label,.wishlist_table.modern_grid li .item-details table.item-details-table td.label{text-align:left;font-weight:700;width:40%}.wishlist_table.images_grid li .item-details table.item-details-table td.value,.wishlist_table.mobile li .item-details table.item-details-table td.value,.wishlist_table.mobile li table.additional-info td.value,.wishlist_table.modern_grid li .item-details table.item-details-table td.value{text-align:right}.wishlist_table.modern_grid li .item-details table.item-details-table td.value a.selectBox{margin-right:0}.wishlist_table.images_grid li .item-details table.item-details-table td.value input,.wishlist_table.mobile li table.additional-info td.value input,.wishlist_table.modern_grid li .item-details table.item-details-table td.value input{width:auto}.wishlist_table.images_grid li .item-details .product-add-to-cart,.wishlist_table.modern_grid li .item-details .product-add-to-cart{text-align:center;margin-bottom:7px}.wishlist_table.images_grid li .item-details .move-to-another-wishlist,.wishlist_table.modern_grid li .item-details .move-to-another-wishlist{text-align:center;margin-bottom:7px}.wishlist_table.images_grid li .item-details .product-remove,.wishlist_table.modern_grid li .item-details .product-remove{text-align:right}.wishlist_table.images_grid li .item-details .product-remove a,.wishlist_table.modern_grid li .item-details .product-remove a{border:none;border-radius:0;display:inline-block}.wishlist_table.mobile{list-style:none;margin-left:0}.wishlist_table.mobile li{margin-bottom:7px}.wishlist_table.mobile li .product-checkbox{display:inline-block;width:20px;vertical-align:top}.wishlist_table.mobile li .item-wrapper{display:inline-block;width:calc(100% - 25px);vertical-align:top;margin-bottom:7px}.wishlist_table.wishlist_manage_table.mobile li .item-wrapper{width:100%}.wishlist_table.mobile li .item-wrapper .product-thumbnail{display:inline-block;max-width:60px;margin-right:10px}.wishlist_table.mobile li .item-wrapper .item-details{display:inline-block;width:calc(100% - 80px);vertical-align:top}.wishlist_table.mobile.with-checkbox li .additional-info-wrapper{padding-left:20px}.wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist,.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart{text-align:center;margin-bottom:7px}.wishlist_table.mobile li .additional-info-wrapper .product-remove{text-align:right}a.add_to_wishlist{cursor:pointer}.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon{margin-right:5px}.yith-wcwl-add-to-wishlist a.add_to_wishlist>img,.yith-wcwl-add-to-wishlist a.delete_item>img,.yith-wcwl-add-to-wishlist a.move_to_another_wishlist>img{max-width:32px;display:inline-block;margin-right:10px}a.add_to_wishlist+a.view-wishlist,a.delete_item+a.view-wishlist{margin-left:15px}.summary .single_add_to_wishlist.button,div.product .woocommerce-price-and-add .single_add_to_wishlist.button{margin:0}.wishlist_table .add_to_cart.button{padding:7px 12px;line-height:normal}.yith-wcwl-add-to-wishlist{margin-top:10px}.hidden-title-form a.hide-title-form i,.hidden-title-form button i,.wishlist-title a.show-title-form i,.wishlist_manage_table tfoot a.create-new-wishlist i,.wishlist_manage_table tfoot button.submit-wishlist-changes i,.wishlist_table .add_to_cart.button i,.wishlist_table .ask-an-estimate-button i,.yith-wcwl-add-button>a i,.yith-wcwl-wishlist-new button i,.yith-wcwl-wishlist-search-form button.wishlist-search-button i{margin-right:10px}.hidden-title-form a.hide-title-form,.wishlist-title a.show-title-form,.wishlist_manage_table a.create-new-wishlist,.wishlist_manage_table button.submit-wishlist-changes,.wishlist_table .add_to_cart.button,.wishlist_table a.ask-an-estimate-button,.woocommerce .yith-wcwl-wishlist-new button,.yith-wcwl-add-button a.add_to_wishlist,.yith-wcwl-popup-button a.add_to_wishlist,.yith-wcwl-wishlist-search-form button.wishlist-search-button{margin:0;box-shadow:none;text-shadow:none}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist{position:absolute;z-index:10;margin:0;top:10px;left:10px}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .with-dropdown{padding:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .add_to_wishlist,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .disabled_item,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .open-pretty-photo{font-size:0;background:0 0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .delete_item,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .move_to_another_wishlist{font-size:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback{display:none}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback+a{font-size:0;background:0 0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist i{font-size:1.6rem;margin:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist img{margin:0}.woocommerce .wishlist-title{margin-bottom:30px}.woocommerce .wishlist-title h2{vertical-align:middle;margin-bottom:0}.woocommerce .hidden-title-form button{padding:7px 24px;vertical-align:middle;border:none;position:relative}.woocommerce .hidden-title-form button:active{top:1px}.woocommerce .hidden-title-form a.hide-title-form{vertical-align:middle;line-height:normal}.woocommerce .back-to-all-wishlists{margin-bottom:20px}.woocommerce #content table.wishlist_table.cart a.remove{color:#c3c3c3;margin:0 auto}.woocommerce #content table.wishlist_table.cart a.remove:hover{background-color:#c3c3c3;color:#fff}.yith-wcwl-share{margin-bottom:35px}.yith-wcwl-share h4.yith-wcwl-share-title{margin:10px 0}.yith-wcwl-share ul{margin:5px 0;padding:0}.entry-content .yith-wcwl-share ul li,.yith-wcwl-share ul li{display:inline-block;margin-left:0;margin-right:0}.yith-wcwl-share li a{color:#fff;text-align:center;text-decoration:none;line-height:1;padding:5px;display:block;border:none;min-width:26px;min-height:26px}.yith-wcwl-share li a:hover{color:#fff}.yith-wcwl-share li a>img{max-width:1em}.copy-trigger{cursor:pointer}.woocommerce .ask-an-estimate-button>img{max-width:1em;display:inline;margin-right:5px}#ask_an_estimate_popup{display:none}.wishlist-ask-an-estimate-popup .ask-an-estimate-button-popup{width:100%}.wishlist-ask-an-estimate-popup .woocommerce-error{margin-bottom:0}.wishlist-ask-an-estimate-popup #additional_notes{min-height:150px}.ask-an-estimate-confirmation{padding:0 30px;text-align:center}.yith_wcwl_wishlist_footer>div{margin-bottom:15px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action{float:left}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action label{display:inline-block;margin-right:10px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action #bulk_actions{min-width:250px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action input[type=submit]{margin:0;margin-left:10px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_update{float:right}.yith_wcwl_wishlist_footer .yith-wcwl-share{float:left;clear:both}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action{float:right}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action>*{vertical-align:middle}.yith_wcwl_wishlist_update+.yith_wcwl_footer_additional_action{clear:both}.wishlist-page-links{clear:both}#move_to_another_wishlist{display:none}.yith-wcwl-wishlist-new{padding:20px 0}.yith-wcwl-popup-content .yith-wcwl-wishlist-new{padding:0}.yith-wcwl-wishlist-new .wishlist-name{display:inline-block}.yith-wcwl-wishlist-new .wishlist-privacy-radio label{display:block}.yith-wcwl-popup-content .create-wishlist-button{margin-top:15px;width:100%}#create_new_wishlist{display:none}.wishlist_manage_table select{vertical-align:middle;margin-right:10px}.wishlist_manage_table td.wishlist-name .wishlist-title{margin-bottom:0}.wishlist_manage_table td.wishlist-name .wishlist-title .show-title-form{display:inline-block;padding:0;border:none;background:0 0;top:0;margin:0}.wishlist_manage_table td.wishlist-name a.show-title-form i{padding:5px;margin:0}.wishlist_manage_table td.wishlist-name:hover a.show-title-form{visibility:visible}.wishlist_manage_table td.wishlist-name .hidden-title-form{margin:0!important}.wishlist_manage_table td.wishlist-name .hidden-title-form input[type=text]{width:100%;min-width:0}.wishlist_manage_table td.wishlist-name .hidden-title-form{position:relative}.wishlist_manage_table td.wishlist-name .hidden-title-form .edit-title-buttons{position:absolute;right:0;top:0}.wishlist_manage_table td.wishlist-name .hidden-title-form a{float:right;cursor:pointer;margin-left:5px}.wishlist_manage_table td.wishlist-name .hidden-title-form a i{padding:5px;margin:0}table.wishlist_manage_table tfoot td{text-align:right;padding:24px 12px}.wishlist_manage_table tfoot button.submit-wishlist-changes{padding:7px 24px;vertical-align:middle;border:1px solid;border-radius:3px;position:relative;line-height:normal}.wishlist_manage_table tfoot button.submit-wishlist-changes:active{top:1px}.wishlist_manage_table tfoot a.create-new-wishlist{vertical-align:middle;line-height:normal;padding:7px 24px}.wishlist_manage_table.modern_grid li .item-wrapper{display:block;margin:0;padding:40px 50px;background:#fff;border:1px solid #cdcdcd}.wishlist_manage_table.modern_grid li .item-details,.wishlist_manage_table.modern_grid li .product-thumbnail{display:block;width:100%;padding:0}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form{position:relative}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form .edit-title-buttons{position:absolute;right:0;top:0}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form .edit-title-buttons a{float:right;line-height:1;cursor:pointer;margin-left:5px}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form .edit-title-buttons a i{padding:5px;margin:0}.wishlist_manage_table.modern_grid li .product-thumbnail .placeholder-item.empty-box{display:flex;background:#f2f2f2;min-height:400px;align-items:center;justify-content:center;margin-bottom:15px}.wishlist_manage_table.modern_grid li .product-thumbnail .placeholder-item.empty-box p{font-size:1em;line-height:1.5em;font-weight:600}.wishlist_manage_table.modern_grid li .product-thumbnail img:first-child{width:100%;margin-bottom:15px}.wishlist_manage_table.modern_grid li .product-thumbnail img{width:calc(50% - 8px)}.wishlist_manage_table.modern_grid li .product-thumbnail img:nth-child(3){margin-left:15px}.wishlist_manage_table.modern_grid li .wishlist-title-with-form{display:block}.wishlist_manage_table.modern_grid li .wishlist-title-with-form h3{display:inline-block}.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form,.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form:hover{visibility:visible;float:right;margin:0;background:0 0;color:inherit}.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form i{margin:0}.wishlist_manage_table.modern_grid li .hidden-title-form{margin-top:0!important}.wishlist_manage_table.modern_grid li .hidden-title-form input[type=text]{width:100%;min-width:0}.wishlist_manage_table.mobile li{margin-bottom:30px}.wishlist_manage_table.mobile li .item-wrapper .item-details{width:100%}.wishlist_manage_table.mobile li .item-details .hidden-title-form{position:relative}.wishlist_manage_table.mobile li .item-details .hidden-title-form input[type=text]{width:100%}.wishlist_manage_table.mobile li .item-details .hidden-title-form .edit-title-buttons{position:absolute;right:0;top:0}.wishlist_manage_table.mobile li .item-details .hidden-title-form .edit-title-buttons a{float:right;line-height:1;cursor:pointer;margin-left:5px}.wishlist_manage_table.mobile li .item-details .hidden-title-form .edit-title-buttons a i{padding:5px;margin:0}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title{display:block;border-bottom:1px solid #cdcdcd;position:relative}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title-with-form a.show-title-form{position:absolute;right:0;top:0;visibility:visible}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title-with-form a.show-title-form i{margin-right:0}.wishlist_manage_table.mobile li .item-details table.item-details-table td.value a.selectBox{margin-right:0}.wishlist_manage_table.mobile li .item-details table.item-details-table td.value a.wishlist-download{float:left}.yith-wcwl-wishlist-search-form{text-align:center;padding:20px 0}.yith-wcwl-wishlist-search-form #wishlist_search{display:inline-block;max-width:300px;vertical-align:middle}.yith-wcwl-wishlist-search-form button.wishlist-search-button{display:inline-block;padding:7px 24px;vertical-align:middle;border:1px solid;border-radius:3px;position:relative;line-height:normal}.yith-wcwl-wishlist-search-form button.wishlist-search-button i{margin:0}.yith-wcwl-wishlist-search-form button.wishlist-search-button:active{top:1px}.yith-wcwl-search-results .wishlist-owner{text-align:left}.yith-wcwl-search-results .wishlist-owner .thumb{display:inline-block;margin-right:15px}.yith-wcwl-add-to-wishlist .ajax-loading{box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important;display:inline!important;margin-left:5px;vertical-align:middle;visibility:hidden;width:16px!important;height:16px!important}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown li,.widget_yith-wcwl-lists ul.dropdown li{padding:0}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists>li a,.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown>li a,.widget_yith-wcwl-lists ul.dropdown ul.lists>li a,.widget_yith-wcwl-lists ul.dropdown>li a{display:block;padding:5px 15px}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists>li a,.widget_yith-wcwl-lists ul.dropdown ul.lists>li a{padding:5px 25px}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown>li.lists-section,.widget_yith-wcwl-lists ul.dropdown>li.lists-section{border-bottom:1px solid #e7e7e7}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists,.widget_yith-wcwl-lists ul.dropdown ul.lists{margin:0}.elementor-widget-wp-widget-yith-wcwl-items .mini,.widget_yith-wcwl-items .mini{position:relative}.elementor-widget-wp-widget-yith-wcwl-items .heading,.widget_yith-wcwl-items .heading{text-align:center;cursor:pointer}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading,.widget_yith-wcwl-items .mini .heading{display:inline-block}.elementor-widget-wp-widget-yith-wcwl-items .heading a,.widget_yith-wcwl-items .heading a{color:inherit}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter,.widget_yith-wcwl-items .extended .heading .items-counter{position:relative}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter i,.widget_yith-wcwl-items .extended .heading .items-counter i{font-size:70px;position:relative;margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading .items-counter i,.widget_yith-wcwl-items .mini .heading .items-counter i{font-size:30px}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter .items-count,.widget_yith-wcwl-items .extended .heading .items-counter .items-count{display:block;position:absolute;left:0;right:0;text-align:center;top:calc(50% - 20px);font-size:1rem}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading .items-counter .items-count,.widget_yith-wcwl-items .mini .heading .items-counter .items-count{font-size:1rem}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading h3:after,.widget_yith-wcwl-items .extended .heading h3:after{content:'';display:block;max-width:80px;border-bottom:1px solid #cdcdcd;margin:10px auto}.elementor-widget-wp-widget-yith-wcwl-items .mini .list,.widget_yith-wcwl-items .mini .list{position:absolute;z-index:1;left:0;background:#fff;padding:25px 40px;display:none;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3)}.elementor-widget-wp-widget-yith-wcwl-items .mini:hover .list,.widget_yith-wcwl-items .mini:hover .list{display:block}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget,.widget_yith-wcwl-items ul.product_list_widget{margin-bottom:40px!important}.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget,.widget_yith-wcwl-items .mini ul.product_list_widget{max-height:200px;overflow-y:auto}.elementor-widget-wp-widget-yith-wcwl-items p.empty-wishlist,.widget_yith-wcwl-items p.empty-wishlist{margin-bottom:0!important}.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget,.widget_yith-wcwl-items .mini ul.product_list_widget{margin-left:-20px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li,.widget_yith-wcwl-items ul.product_list_widget li{display:table}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li:not(:last-child),.widget_yith-wcwl-items ul.product_list_widget li:not(:last-child){margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .image-thumb,.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,.widget_yith-wcwl-items ul.product_list_widget li .image-thumb,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.widget_yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists{display:table-cell;vertical-align:middle}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,.widget_yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists{font-size:1.2rem}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .image-thumb img. .widget_yith-wcwl-items ul.product_list_widget li .image-thumb img{margin-left:10px;max-width:40px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info{display:inline-block;vertical-align:middle;margin-left:10px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info a,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info a{display:inline-block}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info>*,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info>*{display:block}.elementor-widget-wp-widget-yith-wcwl-items .show-wishlist,.elementor-widget-wp-widget-yith-wcwl-items a.add_all_to_cart,.widget_yith-wcwl-items .show-wishlist,.widget_yith-wcwl-items a.add_all_to_cart{display:block!important}.elementor-widget-wp-widget-yith-wcwl-items .show-wishlist,.widget_yith-wcwl-items .show-wishlist{margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items a.add_all_to_cart,.widget_yith-wcwl-items a.add_all_to_cart{text-align:center}@media(max-width:768px){.yith_wcwl_wishlist_bulk_action select{width:100%;margin-bottom:15px}.yith_wcwl_wishlist_bulk_action input{float:right}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action{float:none}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action .ask-an-estimate-button{width:100%;text-align:center}}
|
@@ -0,0 +1 @@
|
|
|
1 |
+
.widget_yith-wcwl-items .heading-icon .fa-heart-o:before,.yith-wcwl-icon.fa-heart-o:before{content:'\f004';filter:grayscale(1)}.yith-wcwl-share .share-button a.facebook i:before{font-family:FontAwesome;content:'\f09a'}.yith-wcwl-share .share-button a.twitter i:before{font-family:FontAwesome;content:'\f099'}.yith-wcwl-share .share-button a.pinterest i:before{font-family:FontAwesome;content:'\f231'}.yith-wcwl-share .share-button a.email i:before{font-family:FontAwesome;content:'\f003'}.yith-wcwl-share .share-button a.whatsapp i:before{font-family:FontAwesome;content:'\f232'}.wishlist-title.wishlist-title-with-form .show-title-form .fa-pencil{font-family:FontAwesome;content:'\f040'}
|
@@ -109,6 +109,10 @@ select.selectBox.change-wishlist{
|
|
109 |
overflow: hidden;
|
110 |
}
|
111 |
|
|
|
|
|
|
|
|
|
112 |
/* === 3. BLOCK STYLE === */
|
113 |
|
114 |
.woocommerce .wishlist-fragment .blockUI.blockOverlay::before,
|
@@ -173,7 +177,7 @@ select.selectBox.change-wishlist{
|
|
173 |
}
|
174 |
|
175 |
.yith-wcwl-popup-footer {
|
176 |
-
margin
|
177 |
}
|
178 |
|
179 |
.yith-wcwl-popup-footer .button.wishlist-submit{
|
@@ -944,10 +948,20 @@ div.product .woocommerce-price-and-add .single_add_to_wishlist.button {
|
|
944 |
float: left;
|
945 |
}
|
946 |
|
|
|
|
|
|
|
|
|
|
|
947 |
.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action #bulk_actions{
|
948 |
min-width: 250px;
|
949 |
}
|
950 |
|
|
|
|
|
|
|
|
|
|
|
951 |
.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_update {
|
952 |
float: right;
|
953 |
}
|
@@ -1127,6 +1141,21 @@ table.wishlist_manage_table tfoot td{
|
|
1127 |
margin: 0;
|
1128 |
}
|
1129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1130 |
.wishlist_manage_table.modern_grid li .product-thumbnail img:first-child{
|
1131 |
width: 100%;
|
1132 |
margin-bottom: 15px;
|
@@ -1405,6 +1434,12 @@ table.wishlist_manage_table tfoot td{
|
|
1405 |
margin-bottom: 40px!important;
|
1406 |
}
|
1407 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1408 |
.elementor-widget-wp-widget-yith-wcwl-items p.empty-wishlist,
|
1409 |
.widget_yith-wcwl-items p.empty-wishlist{
|
1410 |
margin-bottom: 0!important;
|
109 |
overflow: hidden;
|
110 |
}
|
111 |
|
112 |
+
.yith-wcwl-with-pretty-photo .pp_content{
|
113 |
+
height: auto!important;
|
114 |
+
}
|
115 |
+
|
116 |
/* === 3. BLOCK STYLE === */
|
117 |
|
118 |
.woocommerce .wishlist-fragment .blockUI.blockOverlay::before,
|
177 |
}
|
178 |
|
179 |
.yith-wcwl-popup-footer {
|
180 |
+
margin: 15px 0;
|
181 |
}
|
182 |
|
183 |
.yith-wcwl-popup-footer .button.wishlist-submit{
|
948 |
float: left;
|
949 |
}
|
950 |
|
951 |
+
.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action label {
|
952 |
+
display: inline-block;
|
953 |
+
margin-right: 10px;
|
954 |
+
}
|
955 |
+
|
956 |
.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action #bulk_actions{
|
957 |
min-width: 250px;
|
958 |
}
|
959 |
|
960 |
+
.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action input[type="submit"]{
|
961 |
+
margin: 0;
|
962 |
+
margin-left: 10px;
|
963 |
+
}
|
964 |
+
|
965 |
.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_update {
|
966 |
float: right;
|
967 |
}
|
1141 |
margin: 0;
|
1142 |
}
|
1143 |
|
1144 |
+
.wishlist_manage_table.modern_grid li .product-thumbnail .placeholder-item.empty-box{
|
1145 |
+
display: flex;
|
1146 |
+
background: #f2f2f2;
|
1147 |
+
min-height: 400px;
|
1148 |
+
align-items: center;
|
1149 |
+
justify-content: center;
|
1150 |
+
margin-bottom: 15px;
|
1151 |
+
}
|
1152 |
+
|
1153 |
+
.wishlist_manage_table.modern_grid li .product-thumbnail .placeholder-item.empty-box p{
|
1154 |
+
font-size: 1em;
|
1155 |
+
line-height: 1.5em;
|
1156 |
+
font-weight: 600;
|
1157 |
+
}
|
1158 |
+
|
1159 |
.wishlist_manage_table.modern_grid li .product-thumbnail img:first-child{
|
1160 |
width: 100%;
|
1161 |
margin-bottom: 15px;
|
1434 |
margin-bottom: 40px!important;
|
1435 |
}
|
1436 |
|
1437 |
+
.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget,
|
1438 |
+
.widget_yith-wcwl-items .mini ul.product_list_widget{
|
1439 |
+
max-height: 200px;
|
1440 |
+
overflow-y: auto;
|
1441 |
+
}
|
1442 |
+
|
1443 |
.elementor-widget-wp-widget-yith-wcwl-items p.empty-wishlist,
|
1444 |
.widget_yith-wcwl-items p.empty-wishlist{
|
1445 |
margin-bottom: 0!important;
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.yith-wcwl-icon.fa-heart-o:before,
|
2 |
+
.widget_yith-wcwl-items .heading-icon .fa-heart-o:before{
|
3 |
+
content: '\f004';
|
4 |
+
filter: grayscale(1);
|
5 |
+
}
|
6 |
+
|
7 |
+
.yith-wcwl-share .share-button a.facebook i:before{
|
8 |
+
font-family: 'FontAwesome';
|
9 |
+
content: '\f09a'
|
10 |
+
}
|
11 |
+
|
12 |
+
.yith-wcwl-share .share-button a.twitter i:before{
|
13 |
+
font-family: 'FontAwesome';
|
14 |
+
content: '\f099';
|
15 |
+
}
|
16 |
+
|
17 |
+
.yith-wcwl-share .share-button a.pinterest i:before{
|
18 |
+
font-family: 'FontAwesome';
|
19 |
+
content: '\f231';
|
20 |
+
}
|
21 |
+
|
22 |
+
.yith-wcwl-share .share-button a.email i:before{
|
23 |
+
font-family: 'FontAwesome';
|
24 |
+
content: '\f003';
|
25 |
+
}
|
26 |
+
|
27 |
+
.yith-wcwl-share .share-button a.whatsapp i:before{
|
28 |
+
font-family: 'FontAwesome';
|
29 |
+
content: '\f232';
|
30 |
+
}
|
31 |
+
|
32 |
+
.wishlist-title.wishlist-title-with-form .show-title-form .fa-pencil{
|
33 |
+
font-family: 'FontAwesome';
|
34 |
+
content: '\f040';
|
35 |
+
}
|
@@ -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"> </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){t.classList.contains("yith-wcwl-overlay")&&r("body").addClass("yith-wcwl-with-pretty-photo")}),void 0!==a.removedNodes&&a.removedNodes.forEach(function(t){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"),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()}),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;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"> </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")});
|
@@ -393,7 +393,7 @@ jQuery( document ).ready( function( $ ){
|
|
393 |
return false;
|
394 |
} );
|
395 |
|
396 |
-
t.on('click', '.yith-wfbt-add-wishlist', function(e){
|
397 |
e.preventDefault();
|
398 |
var t = $(this),
|
399 |
form = $( '#yith-wcwl-form' );
|
@@ -499,6 +499,10 @@ jQuery( document ).ready( function( $ ){
|
|
499 |
$( '.variations_form' ).find( '.variations select' ).last().change();
|
500 |
} );
|
501 |
|
|
|
|
|
|
|
|
|
502 |
init_wishlist_popup();
|
503 |
|
504 |
init_wishlist_tooltip();
|
@@ -631,13 +635,13 @@ jQuery( document ).ready( function( $ ){
|
|
631 |
var mutation = mutationsList[ i ];
|
632 |
if ( mutation.type === 'childList' ) {
|
633 |
typeof mutation.addedNodes !== 'undefined' && mutation.addedNodes.forEach( function( currentValue ){
|
634 |
-
if( currentValue.classList.contains( 'yith-wcwl-overlay' ) ){
|
635 |
$('body').addClass( 'yith-wcwl-with-pretty-photo' );
|
636 |
}
|
637 |
} );
|
638 |
|
639 |
typeof mutation.removedNodes !== 'undefined' && mutation.removedNodes.forEach( function( currentValue ){
|
640 |
-
if( currentValue.classList.contains( 'yith-wcwl-overlay' ) ){
|
641 |
$('body').removeClass( 'yith-wcwl-with-pretty-photo' );
|
642 |
}
|
643 |
} );
|
@@ -1077,6 +1081,10 @@ jQuery( document ).ready( function( $ ){
|
|
1077 |
function init_wishlist_responsive() {
|
1078 |
var jqxhr = false;
|
1079 |
|
|
|
|
|
|
|
|
|
1080 |
$( window ).on( 'resize', function( ev ){
|
1081 |
var table = $('.wishlist_table.responsive'),
|
1082 |
mobile = table.is('.mobile'),
|
@@ -1431,7 +1439,9 @@ jQuery( document ).ready( function( $ ){
|
|
1431 |
popup.addClass( 'feedback' );
|
1432 |
popup.css( 'left', ( ( $( window ).innerWidth() / 2 ) - ( popup.outerWidth() / 2 ) ) + 'px' );
|
1433 |
|
1434 |
-
|
|
|
|
|
1435 |
}
|
1436 |
}
|
1437 |
else{
|
393 |
return false;
|
394 |
} );
|
395 |
|
396 |
+
t.on( 'click', '.yith-wfbt-add-wishlist', function(e){
|
397 |
e.preventDefault();
|
398 |
var t = $(this),
|
399 |
form = $( '#yith-wcwl-form' );
|
499 |
$( '.variations_form' ).find( '.variations select' ).last().change();
|
500 |
} );
|
501 |
|
502 |
+
t.on( 'click', '.yith-wcwl-popup-feedback .close-popup', function(){
|
503 |
+
close_pretty_photo();
|
504 |
+
} )
|
505 |
+
|
506 |
init_wishlist_popup();
|
507 |
|
508 |
init_wishlist_tooltip();
|
635 |
var mutation = mutationsList[ i ];
|
636 |
if ( mutation.type === 'childList' ) {
|
637 |
typeof mutation.addedNodes !== 'undefined' && mutation.addedNodes.forEach( function( currentValue ){
|
638 |
+
if( typeof currentValue.classList !== 'undefined' && currentValue.classList.contains( 'yith-wcwl-overlay' ) ){
|
639 |
$('body').addClass( 'yith-wcwl-with-pretty-photo' );
|
640 |
}
|
641 |
} );
|
642 |
|
643 |
typeof mutation.removedNodes !== 'undefined' && mutation.removedNodes.forEach( function( currentValue ){
|
644 |
+
if( typeof currentValue.classList !== 'undefined' && currentValue.classList.contains( 'yith-wcwl-overlay' ) ){
|
645 |
$('body').removeClass( 'yith-wcwl-with-pretty-photo' );
|
646 |
}
|
647 |
} );
|
1081 |
function init_wishlist_responsive() {
|
1082 |
var jqxhr = false;
|
1083 |
|
1084 |
+
if( ! yith_wcwl_l10n.is_wishlist_responsive ){
|
1085 |
+
return;
|
1086 |
+
}
|
1087 |
+
|
1088 |
$( window ).on( 'resize', function( ev ){
|
1089 |
var table = $('.wishlist_table.responsive'),
|
1090 |
mobile = table.is('.mobile'),
|
1439 |
popup.addClass( 'feedback' );
|
1440 |
popup.css( 'left', ( ( $( window ).innerWidth() / 2 ) - ( popup.outerWidth() / 2 ) ) + 'px' );
|
1441 |
|
1442 |
+
if( typeof yith_wcwl_l10n.auto_close_popup == 'undefined' || yith_wcwl_l10n.auto_close_popup ) {
|
1443 |
+
setTimeout(close_pretty_photo, yith_wcwl_l10n.popup_timeout);
|
1444 |
+
}
|
1445 |
}
|
1446 |
}
|
1447 |
else{
|
@@ -4,10 +4,11 @@ var uglify = require('gulp-uglify');
|
|
4 |
var wpPot = require('gulp-wp-pot');
|
5 |
var poSync = require('gulp-po-sync');
|
6 |
var po2mo = require('gulp-po2mo');
|
|
|
7 |
|
8 |
/* Task to compile less */
|
9 |
|
10 |
-
var
|
11 |
return gulp.src('assets/css/unminified/*.css')
|
12 |
.pipe(cleanCSS({debug: true}, (details) => {
|
13 |
console.log(`${details.name}: ${details.stats.originalSize}kb => ${details.stats.minifiedSize} kb`);
|
@@ -15,7 +16,7 @@ var minify_css = function () {
|
|
15 |
.pipe(gulp.dest('./assets/css/'));
|
16 |
};
|
17 |
|
18 |
-
var
|
19 |
return gulp.src('assets/css/unminified/themes/*.css')
|
20 |
.pipe(cleanCSS({debug: true}, (details) => {
|
21 |
console.log(`${details.name}: ${details.stats.originalSize}kb => ${details.stats.minifiedSize} kb`);
|
@@ -23,13 +24,13 @@ var minify_themes_css = function () {
|
|
23 |
.pipe(gulp.dest('./assets/css/themes/'));
|
24 |
};
|
25 |
|
26 |
-
var
|
27 |
return gulp.src('./assets/js/unminified/jquery.yith-wcwl.js')
|
28 |
.pipe(uglify())
|
29 |
.pipe(gulp.dest('./assets/js/'))
|
30 |
};
|
31 |
|
32 |
-
var
|
33 |
return gulp.src('./assets/js/unminified/admin/yith-wcwl.js')
|
34 |
.pipe(uglify())
|
35 |
.pipe(gulp.dest('./assets/js/admin/'))
|
@@ -46,7 +47,7 @@ var updatePot = function () {
|
|
46 |
"Project-Id-Version": "YITH WooCommerce Wishlist Premium",
|
47 |
"Content-Type": "text/plain; charset=UTF-8",
|
48 |
"Language-Team": "YITH <plugins@yithemes.com>",
|
49 |
-
"X-Poedit-KeywordsList": "__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2",
|
50 |
"X-Poedit-Basepath": "..",
|
51 |
"X-Poedit-SearchPath-0": ".",
|
52 |
"X-Poedit-SearchPathExcluded-0": "plugin-fw",
|
@@ -69,9 +70,16 @@ var updateMo = function () {
|
|
69 |
.pipe(gulp.dest('./languages'));
|
70 |
};
|
71 |
|
72 |
-
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
exports.uppot = gulp.series(updatePot);
|
75 |
exports.localize = gulp.series(updatePot, updatePo, updateMo);
|
76 |
-
exports.deploy = gulp.series(
|
77 |
-
exports.default = gulp.series(
|
|
4 |
var wpPot = require('gulp-wp-pot');
|
5 |
var poSync = require('gulp-po-sync');
|
6 |
var po2mo = require('gulp-po2mo');
|
7 |
+
var jshint = require('gulp-jshint');
|
8 |
|
9 |
/* Task to compile less */
|
10 |
|
11 |
+
var minifyCss = function () {
|
12 |
return gulp.src('assets/css/unminified/*.css')
|
13 |
.pipe(cleanCSS({debug: true}, (details) => {
|
14 |
console.log(`${details.name}: ${details.stats.originalSize}kb => ${details.stats.minifiedSize} kb`);
|
16 |
.pipe(gulp.dest('./assets/css/'));
|
17 |
};
|
18 |
|
19 |
+
var minifyThemesCss = function () {
|
20 |
return gulp.src('assets/css/unminified/themes/*.css')
|
21 |
.pipe(cleanCSS({debug: true}, (details) => {
|
22 |
console.log(`${details.name}: ${details.stats.originalSize}kb => ${details.stats.minifiedSize} kb`);
|
24 |
.pipe(gulp.dest('./assets/css/themes/'));
|
25 |
};
|
26 |
|
27 |
+
var minifyMainJs = function () {
|
28 |
return gulp.src('./assets/js/unminified/jquery.yith-wcwl.js')
|
29 |
.pipe(uglify())
|
30 |
.pipe(gulp.dest('./assets/js/'))
|
31 |
};
|
32 |
|
33 |
+
var minifyAdminJs = function () {
|
34 |
return gulp.src('./assets/js/unminified/admin/yith-wcwl.js')
|
35 |
.pipe(uglify())
|
36 |
.pipe(gulp.dest('./assets/js/admin/'))
|
47 |
"Project-Id-Version": "YITH WooCommerce Wishlist Premium",
|
48 |
"Content-Type": "text/plain; charset=UTF-8",
|
49 |
"Language-Team": "YITH <plugins@yithemes.com>",
|
50 |
+
"X-Poedit-KeywordsList": "__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr__;esc_attr_e;esc_html__;esc_html_e",
|
51 |
"X-Poedit-Basepath": "..",
|
52 |
"X-Poedit-SearchPath-0": ".",
|
53 |
"X-Poedit-SearchPathExcluded-0": "plugin-fw",
|
70 |
.pipe(gulp.dest('./languages'));
|
71 |
};
|
72 |
|
73 |
+
var validateJs = function () {
|
74 |
+
return gulp.src('./assets/js/unminified/*yith*.js')
|
75 |
+
.pipe(jshint())
|
76 |
+
.pipe(jshint.reporter('default'));
|
77 |
+
};
|
78 |
+
|
79 |
+
exports.minify_js = gulp.series(minifyMainJs, minifyAdminJs);
|
80 |
+
exports.minify = gulp.series(minifyCss, minifyThemesCss);
|
81 |
exports.uppot = gulp.series(updatePot);
|
82 |
exports.localize = gulp.series(updatePot, updatePo, updateMo);
|
83 |
+
exports.deploy = gulp.series(minifyCss, minifyThemesCss, minifyMainJs, minifyAdminJs, updatePot, updatePo, updateMo);
|
84 |
+
exports.default = gulp.series(minifyCss, minifyThemesCss, validateJs, minifyMainJs, minifyAdminJs);
|
85 |
+
exports.jshint = gulp.series(validateJs);
|
@@ -74,8 +74,8 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
74 |
* @return \YITH_WCWL_Admin
|
75 |
* @since 2.0.0
|
76 |
*/
|
77 |
-
public static function get_instance(){
|
78 |
-
if( is_null( self::$instance ) ){
|
79 |
self::$instance = new self();
|
80 |
}
|
81 |
|
@@ -88,26 +88,45 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
88 |
* @return \YITH_WCWL_Admin
|
89 |
* @since 2.0.0
|
90 |
*/
|
91 |
-
public function __construct(){
|
92 |
-
// install plugin, or update from older versions
|
93 |
add_action( 'init', array( $this, 'install' ) );
|
94 |
|
95 |
-
// init admin processing
|
96 |
add_action( 'init', array( $this, 'init' ) );
|
97 |
|
98 |
-
// enqueue scripts
|
99 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ), 20 );
|
100 |
|
101 |
-
// plugin panel options
|
102 |
-
|
103 |
|
104 |
-
// add plugin links
|
105 |
add_filter( 'plugin_action_links_' . plugin_basename( YITH_WCWL_DIR . 'init.php' ), array( $this, 'action_links' ) );
|
106 |
add_filter( 'yith_show_plugin_row_meta', array( $this, 'add_plugin_meta' ), 10, 5 );
|
107 |
|
108 |
-
// register wishlist panel
|
109 |
add_action( 'admin_menu', array( $this, 'register_panel' ), 5 );
|
110 |
add_action( 'yith_wcwl_premium_tab', array( $this, 'print_premium_tab' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
}
|
112 |
|
113 |
/* === INITIALIZATION SECTION === */
|
@@ -121,12 +140,15 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
121 |
*/
|
122 |
public function init() {
|
123 |
$prefix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'unminified/' : '';
|
124 |
-
$this->available_tabs = apply_filters(
|
125 |
-
'
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
|
|
|
|
|
|
130 |
|
131 |
wp_register_style( 'yith-wcwl-font-awesome', YITH_WCWL_URL . 'assets/css/font-awesome.min.css', array(), '4.7.0' );
|
132 |
wp_register_style( 'yith-wcwl-material-icons', 'https://fonts.googleapis.com/icon?family=Material+Icons', array(), '3.0.1' );
|
@@ -141,32 +163,29 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
141 |
* @since 1.0.0
|
142 |
*/
|
143 |
public function install() {
|
144 |
-
if( wp_doing_ajax() ){
|
145 |
return;
|
146 |
}
|
147 |
|
148 |
$stored_db_version = get_option( 'yith_wcwl_db_version' );
|
149 |
|
150 |
-
if( ! $stored_db_version || ! YITH_WCWL_Install()->is_installed() ){
|
151 |
-
// fresh installation
|
152 |
YITH_WCWL_Install()->init();
|
153 |
-
}
|
154 |
-
|
155 |
-
// update database
|
156 |
YITH_WCWL_Install()->update( $stored_db_version );
|
157 |
do_action( 'yith_wcwl_updated' );
|
158 |
}
|
159 |
|
160 |
-
// Plugin installed
|
161 |
do_action( 'yith_wcwl_installed' );
|
162 |
}
|
163 |
|
164 |
/**
|
165 |
-
*
|
166 |
-
*
|
167 |
-
* @access public
|
168 |
*
|
169 |
-
* @param mixed $links
|
170 |
* @return array
|
171 |
*/
|
172 |
public function action_links( $links ) {
|
@@ -177,8 +196,12 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
177 |
/**
|
178 |
* Adds plugin row meta
|
179 |
*
|
180 |
-
* @param $
|
181 |
-
* @param $
|
|
|
|
|
|
|
|
|
182 |
* @return array
|
183 |
* @since 2.0.0
|
184 |
*/
|
@@ -219,11 +242,11 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
219 |
'parent_page' => 'yith_plugin_panel',
|
220 |
'page' => 'yith_wcwl_panel',
|
221 |
'admin-tabs' => $this->available_tabs,
|
222 |
-
'options-path' => YITH_WCWL_DIR . 'plugin-options'
|
223 |
);
|
224 |
|
225 |
/* === Fixed: not updated theme === */
|
226 |
-
if( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
227 |
require_once( YITH_WCWL_DIR . 'plugin-fw/lib/yit-plugin-panel-wc.php' );
|
228 |
}
|
229 |
|
@@ -234,13 +257,13 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
234 |
* Adds yith-disabled class
|
235 |
* Adds class to fields when required, and when disabled state cannot be achieved any other way (eg. by dependencies)
|
236 |
*
|
237 |
-
* @param $classes
|
238 |
-
* @param $field
|
239 |
*
|
240 |
* @return array Filtered array of extra classes
|
241 |
*/
|
242 |
public function mark_options_disabled( $classes, $field ) {
|
243 |
-
if( isset( $field['id'] ) && 'yith_wfbt_enable_integration' == $field['id'] && ! ( defined( 'YITH_WFBT' ) && YITH_WFBT ) ){
|
244 |
$classes[] = 'yith-disabled';
|
245 |
}
|
246 |
|
@@ -256,11 +279,11 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
256 |
public function enqueue() {
|
257 |
global $woocommerce, $pagenow;
|
258 |
|
259 |
-
if(
|
260 |
wp_enqueue_style( 'yith-wcwl-admin' );
|
261 |
wp_enqueue_script( 'yith-wcwl-admin' );
|
262 |
|
263 |
-
if( isset( $_GET['tab'] ) && 'popular' == $_GET['tab'] ){
|
264 |
wp_enqueue_style( 'yith-wcwl-material-icons' );
|
265 |
wp_enqueue_editor();
|
266 |
}
|
@@ -276,7 +299,7 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
276 |
public function print_premium_tab() {
|
277 |
$premium_tab = YITH_WCWL_DIR . 'templates/admin/wishlist-panel-premium.php';
|
278 |
|
279 |
-
if( file_exists( $premium_tab ) ){
|
280 |
include( $premium_tab );
|
281 |
}
|
282 |
}
|
@@ -288,7 +311,7 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
288 |
* @author Andrea Grillo <andrea.grillo@yithemes.com>
|
289 |
* @return string The premium landing link
|
290 |
*/
|
291 |
-
public function get_premium_landing_uri(){
|
292 |
return $this->premium_landing_url;
|
293 |
}
|
294 |
}
|
@@ -300,6 +323,6 @@ if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
|
|
300 |
* @return \YITH_WCWL_Admin
|
301 |
* @since 2.0.0
|
302 |
*/
|
303 |
-
function YITH_WCWL_Admin(){
|
304 |
return defined( 'YITH_WCWL_PREMIUM' ) ? YITH_WCWL_Admin_Premium::get_instance() : YITH_WCWL_Admin::get_instance();
|
305 |
}
|
74 |
* @return \YITH_WCWL_Admin
|
75 |
* @since 2.0.0
|
76 |
*/
|
77 |
+
public static function get_instance() {
|
78 |
+
if ( is_null( self::$instance ) ) {
|
79 |
self::$instance = new self();
|
80 |
}
|
81 |
|
88 |
* @return \YITH_WCWL_Admin
|
89 |
* @since 2.0.0
|
90 |
*/
|
91 |
+
public function __construct() {
|
92 |
+
// install plugin, or update from older versions.
|
93 |
add_action( 'init', array( $this, 'install' ) );
|
94 |
|
95 |
+
// init admin processing.
|
96 |
add_action( 'init', array( $this, 'init' ) );
|
97 |
|
98 |
+
// enqueue scripts.
|
99 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ), 20 );
|
100 |
|
101 |
+
// plugin panel options.
|
102 |
+
add_filter( 'yith_plugin_fw_panel_wc_extra_row_classes', array( $this, 'mark_options_disabled' ), 10, 23 );
|
103 |
|
104 |
+
// add plugin links.
|
105 |
add_filter( 'plugin_action_links_' . plugin_basename( YITH_WCWL_DIR . 'init.php' ), array( $this, 'action_links' ) );
|
106 |
add_filter( 'yith_show_plugin_row_meta', array( $this, 'add_plugin_meta' ), 10, 5 );
|
107 |
|
108 |
+
// register wishlist panel.
|
109 |
add_action( 'admin_menu', array( $this, 'register_panel' ), 5 );
|
110 |
add_action( 'yith_wcwl_premium_tab', array( $this, 'print_premium_tab' ) );
|
111 |
+
|
112 |
+
// add a post display state for special WC pages.
|
113 |
+
add_filter( 'display_post_states', array( $this, 'add_display_post_states' ), 10, 2 );
|
114 |
+
}
|
115 |
+
|
116 |
+
/* === ADMIN GENERAL === */
|
117 |
+
|
118 |
+
/**
|
119 |
+
* Add a post display state for special WC pages in the page list table.
|
120 |
+
*
|
121 |
+
* @param array $post_states An array of post display states.
|
122 |
+
* @param WP_Post $post The current post object.
|
123 |
+
*/
|
124 |
+
public function add_display_post_states( $post_states, $post ) {
|
125 |
+
if ( get_option( 'yith_wcwl_wishlist_page_id' ) == $post->ID ) {
|
126 |
+
$post_states['yith_wcwl_page_for_wishlist'] = __( 'Wishlist Page', 'yith-woocommerce-wishlist' );
|
127 |
+
}
|
128 |
+
|
129 |
+
return $post_states;
|
130 |
}
|
131 |
|
132 |
/* === INITIALIZATION SECTION === */
|
140 |
*/
|
141 |
public function init() {
|
142 |
$prefix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'unminified/' : '';
|
143 |
+
$this->available_tabs = apply_filters(
|
144 |
+
'yith_wcwl_available_admin_tabs',
|
145 |
+
array(
|
146 |
+
'settings' => __( 'General settings', 'yith-woocommerce-wishlist' ),
|
147 |
+
'add_to_wishlist' => __( 'Add to wishlist options', 'yith-woocommerce-wishlist' ),
|
148 |
+
'wishlist_page' => __( 'Wishlist page options', 'yith-woocommerce-wishlist' ),
|
149 |
+
'premium' => __( 'Premium Version', 'yith-woocommerce-wishlist' ),
|
150 |
+
)
|
151 |
+
);
|
152 |
|
153 |
wp_register_style( 'yith-wcwl-font-awesome', YITH_WCWL_URL . 'assets/css/font-awesome.min.css', array(), '4.7.0' );
|
154 |
wp_register_style( 'yith-wcwl-material-icons', 'https://fonts.googleapis.com/icon?family=Material+Icons', array(), '3.0.1' );
|
163 |
* @since 1.0.0
|
164 |
*/
|
165 |
public function install() {
|
166 |
+
if ( wp_doing_ajax() ) {
|
167 |
return;
|
168 |
}
|
169 |
|
170 |
$stored_db_version = get_option( 'yith_wcwl_db_version' );
|
171 |
|
172 |
+
if ( ! $stored_db_version || ! YITH_WCWL_Install()->is_installed() ) {
|
173 |
+
// fresh installation.
|
174 |
YITH_WCWL_Install()->init();
|
175 |
+
} elseif ( version_compare( $stored_db_version, YITH_WCWL_DB_VERSION, '<' ) ) {
|
176 |
+
// update database.
|
|
|
177 |
YITH_WCWL_Install()->update( $stored_db_version );
|
178 |
do_action( 'yith_wcwl_updated' );
|
179 |
}
|
180 |
|
181 |
+
// Plugin installed.
|
182 |
do_action( 'yith_wcwl_installed' );
|
183 |
}
|
184 |
|
185 |
/**
|
186 |
+
* Adds plugin actions link
|
|
|
|
|
187 |
*
|
188 |
+
* @param mixed $links Available action links.
|
189 |
* @return array
|
190 |
*/
|
191 |
public function action_links( $links ) {
|
196 |
/**
|
197 |
* Adds plugin row meta
|
198 |
*
|
199 |
+
* @param array $new_row_meta_args Array of meta for current plugin.
|
200 |
+
* @param array $plugin_meta Not in use.
|
201 |
+
* @param string $plugin_file Current plugin iit file path.
|
202 |
+
* @param array $plugin_data Plugin info.
|
203 |
+
* @param string $status Plugin status.
|
204 |
+
* @param string $init_file Wishlist plugin init file.
|
205 |
* @return array
|
206 |
* @since 2.0.0
|
207 |
*/
|
242 |
'parent_page' => 'yith_plugin_panel',
|
243 |
'page' => 'yith_wcwl_panel',
|
244 |
'admin-tabs' => $this->available_tabs,
|
245 |
+
'options-path' => YITH_WCWL_DIR . 'plugin-options',
|
246 |
);
|
247 |
|
248 |
/* === Fixed: not updated theme === */
|
249 |
+
if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
|
250 |
require_once( YITH_WCWL_DIR . 'plugin-fw/lib/yit-plugin-panel-wc.php' );
|
251 |
}
|
252 |
|
257 |
* Adds yith-disabled class
|
258 |
* Adds class to fields when required, and when disabled state cannot be achieved any other way (eg. by dependencies)
|
259 |
*
|
260 |
+
* @param array $classes Array of field extra classes.
|
261 |
+
* @param array $field Array of field data.
|
262 |
*
|
263 |
* @return array Filtered array of extra classes
|
264 |
*/
|
265 |
public function mark_options_disabled( $classes, $field ) {
|
266 |
+
if ( isset( $field['id'] ) && 'yith_wfbt_enable_integration' == $field['id'] && ! ( defined( 'YITH_WFBT' ) && YITH_WFBT ) ) {
|
267 |
$classes[] = 'yith-disabled';
|
268 |
}
|
269 |
|
279 |
public function enqueue() {
|
280 |
global $woocommerce, $pagenow;
|
281 |
|
282 |
+
if ( 'admin.php' == $pagenow && isset( $_GET['page'] ) && 'yith_wcwl_panel' == $_GET['page'] ) {
|
283 |
wp_enqueue_style( 'yith-wcwl-admin' );
|
284 |
wp_enqueue_script( 'yith-wcwl-admin' );
|
285 |
|
286 |
+
if ( isset( $_GET['tab'] ) && 'popular' == $_GET['tab'] ) {
|
287 |
wp_enqueue_style( 'yith-wcwl-material-icons' );
|
288 |
wp_enqueue_editor();
|
289 |
}
|
299 |
public function print_premium_tab() {
|
300 |
$premium_tab = YITH_WCWL_DIR . 'templates/admin/wishlist-panel-premium.php';
|
301 |
|
302 |
+
if ( file_exists( $premium_tab ) ) {
|
303 |
include( $premium_tab );
|
304 |
}
|
305 |
}
|
311 |
* @author Andrea Grillo <andrea.grillo@yithemes.com>
|
312 |
* @return string The premium landing link
|
313 |
*/
|
314 |
+
public function get_premium_landing_uri() {
|
315 |
return $this->premium_landing_url;
|
316 |
}
|
317 |
}
|
323 |
* @return \YITH_WCWL_Admin
|
324 |
* @since 2.0.0
|
325 |
*/
|
326 |
+
function YITH_WCWL_Admin() {
|
327 |
return defined( 'YITH_WCWL_PREMIUM' ) ? YITH_WCWL_Admin_Premium::get_instance() : YITH_WCWL_Admin::get_instance();
|
328 |
}
|
@@ -60,6 +60,15 @@ if ( ! class_exists( 'YITH_WCWL_Ajax_Handler' ) ) {
|
|
60 |
|
61 |
$return = 'true';
|
62 |
$message = apply_filters( 'yith_wcwl_product_added_to_wishlist_message', get_option( 'yith_wcwl_product_added_text' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
} catch ( YITH_WCWL_Exception $e ) {
|
64 |
$return = $e->getTextualCode();
|
65 |
$message = apply_filters( 'yith_wcwl_error_adding_to_wishlist_message', $e->getMessage() );
|
@@ -126,7 +135,7 @@ if ( ! class_exists( 'YITH_WCWL_Ajax_Handler' ) ) {
|
|
126 |
$message = $e->getMessage();
|
127 |
}
|
128 |
|
129 |
-
|
130 |
|
131 |
wp_send_json( array(
|
132 |
'fragments' => self::refresh_fragments( isset( $_REQUEST['fragments'] ) ? $_REQUEST['fragments'] : false ),
|
@@ -195,24 +204,24 @@ if ( ! class_exists( 'YITH_WCWL_Ajax_Handler' ) ) {
|
|
195 |
$type_msg = 'error';
|
196 |
}
|
197 |
|
198 |
-
$wishlist_token = isset( $_REQUEST['wishlist_token'] ) ? $_REQUEST['wishlist_token'] : false;
|
199 |
|
200 |
$atts = array( 'wishlist_id' => $wishlist_token );
|
201 |
if ( isset( $_REQUEST['pagination'] ) ) {
|
202 |
-
$atts['pagination'] = $_REQUEST['pagination'];
|
203 |
}
|
204 |
|
205 |
if ( isset( $_REQUEST['per_page'] ) ) {
|
206 |
-
$atts['per_page'] = $_REQUEST['per_page'];
|
207 |
}
|
208 |
|
209 |
ob_start();
|
210 |
|
211 |
-
|
212 |
|
213 |
-
echo '<div>' . YITH_WCWL_Shortcode::wishlist( $atts ) . '</div>';
|
214 |
|
215 |
-
echo ob_get_clean();
|
216 |
die();
|
217 |
|
218 |
}
|
60 |
|
61 |
$return = 'true';
|
62 |
$message = apply_filters( 'yith_wcwl_product_added_to_wishlist_message', get_option( 'yith_wcwl_product_added_text' ) );
|
63 |
+
|
64 |
+
// append view and close links.
|
65 |
+
if ( apply_filters( 'yith_wcwl_show_popup_links', YITH_WCWL()->is_multi_wishlist_enabled() ) ) {
|
66 |
+
$message .= '<p class="after-links">
|
67 |
+
<a href="' . YITH_WCWL()->get_last_operation_url() . '">' . __( 'View ›', 'yith-woocommerce-wishlist' ) . '</a>
|
68 |
+
<span class="separator">' . __( 'or', 'yith-woocommerce-wishlist' ) . '</span>
|
69 |
+
<a href="#" class="close-popup">' . __( 'Close', 'yith-woocommerce-wishlist' ) . '</a>
|
70 |
+
</p>';
|
71 |
+
}
|
72 |
} catch ( YITH_WCWL_Exception $e ) {
|
73 |
$return = $e->getTextualCode();
|
74 |
$message = apply_filters( 'yith_wcwl_error_adding_to_wishlist_message', $e->getMessage() );
|
135 |
$message = $e->getMessage();
|
136 |
}
|
137 |
|
138 |
+
yith_wcwl_add_notice( $message );
|
139 |
|
140 |
wp_send_json( array(
|
141 |
'fragments' => self::refresh_fragments( isset( $_REQUEST['fragments'] ) ? $_REQUEST['fragments'] : false ),
|
204 |
$type_msg = 'error';
|
205 |
}
|
206 |
|
207 |
+
$wishlist_token = isset( $_REQUEST['wishlist_token'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['wishlist_token'] ) ) : false;
|
208 |
|
209 |
$atts = array( 'wishlist_id' => $wishlist_token );
|
210 |
if ( isset( $_REQUEST['pagination'] ) ) {
|
211 |
+
$atts['pagination'] = sanitize_text_field( wp_unslash( $_REQUEST['pagination'] ) );
|
212 |
}
|
213 |
|
214 |
if ( isset( $_REQUEST['per_page'] ) ) {
|
215 |
+
$atts['per_page'] = intval( $_REQUEST['per_page'] );
|
216 |
}
|
217 |
|
218 |
ob_start();
|
219 |
|
220 |
+
yith_wcwl_add_notice( $message, $type_msg );
|
221 |
|
222 |
+
echo '<div>' . YITH_WCWL_Shortcode::wishlist( $atts ) . '</div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
223 |
|
224 |
+
echo ob_get_clean(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
225 |
die();
|
226 |
|
227 |
}
|
@@ -24,34 +24,57 @@ if ( ! class_exists( 'YITH_WCWL_Form_Handler' ) ) {
|
|
24 |
* @return void
|
25 |
*/
|
26 |
public static function init() {
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'add_to_wishlist' ) );
|
29 |
|
30 |
-
// remove from wishlist when js is disabled
|
31 |
add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'remove_from_wishlist' ) );
|
32 |
|
33 |
-
// remove from wishlist after add to cart
|
34 |
add_action( 'woocommerce_add_to_cart', array( 'YITH_WCWL_Form_Handler', 'remove_from_wishlist_after_add_to_cart' ) );
|
35 |
|
36 |
-
// change wishlist title
|
37 |
add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'change_wishlist_title' ) );
|
38 |
}
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
/**
|
41 |
* Adds a product to wishlist when js is disabled
|
42 |
*
|
43 |
* @return void
|
44 |
*/
|
45 |
public static function add_to_wishlist() {
|
46 |
-
// add item to wishlist when javascript is not enabled
|
47 |
-
if( isset( $_GET['add_to_wishlist'] ) ) {
|
48 |
-
try{
|
49 |
YITH_WCWL()->add();
|
50 |
|
51 |
-
|
52 |
-
}
|
53 |
-
|
54 |
-
wc_add_notice( apply_filters( 'yith_wcwl_error_adding_to_wishlist_message', $e->getMessage() ), 'error' );
|
55 |
}
|
56 |
}
|
57 |
}
|
@@ -62,13 +85,12 @@ if ( ! class_exists( 'YITH_WCWL_Form_Handler' ) ) {
|
|
62 |
* @return void
|
63 |
*/
|
64 |
public static function remove_from_wishlist() {
|
65 |
-
// remove item from wishlist when javascript is not enabled
|
66 |
-
if( isset( $_GET['remove_from_wishlist'] ) ){
|
67 |
try {
|
68 |
YITH_WCWL()->remove();
|
69 |
-
}
|
70 |
-
|
71 |
-
wc_add_notice( $e->getMessage(), 'error' );
|
72 |
}
|
73 |
}
|
74 |
}
|
@@ -79,36 +101,35 @@ if ( ! class_exists( 'YITH_WCWL_Form_Handler' ) ) {
|
|
79 |
* @return void
|
80 |
*/
|
81 |
public static function remove_from_wishlist_after_add_to_cart() {
|
82 |
-
if( 'yes' != get_option( 'yith_wcwl_remove_after_add_to_cart' ) ) {
|
83 |
return;
|
84 |
}
|
85 |
|
86 |
$args = array();
|
87 |
|
88 |
-
if( isset( $_REQUEST['remove_from_wishlist_after_add_to_cart'] ) ) {
|
89 |
|
90 |
-
$args['remove_from_wishlist'] = $_REQUEST['remove_from_wishlist_after_add_to_cart'];
|
91 |
|
92 |
if ( isset( $_REQUEST['wishlist_id'] ) ) {
|
93 |
-
$args['wishlist_id'] = $_REQUEST['wishlist_id'];
|
94 |
}
|
95 |
-
}
|
96 |
-
|
97 |
-
$args['remove_from_wishlist'] = $_REQUEST['add-to-cart'];
|
98 |
|
99 |
if ( isset( $_REQUEST['wishlist_id'] ) ) {
|
100 |
-
$args['wishlist_id'] = $_REQUEST['wishlist_id'];
|
101 |
}
|
102 |
}
|
103 |
|
104 |
-
if( ! empty( $args['wishlist_id'] ) ){
|
105 |
$wishlist = yith_wcwl_get_wishlist( $args['wishlist_id'] );
|
106 |
|
107 |
-
if( $wishlist && $wishlist->is_current_user_owner() ) {
|
108 |
try {
|
109 |
YITH_WCWL()->remove( $args );
|
110 |
} catch ( Exception $e ) {
|
111 |
-
// we were unable to remove item from the wishlist; no follow up is provided
|
112 |
}
|
113 |
}
|
114 |
}
|
@@ -121,27 +142,27 @@ if ( ! class_exists( 'YITH_WCWL_Form_Handler' ) ) {
|
|
121 |
* @since 2.0.0
|
122 |
*/
|
123 |
public static function change_wishlist_title() {
|
124 |
-
if( ! isset( $_POST['yith_wcwl_edit_wishlist'] ) || ! wp_verify_nonce( $_POST['yith_wcwl_edit_wishlist'], 'yith_wcwl_edit_wishlist_action' ) || ! isset( $_POST['save_title'] ) || empty( $_POST['wishlist_name'] ) ){
|
125 |
return;
|
126 |
}
|
127 |
|
128 |
-
$wishlist_name = isset( $_POST['wishlist_name'] ) ? sanitize_text_field( $_POST['wishlist_name'] ) : false;
|
129 |
-
$wishlist_id = isset( $_POST['wishlist_id'] ) ? sanitize_text_field( $_POST['wishlist_id'] ) : false;
|
130 |
$wishlist = yith_wcwl_get_wishlist( $wishlist_id );
|
131 |
|
132 |
if ( ! $wishlist_name || strlen( $wishlist_name ) >= 65535 ) {
|
133 |
-
|
134 |
-
}
|
135 |
-
else {
|
136 |
$wishlist->set_name( $wishlist_name );
|
137 |
$wishlist->save();
|
138 |
}
|
139 |
|
140 |
-
$redirect_url = isset( $_REQUEST['redirect_to'] ) ? esc_url_raw( $_REQUEST['redirect_to'] ) : $wishlist->get_url();
|
141 |
|
142 |
wp_redirect( $redirect_url );
|
143 |
die;
|
144 |
}
|
145 |
}
|
146 |
}
|
147 |
-
|
|
24 |
* @return void
|
25 |
*/
|
26 |
public static function init() {
|
27 |
+
/**
|
28 |
+
* This check was added to prevent bots from accidentaly executing wishlist code
|
29 |
+
*
|
30 |
+
* @since 3.0.10
|
31 |
+
*/
|
32 |
+
if ( ! self::process_form_handling() ) {
|
33 |
+
return;
|
34 |
+
}
|
35 |
+
|
36 |
+
// add to wishlist when js is disabled.
|
37 |
add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'add_to_wishlist' ) );
|
38 |
|
39 |
+
// remove from wishlist when js is disabled.
|
40 |
add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'remove_from_wishlist' ) );
|
41 |
|
42 |
+
// remove from wishlist after add to cart.
|
43 |
add_action( 'woocommerce_add_to_cart', array( 'YITH_WCWL_Form_Handler', 'remove_from_wishlist_after_add_to_cart' ) );
|
44 |
|
45 |
+
// change wishlist title.
|
46 |
add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'change_wishlist_title' ) );
|
47 |
}
|
48 |
|
49 |
+
/**
|
50 |
+
* Return true if system can process request; false otherwise
|
51 |
+
*
|
52 |
+
* @return bool
|
53 |
+
*/
|
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 |
+
|
61 |
+
return true;
|
62 |
+
}
|
63 |
+
|
64 |
/**
|
65 |
* Adds a product to wishlist when js is disabled
|
66 |
*
|
67 |
* @return void
|
68 |
*/
|
69 |
public static function add_to_wishlist() {
|
70 |
+
// add item to wishlist when javascript is not enabled.
|
71 |
+
if ( isset( $_GET['add_to_wishlist'] ) ) {
|
72 |
+
try {
|
73 |
YITH_WCWL()->add();
|
74 |
|
75 |
+
yith_wcwl_add_notice( apply_filters( 'yith_wcwl_product_added_to_wishlist_message', get_option( 'yith_wcwl_product_added_text' ) ), 'success' );
|
76 |
+
} catch ( Exception $e ) {
|
77 |
+
yith_wcwl_add_notice( apply_filters( 'yith_wcwl_error_adding_to_wishlist_message', $e->getMessage() ), 'error' );
|
|
|
78 |
}
|
79 |
}
|
80 |
}
|
85 |
* @return void
|
86 |
*/
|
87 |
public static function remove_from_wishlist() {
|
88 |
+
// remove item from wishlist when javascript is not enabled.
|
89 |
+
if ( isset( $_GET['remove_from_wishlist'] ) ) {
|
90 |
try {
|
91 |
YITH_WCWL()->remove();
|
92 |
+
} catch ( Exception $e ) {
|
93 |
+
yith_wcwl_add_notice( $e->getMessage(), 'error' );
|
|
|
94 |
}
|
95 |
}
|
96 |
}
|
101 |
* @return void
|
102 |
*/
|
103 |
public static function remove_from_wishlist_after_add_to_cart() {
|
104 |
+
if ( 'yes' != get_option( 'yith_wcwl_remove_after_add_to_cart' ) ) {
|
105 |
return;
|
106 |
}
|
107 |
|
108 |
$args = array();
|
109 |
|
110 |
+
if ( isset( $_REQUEST['remove_from_wishlist_after_add_to_cart'] ) ) {
|
111 |
|
112 |
+
$args['remove_from_wishlist'] = intval( $_REQUEST['remove_from_wishlist_after_add_to_cart'] );
|
113 |
|
114 |
if ( isset( $_REQUEST['wishlist_id'] ) ) {
|
115 |
+
$args['wishlist_id'] = sanitize_text_field( wp_unslash( $_REQUEST['wishlist_id'] ) );
|
116 |
}
|
117 |
+
} elseif ( yith_wcwl_is_wishlist() && isset( $_REQUEST['add-to-cart'] ) ) {
|
118 |
+
$args['remove_from_wishlist'] = intval( $_REQUEST['add-to-cart'] );
|
|
|
119 |
|
120 |
if ( isset( $_REQUEST['wishlist_id'] ) ) {
|
121 |
+
$args['wishlist_id'] = sanitize_text_field( wp_unslash( $_REQUEST['wishlist_id'] ) );
|
122 |
}
|
123 |
}
|
124 |
|
125 |
+
if ( ! empty( $args['wishlist_id'] ) ) {
|
126 |
$wishlist = yith_wcwl_get_wishlist( $args['wishlist_id'] );
|
127 |
|
128 |
+
if ( $wishlist && $wishlist->is_current_user_owner() ) {
|
129 |
try {
|
130 |
YITH_WCWL()->remove( $args );
|
131 |
} catch ( Exception $e ) {
|
132 |
+
// we were unable to remove item from the wishlist; no follow up is provided.
|
133 |
}
|
134 |
}
|
135 |
}
|
142 |
* @since 2.0.0
|
143 |
*/
|
144 |
public static function change_wishlist_title() {
|
145 |
+
if ( ! isset( $_POST['yith_wcwl_edit_wishlist'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['yith_wcwl_edit_wishlist'] ) ), 'yith_wcwl_edit_wishlist_action' ) || ! isset( $_POST['save_title'] ) || empty( $_POST['wishlist_name'] ) ) {
|
146 |
return;
|
147 |
}
|
148 |
|
149 |
+
$wishlist_name = isset( $_POST['wishlist_name'] ) ? sanitize_text_field( wp_unslash( $_POST['wishlist_name'] ) ) : false;
|
150 |
+
$wishlist_id = isset( $_POST['wishlist_id'] ) ? sanitize_text_field( wp_unslash( $_POST['wishlist_id'] ) ) : false;
|
151 |
$wishlist = yith_wcwl_get_wishlist( $wishlist_id );
|
152 |
|
153 |
if ( ! $wishlist_name || strlen( $wishlist_name ) >= 65535 ) {
|
154 |
+
yith_wcwl_add_notice( __( 'Please, make sure to enter a valid title', 'yith-woocommerce-wishlist' ), 'error' );
|
155 |
+
} else {
|
|
|
156 |
$wishlist->set_name( $wishlist_name );
|
157 |
$wishlist->save();
|
158 |
}
|
159 |
|
160 |
+
$redirect_url = isset( $_REQUEST['redirect_to'] ) ? esc_url_raw( wp_unslash( $_REQUEST['redirect_to'] ) ) : $wishlist->get_url();
|
161 |
|
162 |
wp_redirect( $redirect_url );
|
163 |
die;
|
164 |
}
|
165 |
}
|
166 |
}
|
167 |
+
|
168 |
+
YITH_WCWL_Form_Handler::init();
|
@@ -33,7 +33,7 @@ if ( ! class_exists( 'YITH_WCWL_Frontend' ) ) {
|
|
33 |
* @var string
|
34 |
* @since 1.0.0
|
35 |
*/
|
36 |
-
public $version = '3.0.
|
37 |
|
38 |
/**
|
39 |
* Plugin database version
|
@@ -393,6 +393,7 @@ if ( ! class_exists( 'YITH_WCWL_Frontend' ) ) {
|
|
393 |
'enable_ajax_loading' => 'yes' == get_option( 'yith_wcwl_ajax_enable', 'no' ),
|
394 |
'ajax_loader_url' => YITH_WCWL_URL . 'assets/images/ajax-loader-alt.svg',
|
395 |
'remove_from_wishlist_after_add_to_cart' => get_option( 'yith_wcwl_remove_after_add_to_cart' ) == 'yes',
|
|
|
396 |
'labels' => array(
|
397 |
'cookie_disabled' => __( 'We are sorry, but this feature is available only if cookies on your browser are enabled.', 'yith-woocommerce-wishlist' ),
|
398 |
'added_to_cart_message' => sprintf( '<div class="woocommerce-notices-wrapper"><div class="woocommerce-message" role="alert">%s</div></div>', apply_filters( 'yith_wcwl_added_to_cart_message', __( 'Product added to cart successfully', 'yith-woocommerce-wishlist' ) ) )
|
33 |
* @var string
|
34 |
* @since 1.0.0
|
35 |
*/
|
36 |
+
public $version = '3.0.10';
|
37 |
|
38 |
/**
|
39 |
* Plugin database version
|
393 |
'enable_ajax_loading' => 'yes' == get_option( 'yith_wcwl_ajax_enable', 'no' ),
|
394 |
'ajax_loader_url' => YITH_WCWL_URL . 'assets/images/ajax-loader-alt.svg',
|
395 |
'remove_from_wishlist_after_add_to_cart' => get_option( 'yith_wcwl_remove_after_add_to_cart' ) == 'yes',
|
396 |
+
'is_wishlist_responsive' => apply_filters( 'yith_wcwl_is_wishlist_responsive', true ),
|
397 |
'labels' => array(
|
398 |
'cookie_disabled' => __( 'We are sorry, but this feature is available only if cookies on your browser are enabled.', 'yith-woocommerce-wishlist' ),
|
399 |
'added_to_cart_message' => sprintf( '<div class="woocommerce-notices-wrapper"><div class="woocommerce-message" role="alert">%s</div></div>', apply_filters( 'yith_wcwl_added_to_cart_message', __( 'Product added to cart successfully', 'yith-woocommerce-wishlist' ) ) )
|
@@ -7,11 +7,11 @@
|
|
7 |
* @version 3.0.0
|
8 |
*/
|
9 |
|
10 |
-
if ( !defined( 'YITH_WCWL' ) ) {
|
11 |
exit;
|
12 |
} // Exit if accessed directly
|
13 |
|
14 |
-
if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
15 |
/**
|
16 |
* Install plugin table and create the wishlist page
|
17 |
*
|
@@ -51,8 +51,8 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
51 |
* @return \YITH_WCWL_Install
|
52 |
* @since 2.0.0
|
53 |
*/
|
54 |
-
public static function get_instance(){
|
55 |
-
if( is_null( self::$instance ) ){
|
56 |
self::$instance = new self();
|
57 |
}
|
58 |
|
@@ -67,15 +67,15 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
67 |
public function __construct() {
|
68 |
global $wpdb;
|
69 |
|
70 |
-
// define local private attribute
|
71 |
$this->_table_items = $wpdb->prefix . 'yith_wcwl';
|
72 |
$this->_table_wishlists = $wpdb->prefix . 'yith_wcwl_lists';
|
73 |
|
74 |
-
// add custom field to global $wpdb
|
75 |
$wpdb->yith_wcwl_items = $this->_table_items;
|
76 |
$wpdb->yith_wcwl_wishlists = $this->_table_wishlists;
|
77 |
|
78 |
-
// define constant to use allover the application
|
79 |
define( 'YITH_WCWL_ITEMS_TABLE', $this->_table_items );
|
80 |
define( 'YITH_WCWL_WISHLISTS_TABLE', $this->_table_wishlists );
|
81 |
|
@@ -100,24 +100,24 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
100 |
/**
|
101 |
* Update db structure of the plugin
|
102 |
*
|
103 |
-
* @param $current_version
|
104 |
*
|
105 |
* @ince 3.0.0
|
106 |
*/
|
107 |
public function update( $current_version ) {
|
108 |
-
if( version_compare( $current_version, '1.0.0', '<' ) ){
|
109 |
$this->_update_100();
|
110 |
}
|
111 |
|
112 |
-
if( version_compare( $current_version, '2.0.0', '<' ) ){
|
113 |
$this->_update_200();
|
114 |
}
|
115 |
|
116 |
-
if( version_compare( $current_version, '3.0.0', '<' ) ){
|
117 |
$this->_update_300();
|
118 |
}
|
119 |
|
120 |
-
// TODO (3.1): _update_310() should call ->_add_tables(), to update db structure and size of external id columns
|
121 |
|
122 |
$this->register_current_version();
|
123 |
}
|
@@ -143,9 +143,9 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
143 |
*/
|
144 |
public function is_installed() {
|
145 |
global $wpdb;
|
146 |
-
$number_of_tables = $wpdb->query(
|
147 |
|
148 |
-
return (bool) (
|
149 |
}
|
150 |
|
151 |
/**
|
@@ -161,7 +161,7 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
161 |
* @since 2.0.0
|
162 |
*/
|
163 |
private function _update_200() {
|
164 |
-
// update tables
|
165 |
$this->_add_tables();
|
166 |
}
|
167 |
|
@@ -171,75 +171,76 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
171 |
* @since 3.0.0
|
172 |
*/
|
173 |
private function _update_300() {
|
174 |
-
// update tables
|
175 |
$this->_add_tables();
|
176 |
|
177 |
-
// update color options
|
178 |
$options = array(
|
179 |
'color_add_to_wishlist',
|
180 |
'color_add_to_cart',
|
181 |
'color_button_style_1',
|
182 |
'color_button_style_2',
|
183 |
-
'color_wishlist_table'
|
184 |
);
|
185 |
|
186 |
-
foreach( $options as $option ){
|
187 |
$base_option_name = "yith_wcwl_{$option}";
|
188 |
|
189 |
$background = get_option( "{$base_option_name}_background" );
|
190 |
$color = get_option( "{$base_option_name}_color" );
|
191 |
$border = get_option( "{$base_option_name}_border_color" );
|
192 |
|
193 |
-
if( 'color_wishlist_table' != $option ) {
|
194 |
$background_hover = get_option( "{$base_option_name}_hover_background" );
|
195 |
$color_hover = get_option( "{$base_option_name}_hover_color" );
|
196 |
$border_hover = get_option( "{$base_option_name}_hover_border_color" );
|
197 |
}
|
198 |
|
199 |
-
update_option(
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
|
|
|
|
|
|
207 |
}
|
208 |
|
209 |
-
// duplicate options
|
210 |
$options = array(
|
211 |
'yith_wcwl_color_button_style_1' => array(
|
212 |
-
'yith_wcwl_color_ask_an_estimate'
|
213 |
),
|
214 |
'yith_wcwl_color_button_style_1_hover' => array(
|
215 |
-
'yith_wcwl_color_ask_an_estimate_hover'
|
216 |
),
|
217 |
'woocommerce_promotion_mail_settings' => array(
|
218 |
-
'woocommerce_yith_wcwl_promotion_mail_settings'
|
219 |
-
)
|
220 |
);
|
221 |
|
222 |
-
foreach( $options as $original_option => $destinations ){
|
223 |
$option_value = get_option( $option );
|
224 |
|
225 |
-
if( $option_value ){
|
226 |
-
foreach( $destinations as $destination ){
|
227 |
update_option( $destination, $option_value );
|
228 |
}
|
229 |
}
|
230 |
}
|
231 |
|
232 |
-
// button style options
|
233 |
$use_buttons = get_option( 'yith_wcwl_use_button' );
|
234 |
$use_theme_style = get_option( 'yith_wcwl_frontend_css' );
|
235 |
|
236 |
-
if(
|
237 |
$destination_value = 'button_custom';
|
238 |
-
}
|
239 |
-
elseif( $use_buttons == 'yes' ){
|
240 |
$destination_value = 'button_default';
|
241 |
-
}
|
242 |
-
else {
|
243 |
$destination_value = 'link';
|
244 |
}
|
245 |
|
@@ -247,7 +248,7 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
247 |
update_option( 'yith_wcwl_add_to_cart_style', $destination_value );
|
248 |
update_option( 'yith_wcwl_ask_an_estimate_style', $destination_value );
|
249 |
|
250 |
-
// rounded corners options
|
251 |
$rounded_corners = get_option( 'yith_wcwl_rounded_corners' );
|
252 |
$radius_value = 'yes' == $rounded_corners ? 16 : 0;
|
253 |
|
@@ -278,7 +279,7 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
278 |
private function _add_wishlists_table() {
|
279 |
global $wpdb;
|
280 |
|
281 |
-
if( ! $this->is_installed() || version_compare( get_option( 'yith_wcwl_db_version' ), '3.0.0', '<' )
|
282 |
$sql = "CREATE TABLE {$this->_table_wishlists} (
|
283 |
ID BIGINT( 20 ) NOT NULL AUTO_INCREMENT,
|
284 |
user_id BIGINT( 20 ) NULL DEFAULT NULL,
|
@@ -311,7 +312,7 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
311 |
private function _add_items_table() {
|
312 |
global $wpdb;
|
313 |
|
314 |
-
if( ! $this->is_installed() || version_compare( get_option( 'yith_wcwl_db_version' ), '3.0.0', '<' ) ) {
|
315 |
$sql = "CREATE TABLE {$this->_table_items} (
|
316 |
ID BIGINT( 20 ) NOT NULL AUTO_INCREMENT,
|
317 |
prod_id BIGINT( 20 ) NOT NULL,
|
@@ -341,38 +342,12 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
341 |
* @since 1.0.0
|
342 |
*/
|
343 |
private function _add_pages() {
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
return;
|
350 |
-
}
|
351 |
-
|
352 |
-
$page_found = $wpdb->get_var( "SELECT `ID` FROM `{$wpdb->posts}` WHERE `post_name` = 'wishlist' LIMIT 1;" );
|
353 |
-
|
354 |
-
if ( $page_found ) {
|
355 |
-
if ( ! $option_value ) {
|
356 |
-
update_option( 'yith-wcwl-page-id', $page_found );
|
357 |
-
}
|
358 |
-
|
359 |
-
return;
|
360 |
-
}
|
361 |
-
|
362 |
-
$page_data = array(
|
363 |
-
'post_status' => 'publish',
|
364 |
-
'post_type' => 'page',
|
365 |
-
'post_author' => 1,
|
366 |
-
'post_name' => esc_sql( _x( 'wishlist', 'page_slug', 'yith-woocommerce-wishlist' ) ),
|
367 |
-
'post_title' => __( 'Wishlist', 'yith-woocommerce-wishlist' ),
|
368 |
-
'post_content' => '[yith_wcwl_wishlist]',
|
369 |
-
'post_parent' => 0,
|
370 |
-
'comment_status' => 'closed'
|
371 |
);
|
372 |
-
$page_id = wp_insert_post( $page_data );
|
373 |
-
|
374 |
-
update_option( 'yith-wcwl-page-id', $page_id );
|
375 |
-
update_option( 'yith_wcwl_wishlist_page_id', $page_id );
|
376 |
}
|
377 |
}
|
378 |
}
|
@@ -383,6 +358,6 @@ if ( !class_exists( 'YITH_WCWL_Install' ) ) {
|
|
383 |
* @return \YITH_WCWL_Install
|
384 |
* @since 2.0.0
|
385 |
*/
|
386 |
-
function YITH_WCWL_Install(){
|
387 |
-
|
388 |
}
|
7 |
* @version 3.0.0
|
8 |
*/
|
9 |
|
10 |
+
if ( ! defined( 'YITH_WCWL' ) ) {
|
11 |
exit;
|
12 |
} // Exit if accessed directly
|
13 |
|
14 |
+
if ( ! class_exists( 'YITH_WCWL_Install' ) ) {
|
15 |
/**
|
16 |
* Install plugin table and create the wishlist page
|
17 |
*
|
51 |
* @return \YITH_WCWL_Install
|
52 |
* @since 2.0.0
|
53 |
*/
|
54 |
+
public static function get_instance() {
|
55 |
+
if ( is_null( self::$instance ) ) {
|
56 |
self::$instance = new self();
|
57 |
}
|
58 |
|
67 |
public function __construct() {
|
68 |
global $wpdb;
|
69 |
|
70 |
+
// define local private attribute.
|
71 |
$this->_table_items = $wpdb->prefix . 'yith_wcwl';
|
72 |
$this->_table_wishlists = $wpdb->prefix . 'yith_wcwl_lists';
|
73 |
|
74 |
+
// add custom field to global $wpdb.
|
75 |
$wpdb->yith_wcwl_items = $this->_table_items;
|
76 |
$wpdb->yith_wcwl_wishlists = $this->_table_wishlists;
|
77 |
|
78 |
+
// define constant to use allover the application.
|
79 |
define( 'YITH_WCWL_ITEMS_TABLE', $this->_table_items );
|
80 |
define( 'YITH_WCWL_WISHLISTS_TABLE', $this->_table_wishlists );
|
81 |
|
100 |
/**
|
101 |
* Update db structure of the plugin
|
102 |
*
|
103 |
+
* @param string $current_version Version from which we're updating.
|
104 |
*
|
105 |
* @ince 3.0.0
|
106 |
*/
|
107 |
public function update( $current_version ) {
|
108 |
+
if ( version_compare( $current_version, '1.0.0', '<' ) ) {
|
109 |
$this->_update_100();
|
110 |
}
|
111 |
|
112 |
+
if ( version_compare( $current_version, '2.0.0', '<' ) ) {
|
113 |
$this->_update_200();
|
114 |
}
|
115 |
|
116 |
+
if ( version_compare( $current_version, '3.0.0', '<' ) ) {
|
117 |
$this->_update_300();
|
118 |
}
|
119 |
|
120 |
+
// TODO (3.1): _update_310() should call ->_add_tables(), to update db structure and size of external id columns.
|
121 |
|
122 |
$this->register_current_version();
|
123 |
}
|
143 |
*/
|
144 |
public function is_installed() {
|
145 |
global $wpdb;
|
146 |
+
$number_of_tables = $wpdb->query( $wpdb->prepare( 'SHOW TABLES LIKE %s', "{$this->_table_items}%" ) );
|
147 |
|
148 |
+
return (bool) ( 2 == $number_of_tables );
|
149 |
}
|
150 |
|
151 |
/**
|
161 |
* @since 2.0.0
|
162 |
*/
|
163 |
private function _update_200() {
|
164 |
+
// update tables.
|
165 |
$this->_add_tables();
|
166 |
}
|
167 |
|
171 |
* @since 3.0.0
|
172 |
*/
|
173 |
private function _update_300() {
|
174 |
+
// update tables.
|
175 |
$this->_add_tables();
|
176 |
|
177 |
+
// update color options.
|
178 |
$options = array(
|
179 |
'color_add_to_wishlist',
|
180 |
'color_add_to_cart',
|
181 |
'color_button_style_1',
|
182 |
'color_button_style_2',
|
183 |
+
'color_wishlist_table',
|
184 |
);
|
185 |
|
186 |
+
foreach ( $options as $option ) {
|
187 |
$base_option_name = "yith_wcwl_{$option}";
|
188 |
|
189 |
$background = get_option( "{$base_option_name}_background" );
|
190 |
$color = get_option( "{$base_option_name}_color" );
|
191 |
$border = get_option( "{$base_option_name}_border_color" );
|
192 |
|
193 |
+
if ( 'color_wishlist_table' != $option ) {
|
194 |
$background_hover = get_option( "{$base_option_name}_hover_background" );
|
195 |
$color_hover = get_option( "{$base_option_name}_hover_color" );
|
196 |
$border_hover = get_option( "{$base_option_name}_hover_border_color" );
|
197 |
}
|
198 |
|
199 |
+
update_option(
|
200 |
+
$base_option_name,
|
201 |
+
array_merge(
|
202 |
+
! empty( $background ) ? array( 'background' => $background ) : array(),
|
203 |
+
! empty( $color ) ? array( 'text' => $color ) : array(),
|
204 |
+
! empty( $border ) ? array( 'border' => $border ) : array(),
|
205 |
+
! empty( $background_hover ) ? array( 'background_hover' => $background_hover ) : array(),
|
206 |
+
! empty( $color_hover ) ? array( 'text_hover' => $color_hover ) : array(),
|
207 |
+
! empty( $border_hover ) ? array( 'border_hover' => $border_hover ) : array()
|
208 |
+
)
|
209 |
+
);
|
210 |
}
|
211 |
|
212 |
+
// duplicate options.
|
213 |
$options = array(
|
214 |
'yith_wcwl_color_button_style_1' => array(
|
215 |
+
'yith_wcwl_color_ask_an_estimate',
|
216 |
),
|
217 |
'yith_wcwl_color_button_style_1_hover' => array(
|
218 |
+
'yith_wcwl_color_ask_an_estimate_hover',
|
219 |
),
|
220 |
'woocommerce_promotion_mail_settings' => array(
|
221 |
+
'woocommerce_yith_wcwl_promotion_mail_settings',
|
222 |
+
),
|
223 |
);
|
224 |
|
225 |
+
foreach ( $options as $original_option => $destinations ) {
|
226 |
$option_value = get_option( $option );
|
227 |
|
228 |
+
if ( $option_value ) {
|
229 |
+
foreach ( $destinations as $destination ) {
|
230 |
update_option( $destination, $option_value );
|
231 |
}
|
232 |
}
|
233 |
}
|
234 |
|
235 |
+
// button style options.
|
236 |
$use_buttons = get_option( 'yith_wcwl_use_button' );
|
237 |
$use_theme_style = get_option( 'yith_wcwl_frontend_css' );
|
238 |
|
239 |
+
if ( 'yes' == $use_buttons && 'no' == $use_theme_style ) {
|
240 |
$destination_value = 'button_custom';
|
241 |
+
} elseif ( 'yes' == $use_buttons ) {
|
|
|
242 |
$destination_value = 'button_default';
|
243 |
+
} else {
|
|
|
244 |
$destination_value = 'link';
|
245 |
}
|
246 |
|
248 |
update_option( 'yith_wcwl_add_to_cart_style', $destination_value );
|
249 |
update_option( 'yith_wcwl_ask_an_estimate_style', $destination_value );
|
250 |
|
251 |
+
// rounded corners options.
|
252 |
$rounded_corners = get_option( 'yith_wcwl_rounded_corners' );
|
253 |
$radius_value = 'yes' == $rounded_corners ? 16 : 0;
|
254 |
|
279 |
private function _add_wishlists_table() {
|
280 |
global $wpdb;
|
281 |
|
282 |
+
if ( ! $this->is_installed() || version_compare( get_option( 'yith_wcwl_db_version' ), '3.0.0', '<' ) ) {
|
283 |
$sql = "CREATE TABLE {$this->_table_wishlists} (
|
284 |
ID BIGINT( 20 ) NOT NULL AUTO_INCREMENT,
|
285 |
user_id BIGINT( 20 ) NULL DEFAULT NULL,
|
312 |
private function _add_items_table() {
|
313 |
global $wpdb;
|
314 |
|
315 |
+
if ( ! $this->is_installed() || version_compare( get_option( 'yith_wcwl_db_version' ), '3.0.0', '<' ) ) {
|
316 |
$sql = "CREATE TABLE {$this->_table_items} (
|
317 |
ID BIGINT( 20 ) NOT NULL AUTO_INCREMENT,
|
318 |
prod_id BIGINT( 20 ) NOT NULL,
|
342 |
* @since 1.0.0
|
343 |
*/
|
344 |
private function _add_pages() {
|
345 |
+
wc_create_page(
|
346 |
+
sanitize_title_with_dashes( _x( 'wishlist', 'page_slug', 'yith-woocommerce-wishlist' ) ),
|
347 |
+
'yith_wcwl_wishlist_page_id',
|
348 |
+
__( 'Wishlist', 'yith-woocommerce-wishlist' ),
|
349 |
+
'<!-- wp:shortcode -->[yith_wcwl_wishlist]<!-- /wp:shortcode -->'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
);
|
|
|
|
|
|
|
|
|
351 |
}
|
352 |
}
|
353 |
}
|
358 |
* @return \YITH_WCWL_Install
|
359 |
* @since 2.0.0
|
360 |
*/
|
361 |
+
function YITH_WCWL_Install() {
|
362 |
+
return YITH_WCWL_Install::get_instance();
|
363 |
}
|
@@ -7,7 +7,9 @@
|
|
7 |
* @version 3.0.0
|
8 |
*/
|
9 |
|
10 |
-
if ( ! defined( 'YITH_WCWL' ) ) {
|
|
|
|
|
11 |
|
12 |
if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
13 |
/**
|
@@ -23,15 +25,15 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
23 |
* @return void
|
24 |
*/
|
25 |
public static function init() {
|
26 |
-
// register shortcodes
|
27 |
add_shortcode( 'yith_wcwl_wishlist', array( 'YITH_WCWL_Shortcode', 'wishlist' ) );
|
28 |
add_shortcode( 'yith_wcwl_add_to_wishlist', array( 'YITH_WCWL_Shortcode', 'add_to_wishlist' ) );
|
29 |
|
30 |
-
// register gutenberg blocks
|
31 |
add_action( 'init', array( 'YITH_WCWL_Shortcode', 'register_gutenberg_blocks' ) );
|
32 |
add_action( 'yith_plugin_fw_gutenberg_before_do_shortcode', array( 'YITH_WCWL_Shortcode', 'fix_for_gutenberg_blocks' ), 10, 1 );
|
33 |
|
34 |
-
// register elementor widgets
|
35 |
add_action( 'init', array( 'YITH_WCWL_Shortcode', 'init_elementor_widgets' ) );
|
36 |
}
|
37 |
|
@@ -106,8 +108,8 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
106 |
'default' => 'no',
|
107 |
'options' => array(
|
108 |
'yes' => __( 'Paginate', 'yith-woocommerce-wishlist' ),
|
109 |
-
'no' => __( 'Do not paginate', 'yith-woocommerce-wishlist' )
|
110 |
-
)
|
111 |
),
|
112 |
'per_page' => array(
|
113 |
'type' => 'number',
|
@@ -120,7 +122,7 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
120 |
'default' => '',
|
121 |
),
|
122 |
),
|
123 |
-
)
|
124 |
);
|
125 |
|
126 |
yith_plugin_fw_gutenberg_add_blocks( $blocks );
|
@@ -129,18 +131,20 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
129 |
/**
|
130 |
* Fix preview of Gutenberg blocks at backend
|
131 |
*
|
132 |
-
* @param $shortcode
|
133 |
* @return void
|
134 |
*/
|
135 |
-
public static function fix_for_gutenberg_blocks( $shortcode ){
|
136 |
-
if( strpos( $shortcode, '[yith_wcwl_add_to_wishlist' ) !== false ){
|
137 |
-
if( strpos( $shortcode, 'product_id=""' ) !== false ){
|
138 |
-
$products = wc_get_products(
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
|
|
|
|
144 |
global $product;
|
145 |
$product = array_shift( $products );
|
146 |
}
|
@@ -156,16 +160,16 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
156 |
* @return void
|
157 |
*/
|
158 |
public static function init_elementor_widgets() {
|
159 |
-
// check if elementor is active
|
160 |
-
if( ! defined( 'ELEMENTOR_VERSION' ) ){
|
161 |
return;
|
162 |
}
|
163 |
|
164 |
-
// include widgets
|
165 |
include_once( YITH_WCWL_INC . 'widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php' );
|
166 |
include_once( YITH_WCWL_INC . 'widgets/elementor/class.yith-wcwl-elementor-wishlist.php' );
|
167 |
|
168 |
-
// register widgets
|
169 |
add_action( 'elementor/widgets/widgets_registered', array( 'YITH_WCWL_Shortcode', 'register_elementor_widgets' ) );
|
170 |
}
|
171 |
|
@@ -184,35 +188,44 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
184 |
/**
|
185 |
* Print the wishlist HTML.
|
186 |
*
|
|
|
|
|
|
|
|
|
187 |
* @since 1.0.0
|
188 |
*/
|
189 |
public static function wishlist( $atts, $content = null ) {
|
190 |
global $yith_wcwl_is_wishlist, $yith_wcwl_wishlist_token;
|
191 |
|
192 |
-
$atts = shortcode_atts(
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
|
|
|
|
|
|
|
|
200 |
|
201 |
/**
|
202 |
* @var $per_page int
|
|
|
203 |
* @var $pagination string
|
204 |
* @var $wishlist_id int
|
205 |
* @var $action_params array
|
206 |
* @var $no_interactions string
|
207 |
* @var $layout string
|
208 |
*/
|
209 |
-
extract( $atts );
|
210 |
|
211 |
-
// retrieve options from query string
|
212 |
$action_params = explode( '/', apply_filters( 'yith_wcwl_current_wishlist_view_params', $action_params ) );
|
213 |
$action = ( isset( $action_params[0] ) ) ? $action_params[0] : 'view';
|
214 |
|
215 |
-
// retrieve options from db
|
216 |
$default_wishlist_title = get_option( 'yith_wcwl_wishlist_title' );
|
217 |
$show_price = get_option( 'yith_wcwl_price_show' ) == 'yes';
|
218 |
$show_stock = get_option( 'yith_wcwl_stock_show' ) == 'yes';
|
@@ -225,22 +238,21 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
225 |
$price_excluding_tax = get_option( 'woocommerce_tax_display_cart' ) == 'excl';
|
226 |
$ajax_loading = get_option( 'yith_wcwl_ajax_enable', 'no' );
|
227 |
|
228 |
-
// icons
|
229 |
$icon = get_option( 'yith_wcwl_add_to_wishlist_icon' );
|
230 |
$custom_icon = get_option( 'yith_wcwl_add_to_wishlist_custom_icon' );
|
231 |
|
232 |
-
if( 'custom' == $icon ){
|
233 |
$heading_icon = '<img src="' . $custom_icon . '" width="32" />';
|
234 |
-
}
|
235 |
-
else{
|
236 |
$heading_icon = ! empty( $icon ) ? '<i class="fa ' . $icon . '"></i>' : '';
|
237 |
}
|
238 |
|
239 |
-
// init params needed to load correct template
|
240 |
$template_part = 'view';
|
241 |
-
$no_interactions =
|
242 |
$additional_params = array(
|
243 |
-
// wishlist data
|
244 |
'wishlist' => false,
|
245 |
'is_default' => true, // @deprecated since 3.0.7
|
246 |
'is_custom_list' => false,
|
@@ -248,23 +260,23 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
248 |
'wishlist_id' => false,
|
249 |
'is_private' => false,
|
250 |
|
251 |
-
// wishlist items
|
252 |
'count' => 0,
|
253 |
'wishlist_items' => array(),
|
254 |
|
255 |
-
//page data
|
256 |
'page_title' => $default_wishlist_title,
|
257 |
'default_wishlsit_title' => $default_wishlist_title,
|
258 |
-
'current_page' =>
|
259 |
'page_links' => false,
|
260 |
'layout' => $layout,
|
261 |
|
262 |
-
// user data
|
263 |
'is_user_logged_in' => is_user_logged_in(),
|
264 |
'is_user_owner' => true,
|
265 |
'can_user_edit_title' => false,
|
266 |
|
267 |
-
// view data
|
268 |
'no_interactions' => $no_interactions,
|
269 |
'show_price' => $show_price,
|
270 |
'show_dateadded' => $show_date_added,
|
@@ -286,98 +298,103 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
286 |
'repeat_remove_button' => $repeat_remove_button && ! $no_interactions,
|
287 |
'show_last_column' => $show_date_added || ( $show_add_to_cart && ! $no_interactions ) || ( $repeat_remove_button && ! $no_interactions ),
|
288 |
|
289 |
-
// wishlist icon
|
290 |
'heading_icon' => $heading_icon,
|
291 |
|
292 |
-
// share data
|
293 |
'share_enabled' => false,
|
294 |
|
295 |
-
// template data
|
296 |
'template_part' => $template_part,
|
297 |
'additional_info' => false,
|
298 |
'available_multi_wishlist' => false,
|
299 |
'users_wishlists' => array(),
|
300 |
-
'form_action' => esc_url( YITH_WCWL()->get_wishlist_url( 'view' ) )
|
301 |
);
|
302 |
|
303 |
$wishlist = YITH_WCWL_Wishlist_Factory::get_current_wishlist( $atts );
|
304 |
|
305 |
-
if( $wishlist && $wishlist->current_user_can( 'view' ) ){
|
306 |
-
// set global wishlist token
|
307 |
$yith_wcwl_wishlist_token = $wishlist->get_token();
|
308 |
|
309 |
-
// retrieve wishlist params
|
310 |
$is_user_owner = $wishlist->is_current_user_owner();
|
311 |
$count = $wishlist->count_items();
|
312 |
$offset = 0;
|
313 |
|
314 |
-
// sets current page, number of pages and element offset
|
315 |
-
$
|
|
|
316 |
|
317 |
-
// sets variables for pagination, if shortcode atts is set to yes
|
318 |
-
if(
|
319 |
$pages = ceil( $count / $per_page );
|
320 |
|
321 |
-
if( $current_page > $pages ){
|
322 |
$current_page = $pages;
|
323 |
}
|
324 |
|
325 |
$offset = ( $current_page - 1 ) * $per_page;
|
326 |
|
327 |
-
if( $pages > 1 ){
|
328 |
-
$page_links = paginate_links(
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
|
|
|
|
335 |
}
|
336 |
-
}
|
337 |
-
else{
|
338 |
$per_page = 0;
|
339 |
}
|
340 |
|
341 |
-
// retrieve items to print
|
342 |
$wishlist_items = $wishlist->get_items( $per_page, $offset );
|
343 |
|
344 |
-
// retrieve wishlist information
|
345 |
$is_default = $wishlist->get_is_default();
|
346 |
$wishlist_token = $wishlist->get_token();
|
347 |
$wishlist_title = $wishlist->get_formatted_name();
|
348 |
|
349 |
-
$additional_params = wp_parse_args(
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
|
|
|
|
|
|
381 |
$enable_share = get_option( 'yith_wcwl_enable_share' ) == 'yes' && ! $wishlist->has_privacy( 'private' );
|
382 |
$share_facebook_enabled = get_option( 'yith_wcwl_share_fb' ) == 'yes';
|
383 |
$share_twitter_enabled = get_option( 'yith_wcwl_share_twitter' ) == 'yes';
|
@@ -386,9 +403,9 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
386 |
$share_whatsapp_enabled = get_option( 'yith_wcwl_share_whatsapp' ) == 'yes';
|
387 |
$share_url_enabled = get_option( 'yith_wcwl_share_url' ) == 'yes';
|
388 |
|
389 |
-
if( ! $no_interactions && $enable_share && ( $share_facebook_enabled || $share_twitter_enabled || $share_pinterest_enabled || $share_email_enabled || $share_whatsapp_enabled || $share_url_enabled ) ){
|
390 |
$share_title = apply_filters( 'yith_wcwl_socials_share_title', __( 'Share on:', 'yith-woocommerce-wishlist' ) );
|
391 |
-
$share_link_url = apply_filters('yith_wcwl_shortcode_share_link_url'
|
392 |
$share_links_title = apply_filters( 'plugin_text', urlencode( get_option( 'yith_wcwl_socials_title' ) ) );
|
393 |
$share_summary = urlencode( str_replace( '%wishlist_url%', $share_link_url, get_option( 'yith_wcwl_socials_text' ) ) );
|
394 |
|
@@ -404,43 +421,38 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
404 |
'share_link_title' => $share_links_title,
|
405 |
);
|
406 |
|
407 |
-
if( $share_facebook_enabled ){
|
408 |
$share_facebook_icon = get_option( 'yith_wcwl_fb_button_icon', 'fa-facebook' );
|
409 |
$share_facebook_custom_icon = get_option( 'yith_wcwl_fb_button_custom_icon' );
|
410 |
|
411 |
-
if( ! in_array( $share_facebook_icon, array( 'none', 'custom' ) ) ){
|
412 |
$share_atts['share_facebook_icon'] = "<i class='fa {$share_facebook_icon}'></i>";
|
413 |
-
}
|
414 |
-
elseif( 'custom' == $share_facebook_icon && $share_facebook_custom_icon ){
|
415 |
$alt_text = __( 'Share on Facebook', 'yith-woocommerce-wishlist' );
|
416 |
$share_atts['share_facebook_icon'] = "<img src='{$share_facebook_custom_icon}' alt='{$alt_text}'/>";
|
417 |
-
}
|
418 |
-
else{
|
419 |
$share_atts['share_facebook_icon'] = '';
|
420 |
}
|
421 |
-
|
422 |
}
|
423 |
|
424 |
-
if( $share_twitter_enabled ){
|
425 |
$share_twitter_summary = urlencode( str_replace( '%wishlist_url%', '', get_option( 'yith_wcwl_socials_text' ) ) );
|
426 |
$share_twitter_icon = get_option( 'yith_wcwl_tw_button_icon', 'fa-twitter' );
|
427 |
$share_twitter_custom_icon = get_option( 'yith_wcwl_tw_button_custom_icon' );
|
428 |
|
429 |
$share_atts['share_twitter_summary'] = $share_twitter_summary;
|
430 |
|
431 |
-
if( ! in_array( $share_twitter_icon, array( 'none', 'custom' ) ) ){
|
432 |
$share_atts['share_twitter_icon'] = "<i class='fa {$share_twitter_icon}'></i>";
|
433 |
-
}
|
434 |
-
elseif( 'custom' == $share_twitter_icon && $share_twitter_custom_icon ){
|
435 |
$alt_text = __( 'Tweet on Twitter', 'yith-woocommerce-wishlist' );
|
436 |
$share_atts['share_twitter_icon'] = "<img src='{$share_twitter_custom_icon}' alt='{$alt_text}'/>";
|
437 |
-
}
|
438 |
-
else{
|
439 |
$share_atts['share_twitter_icon'] = '';
|
440 |
}
|
441 |
}
|
442 |
|
443 |
-
if( $share_pinterest_enabled ){
|
444 |
$share_image_url = urlencode( get_option( 'yith_wcwl_socials_image_url' ) );
|
445 |
$share_pinterest_icon = get_option( 'yith_wcwl_pr_button_icon', 'fa-pinterest' );
|
446 |
$share_pinterest_custom_icon = get_option( 'yith_wcwl_pr_button_custom_icon' );
|
@@ -448,56 +460,49 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
448 |
$share_atts['share_summary'] = $share_summary;
|
449 |
$share_atts['share_image_url'] = $share_image_url;
|
450 |
|
451 |
-
if( ! in_array( $share_pinterest_icon, array( 'none', 'custom' ) ) ){
|
452 |
$share_atts['share_pinterest_icon'] = "<i class='fa {$share_pinterest_icon}'></i>";
|
453 |
-
}
|
454 |
-
elseif( 'custom' == $share_pinterest_icon && $share_pinterest_custom_icon ){
|
455 |
$alt_text = __( 'Pin on Pinterest', 'yith-woocommerce-wishlist' );
|
456 |
$share_atts['share_pinterest_icon'] = "<img src='{$share_pinterest_custom_icon}' alt='{$alt_text}'/>";
|
457 |
-
}
|
458 |
-
else{
|
459 |
$share_atts['share_pinterest_icon'] = '';
|
460 |
}
|
461 |
}
|
462 |
|
463 |
-
if( $share_email_enabled ){
|
464 |
$share_email_icon = get_option( 'yith_wcwl_em_button_icon', 'fa-email' );
|
465 |
$share_email_custom_icon = get_option( 'yith_wcwl_em_button_custom_icon' );
|
466 |
|
467 |
-
if( ! in_array( $share_email_icon, array( 'none', 'custom' ) ) ){
|
468 |
$share_atts['share_email_icon'] = "<i class='fa {$share_email_icon}'></i>";
|
469 |
-
}
|
470 |
-
elseif( 'custom' == $share_email_icon && $share_email_custom_icon ){
|
471 |
$alt_text = __( 'Share via email', 'yith-woocommerce-wishlist' );
|
472 |
$share_atts['share_email_icon'] = "<img src='{$share_email_custom_icon}' alt='{$alt_text}'/>";
|
473 |
-
}
|
474 |
-
else{
|
475 |
$share_atts['share_email_icon'] = '';
|
476 |
}
|
477 |
}
|
478 |
|
479 |
-
if( $share_whatsapp_enabled ){
|
480 |
$share_whatsapp_icon = get_option( 'yith_wcwl_wa_button_icon', 'fa-whatsapp' );
|
481 |
$share_whatsapp_custom_icon = get_option( 'yith_wcwl_wa_button_custom_icon' );
|
482 |
$share_whatsapp_url = '';
|
483 |
|
484 |
-
if( wp_is_mobile() ){
|
485 |
-
$share_whatsapp_url = 'whatsapp://send?text=' . __( 'My wishlist on ', 'yith-woocommerce-wishlist' ) . ' – ' . urlencode($share_link_url);
|
486 |
-
}
|
487 |
-
|
488 |
-
$share_whatsapp_url = 'https://web.whatsapp.com/send?text=' . __( 'My wishlist on ', 'yith-woocommerce-wishlist' ) . ' – ' . urlencode($share_link_url);
|
489 |
}
|
490 |
|
491 |
$share_atts['share_whatsapp_url'] = $share_whatsapp_url;
|
492 |
|
493 |
-
if( ! in_array( $share_whatsapp_icon, array( 'none', 'custom' ) ) ){
|
494 |
$share_atts['share_whatsapp_icon'] = "<i class='fa {$share_whatsapp_icon}'></i>";
|
495 |
-
}
|
496 |
-
elseif( 'custom' == $share_whatsapp_icon && $share_whatsapp_custom_icon ){
|
497 |
$alt_text = __( 'Share on WhatsApp', 'yith-woocommerce-wishlist' );
|
498 |
$share_atts['share_whatsapp_icon'] = "<img src='{$share_whatsapp_custom_icon}' alt='{$alt_text}'/>";
|
499 |
-
}
|
500 |
-
else{
|
501 |
$share_atts['share_whatsapp_icon'] = '';
|
502 |
}
|
503 |
}
|
@@ -507,7 +512,7 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
507 |
}
|
508 |
}
|
509 |
|
510 |
-
// filter params
|
511 |
$additional_params = apply_filters( 'yith_wcwl_wishlist_params', $additional_params, $action, $action_params, $pagination, $per_page );
|
512 |
|
513 |
$atts = array_merge(
|
@@ -517,19 +522,19 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
517 |
|
518 |
$atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'wishlist' );
|
519 |
|
520 |
-
// apply filters for add to cart buttons
|
521 |
YITH_WCWL_Frontend()->alter_add_to_cart_button();
|
522 |
|
523 |
-
// sets that we're in the wishlist template
|
524 |
$yith_wcwl_is_wishlist = true;
|
525 |
|
526 |
$template = yith_wcwl_get_template( 'wishlist.php', $atts, true );
|
527 |
|
528 |
-
// we're not in wishlist template anymore
|
529 |
$yith_wcwl_is_wishlist = false;
|
530 |
$yith_wcwl_wishlist_token = null;
|
531 |
|
532 |
-
// remove filters for add to cart buttons
|
533 |
YITH_WCWL_Frontend()->restore_add_to_cart_button();
|
534 |
|
535 |
return apply_filters( 'yith_wcwl_wishlisth_html', $template, array(), true );
|
@@ -538,25 +543,28 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
538 |
/**
|
539 |
* Return "Add to Wishlist" button.
|
540 |
*
|
|
|
|
|
|
|
541 |
* @since 1.0.0
|
542 |
*/
|
543 |
public static function add_to_wishlist( $atts, $content = null ) {
|
544 |
global $product;
|
545 |
|
546 |
-
// product object
|
547 |
$current_product = ( isset( $atts['product_id'] ) ) ? wc_get_product( $atts['product_id'] ) : false;
|
548 |
$current_product = $current_product ? $current_product : $product;
|
549 |
|
550 |
-
if( ! $current_product ){
|
551 |
return '';
|
552 |
}
|
553 |
|
554 |
$current_product_id = yit_get_product_id( $current_product );
|
555 |
|
556 |
-
// product parent
|
557 |
$current_product_parent = $current_product->get_parent_id();
|
558 |
|
559 |
-
// labels & icons settings
|
560 |
$label_option = get_option( 'yith_wcwl_add_to_wishlist_text' );
|
561 |
$icon_option = get_option( 'yith_wcwl_add_to_wishlist_icon' );
|
562 |
$custom_icon = 'none' != $icon_option ? get_option( 'yith_wcwl_add_to_wishlist_custom_icon' ) : '';
|
@@ -567,48 +575,48 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
567 |
$product_added = get_option( 'yith_wcwl_product_added_text' );
|
568 |
$loop_position = get_option( 'yith_wcwl_loop_position' );
|
569 |
|
570 |
-
// button label
|
571 |
$label = apply_filters( 'yith_wcwl_button_label', $label_option );
|
572 |
|
573 |
-
// button icon
|
574 |
-
$icon = apply_filters( 'yith_wcwl_button_icon',
|
575 |
-
$added_icon = apply_filters( 'yith_wcwl_button_added_icon',
|
576 |
|
577 |
-
// button class
|
578 |
$is_single = isset( $atts['is_single'] ) ? $atts['is_single'] : yith_wcwl_is_single();
|
579 |
$use_custom_button = get_option( 'yith_wcwl_add_to_wishlist_style' );
|
580 |
$classes = apply_filters( 'yith_wcwl_add_to_wishlist_button_classes', in_array( $use_custom_button, array( 'button_custom', 'button_default' ) ) ? 'add_to_wishlist single_add_to_wishlist button alt' : 'add_to_wishlist single_add_to_wishlist' );
|
581 |
|
582 |
-
// check if product is already in wishlist
|
583 |
$exists = YITH_WCWL()->is_product_in_wishlist( $current_product_id );
|
584 |
$added_to_wishlist_behaviour = get_option( 'yith_wcwl_after_add_to_wishlist_behaviour', 'view' );
|
585 |
$container_classes = $exists ? 'exists' : false;
|
586 |
$found_in_list = $exists ? yith_wcwl_get_wishlist( false ) : false;
|
587 |
$found_item = $found_in_list ? $found_in_list->get_product( $current_product_id ) : false;
|
588 |
|
589 |
-
$template_part = $exists &&
|
590 |
$template_part = isset( $atts['added_to_wishlist'] ) ? ( $atts['added_to_wishlist'] ? 'added' : 'browse' ) : $template_part;
|
591 |
|
592 |
-
if( $found_in_list && in_array( $template_part, array( 'browse', 'added' ) ) ){
|
593 |
'remove' == $added_to_wishlist_behaviour && $template_part = 'remove';
|
594 |
}
|
595 |
|
596 |
-
if( 'remove' == $template_part ){
|
597 |
$classes = str_replace( array( 'single_add_to_wishlist', 'add_to_wishlist' ), '', $classes );
|
598 |
$label = apply_filters( 'yith_wcwl_remove_from_wishlist_label', __( 'Remove from list', 'yith-woocommerce-wishlist' ) );
|
599 |
}
|
600 |
|
601 |
-
// forcefully add icon when showing button over image, if no one is set
|
602 |
-
if( ! $is_single && 'before_image' == get_option( 'yith_wcwl_loop_position' ) ){
|
603 |
$classes = str_replace( 'button', '', $classes );
|
604 |
}
|
605 |
|
606 |
$ajax_loading = get_option( 'yith_wcwl_ajax_enable', 'no' ) == 'yes';
|
607 |
|
608 |
-
// get wishlist url
|
609 |
$wishlist_url = YITH_WCWL()->get_wishlist_url();
|
610 |
|
611 |
-
// get product type
|
612 |
$product_type = $current_product->get_type();
|
613 |
|
614 |
$additional_params = array(
|
@@ -637,10 +645,10 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
637 |
'show_count' => false,
|
638 |
'ajax_loading' => $ajax_loading,
|
639 |
'loop_position' => $loop_position,
|
640 |
-
'template_part' => $template_part
|
641 |
);
|
642 |
|
643 |
-
// let third party developer filter options
|
644 |
$additional_params = apply_filters( 'yith_wcwl_add_to_wishlist_params', $additional_params, $atts );
|
645 |
|
646 |
$atts = shortcode_atts(
|
@@ -648,42 +656,37 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
648 |
$atts
|
649 |
);
|
650 |
|
651 |
-
// set icon when missing, when on top of image (icon only, icon required)
|
652 |
-
if( ! $is_single && 'before_image' == get_option( 'yith_wcwl_loop_position' ) && ( ! $atts['icon'] || 'custom' == $atts['icon'] ) ){
|
653 |
-
if( ! $atts['icon'] ) {
|
654 |
$atts['icon'] = 'fa-heart-o';
|
655 |
-
}
|
656 |
-
elseif( 'custom' == $atts['icon'] && ! $custom_icon && ! $custom_added_icon ){
|
657 |
$atts['icon'] = 'fa-heart-o';
|
658 |
}
|
659 |
}
|
660 |
|
661 |
-
// change icon when item exists in wishlist
|
662 |
-
if( $atts['exists'] ){
|
663 |
-
if( $added_icon && ( 'custom' != $added_icon || $custom_added_icon || $custom_icon ) ){
|
664 |
$atts['icon'] = $added_icon;
|
665 |
-
}
|
666 |
-
elseif( strpos( $atts['icon'], '-o' ) !== false ){
|
667 |
$atts['icon'] = str_replace( '-o', '', $atts['icon'] );
|
668 |
}
|
669 |
}
|
670 |
|
671 |
-
if( 'custom' == $atts['icon'] && $atts['exists'] && $custom_added_icon ){
|
672 |
$icon_html = '<img class="yith-wcwl-icon" src="' . $custom_added_icon . '" width="32" />';
|
673 |
-
}
|
674 |
-
elseif( 'custom' == $atts['icon'] && $custom_icon ){
|
675 |
$icon_html = '<img class="yith-wcwl-icon" src="' . $custom_icon . '" width="32" />';
|
676 |
$heading_icon_html = $icon_html;
|
677 |
-
}
|
678 |
-
elseif( 'custom' != $atts['icon'] ){
|
679 |
$icon_html = ! empty( $atts['icon'] ) ? '<i class="yith-wcwl-icon fa ' . $atts['icon'] . '"></i>' : '';
|
680 |
$heading_icon_html = ! empty( $atts['heading_icon'] ) ? '<i class="yith-wcwl-icon fa ' . $atts['heading_icon'] . '"></i>' : '';
|
681 |
-
}
|
682 |
-
else{
|
683 |
$icon_html = '';
|
684 |
}
|
685 |
|
686 |
-
// set fragment options
|
687 |
$atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'add_to_wishlist' );
|
688 |
$atts['icon'] = $icon_html;
|
689 |
$atts['heading_icon'] = $heading_icon_html;
|
@@ -693,7 +696,7 @@ if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
|
693 |
return apply_filters( 'yith_wcwl_add_to_wishlisth_button_html', $template, $wishlist_url, $product_type, $exists );
|
694 |
}
|
695 |
|
696 |
-
|
697 |
}
|
698 |
|
699 |
YITH_WCWL_Shortcode::init();
|
7 |
* @version 3.0.0
|
8 |
*/
|
9 |
|
10 |
+
if ( ! defined( 'YITH_WCWL' ) ) {
|
11 |
+
exit;
|
12 |
+
} // Exit if accessed directly
|
13 |
|
14 |
if( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
|
15 |
/**
|
25 |
* @return void
|
26 |
*/
|
27 |
public static function init() {
|
28 |
+
// register shortcodes.
|
29 |
add_shortcode( 'yith_wcwl_wishlist', array( 'YITH_WCWL_Shortcode', 'wishlist' ) );
|
30 |
add_shortcode( 'yith_wcwl_add_to_wishlist', array( 'YITH_WCWL_Shortcode', 'add_to_wishlist' ) );
|
31 |
|
32 |
+
// register gutenberg blocks.
|
33 |
add_action( 'init', array( 'YITH_WCWL_Shortcode', 'register_gutenberg_blocks' ) );
|
34 |
add_action( 'yith_plugin_fw_gutenberg_before_do_shortcode', array( 'YITH_WCWL_Shortcode', 'fix_for_gutenberg_blocks' ), 10, 1 );
|
35 |
|
36 |
+
// register elementor widgets.
|
37 |
add_action( 'init', array( 'YITH_WCWL_Shortcode', 'init_elementor_widgets' ) );
|
38 |
}
|
39 |
|
108 |
'default' => 'no',
|
109 |
'options' => array(
|
110 |
'yes' => __( 'Paginate', 'yith-woocommerce-wishlist' ),
|
111 |
+
'no' => __( 'Do not paginate', 'yith-woocommerce-wishlist' ),
|
112 |
+
),
|
113 |
),
|
114 |
'per_page' => array(
|
115 |
'type' => 'number',
|
122 |
'default' => '',
|
123 |
),
|
124 |
),
|
125 |
+
),
|
126 |
);
|
127 |
|
128 |
yith_plugin_fw_gutenberg_add_blocks( $blocks );
|
131 |
/**
|
132 |
* Fix preview of Gutenberg blocks at backend
|
133 |
*
|
134 |
+
* @param string $shortcode Shortcode to render.
|
135 |
* @return void
|
136 |
*/
|
137 |
+
public static function fix_for_gutenberg_blocks( $shortcode ) {
|
138 |
+
if ( strpos( $shortcode, '[yith_wcwl_add_to_wishlist' ) !== false ) {
|
139 |
+
if ( strpos( $shortcode, 'product_id=""' ) !== false ) {
|
140 |
+
$products = wc_get_products(
|
141 |
+
array(
|
142 |
+
'type' => 'simple',
|
143 |
+
'limit' => 1,
|
144 |
+
)
|
145 |
+
);
|
146 |
+
|
147 |
+
if ( ! empty( $products ) ) {
|
148 |
global $product;
|
149 |
$product = array_shift( $products );
|
150 |
}
|
160 |
* @return void
|
161 |
*/
|
162 |
public static function init_elementor_widgets() {
|
163 |
+
// check if elementor is active.
|
164 |
+
if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
|
165 |
return;
|
166 |
}
|
167 |
|
168 |
+
// include widgets.
|
169 |
include_once( YITH_WCWL_INC . 'widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php' );
|
170 |
include_once( YITH_WCWL_INC . 'widgets/elementor/class.yith-wcwl-elementor-wishlist.php' );
|
171 |
|
172 |
+
// register widgets.
|
173 |
add_action( 'elementor/widgets/widgets_registered', array( 'YITH_WCWL_Shortcode', 'register_elementor_widgets' ) );
|
174 |
}
|
175 |
|
188 |
/**
|
189 |
* Print the wishlist HTML.
|
190 |
*
|
191 |
+
* @param array $atts Array of attributes for the shortcode.
|
192 |
+
* @param string $content Shortcode content (none expected).
|
193 |
+
* @return string Rendered shortcode
|
194 |
+
*
|
195 |
* @since 1.0.0
|
196 |
*/
|
197 |
public static function wishlist( $atts, $content = null ) {
|
198 |
global $yith_wcwl_is_wishlist, $yith_wcwl_wishlist_token;
|
199 |
|
200 |
+
$atts = shortcode_atts(
|
201 |
+
array(
|
202 |
+
'per_page' => 5,
|
203 |
+
'current_page' => 1,
|
204 |
+
'pagination' => 'no',
|
205 |
+
'wishlist_id' => get_query_var( 'wishlist_id', false ),
|
206 |
+
'action_params' => get_query_var( YITH_WCWL()->wishlist_param, false ),
|
207 |
+
'no_interactions' => 'no',
|
208 |
+
'layout' => '',
|
209 |
+
),
|
210 |
+
$atts
|
211 |
+
);
|
212 |
|
213 |
/**
|
214 |
* @var $per_page int
|
215 |
+
* @var $current_page int
|
216 |
* @var $pagination string
|
217 |
* @var $wishlist_id int
|
218 |
* @var $action_params array
|
219 |
* @var $no_interactions string
|
220 |
* @var $layout string
|
221 |
*/
|
222 |
+
extract( $atts ); // phpcs:ignore
|
223 |
|
224 |
+
// retrieve options from query string.
|
225 |
$action_params = explode( '/', apply_filters( 'yith_wcwl_current_wishlist_view_params', $action_params ) );
|
226 |
$action = ( isset( $action_params[0] ) ) ? $action_params[0] : 'view';
|
227 |
|
228 |
+
// retrieve options from db.
|
229 |
$default_wishlist_title = get_option( 'yith_wcwl_wishlist_title' );
|
230 |
$show_price = get_option( 'yith_wcwl_price_show' ) == 'yes';
|
231 |
$show_stock = get_option( 'yith_wcwl_stock_show' ) == 'yes';
|
238 |
$price_excluding_tax = get_option( 'woocommerce_tax_display_cart' ) == 'excl';
|
239 |
$ajax_loading = get_option( 'yith_wcwl_ajax_enable', 'no' );
|
240 |
|
241 |
+
// icons.
|
242 |
$icon = get_option( 'yith_wcwl_add_to_wishlist_icon' );
|
243 |
$custom_icon = get_option( 'yith_wcwl_add_to_wishlist_custom_icon' );
|
244 |
|
245 |
+
if ( 'custom' == $icon ) {
|
246 |
$heading_icon = '<img src="' . $custom_icon . '" width="32" />';
|
247 |
+
} else {
|
|
|
248 |
$heading_icon = ! empty( $icon ) ? '<i class="fa ' . $icon . '"></i>' : '';
|
249 |
}
|
250 |
|
251 |
+
// init params needed to load correct template.
|
252 |
$template_part = 'view';
|
253 |
+
$no_interactions = 'yes' == $no_interactions;
|
254 |
$additional_params = array(
|
255 |
+
// wishlist data.
|
256 |
'wishlist' => false,
|
257 |
'is_default' => true, // @deprecated since 3.0.7
|
258 |
'is_custom_list' => false,
|
260 |
'wishlist_id' => false,
|
261 |
'is_private' => false,
|
262 |
|
263 |
+
// wishlist items.
|
264 |
'count' => 0,
|
265 |
'wishlist_items' => array(),
|
266 |
|
267 |
+
// page data.
|
268 |
'page_title' => $default_wishlist_title,
|
269 |
'default_wishlsit_title' => $default_wishlist_title,
|
270 |
+
'current_page' => $current_page,
|
271 |
'page_links' => false,
|
272 |
'layout' => $layout,
|
273 |
|
274 |
+
// user data.
|
275 |
'is_user_logged_in' => is_user_logged_in(),
|
276 |
'is_user_owner' => true,
|
277 |
'can_user_edit_title' => false,
|
278 |
|
279 |
+
// view data.
|
280 |
'no_interactions' => $no_interactions,
|
281 |
'show_price' => $show_price,
|
282 |
'show_dateadded' => $show_date_added,
|
298 |
'repeat_remove_button' => $repeat_remove_button && ! $no_interactions,
|
299 |
'show_last_column' => $show_date_added || ( $show_add_to_cart && ! $no_interactions ) || ( $repeat_remove_button && ! $no_interactions ),
|
300 |
|
301 |
+
// wishlist icon.
|
302 |
'heading_icon' => $heading_icon,
|
303 |
|
304 |
+
// share data.
|
305 |
'share_enabled' => false,
|
306 |
|
307 |
+
// template data.
|
308 |
'template_part' => $template_part,
|
309 |
'additional_info' => false,
|
310 |
'available_multi_wishlist' => false,
|
311 |
'users_wishlists' => array(),
|
312 |
+
'form_action' => esc_url( YITH_WCWL()->get_wishlist_url( 'view' ) ),
|
313 |
);
|
314 |
|
315 |
$wishlist = YITH_WCWL_Wishlist_Factory::get_current_wishlist( $atts );
|
316 |
|
317 |
+
if ( $wishlist && $wishlist->current_user_can( 'view' ) ) {
|
318 |
+
// set global wishlist token.
|
319 |
$yith_wcwl_wishlist_token = $wishlist->get_token();
|
320 |
|
321 |
+
// retrieve wishlist params.
|
322 |
$is_user_owner = $wishlist->is_current_user_owner();
|
323 |
$count = $wishlist->count_items();
|
324 |
$offset = 0;
|
325 |
|
326 |
+
// sets current page, number of pages and element offset.
|
327 |
+
$queried_page = get_query_var( 'paged' );
|
328 |
+
$current_page = max( 1, $queried_page ? $queried_page : $current_page );
|
329 |
|
330 |
+
// sets variables for pagination, if shortcode atts is set to yes.
|
331 |
+
if ( 'yes' == $pagination && ! $no_interactions && $count > 1 ) {
|
332 |
$pages = ceil( $count / $per_page );
|
333 |
|
334 |
+
if ( $current_page > $pages ) {
|
335 |
$current_page = $pages;
|
336 |
}
|
337 |
|
338 |
$offset = ( $current_page - 1 ) * $per_page;
|
339 |
|
340 |
+
if ( $pages > 1 ) {
|
341 |
+
$page_links = paginate_links(
|
342 |
+
array(
|
343 |
+
'base' => esc_url( add_query_arg( array( 'paged' => '%#%' ), $wishlist->get_url() ) ),
|
344 |
+
'format' => '?paged=%#%',
|
345 |
+
'current' => $current_page,
|
346 |
+
'total' => $pages,
|
347 |
+
'show_all' => true,
|
348 |
+
)
|
349 |
+
);
|
350 |
}
|
351 |
+
} else {
|
|
|
352 |
$per_page = 0;
|
353 |
}
|
354 |
|
355 |
+
// retrieve items to print.
|
356 |
$wishlist_items = $wishlist->get_items( $per_page, $offset );
|
357 |
|
358 |
+
// retrieve wishlist information.
|
359 |
$is_default = $wishlist->get_is_default();
|
360 |
$wishlist_token = $wishlist->get_token();
|
361 |
$wishlist_title = $wishlist->get_formatted_name();
|
362 |
|
363 |
+
$additional_params = wp_parse_args(
|
364 |
+
array(
|
365 |
+
// wishlist items.
|
366 |
+
'count' => $count,
|
367 |
+
'wishlist_items' => $wishlist_items,
|
368 |
+
|
369 |
+
// wishlist data.
|
370 |
+
'wishlist' => $wishlist,
|
371 |
+
'is_default' => $is_default,
|
372 |
+
'is_custom_list' => $is_user_owner && ! $no_interactions, // @deprecated since 3.0.7
|
373 |
+
'wishlist_token' => $wishlist_token,
|
374 |
+
'wishlist_id' => $wishlist->get_id(),
|
375 |
+
'is_private' => $wishlist->has_privacy( 'private' ),
|
376 |
+
'ajax_loading' => $ajax_loading,
|
377 |
+
|
378 |
+
// page data.
|
379 |
+
'page_title' => $wishlist_title,
|
380 |
+
'current_page' => $current_page,
|
381 |
+
'page_links' => isset( $page_links ) && ! $no_interactions ? $page_links : false,
|
382 |
+
|
383 |
+
// user data.
|
384 |
+
'is_user_owner' => $is_user_owner,
|
385 |
+
'can_user_edit_title' => $wishlist->current_user_can( 'update_wishlist' ) && ! $no_interactions,
|
386 |
+
|
387 |
+
// view data.
|
388 |
+
'show_remove_product' => $show_remove_product && $wishlist->current_user_can( 'remove_from_wishlist' ) && ! $no_interactions,
|
389 |
+
'repeat_remove_button' => $repeat_remove_button && $wishlist->current_user_can( 'remove_from_wishlist' ) && ! $no_interactions,
|
390 |
+
|
391 |
+
// template data.
|
392 |
+
'form_action' => $wishlist->get_url(),
|
393 |
+
),
|
394 |
+
$additional_params
|
395 |
+
);
|
396 |
+
|
397 |
+
// share options.
|
398 |
$enable_share = get_option( 'yith_wcwl_enable_share' ) == 'yes' && ! $wishlist->has_privacy( 'private' );
|
399 |
$share_facebook_enabled = get_option( 'yith_wcwl_share_fb' ) == 'yes';
|
400 |
$share_twitter_enabled = get_option( 'yith_wcwl_share_twitter' ) == 'yes';
|
403 |
$share_whatsapp_enabled = get_option( 'yith_wcwl_share_whatsapp' ) == 'yes';
|
404 |
$share_url_enabled = get_option( 'yith_wcwl_share_url' ) == 'yes';
|
405 |
|
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 |
|
421 |
'share_link_title' => $share_links_title,
|
422 |
);
|
423 |
|
424 |
+
if ( $share_facebook_enabled ) {
|
425 |
$share_facebook_icon = get_option( 'yith_wcwl_fb_button_icon', 'fa-facebook' );
|
426 |
$share_facebook_custom_icon = get_option( 'yith_wcwl_fb_button_custom_icon' );
|
427 |
|
428 |
+
if ( ! in_array( $share_facebook_icon, array( 'none', 'custom' ) ) ) {
|
429 |
$share_atts['share_facebook_icon'] = "<i class='fa {$share_facebook_icon}'></i>";
|
430 |
+
} elseif ( 'custom' == $share_facebook_icon && $share_facebook_custom_icon ) {
|
|
|
431 |
$alt_text = __( 'Share on Facebook', 'yith-woocommerce-wishlist' );
|
432 |
$share_atts['share_facebook_icon'] = "<img src='{$share_facebook_custom_icon}' alt='{$alt_text}'/>";
|
433 |
+
} else {
|
|
|
434 |
$share_atts['share_facebook_icon'] = '';
|
435 |
}
|
|
|
436 |
}
|
437 |
|
438 |
+
if ( $share_twitter_enabled ) {
|
439 |
$share_twitter_summary = urlencode( str_replace( '%wishlist_url%', '', get_option( 'yith_wcwl_socials_text' ) ) );
|
440 |
$share_twitter_icon = get_option( 'yith_wcwl_tw_button_icon', 'fa-twitter' );
|
441 |
$share_twitter_custom_icon = get_option( 'yith_wcwl_tw_button_custom_icon' );
|
442 |
|
443 |
$share_atts['share_twitter_summary'] = $share_twitter_summary;
|
444 |
|
445 |
+
if ( ! in_array( $share_twitter_icon, array( 'none', 'custom' ) ) ) {
|
446 |
$share_atts['share_twitter_icon'] = "<i class='fa {$share_twitter_icon}'></i>";
|
447 |
+
} elseif ( 'custom' == $share_twitter_icon && $share_twitter_custom_icon ) {
|
|
|
448 |
$alt_text = __( 'Tweet on Twitter', 'yith-woocommerce-wishlist' );
|
449 |
$share_atts['share_twitter_icon'] = "<img src='{$share_twitter_custom_icon}' alt='{$alt_text}'/>";
|
450 |
+
} else {
|
|
|
451 |
$share_atts['share_twitter_icon'] = '';
|
452 |
}
|
453 |
}
|
454 |
|
455 |
+
if ( $share_pinterest_enabled ) {
|
456 |
$share_image_url = urlencode( get_option( 'yith_wcwl_socials_image_url' ) );
|
457 |
$share_pinterest_icon = get_option( 'yith_wcwl_pr_button_icon', 'fa-pinterest' );
|
458 |
$share_pinterest_custom_icon = get_option( 'yith_wcwl_pr_button_custom_icon' );
|
460 |
$share_atts['share_summary'] = $share_summary;
|
461 |
$share_atts['share_image_url'] = $share_image_url;
|
462 |
|
463 |
+
if ( ! in_array( $share_pinterest_icon, array( 'none', 'custom' ) ) ) {
|
464 |
$share_atts['share_pinterest_icon'] = "<i class='fa {$share_pinterest_icon}'></i>";
|
465 |
+
} elseif ( 'custom' == $share_pinterest_icon && $share_pinterest_custom_icon ) {
|
|
|
466 |
$alt_text = __( 'Pin on Pinterest', 'yith-woocommerce-wishlist' );
|
467 |
$share_atts['share_pinterest_icon'] = "<img src='{$share_pinterest_custom_icon}' alt='{$alt_text}'/>";
|
468 |
+
} else {
|
|
|
469 |
$share_atts['share_pinterest_icon'] = '';
|
470 |
}
|
471 |
}
|
472 |
|
473 |
+
if ( $share_email_enabled ) {
|
474 |
$share_email_icon = get_option( 'yith_wcwl_em_button_icon', 'fa-email' );
|
475 |
$share_email_custom_icon = get_option( 'yith_wcwl_em_button_custom_icon' );
|
476 |
|
477 |
+
if ( ! in_array( $share_email_icon, array( 'none', 'custom' ) ) ) {
|
478 |
$share_atts['share_email_icon'] = "<i class='fa {$share_email_icon}'></i>";
|
479 |
+
} elseif ( 'custom' == $share_email_icon && $share_email_custom_icon ) {
|
|
|
480 |
$alt_text = __( 'Share via email', 'yith-woocommerce-wishlist' );
|
481 |
$share_atts['share_email_icon'] = "<img src='{$share_email_custom_icon}' alt='{$alt_text}'/>";
|
482 |
+
} else {
|
|
|
483 |
$share_atts['share_email_icon'] = '';
|
484 |
}
|
485 |
}
|
486 |
|
487 |
+
if ( $share_whatsapp_enabled ) {
|
488 |
$share_whatsapp_icon = get_option( 'yith_wcwl_wa_button_icon', 'fa-whatsapp' );
|
489 |
$share_whatsapp_custom_icon = get_option( 'yith_wcwl_wa_button_custom_icon' );
|
490 |
$share_whatsapp_url = '';
|
491 |
|
492 |
+
if ( wp_is_mobile() ) {
|
493 |
+
$share_whatsapp_url = 'whatsapp://send?text=' . __( 'My wishlist on ', 'yith-woocommerce-wishlist' ) . ' – ' . urlencode( $share_link_url );
|
494 |
+
} else {
|
495 |
+
$share_whatsapp_url = 'https://web.whatsapp.com/send?text=' . __( 'My wishlist on ', 'yith-woocommerce-wishlist' ) . ' – ' . urlencode( $share_link_url );
|
|
|
496 |
}
|
497 |
|
498 |
$share_atts['share_whatsapp_url'] = $share_whatsapp_url;
|
499 |
|
500 |
+
if ( ! in_array( $share_whatsapp_icon, array( 'none', 'custom' ) ) ) {
|
501 |
$share_atts['share_whatsapp_icon'] = "<i class='fa {$share_whatsapp_icon}'></i>";
|
502 |
+
} elseif ( 'custom' == $share_whatsapp_icon && $share_whatsapp_custom_icon ) {
|
|
|
503 |
$alt_text = __( 'Share on WhatsApp', 'yith-woocommerce-wishlist' );
|
504 |
$share_atts['share_whatsapp_icon'] = "<img src='{$share_whatsapp_custom_icon}' alt='{$alt_text}'/>";
|
505 |
+
} else {
|
|
|
506 |
$share_atts['share_whatsapp_icon'] = '';
|
507 |
}
|
508 |
}
|
512 |
}
|
513 |
}
|
514 |
|
515 |
+
// filter params.
|
516 |
$additional_params = apply_filters( 'yith_wcwl_wishlist_params', $additional_params, $action, $action_params, $pagination, $per_page );
|
517 |
|
518 |
$atts = array_merge(
|
522 |
|
523 |
$atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'wishlist' );
|
524 |
|
525 |
+
// apply filters for add to cart buttons.
|
526 |
YITH_WCWL_Frontend()->alter_add_to_cart_button();
|
527 |
|
528 |
+
// sets that we're in the wishlist template.
|
529 |
$yith_wcwl_is_wishlist = true;
|
530 |
|
531 |
$template = yith_wcwl_get_template( 'wishlist.php', $atts, true );
|
532 |
|
533 |
+
// we're not in wishlist template anymore.
|
534 |
$yith_wcwl_is_wishlist = false;
|
535 |
$yith_wcwl_wishlist_token = null;
|
536 |
|
537 |
+
// remove filters for add to cart buttons.
|
538 |
YITH_WCWL_Frontend()->restore_add_to_cart_button();
|
539 |
|
540 |
return apply_filters( 'yith_wcwl_wishlisth_html', $template, array(), true );
|
543 |
/**
|
544 |
* Return "Add to Wishlist" button.
|
545 |
*
|
546 |
+
* @param array $atts Array of parameters for the shortcode
|
547 |
+
* @param string $content Shortcode content (usually empty)
|
548 |
+
*
|
549 |
* @since 1.0.0
|
550 |
*/
|
551 |
public static function add_to_wishlist( $atts, $content = null ) {
|
552 |
global $product;
|
553 |
|
554 |
+
// product object.
|
555 |
$current_product = ( isset( $atts['product_id'] ) ) ? wc_get_product( $atts['product_id'] ) : false;
|
556 |
$current_product = $current_product ? $current_product : $product;
|
557 |
|
558 |
+
if ( ! $current_product ) {
|
559 |
return '';
|
560 |
}
|
561 |
|
562 |
$current_product_id = yit_get_product_id( $current_product );
|
563 |
|
564 |
+
// product parent.
|
565 |
$current_product_parent = $current_product->get_parent_id();
|
566 |
|
567 |
+
// labels & icons settings.
|
568 |
$label_option = get_option( 'yith_wcwl_add_to_wishlist_text' );
|
569 |
$icon_option = get_option( 'yith_wcwl_add_to_wishlist_icon' );
|
570 |
$custom_icon = 'none' != $icon_option ? get_option( 'yith_wcwl_add_to_wishlist_custom_icon' ) : '';
|
575 |
$product_added = get_option( 'yith_wcwl_product_added_text' );
|
576 |
$loop_position = get_option( 'yith_wcwl_loop_position' );
|
577 |
|
578 |
+
// button label.
|
579 |
$label = apply_filters( 'yith_wcwl_button_label', $label_option );
|
580 |
|
581 |
+
// button icon.
|
582 |
+
$icon = apply_filters( 'yith_wcwl_button_icon', 'none' != $icon_option ? $icon_option : '' );
|
583 |
+
$added_icon = apply_filters( 'yith_wcwl_button_added_icon', 'none' != $added_icon_option ? $added_icon_option : '' );
|
584 |
|
585 |
+
// button class.
|
586 |
$is_single = isset( $atts['is_single'] ) ? $atts['is_single'] : yith_wcwl_is_single();
|
587 |
$use_custom_button = get_option( 'yith_wcwl_add_to_wishlist_style' );
|
588 |
$classes = apply_filters( 'yith_wcwl_add_to_wishlist_button_classes', in_array( $use_custom_button, array( 'button_custom', 'button_default' ) ) ? 'add_to_wishlist single_add_to_wishlist button alt' : 'add_to_wishlist single_add_to_wishlist' );
|
589 |
|
590 |
+
// check if product is already in wishlist.
|
591 |
$exists = YITH_WCWL()->is_product_in_wishlist( $current_product_id );
|
592 |
$added_to_wishlist_behaviour = get_option( 'yith_wcwl_after_add_to_wishlist_behaviour', 'view' );
|
593 |
$container_classes = $exists ? 'exists' : false;
|
594 |
$found_in_list = $exists ? yith_wcwl_get_wishlist( false ) : false;
|
595 |
$found_item = $found_in_list ? $found_in_list->get_product( $current_product_id ) : false;
|
596 |
|
597 |
+
$template_part = $exists && 'add' != $added_to_wishlist_behaviour ? 'browse' : 'button';
|
598 |
$template_part = isset( $atts['added_to_wishlist'] ) ? ( $atts['added_to_wishlist'] ? 'added' : 'browse' ) : $template_part;
|
599 |
|
600 |
+
if ( $found_in_list && in_array( $template_part, array( 'browse', 'added' ) ) ) {
|
601 |
'remove' == $added_to_wishlist_behaviour && $template_part = 'remove';
|
602 |
}
|
603 |
|
604 |
+
if ( 'remove' == $template_part ) {
|
605 |
$classes = str_replace( array( 'single_add_to_wishlist', 'add_to_wishlist' ), '', $classes );
|
606 |
$label = apply_filters( 'yith_wcwl_remove_from_wishlist_label', __( 'Remove from list', 'yith-woocommerce-wishlist' ) );
|
607 |
}
|
608 |
|
609 |
+
// forcefully add icon when showing button over image, if no one is set.
|
610 |
+
if ( ! $is_single && 'before_image' == get_option( 'yith_wcwl_loop_position' ) ) {
|
611 |
$classes = str_replace( 'button', '', $classes );
|
612 |
}
|
613 |
|
614 |
$ajax_loading = get_option( 'yith_wcwl_ajax_enable', 'no' ) == 'yes';
|
615 |
|
616 |
+
// get wishlist url.
|
617 |
$wishlist_url = YITH_WCWL()->get_wishlist_url();
|
618 |
|
619 |
+
// get product type.
|
620 |
$product_type = $current_product->get_type();
|
621 |
|
622 |
$additional_params = array(
|
645 |
'show_count' => false,
|
646 |
'ajax_loading' => $ajax_loading,
|
647 |
'loop_position' => $loop_position,
|
648 |
+
'template_part' => $template_part,
|
649 |
);
|
650 |
|
651 |
+
// let third party developer filter options.
|
652 |
$additional_params = apply_filters( 'yith_wcwl_add_to_wishlist_params', $additional_params, $atts );
|
653 |
|
654 |
$atts = shortcode_atts(
|
656 |
$atts
|
657 |
);
|
658 |
|
659 |
+
// set icon when missing, when on top of image (icon only, icon required).
|
660 |
+
if ( ! $is_single && 'before_image' == get_option( 'yith_wcwl_loop_position' ) && ( ! $atts['icon'] || 'custom' == $atts['icon'] ) ) {
|
661 |
+
if ( ! $atts['icon'] ) {
|
662 |
$atts['icon'] = 'fa-heart-o';
|
663 |
+
} elseif ( 'custom' == $atts['icon'] && ! $custom_icon && ! $custom_added_icon ) {
|
|
|
664 |
$atts['icon'] = 'fa-heart-o';
|
665 |
}
|
666 |
}
|
667 |
|
668 |
+
// change icon when item exists in wishlist.
|
669 |
+
if ( $atts['exists'] ) {
|
670 |
+
if ( $added_icon && ( 'custom' != $added_icon || $custom_added_icon || $custom_icon ) ) {
|
671 |
$atts['icon'] = $added_icon;
|
672 |
+
} elseif ( strpos( $atts['icon'], '-o' ) !== false ) {
|
|
|
673 |
$atts['icon'] = str_replace( '-o', '', $atts['icon'] );
|
674 |
}
|
675 |
}
|
676 |
|
677 |
+
if ( 'custom' == $atts['icon'] && $atts['exists'] && $custom_added_icon ) {
|
678 |
$icon_html = '<img class="yith-wcwl-icon" src="' . $custom_added_icon . '" width="32" />';
|
679 |
+
} elseif ( 'custom' == $atts['icon'] && $custom_icon ) {
|
|
|
680 |
$icon_html = '<img class="yith-wcwl-icon" src="' . $custom_icon . '" width="32" />';
|
681 |
$heading_icon_html = $icon_html;
|
682 |
+
} elseif ( 'custom' != $atts['icon'] ) {
|
|
|
683 |
$icon_html = ! empty( $atts['icon'] ) ? '<i class="yith-wcwl-icon fa ' . $atts['icon'] . '"></i>' : '';
|
684 |
$heading_icon_html = ! empty( $atts['heading_icon'] ) ? '<i class="yith-wcwl-icon fa ' . $atts['heading_icon'] . '"></i>' : '';
|
685 |
+
} else {
|
|
|
686 |
$icon_html = '';
|
687 |
}
|
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;
|
696 |
return apply_filters( 'yith_wcwl_add_to_wishlisth_button_html', $template, $wishlist_url, $product_type, $exists );
|
697 |
}
|
698 |
|
699 |
+
}
|
700 |
}
|
701 |
|
702 |
YITH_WCWL_Shortcode::init();
|
@@ -178,15 +178,16 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Factory' ) ) {
|
|
178 |
/**
|
179 |
* Retrieve default wishlist for current user (or current session)
|
180 |
*
|
181 |
-
* @param
|
182 |
-
* @param $context
|
|
|
183 |
* @return \YITH_WCWL_Wishlist|bool Wishlist object or false on failure
|
184 |
*/
|
185 |
public static function get_default_wishlist( $id = false, $context = 'read' ) {
|
186 |
try {
|
187 |
-
$
|
188 |
-
return $
|
189 |
-
} catch( Exception $e ){
|
190 |
wc_caught_exception( $e, __FUNCTION__, func_get_args() );
|
191 |
return false;
|
192 |
}
|
178 |
/**
|
179 |
* Retrieve default wishlist for current user (or current session)
|
180 |
*
|
181 |
+
* @param string|int|bool $id Customer or session id; false if you want to use current customer or session.
|
182 |
+
* @param string $context Context; when on edit context, wishlist will be created, if not exists.
|
183 |
+
*
|
184 |
* @return \YITH_WCWL_Wishlist|bool Wishlist object or false on failure
|
185 |
*/
|
186 |
public static function get_default_wishlist( $id = false, $context = 'read' ) {
|
187 |
try {
|
188 |
+
$default_wishlist = WC_Data_Store::load( 'wishlist' )->get_default_wishlist( $id, $context );
|
189 |
+
return apply_filters( 'yith_wcwl_default_wishlist', $default_wishlist, $id, $context );
|
190 |
+
} catch ( Exception $e ) {
|
191 |
wc_caught_exception( $e, __FUNCTION__, func_get_args() );
|
192 |
return false;
|
193 |
}
|
@@ -491,7 +491,7 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist' ) ) {
|
|
491 |
* @return string Url to download
|
492 |
*/
|
493 |
public function get_download_url() {
|
494 |
-
return wp_nonce_url( add_query_arg( 'download_wishlist', $this->get_id() ), 'download_wishlist', 'download_nonce' );
|
495 |
}
|
496 |
|
497 |
/**
|
@@ -500,7 +500,7 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist' ) ) {
|
|
500 |
* @return string Url to delete the wishlist
|
501 |
*/
|
502 |
public function get_delete_url() {
|
503 |
-
return apply_filters( 'yith_wcwl_wishlist_delete_url', wp_nonce_url( add_query_arg( 'wishlist_id', $this->get_id(), YITH_WCWL()->get_wishlist_url( 'manage' ) ), 'yith_wcwl_delete_action', 'yith_wcwl_delete' ) );
|
504 |
}
|
505 |
|
506 |
/* === SETTERS === */
|
@@ -675,7 +675,10 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist' ) ) {
|
|
675 |
|
676 |
// Add/save items.
|
677 |
foreach ( $this->items as $product_id => $item ) {
|
678 |
-
$item->
|
|
|
|
|
|
|
679 |
$item->save();
|
680 |
}
|
681 |
}
|
491 |
* @return string Url to download
|
492 |
*/
|
493 |
public function get_download_url() {
|
494 |
+
return apply_filters( 'yith_wcwl_wishlist_download_url', wp_nonce_url( add_query_arg( 'download_wishlist', $this->get_id() ), 'download_wishlist', 'download_nonce' ), $this );
|
495 |
}
|
496 |
|
497 |
/**
|
500 |
* @return string Url to delete the wishlist
|
501 |
*/
|
502 |
public function get_delete_url() {
|
503 |
+
return apply_filters( 'yith_wcwl_wishlist_delete_url', wp_nonce_url( add_query_arg( 'wishlist_id', $this->get_id(), YITH_WCWL()->get_wishlist_url( 'manage' ) ), 'yith_wcwl_delete_action', 'yith_wcwl_delete' ), $this );
|
504 |
}
|
505 |
|
506 |
/* === SETTERS === */
|
675 |
|
676 |
// Add/save items.
|
677 |
foreach ( $this->items as $product_id => $item ) {
|
678 |
+
if ( $item->get_wishlist_id() != $this->get_id() ) {
|
679 |
+
$item->set_wishlist_id( $this->get_id() );
|
680 |
+
}
|
681 |
+
|
682 |
$item->save();
|
683 |
}
|
684 |
}
|
@@ -181,6 +181,8 @@ if ( ! class_exists( 'YITH_WCWL' ) ) {
|
|
181 |
|
182 |
$item->set_product_id( $prod_id );
|
183 |
$item->set_quantity( $quantity );
|
|
|
|
|
184 |
|
185 |
if( $dateadded ){
|
186 |
$item->set_date_added( $dateadded );
|
181 |
|
182 |
$item->set_product_id( $prod_id );
|
183 |
$item->set_quantity( $quantity );
|
184 |
+
$item->set_wishlist_id( $wishlist->get_id() );
|
185 |
+
$item->set_user_id( $wishlist->get_user_id() );
|
186 |
|
187 |
if( $dateadded ){
|
188 |
$item->set_date_added( $dateadded );
|
@@ -191,7 +191,7 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
|
|
191 |
$data = $wishlist->get_data();
|
192 |
$changes = $wishlist->get_changes();
|
193 |
|
194 |
-
if ( array_intersect( array( 'user_id', 'session_id', 'slug', 'name', 'token', 'privacy', 'expiration', 'date_added' ), array_keys( $changes ) ) ) {
|
195 |
$columns = array(
|
196 |
'wishlist_privacy' => '%d',
|
197 |
'wishlist_name' => '%s',
|
@@ -248,12 +248,15 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
|
|
248 |
/**
|
249 |
* Delete a wishlist from DB
|
250 |
*
|
251 |
-
* @param $wishlist
|
252 |
*/
|
253 |
-
public function delete( &$wishlist ){
|
254 |
global $wpdb;
|
255 |
|
256 |
-
$id
|
|
|
|
|
|
|
257 |
|
258 |
if ( ! $id ) {
|
259 |
return;
|
@@ -261,14 +264,36 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
|
|
261 |
|
262 |
do_action( 'yith_wcwl_before_delete_wishlist', $wishlist->get_id() );
|
263 |
|
264 |
-
// delete wishlist and all its items
|
265 |
$wpdb->delete( $wpdb->yith_wcwl_items, array( 'wishlist_id' => $id ) );
|
266 |
$wpdb->delete( $wpdb->yith_wcwl_wishlists, array( 'ID' => $id ) );
|
267 |
|
268 |
do_action( 'yith_wcwl_delete_wishlist', $wishlist->get_id() );
|
269 |
|
270 |
$wishlist->set_id( 0 );
|
271 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
}
|
273 |
|
274 |
/**
|
@@ -285,13 +310,15 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
|
|
285 |
|
286 |
/**
|
287 |
* Query database to search
|
|
|
|
|
288 |
*/
|
289 |
public function query( $args = array() ) {
|
290 |
global $wpdb;
|
291 |
|
292 |
$default = array(
|
293 |
'id' => false,
|
294 |
-
'user_id' => ( is_user_logged_in() ) ? get_current_user_id(): false,
|
295 |
'session_id' => ( ! is_user_logged_in() ) ? YITH_WCWL_Session()->get_session_id() : false,
|
296 |
'wishlist_slug' => false,
|
297 |
'wishlist_name' => false,
|
@@ -799,10 +826,17 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
|
|
799 |
if ( ! empty( $id ) && is_int( $id ) ) {
|
800 |
$default_wishlist->set_user_id( $id );
|
801 |
} elseif ( ! empty( $id ) && is_string( $id ) ) {
|
802 |
-
$default_wishlist->
|
803 |
}
|
804 |
|
805 |
$default_wishlist->save();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
806 |
}
|
807 |
catch( Exception $e ){
|
808 |
return false;
|
191 |
$data = $wishlist->get_data();
|
192 |
$changes = $wishlist->get_changes();
|
193 |
|
194 |
+
if ( array_intersect( array( 'user_id', 'session_id', 'slug', 'name', 'token', 'privacy', 'expiration', 'date_added', 'is_default' ), array_keys( $changes ) ) ) {
|
195 |
$columns = array(
|
196 |
'wishlist_privacy' => '%d',
|
197 |
'wishlist_name' => '%s',
|
248 |
/**
|
249 |
* Delete a wishlist from DB
|
250 |
*
|
251 |
+
* @param \YITH_WCWL_Wishlist $wishlist Wishlist to delete.
|
252 |
*/
|
253 |
+
public function delete( &$wishlist ) {
|
254 |
global $wpdb;
|
255 |
|
256 |
+
$id = $wishlist->get_id();
|
257 |
+
$is_default = $wishlist->is_default();
|
258 |
+
$user_id = $wishlist->get_user_id();
|
259 |
+
$session_id = $wishlist->get_session_id();
|
260 |
|
261 |
if ( ! $id ) {
|
262 |
return;
|
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 ) );
|
270 |
|
271 |
do_action( 'yith_wcwl_delete_wishlist', $wishlist->get_id() );
|
272 |
|
273 |
$wishlist->set_id( 0 );
|
274 |
+
|
275 |
+
do_action( 'yith_wcwl_deleted_wishlist', $id );
|
276 |
+
|
277 |
+
if ( $is_default && ( $user_id || $session_id ) ) {
|
278 |
+
// retrieve other lists for the same user.
|
279 |
+
$other_lists = $this->query(
|
280 |
+
array_merge(
|
281 |
+
array(
|
282 |
+
'orderby' => 'dateadded',
|
283 |
+
'order' => 'asc',
|
284 |
+
),
|
285 |
+
$user_id ? array( 'user_id' => $user_id ) : array(),
|
286 |
+
$session_id ? array( 'session_id' => $session_id ) : array()
|
287 |
+
)
|
288 |
+
);
|
289 |
+
|
290 |
+
if ( ! empty( $other_lists ) ) {
|
291 |
+
$new_default = $other_lists[0];
|
292 |
+
|
293 |
+
$new_default->set_is_default( 1 );
|
294 |
+
$new_default->save();
|
295 |
+
}
|
296 |
+
}
|
297 |
}
|
298 |
|
299 |
/**
|
310 |
|
311 |
/**
|
312 |
* Query database to search
|
313 |
+
*
|
314 |
+
* @return \YITH_WCWL_Wishlist[] Array of matched wishlists.
|
315 |
*/
|
316 |
public function query( $args = array() ) {
|
317 |
global $wpdb;
|
318 |
|
319 |
$default = array(
|
320 |
'id' => false,
|
321 |
+
'user_id' => ( is_user_logged_in() ) ? get_current_user_id() : false,
|
322 |
'session_id' => ( ! is_user_logged_in() ) ? YITH_WCWL_Session()->get_session_id() : false,
|
323 |
'wishlist_slug' => false,
|
324 |
'wishlist_name' => false,
|
826 |
if ( ! empty( $id ) && is_int( $id ) ) {
|
827 |
$default_wishlist->set_user_id( $id );
|
828 |
} elseif ( ! empty( $id ) && is_string( $id ) ) {
|
829 |
+
$default_wishlist->set_session_id( $id );
|
830 |
}
|
831 |
|
832 |
$default_wishlist->save();
|
833 |
+
|
834 |
+
/**
|
835 |
+
* Let developers perform processing when default wishlist is created
|
836 |
+
*
|
837 |
+
* @since 3.0.10
|
838 |
+
*/
|
839 |
+
do_action( 'yith_wcwl_generated_default_wishlist', $default_wishlist, $id );
|
840 |
}
|
841 |
catch( Exception $e ){
|
842 |
return false;
|
@@ -58,7 +58,7 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Item_Data_Store' ) ) {
|
|
58 |
apply_filters( 'yith_wcwl_adding_to_wishlist_on_sale', $item->is_on_sale() ),
|
59 |
);
|
60 |
|
61 |
-
if( $user_id = $item->get_user_id() ){
|
62 |
$columns['user_id'] = '%d';
|
63 |
$values[] = apply_filters( 'yith_wcwl_adding_to_wishlist_user_id', $user_id );
|
64 |
}
|
@@ -144,21 +144,24 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Item_Data_Store' ) ) {
|
|
144 |
'quantity' => '%d',
|
145 |
'wishlist_id' => '%d',
|
146 |
'prod_id' => '%d',
|
147 |
-
'user_id' => '%d',
|
148 |
'position' => '%d',
|
149 |
'on_sale' => '%d',
|
150 |
'dateadded' => 'FROM_UNIXTIME( %d )',
|
|
|
151 |
);
|
152 |
$values = array(
|
153 |
$item->get_quantity(),
|
154 |
$item->get_wishlist_id(),
|
155 |
$item->get_original_product_id(),
|
156 |
-
$item->get_user_id(),
|
157 |
$item->get_position(),
|
158 |
$item->is_on_sale(),
|
159 |
-
$item->get_date_added( 'edit' ) ? $item->get_date_added( 'edit' )->getTimestamp() : time()
|
160 |
);
|
161 |
|
|
|
|
|
|
|
|
|
162 |
$this->update_raw( $columns, $values, array( 'ID' => '%d' ), array( $item->get_id() ) );
|
163 |
}
|
164 |
|
@@ -368,7 +371,7 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Item_Data_Store' ) ) {
|
|
368 |
}
|
369 |
|
370 |
if( ! empty( $items ) ){
|
371 |
-
$items = array_map( array( 'YITH_WCWL_Wishlist_Factory', 'get_wishlist_item' ),
|
372 |
} else {
|
373 |
$items = array();
|
374 |
}
|
@@ -421,7 +424,7 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Item_Data_Store' ) ) {
|
|
421 |
INNER JOIN {$wpdb->posts} AS p ON p.ID = i.prod_id
|
422 |
LEFT JOIN (
|
423 |
SELECT
|
424 |
-
|
425 |
prod_id
|
426 |
FROM {$wpdb->yith_wcwl_items}
|
427 |
GROUP BY prod_id
|
@@ -430,23 +433,23 @@ if ( ! class_exists( 'YITH_WCWL_Wishlist_Item_Data_Store' ) ) {
|
|
430 |
|
431 |
$sql_args = array( 'publish' );
|
432 |
|
433 |
-
if( ! empty( $search ) ){
|
434 |
-
$sql .=
|
435 |
$sql_args[] = '%' . $search . '%';
|
436 |
}
|
437 |
|
438 |
-
if( ! empty( $orderby ) ){
|
439 |
$order = ! empty( $order ) ? $order : 'DESC';
|
440 |
-
$sql .=
|
441 |
}
|
442 |
|
443 |
-
if( ! empty( $limit ) && isset( $offset ) ){
|
444 |
-
$sql .=
|
445 |
$sql_args[] = $offset;
|
446 |
$sql_args[] = $limit;
|
447 |
}
|
448 |
|
449 |
-
$items = $wpdb->get_results( $wpdb->prepare( $sql, $sql_args ), ARRAY_A );
|
450 |
|
451 |
return $items;
|
452 |
}
|
58 |
apply_filters( 'yith_wcwl_adding_to_wishlist_on_sale', $item->is_on_sale() ),
|
59 |
);
|
60 |
|
61 |
+
if ( $user_id = $item->get_user_id() ) {
|
62 |
$columns['user_id'] = '%d';
|
63 |
$values[] = apply_filters( 'yith_wcwl_adding_to_wishlist_user_id', $user_id );
|
64 |
}
|
144 |
'quantity' => '%d',
|
145 |
'wishlist_id' => '%d',
|
146 |
'prod_id' => '%d',
|
|
|
147 |
'position' => '%d',
|
148 |
'on_sale' => '%d',
|
149 |
'dateadded' => 'FROM_UNIXTIME( %d )',
|
150 |
+
'user_id' => $item->get_user_id() ? '%d' : 'NULL',
|
151 |
);
|
152 |
$values = array(
|
153 |
$item->get_quantity(),
|
154 |
$item->get_wishlist_id(),
|
155 |
$item->get_original_product_id(),
|
|
|
156 |
$item->get_position(),
|
157 |
$item->is_on_sale(),
|
158 |
+
$item->get_date_added( 'edit' ) ? $item->get_date_added( 'edit' )->getTimestamp() : time(),
|
159 |
);
|
160 |
|
161 |
+
if ( $user_id = $item->get_user_id() ) {
|
162 |
+
$values[] = $user_id;
|
163 |
+
}
|
164 |
+
|
165 |
$this->update_raw( $columns, $values, array( 'ID' => '%d' ), array( $item->get_id() ) );
|
166 |
}
|
167 |
|
371 |
}
|
372 |
|
373 |
if( ! empty( $items ) ){
|
374 |
+
$items = array_map( array( 'YITH_WCWL_Wishlist_Factory', 'get_wishlist_item' ), $items );
|
375 |
} else {
|
376 |
$items = array();
|
377 |
}
|
424 |
INNER JOIN {$wpdb->posts} AS p ON p.ID = i.prod_id
|
425 |
LEFT JOIN (
|
426 |
SELECT
|
427 |
+
COUNT( DISTINCT ID ) AS wishlist_count,
|
428 |
prod_id
|
429 |
FROM {$wpdb->yith_wcwl_items}
|
430 |
GROUP BY prod_id
|
433 |
|
434 |
$sql_args = array( 'publish' );
|
435 |
|
436 |
+
if ( ! empty( $search ) ) {
|
437 |
+
$sql .= ' AND p.post_title LIKE %s';
|
438 |
$sql_args[] = '%' . $search . '%';
|
439 |
}
|
440 |
|
441 |
+
if ( ! empty( $orderby ) ) {
|
442 |
$order = ! empty( $order ) ? $order : 'DESC';
|
443 |
+
$sql .= ' ORDER BY ' . esc_sql( $orderby ) . ' ' . esc_sql( $order );
|
444 |
}
|
445 |
|
446 |
+
if ( ! empty( $limit ) && isset( $offset ) ) {
|
447 |
+
$sql .= ' LIMIT %d, %d';
|
448 |
$sql_args[] = $offset;
|
449 |
$sql_args[] = $limit;
|
450 |
}
|
451 |
|
452 |
+
$items = $wpdb->get_results( $wpdb->prepare( $sql, $sql_args ), ARRAY_A ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
|
453 |
|
454 |
return $items;
|
455 |
}
|
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Functions file
|
4 |
*
|
5 |
-
* @author
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
* @version 3.0.0
|
8 |
*/
|
@@ -11,31 +11,31 @@ if ( ! defined( 'YITH_WCWL' ) ) {
|
|
11 |
exit;
|
12 |
} // Exit if accessed directly
|
13 |
|
14 |
-
if( !function_exists( 'yith_wcwl_is_wishlist' ) ){
|
15 |
/**
|
16 |
* Check if we're printing wishlist shortcode
|
17 |
*
|
18 |
* @return bool
|
19 |
* @since 2.0.0
|
20 |
*/
|
21 |
-
function yith_wcwl_is_wishlist(){
|
22 |
global $yith_wcwl_is_wishlist;
|
23 |
|
24 |
return $yith_wcwl_is_wishlist;
|
25 |
}
|
26 |
}
|
27 |
|
28 |
-
if( !function_exists( 'yith_wcwl_is_wishlist_page' ) ){
|
29 |
/**
|
30 |
* Check if current page is wishlist
|
31 |
*
|
32 |
* @return bool
|
33 |
* @since 2.0.13
|
34 |
*/
|
35 |
-
function yith_wcwl_is_wishlist_page(){
|
36 |
$wishlist_page_id = yith_wcwl_object_id( get_option( 'yith_wcwl_wishlist_page_id' ) );
|
37 |
|
38 |
-
if( ! $wishlist_page_id ){
|
39 |
return false;
|
40 |
}
|
41 |
|
@@ -43,28 +43,31 @@ if( !function_exists( 'yith_wcwl_is_wishlist_page' ) ){
|
|
43 |
}
|
44 |
}
|
45 |
|
46 |
-
if( !function_exists( 'yith_wcwl_locate_template' ) ) {
|
47 |
/**
|
48 |
* Locate the templates and return the path of the file found
|
49 |
*
|
50 |
-
* @param string $path
|
51 |
-
* @param array
|
|
|
52 |
* @return string
|
53 |
* @since 1.0.0
|
54 |
*/
|
55 |
-
function yith_wcwl_locate_template( $path, $var =
|
56 |
$woocommerce_base = WC()->template_path();
|
57 |
|
58 |
-
$template_woocommerce_path =
|
59 |
-
$template_path
|
60 |
-
$plugin_path
|
61 |
|
62 |
-
$located = locate_template(
|
63 |
-
|
64 |
-
|
65 |
-
|
|
|
|
|
66 |
|
67 |
-
if( ! $located && file_exists( $plugin_path ) ){
|
68 |
return apply_filters( 'yith_wcwl_locate_template', $plugin_path, $path );
|
69 |
}
|
70 |
|
@@ -72,13 +75,14 @@ if( !function_exists( 'yith_wcwl_locate_template' ) ) {
|
|
72 |
}
|
73 |
}
|
74 |
|
75 |
-
if( !function_exists( 'yith_wcwl_get_template' ) ) {
|
76 |
/**
|
77 |
* Retrieve a template file.
|
78 |
*
|
79 |
-
* @param string $path
|
80 |
-
* @param mixed
|
81 |
-
* @param bool
|
|
|
82 |
* @return string|void
|
83 |
* @since 1.0.0
|
84 |
*/
|
@@ -90,28 +94,29 @@ if( !function_exists( 'yith_wcwl_get_template' ) ) {
|
|
90 |
extract( $var );
|
91 |
}
|
92 |
|
93 |
-
if( $return ) {
|
94 |
ob_start();
|
95 |
}
|
96 |
|
97 |
-
// include file located
|
98 |
include( $located );
|
99 |
|
100 |
-
if( $return ) {
|
101 |
return ob_get_clean();
|
102 |
}
|
103 |
}
|
104 |
}
|
105 |
|
106 |
-
if( !function_exists( 'yith_wcwl_get_template_part' ) ) {
|
107 |
/**
|
108 |
* Search and include a template part
|
109 |
*
|
110 |
-
* @param $template
|
111 |
-
* @param $template_part
|
112 |
-
* @param $template_layout
|
113 |
-
* @param $var
|
114 |
-
* @param $return
|
|
|
115 |
* @return string|null
|
116 |
*/
|
117 |
function yith_wcwl_get_template_part( $template = '', $template_part = '', $template_layout = '', $var = array(), $return = false ) {
|
@@ -123,19 +128,26 @@ if( !function_exists( 'yith_wcwl_get_template_part' ) ) {
|
|
123 |
$template_layout = '-' . $template_layout;
|
124 |
}
|
125 |
|
126 |
-
$template_hierarchy = apply_filters(
|
127 |
-
|
128 |
-
|
129 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
),
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
)
|
136 |
|
137 |
-
foreach( $template_hierarchy as $filename ){
|
138 |
-
$located
|
139 |
|
140 |
if ( $located ) {
|
141 |
return yith_wcwl_get_template( $filename, $var, $return );
|
@@ -144,11 +156,11 @@ if( !function_exists( 'yith_wcwl_get_template_part' ) ) {
|
|
144 |
}
|
145 |
}
|
146 |
|
147 |
-
if( !function_exists( 'yith_wcwl_count_products' ) ) {
|
148 |
/**
|
149 |
* Retrieve the number of products in the wishlist.
|
150 |
*
|
151 |
-
* @param
|
152 |
*
|
153 |
* @return int
|
154 |
* @since 1.0.0
|
@@ -158,7 +170,7 @@ if( !function_exists( 'yith_wcwl_count_products' ) ) {
|
|
158 |
}
|
159 |
}
|
160 |
|
161 |
-
if( !function_exists( 'yith_wcwl_count_all_products' ) ) {
|
162 |
/**
|
163 |
* Retrieve the number of products in all the wishlists.
|
164 |
*
|
@@ -170,47 +182,47 @@ if( !function_exists( 'yith_wcwl_count_all_products' ) ) {
|
|
170 |
}
|
171 |
}
|
172 |
|
173 |
-
if( !function_exists( 'yith_wcwl_count_add_to_wishlist' ) ){
|
174 |
/**
|
175 |
* Count number of times a product was added to users wishlists
|
176 |
*
|
177 |
-
* @param
|
178 |
*
|
179 |
* @return int Number of times the product was added to wishlists
|
180 |
* @since 2.0.13
|
181 |
*/
|
182 |
-
function yith_wcwl_count_add_to_wishlist( $product_id = false ){
|
183 |
return YITH_WCWL()->count_add_to_wishlist( $product_id );
|
184 |
}
|
185 |
}
|
186 |
|
187 |
-
if( !function_exists( 'yith_wcwl_get_count_text' ) ){
|
188 |
/**
|
189 |
* Returns the label that states how many users added a specific product to wishlist
|
190 |
*
|
191 |
-
* @param
|
|
|
192 |
* @return string Label with count of items
|
193 |
*/
|
194 |
-
function yith_wcwl_get_count_text( $product_id = false ){
|
195 |
-
$count
|
196 |
$current_user_count = $count ? YITH_WCWL_Wishlist_Factory::get_times_current_user_added_count( $product_id ) : 0;
|
197 |
|
198 |
-
// if no user added to wishlist, return empty string
|
199 |
-
if( ! $count ){
|
200 |
return apply_filters( 'yith_wcwl_count_text_empty', '', $product_id );
|
201 |
-
}
|
202 |
-
|
203 |
$count_text = sprintf( _n( '%d user', '%d users', $count, 'yith-woocommerce-wishlist' ), $count );
|
204 |
-
$text
|
205 |
-
}
|
206 |
-
elseif( $count == $current_user_count ){
|
207 |
$count_text = __( 'You\'re the first', 'yith-woocommerce-wishlist' );
|
208 |
-
$text
|
209 |
-
}
|
210 |
-
else {
|
211 |
$other_count = $count - $current_user_count;
|
212 |
-
|
213 |
-
$
|
|
|
214 |
}
|
215 |
|
216 |
$label = sprintf( '<div class="count-add-to-wishlist"><span class="count">%s</span> %s</div>', $count_text, $text );
|
@@ -219,7 +231,7 @@ if( !function_exists( 'yith_wcwl_get_count_text' ) ){
|
|
219 |
}
|
220 |
}
|
221 |
|
222 |
-
if( !function_exists( 'yith_frontend_css_color_picker' ) ) {
|
223 |
/**
|
224 |
* Output a colour picker input box.
|
225 |
*
|
@@ -229,12 +241,14 @@ if( !function_exists( 'yith_frontend_css_color_picker' ) ) {
|
|
229 |
* wp-content/plugins/woocommerce/admin/settings/settings-frontend-styles.php
|
230 |
*
|
231 |
* @access public
|
232 |
-
*
|
233 |
-
* @param mixed
|
234 |
-
* @param mixed
|
235 |
-
* @param mixed
|
236 |
-
* @param string $desc (default
|
|
|
237 |
* @return void
|
|
|
238 |
*/
|
239 |
function yith_frontend_css_color_picker( $name, $id, $value, $desc = '' ) {
|
240 |
_deprecated_function( 'yith_frontend_css_color_picker', '3.0.0' );
|
@@ -243,41 +257,47 @@ if( !function_exists( 'yith_frontend_css_color_picker' ) ) {
|
|
243 |
|
244 |
echo '<div class="color_box">
|
245 |
<table><tr><td>
|
246 |
-
<strong>' . $name . '</strong>
|
247 |
-
<input name="' . esc_attr( $id ). '" id="' . $id . '" type="text" value="' . esc_attr( $value ) . '" class="colorpick colorpickpreview" style="background-color: ' . $value . '" /> <div id="colorPickerDiv_' . esc_attr( $id ) . '" class="colorpickdiv"></div>
|
248 |
</td></tr></table>
|
249 |
</div>';
|
250 |
|
251 |
}
|
252 |
}
|
253 |
|
254 |
-
if( !function_exists( 'yith_wcwl_get_cookie_expiration' ) ){
|
255 |
-
|
|
|
|
|
|
|
|
|
|
|
256 |
return intval( apply_filters( 'yith_wcwl_cookie_expiration', 60 * 60 * 24 * 30 ) );
|
257 |
}
|
258 |
}
|
259 |
|
260 |
-
if( !function_exists( 'yith_setcookie' ) ) {
|
261 |
/**
|
262 |
* Create a cookie.
|
263 |
*
|
264 |
-
* @param string $name
|
265 |
-
* @param mixed
|
266 |
-
* @param int
|
267 |
-
* @param bool
|
268 |
-
* @param bool
|
|
|
269 |
* @return bool
|
270 |
* @since 1.0.0
|
271 |
*/
|
272 |
function yith_setcookie( $name, $value = array(), $time = null, $secure = false, $httponly = false ) {
|
273 |
-
if( ! apply_filters( 'yith_wcwl_set_cookie', true ) || empty( $name ) ){
|
274 |
return false;
|
275 |
}
|
276 |
|
277 |
-
$time =
|
278 |
|
279 |
-
$value
|
280 |
-
$expiration = apply_filters( 'yith_wcwl_cookie_expiration_time', $time ); // Default 30 days
|
281 |
|
282 |
$_COOKIE[ $name ] = $value;
|
283 |
wc_setcookie( $name, $value, $expiration, $secure, $httponly );
|
@@ -286,58 +306,59 @@ if( !function_exists( 'yith_setcookie' ) ) {
|
|
286 |
}
|
287 |
}
|
288 |
|
289 |
-
if( !function_exists( 'yith_getcookie' ) ) {
|
290 |
/**
|
291 |
* Retrieve the value of a cookie.
|
292 |
*
|
293 |
-
* @param string $name
|
|
|
294 |
* @return mixed
|
295 |
* @since 1.0.0
|
296 |
*/
|
297 |
function yith_getcookie( $name ) {
|
298 |
-
if( isset( $_COOKIE[$name] ) ) {
|
299 |
-
return json_decode(
|
300 |
}
|
301 |
|
302 |
return array();
|
303 |
}
|
304 |
}
|
305 |
|
306 |
-
if( !function_exists
|
307 |
/**
|
308 |
* Destroy a cookie.
|
309 |
*
|
310 |
-
* @param string $name
|
|
|
311 |
* @return void
|
312 |
* @since 1.0.0
|
313 |
*/
|
314 |
function yith_destroycookie( $name ) {
|
315 |
yith_setcookie( $name, array(), time() - 3600 );
|
316 |
}
|
317 |
-
|
318 |
|
319 |
-
|
320 |
/**
|
321 |
* Retrieve translated page id, if wpml is installed
|
322 |
*
|
323 |
-
* @param $id
|
|
|
324 |
* @return int Translation id
|
325 |
* @since 1.0.0
|
326 |
*/
|
327 |
-
function yith_wcwl_object_id( $id ){
|
328 |
-
if( function_exists( 'wpml_object_id_filter' ) ){
|
329 |
return wpml_object_id_filter( $id, 'page', true );
|
330 |
-
}
|
331 |
-
elseif( function_exists( 'icl_object_id' ) ){
|
332 |
return icl_object_id( $id, 'page', true );
|
333 |
-
}
|
334 |
-
else{
|
335 |
return $id;
|
336 |
}
|
337 |
}
|
338 |
}
|
339 |
|
340 |
-
if( !function_exists( 'yith_wcwl_get_hidden_products' ) ){
|
341 |
/**
|
342 |
* Retrieves a list of hidden products, whatever WC version is running
|
343 |
*
|
@@ -347,67 +368,76 @@ if( !function_exists( 'yith_wcwl_get_hidden_products' ) ){
|
|
347 |
* @return array List of hidden product ids
|
348 |
* @since 2.1.1
|
349 |
*/
|
350 |
-
function yith_wcwl_get_hidden_products(){
|
351 |
-
if( version_compare( WC()->version, '3.0.0', '<' ) ){
|
352 |
-
$hidden_products = get_posts(
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
array(
|
359 |
-
|
360 |
-
|
361 |
-
|
|
|
|
|
362 |
)
|
363 |
-
)
|
364 |
-
}
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
|
|
372 |
}
|
373 |
|
374 |
/**
|
375 |
* array_filter was added to prevent errors when previous query returns for some reason just 0 index
|
|
|
376 |
* @since 2.2.6
|
377 |
*/
|
378 |
return apply_filters( 'yith_wcwl_hidden_products', array_filter( $hidden_products ) );
|
379 |
}
|
380 |
}
|
381 |
|
382 |
-
if( !function_exists( 'yith_wcwl_get_wishlist' ) ){
|
383 |
/**
|
384 |
* Retrieves wishlist by ID
|
385 |
*
|
386 |
-
* @param
|
|
|
387 |
* @return \YITH_WCWL_Wishlist|bool Wishlist object; false on error
|
388 |
*/
|
389 |
-
function yith_wcwl_get_wishlist( $wishlist_id ){
|
390 |
return YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id );
|
391 |
}
|
392 |
}
|
393 |
|
394 |
-
if( !function_exists( 'yith_wcwl_merge_in_array' ) ){
|
395 |
/**
|
396 |
* Merges an array of items into a specific position of an array
|
397 |
*
|
398 |
-
* @param $array
|
399 |
-
* @param $element
|
400 |
-
* @param $pivot
|
401 |
-
* @param $position
|
|
|
|
|
402 |
*/
|
403 |
-
function yith_wcwl_merge_in_array( $array, $element, $pivot, $position = 'after' ){
|
404 |
-
// search for the pivot inside array
|
405 |
-
|
|
|
|
|
406 |
return $array;
|
407 |
}
|
408 |
|
409 |
-
// separate array into chunks
|
410 |
-
$i
|
411 |
$part_1 = array_slice( $array, 0, $pos + $i );
|
412 |
$part_2 = array_slice( $array, $pos + $i );
|
413 |
|
@@ -415,41 +445,42 @@ if( !function_exists( 'yith_wcwl_merge_in_array' ) ){
|
|
415 |
}
|
416 |
}
|
417 |
|
418 |
-
if( !function_exists( 'yith_wcwl_get_plugin_icons' ) ){
|
419 |
/**
|
420 |
* Return array of available icons
|
421 |
*
|
422 |
-
* @param $none_label
|
423 |
-
* @param $custom_label
|
424 |
*
|
425 |
* @return array Array of available icons, in class => name format
|
426 |
*/
|
427 |
-
function yith_wcwl_get_plugin_icons( $none_label = '', $custom_label = '' ){
|
428 |
-
|
429 |
|
430 |
-
$icons['none']
|
431 |
$icons['custom'] = $custom_label ? $custom_label : __( 'Custom', 'yith-woocommerce-wishlist' );
|
432 |
|
433 |
return $icons;
|
434 |
}
|
435 |
}
|
436 |
|
437 |
-
if( !function_exists( 'yith_wcwl_maybe_format_field_array' ) ){
|
438 |
/**
|
439 |
* Take a field structure from plugin saved data, and format it as required by WC to print fields
|
440 |
*
|
441 |
-
* @param $field_structure
|
|
|
442 |
* @return array Array of fields as required by WC
|
443 |
*/
|
444 |
-
function yith_wcwl_maybe_format_field_array( $field_structure ){
|
445 |
$fields = array();
|
446 |
|
447 |
-
if( empty( $field_structure ) ){
|
448 |
return array();
|
449 |
}
|
450 |
|
451 |
-
foreach( $field_structure as $field ) {
|
452 |
-
if ( isset( $field['active'] ) && $field['active']
|
453 |
continue;
|
454 |
}
|
455 |
|
@@ -457,17 +488,17 @@ if( !function_exists( 'yith_wcwl_maybe_format_field_array' ) ){
|
|
457 |
continue;
|
458 |
}
|
459 |
|
460 |
-
// format type
|
461 |
$field_id = sanitize_title_with_dashes( $field['label'] );
|
462 |
|
463 |
-
// format options, if needed
|
464 |
if ( ! empty( $field['options'] ) ) {
|
465 |
$options = array();
|
466 |
$raw_options = explode( '|', $field['options'] );
|
467 |
|
468 |
if ( ! empty( $raw_options ) ) {
|
469 |
foreach ( $raw_options as $raw_option ) {
|
470 |
-
if( strpos( $raw_option, '::' ) === false ){
|
471 |
continue;
|
472 |
}
|
473 |
|
@@ -479,20 +510,20 @@ if( !function_exists( 'yith_wcwl_maybe_format_field_array' ) ){
|
|
479 |
$field['options'] = $options;
|
480 |
}
|
481 |
|
482 |
-
// format class
|
483 |
$field['class'] = array( 'form-row-' . $field['position'] );
|
484 |
|
485 |
-
// format requires
|
486 |
$field['required'] = isset( $field['required'] ) && 'yes' == $field['required'];
|
487 |
|
488 |
-
// set custom attributes when field is required
|
489 |
if ( $field['required'] ) {
|
490 |
$field['custom_attributes'] = array(
|
491 |
-
'required' => 'required'
|
492 |
);
|
493 |
}
|
494 |
|
495 |
-
// if type requires options, but no options was defined, skip field printing
|
496 |
if ( in_array( $field['type'], array( 'select', 'radio' ) ) && empty( $field['options'] ) ) {
|
497 |
continue;
|
498 |
}
|
@@ -504,43 +535,44 @@ if( !function_exists( 'yith_wcwl_maybe_format_field_array' ) ){
|
|
504 |
}
|
505 |
}
|
506 |
|
507 |
-
if( !function_exists( 'yith_wcwl_get_privacy_label' ) ){
|
508 |
/**
|
509 |
* Returns privacy label
|
510 |
*
|
511 |
-
* @param $privacy
|
512 |
-
* @param $extended
|
|
|
513 |
* @return string Privacy label
|
514 |
* @since 3.0.0
|
515 |
*/
|
516 |
-
function yith_wcwl_get_privacy_label( $privacy, $extended = false ){
|
517 |
|
518 |
-
switch( $privacy ){
|
519 |
case 1:
|
520 |
$privacy_label = 'shared';
|
521 |
-
$privacy_text
|
522 |
|
523 |
-
if( $extended ){
|
524 |
$privacy_text = '<b>' . $privacy_text . '</b> - ';
|
525 |
-
|
526 |
}
|
527 |
|
528 |
break;
|
529 |
case 2:
|
530 |
$privacy_label = 'private';
|
531 |
-
$privacy_text
|
532 |
|
533 |
-
if( $extended ){
|
534 |
$privacy_text = '<b>' . $privacy_text . '</b> - ';
|
535 |
-
|
536 |
}
|
537 |
|
538 |
break;
|
539 |
default:
|
540 |
$privacy_label = 'public';
|
541 |
-
$privacy_text
|
542 |
|
543 |
-
if( $extended ){
|
544 |
$privacy_text = '<b>' . $privacy_text . '</b> - ';
|
545 |
$privacy_text .= __( 'Anyone can search for and see this list', 'yith-woocommerce-wishlist' );
|
546 |
}
|
@@ -552,11 +584,12 @@ if( !function_exists( 'yith_wcwl_get_privacy_label' ) ){
|
|
552 |
}
|
553 |
}
|
554 |
|
555 |
-
if( !function_exists( 'yith_wcwl_get_privacy_value' ) ){
|
556 |
/**
|
557 |
* Returns privacy numeric value
|
558 |
*
|
559 |
-
* @param $privacy_label
|
|
|
560 |
* @return int Privacy value
|
561 |
* @since 3.0.0
|
562 |
*/
|
@@ -578,21 +611,21 @@ if( !function_exists( 'yith_wcwl_get_privacy_value' ) ){
|
|
578 |
}
|
579 |
}
|
580 |
|
581 |
-
if( !function_exists( 'yith_wcwl_get_current_url' ) ){
|
582 |
/**
|
583 |
* Retrieves current url
|
584 |
*
|
585 |
* @return string Current url
|
586 |
* @since 3.0.0
|
587 |
*/
|
588 |
-
function yith_wcwl_get_current_url(){
|
589 |
global $wp;
|
590 |
|
591 |
return add_query_arg( $wp->query_vars, home_url( $wp->request ) );
|
592 |
}
|
593 |
}
|
594 |
|
595 |
-
if( !function_exists( 'yith_wcwl_is_single' ) ){
|
596 |
/**
|
597 |
* Returns true if it finds that you're printing a single product
|
598 |
* Should return false in any loop (including the ones inside single product page)
|
@@ -600,21 +633,36 @@ if( !function_exists( 'yith_wcwl_is_single' ) ){
|
|
600 |
* @return bool Whether you're currently on single product template
|
601 |
* @since 3.0.0
|
602 |
*/
|
603 |
-
function yith_wcwl_is_single(){
|
604 |
-
return apply_filters( 'yith_wcwl_is_single', is_product() && 'related' != wc_get_loop_prop('name') && ! wc_get_loop_prop( 'is_shortcode' ) );
|
605 |
}
|
606 |
}
|
607 |
|
608 |
-
if( !function_exists( 'yith_wcwl_is_mobile' ) ){
|
609 |
/**
|
610 |
* Returns true if we're currently on mobile view
|
611 |
*
|
612 |
* @return bool Whether you're currently on mobile view
|
613 |
* @since 3.0.0
|
614 |
*/
|
615 |
-
function yith_wcwl_is_mobile(){
|
616 |
global $yith_wcwl_is_mobile;
|
617 |
|
618 |
return wp_is_mobile() || $yith_wcwl_is_mobile;
|
619 |
}
|
620 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
/**
|
3 |
* Functions file
|
4 |
*
|
5 |
+
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
* @version 3.0.0
|
8 |
*/
|
11 |
exit;
|
12 |
} // Exit if accessed directly
|
13 |
|
14 |
+
if ( ! function_exists( 'yith_wcwl_is_wishlist' ) ) {
|
15 |
/**
|
16 |
* Check if we're printing wishlist shortcode
|
17 |
*
|
18 |
* @return bool
|
19 |
* @since 2.0.0
|
20 |
*/
|
21 |
+
function yith_wcwl_is_wishlist() {
|
22 |
global $yith_wcwl_is_wishlist;
|
23 |
|
24 |
return $yith_wcwl_is_wishlist;
|
25 |
}
|
26 |
}
|
27 |
|
28 |
+
if ( ! function_exists( 'yith_wcwl_is_wishlist_page' ) ) {
|
29 |
/**
|
30 |
* Check if current page is wishlist
|
31 |
*
|
32 |
* @return bool
|
33 |
* @since 2.0.13
|
34 |
*/
|
35 |
+
function yith_wcwl_is_wishlist_page() {
|
36 |
$wishlist_page_id = yith_wcwl_object_id( get_option( 'yith_wcwl_wishlist_page_id' ) );
|
37 |
|
38 |
+
if ( ! $wishlist_page_id ) {
|
39 |
return false;
|
40 |
}
|
41 |
|
43 |
}
|
44 |
}
|
45 |
|
46 |
+
if ( ! function_exists( 'yith_wcwl_locate_template' ) ) {
|
47 |
/**
|
48 |
* Locate the templates and return the path of the file found
|
49 |
*
|
50 |
+
* @param string $path Path to locate.
|
51 |
+
* @param array $var Unused.
|
52 |
+
*
|
53 |
* @return string
|
54 |
* @since 1.0.0
|
55 |
*/
|
56 |
+
function yith_wcwl_locate_template( $path, $var = null ) {
|
57 |
$woocommerce_base = WC()->template_path();
|
58 |
|
59 |
+
$template_woocommerce_path = $woocommerce_base . $path;
|
60 |
+
$template_path = '/' . $path;
|
61 |
+
$plugin_path = YITH_WCWL_DIR . 'templates/' . $path;
|
62 |
|
63 |
+
$located = locate_template(
|
64 |
+
array(
|
65 |
+
$template_woocommerce_path, // Search in <theme>/woocommerce/.
|
66 |
+
$template_path, // Search in <theme>/.
|
67 |
+
)
|
68 |
+
);
|
69 |
|
70 |
+
if ( ! $located && file_exists( $plugin_path ) ) {
|
71 |
return apply_filters( 'yith_wcwl_locate_template', $plugin_path, $path );
|
72 |
}
|
73 |
|
75 |
}
|
76 |
}
|
77 |
|
78 |
+
if ( ! function_exists( 'yith_wcwl_get_template' ) ) {
|
79 |
/**
|
80 |
* Retrieve a template file.
|
81 |
*
|
82 |
+
* @param string $path Path to get.
|
83 |
+
* @param mixed $var Variables to send to template.
|
84 |
+
* @param bool $return Whether to return or print the template.
|
85 |
+
*
|
86 |
* @return string|void
|
87 |
* @since 1.0.0
|
88 |
*/
|
94 |
extract( $var );
|
95 |
}
|
96 |
|
97 |
+
if ( $return ) {
|
98 |
ob_start();
|
99 |
}
|
100 |
|
101 |
+
// include file located.
|
102 |
include( $located );
|
103 |
|
104 |
+
if ( $return ) {
|
105 |
return ob_get_clean();
|
106 |
}
|
107 |
}
|
108 |
}
|
109 |
|
110 |
+
if ( ! function_exists( 'yith_wcwl_get_template_part' ) ) {
|
111 |
/**
|
112 |
* Search and include a template part
|
113 |
*
|
114 |
+
* @param string $template Template to include.
|
115 |
+
* @param string $template_part Template part.
|
116 |
+
* @param string $template_layout Template variation.
|
117 |
+
* @param array $var Array of variables to be passed to template.
|
118 |
+
* @param bool $return Whether to return template or print it.
|
119 |
+
*
|
120 |
* @return string|null
|
121 |
*/
|
122 |
function yith_wcwl_get_template_part( $template = '', $template_part = '', $template_layout = '', $var = array(), $return = false ) {
|
128 |
$template_layout = '-' . $template_layout;
|
129 |
}
|
130 |
|
131 |
+
$template_hierarchy = apply_filters(
|
132 |
+
'yith_wcwl_template_part_hierarchy',
|
133 |
+
array_merge(
|
134 |
+
! yith_wcwl_is_mobile() ? array() : array(
|
135 |
+
"wishlist-{$template}{$template_layout}{$template_part}-mobile.php",
|
136 |
+
"wishlist-{$template}{$template_part}-mobile.php",
|
137 |
+
),
|
138 |
+
array(
|
139 |
+
"wishlist-{$template}{$template_layout}{$template_part}.php",
|
140 |
+
"wishlist-{$template}{$template_part}.php",
|
141 |
+
)
|
142 |
),
|
143 |
+
$template,
|
144 |
+
$template_part,
|
145 |
+
$template_layout,
|
146 |
+
$var
|
147 |
+
);
|
148 |
|
149 |
+
foreach ( $template_hierarchy as $filename ) {
|
150 |
+
$located = yith_wcwl_locate_template( $filename );
|
151 |
|
152 |
if ( $located ) {
|
153 |
return yith_wcwl_get_template( $filename, $var, $return );
|
156 |
}
|
157 |
}
|
158 |
|
159 |
+
if ( ! function_exists( 'yith_wcwl_count_products' ) ) {
|
160 |
/**
|
161 |
* Retrieve the number of products in the wishlist.
|
162 |
*
|
163 |
+
* @param string|bool $wishlist_token Optional wishlist token.
|
164 |
*
|
165 |
* @return int
|
166 |
* @since 1.0.0
|
170 |
}
|
171 |
}
|
172 |
|
173 |
+
if ( ! function_exists( 'yith_wcwl_count_all_products' ) ) {
|
174 |
/**
|
175 |
* Retrieve the number of products in all the wishlists.
|
176 |
*
|
182 |
}
|
183 |
}
|
184 |
|
185 |
+
if ( ! function_exists( 'yith_wcwl_count_add_to_wishlist' ) ) {
|
186 |
/**
|
187 |
* Count number of times a product was added to users wishlists
|
188 |
*
|
189 |
+
* @param int|bool $product_id Product id.
|
190 |
*
|
191 |
* @return int Number of times the product was added to wishlists
|
192 |
* @since 2.0.13
|
193 |
*/
|
194 |
+
function yith_wcwl_count_add_to_wishlist( $product_id = false ) {
|
195 |
return YITH_WCWL()->count_add_to_wishlist( $product_id );
|
196 |
}
|
197 |
}
|
198 |
|
199 |
+
if ( ! function_exists( 'yith_wcwl_get_count_text' ) ) {
|
200 |
/**
|
201 |
* Returns the label that states how many users added a specific product to wishlist
|
202 |
*
|
203 |
+
* @param int|bool $product_id Product id or false, when you want to use global product as reference.
|
204 |
+
*
|
205 |
* @return string Label with count of items
|
206 |
*/
|
207 |
+
function yith_wcwl_get_count_text( $product_id = false ) {
|
208 |
+
$count = yith_wcwl_count_add_to_wishlist( $product_id );
|
209 |
$current_user_count = $count ? YITH_WCWL_Wishlist_Factory::get_times_current_user_added_count( $product_id ) : 0;
|
210 |
|
211 |
+
// if no user added to wishlist, return empty string.
|
212 |
+
if ( ! $count ) {
|
213 |
return apply_filters( 'yith_wcwl_count_text_empty', '', $product_id );
|
214 |
+
} elseif ( ! $current_user_count ) {
|
215 |
+
// translators: 1. Number of users.
|
216 |
$count_text = sprintf( _n( '%d user', '%d users', $count, 'yith-woocommerce-wishlist' ), $count );
|
217 |
+
$text = _n( 'has this item in wishlist', 'have this item in wishlist', $count, 'yith-woocommerce-wishlist' );
|
218 |
+
} elseif ( $count == $current_user_count ) {
|
|
|
219 |
$count_text = __( 'You\'re the first', 'yith-woocommerce-wishlist' );
|
220 |
+
$text = __( 'to add this item in wishlist', 'yith-woocommerce-wishlist' );
|
221 |
+
} else {
|
|
|
222 |
$other_count = $count - $current_user_count;
|
223 |
+
// translators: 1. Count of users when many, or "another" when only one.
|
224 |
+
$count_text = sprintf( _n( 'You and %s user', 'You and %d users', $other_count, 'yith-woocommerce-wishlist' ), 1 == $other_count ? 'another' : $other_count );
|
225 |
+
$text = __( 'have this item in wishlist', 'yith-woocommerce-wishlist' );
|
226 |
}
|
227 |
|
228 |
$label = sprintf( '<div class="count-add-to-wishlist"><span class="count">%s</span> %s</div>', $count_text, $text );
|
231 |
}
|
232 |
}
|
233 |
|
234 |
+
if ( ! function_exists( 'yith_frontend_css_color_picker' ) ) {
|
235 |
/**
|
236 |
* Output a colour picker input box.
|
237 |
*
|
241 |
* wp-content/plugins/woocommerce/admin/settings/settings-frontend-styles.php
|
242 |
*
|
243 |
* @access public
|
244 |
+
*
|
245 |
+
* @param mixed $name Name for the input field.
|
246 |
+
* @param mixed $id Id for the input field.
|
247 |
+
* @param mixed $value Value for the input field.
|
248 |
+
* @param string $desc Description to show under input field (default '').
|
249 |
+
*
|
250 |
* @return void
|
251 |
+
* @deprecated
|
252 |
*/
|
253 |
function yith_frontend_css_color_picker( $name, $id, $value, $desc = '' ) {
|
254 |
_deprecated_function( 'yith_frontend_css_color_picker', '3.0.0' );
|
257 |
|
258 |
echo '<div class="color_box">
|
259 |
<table><tr><td>
|
260 |
+
<strong>' . esc_html( $name ) . '</strong>
|
261 |
+
<input name="' . esc_attr( $id ) . '" id="' . esc_attr( $id ) . '" type="text" value="' . esc_attr( $value ) . '" class="colorpick colorpickpreview" style="background-color: ' . esc_attr( $value ) . '" /> <div id="colorPickerDiv_' . esc_attr( $id ) . '" class="colorpickdiv"></div>
|
262 |
</td></tr></table>
|
263 |
</div>';
|
264 |
|
265 |
}
|
266 |
}
|
267 |
|
268 |
+
if ( ! function_exists( 'yith_wcwl_get_cookie_expiration' ) ) {
|
269 |
+
/**
|
270 |
+
* Returns default expiration for wishlist cookie
|
271 |
+
*
|
272 |
+
* @return int Number of seconds the cookie should last.
|
273 |
+
*/
|
274 |
+
function yith_wcwl_get_cookie_expiration() {
|
275 |
return intval( apply_filters( 'yith_wcwl_cookie_expiration', 60 * 60 * 24 * 30 ) );
|
276 |
}
|
277 |
}
|
278 |
|
279 |
+
if ( ! function_exists( 'yith_setcookie' ) ) {
|
280 |
/**
|
281 |
* Create a cookie.
|
282 |
*
|
283 |
+
* @param string $name Cookie name.
|
284 |
+
* @param mixed $value Cookie value.
|
285 |
+
* @param int $time Cookie expiration time.
|
286 |
+
* @param bool $secure Whether cookie should be available to secured connection only.
|
287 |
+
* @param bool $httponly Whether cookie should be available to HTTP request only (no js handling).
|
288 |
+
*
|
289 |
* @return bool
|
290 |
* @since 1.0.0
|
291 |
*/
|
292 |
function yith_setcookie( $name, $value = array(), $time = null, $secure = false, $httponly = false ) {
|
293 |
+
if ( ! apply_filters( 'yith_wcwl_set_cookie', true ) || empty( $name ) ) {
|
294 |
return false;
|
295 |
}
|
296 |
|
297 |
+
$time = null != $time ? $time : time() + yith_wcwl_get_cookie_expiration();
|
298 |
|
299 |
+
$value = json_encode( stripslashes_deep( $value ) );
|
300 |
+
$expiration = apply_filters( 'yith_wcwl_cookie_expiration_time', $time ); // Default 30 days.
|
301 |
|
302 |
$_COOKIE[ $name ] = $value;
|
303 |
wc_setcookie( $name, $value, $expiration, $secure, $httponly );
|
306 |
}
|
307 |
}
|
308 |
|
309 |
+
if ( ! function_exists( 'yith_getcookie' ) ) {
|
310 |
/**
|
311 |
* Retrieve the value of a cookie.
|
312 |
*
|
313 |
+
* @param string $name Cookie name.
|
314 |
+
*
|
315 |
* @return mixed
|
316 |
* @since 1.0.0
|
317 |
*/
|
318 |
function yith_getcookie( $name ) {
|
319 |
+
if ( isset( $_COOKIE[ $name ] ) ) {
|
320 |
+
return json_decode( sanitize_text_field( wp_unslash( $_COOKIE[ $name ] ) ), true );
|
321 |
}
|
322 |
|
323 |
return array();
|
324 |
}
|
325 |
}
|
326 |
|
327 |
+
if ( ! function_exists( 'yith_destroycookie' ) ) {
|
328 |
/**
|
329 |
* Destroy a cookie.
|
330 |
*
|
331 |
+
* @param string $name Cookie name.
|
332 |
+
*
|
333 |
* @return void
|
334 |
* @since 1.0.0
|
335 |
*/
|
336 |
function yith_destroycookie( $name ) {
|
337 |
yith_setcookie( $name, array(), time() - 3600 );
|
338 |
}
|
339 |
+
}
|
340 |
|
341 |
+
if ( ! function_exists( 'yith_wcwl_object_id' ) ) {
|
342 |
/**
|
343 |
* Retrieve translated page id, if wpml is installed
|
344 |
*
|
345 |
+
* @param int $id Original page id.
|
346 |
+
*
|
347 |
* @return int Translation id
|
348 |
* @since 1.0.0
|
349 |
*/
|
350 |
+
function yith_wcwl_object_id( $id ) {
|
351 |
+
if ( function_exists( 'wpml_object_id_filter' ) ) {
|
352 |
return wpml_object_id_filter( $id, 'page', true );
|
353 |
+
} elseif ( function_exists( 'icl_object_id' ) ) {
|
|
|
354 |
return icl_object_id( $id, 'page', true );
|
355 |
+
} else {
|
|
|
356 |
return $id;
|
357 |
}
|
358 |
}
|
359 |
}
|
360 |
|
361 |
+
if ( ! function_exists( 'yith_wcwl_get_hidden_products' ) ) {
|
362 |
/**
|
363 |
* Retrieves a list of hidden products, whatever WC version is running
|
364 |
*
|
368 |
* @return array List of hidden product ids
|
369 |
* @since 2.1.1
|
370 |
*/
|
371 |
+
function yith_wcwl_get_hidden_products() {
|
372 |
+
if ( version_compare( WC()->version, '3.0.0', '<' ) ) {
|
373 |
+
$hidden_products = get_posts(
|
374 |
+
array(
|
375 |
+
'post_type' => 'product',
|
376 |
+
'post_status' => 'publish',
|
377 |
+
'posts_per_page' => - 1,
|
378 |
+
'fields' => 'ids',
|
379 |
+
'meta_query' => array(
|
380 |
+
array(
|
381 |
+
'key' => '_visibility',
|
382 |
+
'value' => 'visible',
|
383 |
+
),
|
384 |
+
),
|
385 |
)
|
386 |
+
);
|
387 |
+
} else {
|
388 |
+
$hidden_products = wc_get_products(
|
389 |
+
array(
|
390 |
+
'limit' => - 1,
|
391 |
+
'status' => 'publish',
|
392 |
+
'return' => 'ids',
|
393 |
+
'visibility' => 'hidden',
|
394 |
+
)
|
395 |
+
);
|
396 |
}
|
397 |
|
398 |
/**
|
399 |
* array_filter was added to prevent errors when previous query returns for some reason just 0 index
|
400 |
+
*
|
401 |
* @since 2.2.6
|
402 |
*/
|
403 |
return apply_filters( 'yith_wcwl_hidden_products', array_filter( $hidden_products ) );
|
404 |
}
|
405 |
}
|
406 |
|
407 |
+
if ( ! function_exists( 'yith_wcwl_get_wishlist' ) ) {
|
408 |
/**
|
409 |
* Retrieves wishlist by ID
|
410 |
*
|
411 |
+
* @param int|string $wishlist_id Wishlist ID or Wishlist Token.
|
412 |
+
*
|
413 |
* @return \YITH_WCWL_Wishlist|bool Wishlist object; false on error
|
414 |
*/
|
415 |
+
function yith_wcwl_get_wishlist( $wishlist_id ) {
|
416 |
return YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id );
|
417 |
}
|
418 |
}
|
419 |
|
420 |
+
if ( ! function_exists( 'yith_wcwl_merge_in_array' ) ) {
|
421 |
/**
|
422 |
* Merges an array of items into a specific position of an array
|
423 |
*
|
424 |
+
* @param array $array Origin array.
|
425 |
+
* @param array $element Elements to merge.
|
426 |
+
* @param string $pivot Index to use as pivot.
|
427 |
+
* @param string $position Where elements should be merged (before or after the pivot).
|
428 |
+
*
|
429 |
+
* @return array Result of the merge
|
430 |
*/
|
431 |
+
function yith_wcwl_merge_in_array( $array, $element, $pivot, $position = 'after' ) {
|
432 |
+
// search for the pivot inside array.
|
433 |
+
$pos = array_search( $pivot, array_keys( $array ) );
|
434 |
+
|
435 |
+
if ( false === $pos ) {
|
436 |
return $array;
|
437 |
}
|
438 |
|
439 |
+
// separate array into chunks.
|
440 |
+
$i = 'after' == $position ? 1 : 0;
|
441 |
$part_1 = array_slice( $array, 0, $pos + $i );
|
442 |
$part_2 = array_slice( $array, $pos + $i );
|
443 |
|
445 |
}
|
446 |
}
|
447 |
|
448 |
+
if ( ! function_exists( 'yith_wcwl_get_plugin_icons' ) ) {
|
449 |
/**
|
450 |
* Return array of available icons
|
451 |
*
|
452 |
+
* @param string $none_label Label to use for none option.
|
453 |
+
* @param string $custom_label Label to use for custom option.
|
454 |
*
|
455 |
* @return array Array of available icons, in class => name format
|
456 |
*/
|
457 |
+
function yith_wcwl_get_plugin_icons( $none_label = '', $custom_label = '' ) {
|
458 |
+
$icons = json_decode( file_get_contents( YITH_WCWL_DIR . 'assets/js/admin/yith-wcwl-icons.json' ), true );
|
459 |
|
460 |
+
$icons['none'] = $none_label ? $none_label : __( 'None', 'yith-woocommerce-wishlist' );
|
461 |
$icons['custom'] = $custom_label ? $custom_label : __( 'Custom', 'yith-woocommerce-wishlist' );
|
462 |
|
463 |
return $icons;
|
464 |
}
|
465 |
}
|
466 |
|
467 |
+
if ( ! function_exists( 'yith_wcwl_maybe_format_field_array' ) ) {
|
468 |
/**
|
469 |
* Take a field structure from plugin saved data, and format it as required by WC to print fields
|
470 |
*
|
471 |
+
* @param array $field_structure Array of fields as saved on db.
|
472 |
+
*
|
473 |
* @return array Array of fields as required by WC
|
474 |
*/
|
475 |
+
function yith_wcwl_maybe_format_field_array( $field_structure ) {
|
476 |
$fields = array();
|
477 |
|
478 |
+
if ( empty( $field_structure ) ) {
|
479 |
return array();
|
480 |
}
|
481 |
|
482 |
+
foreach ( $field_structure as $field ) {
|
483 |
+
if ( isset( $field['active'] ) && 'yes' != $field['active'] ) {
|
484 |
continue;
|
485 |
}
|
486 |
|
488 |
continue;
|
489 |
}
|
490 |
|
491 |
+
// format type.
|
492 |
$field_id = sanitize_title_with_dashes( $field['label'] );
|
493 |
|
494 |
+
// format options, if needed.
|
495 |
if ( ! empty( $field['options'] ) ) {
|
496 |
$options = array();
|
497 |
$raw_options = explode( '|', $field['options'] );
|
498 |
|
499 |
if ( ! empty( $raw_options ) ) {
|
500 |
foreach ( $raw_options as $raw_option ) {
|
501 |
+
if ( strpos( $raw_option, '::' ) === false ) {
|
502 |
continue;
|
503 |
}
|
504 |
|
510 |
$field['options'] = $options;
|
511 |
}
|
512 |
|
513 |
+
// format class.
|
514 |
$field['class'] = array( 'form-row-' . $field['position'] );
|
515 |
|
516 |
+
// format requires.
|
517 |
$field['required'] = isset( $field['required'] ) && 'yes' == $field['required'];
|
518 |
|
519 |
+
// set custom attributes when field is required.
|
520 |
if ( $field['required'] ) {
|
521 |
$field['custom_attributes'] = array(
|
522 |
+
'required' => 'required',
|
523 |
);
|
524 |
}
|
525 |
|
526 |
+
// if type requires options, but no options was defined, skip field printing.
|
527 |
if ( in_array( $field['type'], array( 'select', 'radio' ) ) && empty( $field['options'] ) ) {
|
528 |
continue;
|
529 |
}
|
535 |
}
|
536 |
}
|
537 |
|
538 |
+
if ( ! function_exists( 'yith_wcwl_get_privacy_label' ) ) {
|
539 |
/**
|
540 |
* Returns privacy label
|
541 |
*
|
542 |
+
* @param int $privacy Privacy value.
|
543 |
+
* @param bool $extended Whether to show extended or simplified label.
|
544 |
+
*
|
545 |
* @return string Privacy label
|
546 |
* @since 3.0.0
|
547 |
*/
|
548 |
+
function yith_wcwl_get_privacy_label( $privacy, $extended = false ) {
|
549 |
|
550 |
+
switch ( $privacy ) {
|
551 |
case 1:
|
552 |
$privacy_label = 'shared';
|
553 |
+
$privacy_text = __( 'Shared', 'yith-woocommerce-wishlist' );
|
554 |
|
555 |
+
if ( $extended ) {
|
556 |
$privacy_text = '<b>' . $privacy_text . '</b> - ';
|
557 |
+
$privacy_text .= __( 'Only people with a link to this list can see it', 'yith-woocommerce-wishlist' );
|
558 |
}
|
559 |
|
560 |
break;
|
561 |
case 2:
|
562 |
$privacy_label = 'private';
|
563 |
+
$privacy_text = __( 'Private', 'yith-woocommerce-wishlist' );
|
564 |
|
565 |
+
if ( $extended ) {
|
566 |
$privacy_text = '<b>' . $privacy_text . '</b> - ';
|
567 |
+
$privacy_text .= __( 'Only you can see this list', 'yith-woocommerce-wishlist' );
|
568 |
}
|
569 |
|
570 |
break;
|
571 |
default:
|
572 |
$privacy_label = 'public';
|
573 |
+
$privacy_text = __( 'Public', 'yith-woocommerce-wishlist' );
|
574 |
|
575 |
+
if ( $extended ) {
|
576 |
$privacy_text = '<b>' . $privacy_text . '</b> - ';
|
577 |
$privacy_text .= __( 'Anyone can search for and see this list', 'yith-woocommerce-wishlist' );
|
578 |
}
|
584 |
}
|
585 |
}
|
586 |
|
587 |
+
if ( ! function_exists( 'yith_wcwl_get_privacy_value' ) ) {
|
588 |
/**
|
589 |
* Returns privacy numeric value
|
590 |
*
|
591 |
+
* @param string $privacy_label Privacy label.
|
592 |
+
*
|
593 |
* @return int Privacy value
|
594 |
* @since 3.0.0
|
595 |
*/
|
611 |
}
|
612 |
}
|
613 |
|
614 |
+
if ( ! function_exists( 'yith_wcwl_get_current_url' ) ) {
|
615 |
/**
|
616 |
* Retrieves current url
|
617 |
*
|
618 |
* @return string Current url
|
619 |
* @since 3.0.0
|
620 |
*/
|
621 |
+
function yith_wcwl_get_current_url() {
|
622 |
global $wp;
|
623 |
|
624 |
return add_query_arg( $wp->query_vars, home_url( $wp->request ) );
|
625 |
}
|
626 |
}
|
627 |
|
628 |
+
if ( ! function_exists( 'yith_wcwl_is_single' ) ) {
|
629 |
/**
|
630 |
* Returns true if it finds that you're printing a single product
|
631 |
* Should return false in any loop (including the ones inside single product page)
|
633 |
* @return bool Whether you're currently on single product template
|
634 |
* @since 3.0.0
|
635 |
*/
|
636 |
+
function yith_wcwl_is_single() {
|
637 |
+
return apply_filters( 'yith_wcwl_is_single', is_product() && 'related' != wc_get_loop_prop( 'name' ) && ! wc_get_loop_prop( 'is_shortcode' ) );
|
638 |
}
|
639 |
}
|
640 |
|
641 |
+
if ( ! function_exists( 'yith_wcwl_is_mobile' ) ) {
|
642 |
/**
|
643 |
* Returns true if we're currently on mobile view
|
644 |
*
|
645 |
* @return bool Whether you're currently on mobile view
|
646 |
* @since 3.0.0
|
647 |
*/
|
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 |
+
|
655 |
+
if ( ! function_exists( 'yith_wcwl_add_notice' ) ) {
|
656 |
+
/**
|
657 |
+
* Calls wc_add_notice, when it exists
|
658 |
+
*
|
659 |
+
* @param string $message Message to print.
|
660 |
+
* @param string $notice_type Notice type (succcess|error|notice).
|
661 |
+
* @param array $data Optional notice data.
|
662 |
+
*
|
663 |
+
* @since 3.0.10
|
664 |
+
*/
|
665 |
+
function yith_wcwl_add_notice( $message, $notice_type = 'success', $data = array() ) {
|
666 |
+
function_exists( 'wc_add_notice' ) && wc_add_notice( $message, $notice_type, $data );
|
667 |
+
}
|
668 |
+
}
|
@@ -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.
|
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.
|
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.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
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WCWL\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Morten Ruus <altombasketball@gmail.com>\n"
|
10 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
11 |
"Language: da_DK\n"
|
@@ -19,83 +19,137 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: plugin-fw\n"
|
21 |
|
22 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "General settings"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
27 |
msgid "Add to wishlist options"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
31 |
msgid "Wishlist page options"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
35 |
msgid "Premium Version"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
39 |
msgid "YITH WooCommerce Wishlist"
|
40 |
msgstr "Ønskeliste"
|
41 |
|
42 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
43 |
msgid "Wishlist"
|
44 |
msgstr "Ønskeliste"
|
45 |
|
46 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
47 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
51 |
msgid "Product successfully removed."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
55 |
msgid "Please, make sure to enter a valid title"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
59 |
-
msgid "
|
|
|
|
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
63 |
msgid "Product added to cart successfully"
|
64 |
msgstr ""
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
67 |
msgid "While you visit our site, we’ll track:"
|
68 |
msgstr ""
|
69 |
|
70 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
71 |
-
msgid "
|
|
|
|
|
72 |
msgstr ""
|
73 |
|
74 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
75 |
-
msgid "
|
|
|
|
|
76 |
msgstr ""
|
77 |
|
78 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
79 |
-
msgid "
|
|
|
|
|
80 |
msgstr ""
|
81 |
|
82 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
83 |
-
msgid "
|
|
|
|
|
84 |
msgstr ""
|
85 |
|
86 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
87 |
-
msgid "
|
|
|
|
|
88 |
msgstr ""
|
89 |
|
90 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
91 |
-
msgid "
|
|
|
|
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
95 |
msgid "Customer wishlists"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
99 |
msgid "Wishlists"
|
100 |
msgstr "Ønskeliste"
|
101 |
|
@@ -121,6 +175,11 @@ msgstr ""
|
|
121 |
msgid "Title"
|
122 |
msgstr "Titel felt"
|
123 |
|
|
|
|
|
|
|
|
|
|
|
124 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
125 |
msgid "Visibility"
|
126 |
msgstr ""
|
@@ -129,94 +188,144 @@ msgstr ""
|
|
129 |
msgid "Items added"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
133 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
137 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
141 |
msgid "Button label (leave empty to use the default settings)"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
145 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
149 |
-
msgid "
|
|
|
|
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
153 |
-
msgid "
|
|
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
157 |
-
msgid "
|
|
|
|
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
161 |
-
msgid "
|
|
|
|
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
169 |
msgid "Paginate"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
173 |
msgid "Do not paginate"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
177 |
msgid "Number of items to show per page"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
181 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
185 |
msgid "Share on:"
|
186 |
msgstr "Del på:"
|
187 |
|
188 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
189 |
msgid "Share on Facebook"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
193 |
msgid "Tweet on Twitter"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
197 |
msgid "Pin on Pinterest"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
201 |
msgid "Share via email"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
205 |
msgid "My wishlist on "
|
206 |
msgstr "ønskeliste"
|
207 |
|
208 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
209 |
msgid "Share on WhatsApp"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
213 |
msgid "Remove from list"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
217 |
msgid "Free!"
|
218 |
msgstr "Gratis!"
|
219 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
#: ../includes/class.yith-wcwl.php:161
|
221 |
msgid "The item cannot be added to this wishlist"
|
222 |
msgstr ""
|
@@ -225,11 +334,12 @@ msgstr ""
|
|
225 |
msgid "An error occurred while adding the products to the wishlist."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../includes/class.yith-wcwl.php:
|
229 |
msgid "Error. Unable to remove the product from the wishlist."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
233 |
msgid "Invalid wishlist."
|
234 |
msgstr ""
|
235 |
|
@@ -237,58 +347,182 @@ msgstr ""
|
|
237 |
msgid "Invalid wishlist item."
|
238 |
msgstr ""
|
239 |
|
240 |
-
|
|
|
241 |
msgid "%d user"
|
242 |
msgid_plural "%d users"
|
243 |
msgstr[0] ""
|
244 |
msgstr[1] ""
|
245 |
|
246 |
-
#: ../includes/functions.yith-wcwl.php:
|
247 |
msgid "has this item in wishlist"
|
248 |
msgid_plural "have this item in wishlist"
|
249 |
msgstr[0] ""
|
250 |
msgstr[1] ""
|
251 |
|
252 |
-
#: ../includes/functions.yith-wcwl.php:
|
253 |
msgid "You're the first"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../includes/functions.yith-wcwl.php:
|
257 |
msgid "to add this item in wishlist"
|
258 |
msgstr ""
|
259 |
|
260 |
-
|
|
|
261 |
msgid "You and %s user"
|
262 |
msgid_plural "You and %d users"
|
263 |
msgstr[0] ""
|
264 |
msgstr[1] ""
|
265 |
|
266 |
-
#: ../includes/functions.yith-wcwl.php:
|
267 |
msgid "have this item in wishlist"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid "Shared"
|
272 |
msgstr "Delt"
|
273 |
|
274 |
-
#: ../includes/functions.yith-wcwl.php:
|
275 |
-
msgid "
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../includes/functions.yith-wcwl.php:
|
279 |
msgid "Private"
|
280 |
msgstr "Privat"
|
281 |
|
282 |
-
#: ../includes/functions.yith-wcwl.php:
|
283 |
-
msgid "Only
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../includes/functions.yith-wcwl.php:
|
287 |
msgid "Public"
|
288 |
msgstr "Offentlig"
|
289 |
|
290 |
-
#: ../includes/functions.yith-wcwl.php:
|
291 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
msgstr ""
|
293 |
|
294 |
#: ../init.php:4
|
@@ -296,7 +530,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
296 |
msgstr ""
|
297 |
|
298 |
#: ../init.php:5
|
299 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
300 |
msgstr ""
|
301 |
|
302 |
#: ../init.php:7
|
@@ -307,28 +546,31 @@ msgstr ""
|
|
307 |
msgid "https://yithemes.com/"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../init.php:
|
311 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ../init.php:
|
315 |
msgid "You can't activate the free version of"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../init.php:
|
319 |
msgid "while you are using the premium one."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
323 |
msgid "General Settings"
|
324 |
msgstr ""
|
325 |
|
326 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
327 |
-
msgid "
|
328 |
msgstr ""
|
329 |
|
330 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
331 |
-
msgid "
|
|
|
|
|
332 |
msgstr ""
|
333 |
|
334 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -348,7 +590,10 @@ msgid "Loop settings"
|
|
348 |
msgstr ""
|
349 |
|
350 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
351 |
-
msgid "
|
|
|
|
|
|
|
352 |
msgstr ""
|
353 |
|
354 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -364,7 +609,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
364 |
msgstr ""
|
365 |
|
366 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
367 |
-
msgid "
|
|
|
|
|
|
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -379,196 +628,239 @@ msgstr ""
|
|
379 |
msgid "After \"Add to cart\" button"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
383 |
msgid "Use shortcode"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
387 |
msgid "Product page settings"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
391 |
msgid "Position of \"Add to wishlist\" on product page"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
395 |
-
msgid "
|
|
|
|
|
|
|
|
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
399 |
msgid "After \"Add to cart\""
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
403 |
msgid "After thumbnails"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
407 |
msgid "After summary"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
411 |
msgid "Text customization"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
415 |
msgid "\"Add to wishlist\" text"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
419 |
msgid "Enter a text for \"Add to wishlist\" button"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
423 |
-
msgid "Add to wishlist"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
427 |
msgid "\"Product added\" text"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
431 |
-
msgid "
|
|
|
|
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
435 |
msgid "Product added!"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
439 |
msgid "\"Browse wishlist\" text"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
443 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
447 |
-
msgid "Browse wishlist"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
451 |
msgid "\"Product already in wishlist\" text"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
455 |
-
msgid "
|
|
|
|
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
459 |
msgid "The product is already in your wishlist!"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
463 |
msgid "Style & Color customization"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
467 |
msgid "Style of \"Add to wishlist\""
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
471 |
-
msgid "
|
|
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
475 |
msgid "Textual (anchor)"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
479 |
msgid "Button with theme style"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
483 |
msgid "Button with custom style"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
487 |
msgid "\"Add to wishlist\" button style"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
491 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
msgid "Background"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
499 |
msgid "Text"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
503 |
msgid "Border"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
507 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
511 |
msgid "Background Hover"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
515 |
msgid "Text Hover"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
519 |
msgid "Border Hover"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
523 |
msgid "Border radius"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
527 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
531 |
msgid "\"Add to wishlist\" icon"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
535 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
539 |
msgid "\"Add to wishlist\" custom icon"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
543 |
-
|
|
|
|
|
|
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
547 |
msgid "\"Added to wishlist\" icon"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
551 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
555 |
msgid "Same used for Add to wishlist"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
559 |
msgid "\"Added to wishlist\" custom icon"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
563 |
msgid "Custom CSS"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
567 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
568 |
msgstr ""
|
569 |
|
|
|
|
|
|
|
|
|
570 |
#: ../plugin-options/settings-options.php:17
|
571 |
-
msgid "
|
|
|
|
|
572 |
msgstr ""
|
573 |
|
574 |
#: ../plugin-options/settings-options.php:30
|
@@ -584,7 +876,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
584 |
msgstr ""
|
585 |
|
586 |
#: ../plugin-options/settings-options.php:46
|
587 |
-
msgid "
|
|
|
|
|
588 |
msgstr ""
|
589 |
|
590 |
#: ../plugin-options/settings-options.php:51
|
@@ -592,7 +886,9 @@ msgid "Enable slider in wishlist"
|
|
592 |
msgstr ""
|
593 |
|
594 |
#: ../plugin-options/settings-options.php:52
|
595 |
-
msgid "
|
|
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -604,14 +900,23 @@ msgid "Wishlist page"
|
|
604 |
msgstr ""
|
605 |
|
606 |
#: ../plugin-options/wishlist_page-options.php:25
|
607 |
-
msgid "
|
|
|
|
|
|
|
608 |
msgstr ""
|
609 |
|
610 |
#: ../plugin-options/wishlist_page-options.php:38
|
611 |
msgid "Wishlist Detail Page"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
msgid "In wishlist table show"
|
616 |
msgstr ""
|
617 |
|
@@ -636,11 +941,13 @@ msgid "Add to cart option for each product"
|
|
636 |
msgstr ""
|
637 |
|
638 |
#: ../plugin-options/wishlist_page-options.php:91
|
639 |
-
msgid "
|
|
|
640 |
msgstr ""
|
641 |
|
642 |
#: ../plugin-options/wishlist_page-options.php:100
|
643 |
-
msgid "
|
|
|
644 |
msgstr ""
|
645 |
|
646 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -648,7 +955,9 @@ msgid "Redirect to cart"
|
|
648 |
msgstr ""
|
649 |
|
650 |
#: ../plugin-options/wishlist_page-options.php:109
|
651 |
-
msgid "
|
|
|
|
|
652 |
msgstr ""
|
653 |
|
654 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -656,7 +965,8 @@ msgid "Remove if added to the cart"
|
|
656 |
msgstr ""
|
657 |
|
658 |
#: ../plugin-options/wishlist_page-options.php:118
|
659 |
-
msgid "
|
|
|
660 |
msgstr ""
|
661 |
|
662 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -667,7 +977,11 @@ msgstr ""
|
|
667 |
msgid "Enable this option to let users share their wishlist on social media"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
671 |
msgid "Share on social media"
|
672 |
msgstr ""
|
673 |
|
@@ -691,7 +1005,7 @@ msgstr ""
|
|
691 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
695 |
msgid "My wishlist on %s"
|
696 |
msgstr ""
|
697 |
|
@@ -700,7 +1014,9 @@ msgid "Social text"
|
|
700 |
msgstr ""
|
701 |
|
702 |
#: ../plugin-options/wishlist_page-options.php:198
|
703 |
-
msgid "
|
|
|
|
|
704 |
msgstr ""
|
705 |
|
706 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -716,9 +1032,17 @@ msgid "Default wishlist name"
|
|
716 |
msgstr ""
|
717 |
|
718 |
#: ../plugin-options/wishlist_page-options.php:227
|
719 |
-
msgid "
|
|
|
|
|
720 |
msgstr ""
|
721 |
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
#: ../plugin-options/wishlist_page-options.php:234
|
723 |
msgid "\"Add to cart\" text"
|
724 |
msgstr ""
|
@@ -727,10 +1051,6 @@ msgstr ""
|
|
727 |
msgid "Enter a text for the \"Add to cart\" button"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
731 |
-
msgid "Add to cart"
|
732 |
-
msgstr ""
|
733 |
-
|
734 |
#: ../plugin-options/wishlist_page-options.php:247
|
735 |
msgid "Style & color customization"
|
736 |
msgstr ""
|
@@ -755,336 +1075,396 @@ msgstr ""
|
|
755 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: ../plugin-options/wishlist_page-options.php:
|
759 |
msgid "Set the radius for the \"Add to cart\" button"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../plugin-options/wishlist_page-options.php:
|
763 |
msgid "\"Add to cart\" icon"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../plugin-options/wishlist_page-options.php:
|
767 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../plugin-options/wishlist_page-options.php:
|
771 |
msgid "\"Add to cart\" custom icon"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: ../plugin-options/wishlist_page-options.php:
|
775 |
-
msgid "
|
|
|
|
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: ../plugin-options/wishlist_page-options.php:
|
779 |
msgid "Primary button style"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: ../plugin-options/wishlist_page-options.php:
|
783 |
-
msgid "
|
|
|
|
|
|
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: ../plugin-options/wishlist_page-options.php:
|
787 |
-
msgid "
|
|
|
|
|
|
|
|
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../plugin-options/wishlist_page-options.php:
|
791 |
msgid "Secondary button style"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../plugin-options/wishlist_page-options.php:
|
795 |
-
|
|
|
|
|
|
|
|
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../plugin-options/wishlist_page-options.php:
|
799 |
msgid "Wishlist table style"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../plugin-options/wishlist_page-options.php:
|
803 |
-
msgid "
|
|
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../plugin-options/wishlist_page-options.php:
|
807 |
msgid "Highlight color"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: ../plugin-options/wishlist_page-options.php:
|
811 |
-
msgid "
|
|
|
|
|
|
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../plugin-options/wishlist_page-options.php:
|
815 |
msgid "Share button text color"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../plugin-options/wishlist_page-options.php:
|
819 |
msgid "Choose colors for share buttons text"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../plugin-options/wishlist_page-options.php:
|
823 |
msgid "Text hover"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../plugin-options/wishlist_page-options.php:
|
827 |
msgid "Facebook share button icon"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: ../plugin-options/wishlist_page-options.php:
|
831 |
msgid "Select an icon for the Facebook share button"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: ../plugin-options/wishlist_page-options.php:
|
835 |
msgid "Facebook share button custom icon"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: ../plugin-options/wishlist_page-options.php:
|
839 |
-
msgid "
|
|
|
|
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../plugin-options/wishlist_page-options.php:
|
843 |
msgid "Facebook share button style"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../plugin-options/wishlist_page-options.php:
|
847 |
msgid "Choose colors for Facebook share button"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
851 |
msgid "Background hover"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: ../plugin-options/wishlist_page-options.php:
|
855 |
msgid "Twitter share button icon"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: ../plugin-options/wishlist_page-options.php:
|
859 |
msgid "Select an icon for the Twitter share button"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: ../plugin-options/wishlist_page-options.php:
|
863 |
msgid "Twitter share button custom icon"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../plugin-options/wishlist_page-options.php:
|
867 |
-
msgid "
|
|
|
|
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: ../plugin-options/wishlist_page-options.php:
|
871 |
msgid "Twitter share button style"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../plugin-options/wishlist_page-options.php:
|
875 |
msgid "Choose colors for Twitter share button"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../plugin-options/wishlist_page-options.php:
|
879 |
msgid "Pinterest share button icon"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../plugin-options/wishlist_page-options.php:
|
883 |
msgid "Select an icon for the Pinterest share button"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../plugin-options/wishlist_page-options.php:
|
887 |
msgid "Pinterest share button custom icon"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../plugin-options/wishlist_page-options.php:
|
891 |
-
msgid "
|
|
|
|
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: ../plugin-options/wishlist_page-options.php:
|
895 |
msgid "Pinterest share button style"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../plugin-options/wishlist_page-options.php:
|
899 |
msgid "Choose colors for Pinterest share button"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../plugin-options/wishlist_page-options.php:
|
903 |
msgid "Email share button icon"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../plugin-options/wishlist_page-options.php:
|
907 |
msgid "Select an icon for the Email share button"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../plugin-options/wishlist_page-options.php:
|
911 |
msgid "Email share button custom icon"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../plugin-options/wishlist_page-options.php:
|
915 |
-
msgid "
|
|
|
|
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../plugin-options/wishlist_page-options.php:
|
919 |
msgid "Email share button style"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../plugin-options/wishlist_page-options.php:
|
923 |
msgid "Choose colors for the Email share button"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../plugin-options/wishlist_page-options.php:
|
927 |
msgid "WhatsApp share button icon"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../plugin-options/wishlist_page-options.php:
|
931 |
msgid "Select an icon for the WhatsApp share button"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: ../plugin-options/wishlist_page-options.php:
|
935 |
msgid "WhatsApp share button custom icon"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../plugin-options/wishlist_page-options.php:
|
939 |
-
msgid "
|
|
|
|
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../plugin-options/wishlist_page-options.php:
|
943 |
msgid "WhatsApp share button style"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../plugin-options/wishlist_page-options.php:
|
947 |
msgid "Choose colors for WhatsApp share button"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: ../templates/
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
msgid "View ›"
|
956 |
-
msgstr ""
|
957 |
-
|
958 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
959 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
963 |
msgid "Upgrade"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
967 |
msgid "Premium Features"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
971 |
msgid "Allow your customers to create multiple wishlists"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
975 |
-
msgid "
|
|
|
|
|
|
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
979 |
msgid "Multiple Wishlist"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
983 |
msgid "Wishlist Private"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
987 |
msgid "A transparent privacy management"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
991 |
-
msgid "
|
|
|
|
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
995 |
-
msgid "
|
|
|
|
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
999 |
-
msgid "
|
|
|
|
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1003 |
msgid "Estimate Cost"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1007 |
msgid "Admin Panel"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1011 |
msgid "An advanced and more versatile management of the wishlist"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1015 |
-
msgid "
|
|
|
|
|
|
|
|
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1019 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1023 |
-
msgid "
|
|
|
|
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1027 |
msgid "Search Wishlists"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1031 |
msgid "'ADD TO CART'"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1035 |
-
msgid "
|
|
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1039 |
-
msgid "
|
|
|
|
|
|
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1043 |
msgid "Let users buy the product right from the wishlist page"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1047 |
-
msgid "
|
|
|
|
|
|
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1051 |
msgid "DISABLE WISHLIST"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1055 |
msgid "Choose a charming layout for your wishlist page"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1059 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1063 |
msgid "UNLOGGED USERS"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1067 |
msgid "Wishlist widgets for the header and sidebars"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1071 |
-
msgid "
|
|
|
|
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1075 |
msgid "POPULAR TABLE"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1079 |
msgid "FUNCTIONALITIES"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1083 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1087 |
-
msgid "
|
|
|
|
|
|
|
|
|
1088 |
msgstr ""
|
1089 |
|
1090 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1123,43 +1503,50 @@ msgstr ""
|
|
1123 |
msgid "this wishlist link and share it anywhere)"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1127 |
msgid "Apply this action to all the selected items:"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1131 |
msgid "Remove from wishlist"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
|
|
|
|
|
1135 |
msgid "Move to %s"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1139 |
msgid "Apply"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1143 |
msgid "Update"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1147 |
msgid "Add all to cart"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1151 |
msgid "Ask for an estimate"
|
1152 |
msgstr "Efterspørg estimat"
|
1153 |
|
1154 |
-
#: ../templates/wishlist-view-header.php:
|
1155 |
msgid "Edit title"
|
1156 |
msgstr "Rediger titel"
|
1157 |
|
1158 |
-
#: ../templates/wishlist-view-header.php:
|
1159 |
msgid "Save"
|
1160 |
msgstr "Gem"
|
1161 |
|
1162 |
-
#: ../templates/wishlist-view-header.php:
|
1163 |
msgid "Cancel"
|
1164 |
msgstr "Annullere"
|
1165 |
|
@@ -1179,94 +1566,61 @@ msgstr ""
|
|
1179 |
msgid "Stock:"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1183 |
msgid "Out of stock"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1187 |
msgid "In Stock"
|
1188 |
msgstr "På lager"
|
1189 |
|
1190 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1191 |
msgid "Move"
|
1192 |
msgstr "Flyt"
|
1193 |
|
1194 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1195 |
msgid "Move to another list ›"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1199 |
msgid "Remove this product"
|
1200 |
msgstr "Fjern denne vare"
|
1201 |
|
1202 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1203 |
msgid "No products added to the wishlist"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: ../templates/wishlist-view.php:
|
1207 |
msgid "Product name"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../templates/wishlist-view.php:
|
1211 |
msgid "Unit price"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: ../templates/wishlist-view.php:
|
1215 |
msgid "Quantity"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: ../templates/wishlist-view.php:
|
1219 |
msgid "Stock status"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: ../templates/wishlist-view.php:
|
1223 |
msgid "Arrange"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
|
|
|
1227 |
msgid "Added on: %s"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: ../templates/wishlist-view.php:
|
1231 |
msgid "Remove"
|
1232 |
msgstr "Fjern"
|
1233 |
-
|
1234 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1235 |
-
msgctxt "page_slug"
|
1236 |
-
msgid "wishlist"
|
1237 |
-
msgstr ""
|
1238 |
-
|
1239 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1240 |
-
msgctxt "date when wishlist was created"
|
1241 |
-
msgid "Created on"
|
1242 |
-
msgstr ""
|
1243 |
-
|
1244 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1245 |
-
msgctxt "[gutenberg]: block name"
|
1246 |
-
msgid "YITH Add to wishlist"
|
1247 |
-
msgstr ""
|
1248 |
-
|
1249 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1250 |
-
msgctxt "[gutenberg]: block name"
|
1251 |
-
msgid "YITH Wishlist"
|
1252 |
-
msgstr ""
|
1253 |
-
|
1254 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1255 |
-
msgctxt "[gutenberg]: block description"
|
1256 |
-
msgid "Shows Add to wishlist button"
|
1257 |
-
msgstr ""
|
1258 |
-
|
1259 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1260 |
-
msgctxt "[gutenberg]: block description"
|
1261 |
-
msgid "Shows a list of products in wishlist"
|
1262 |
-
msgstr ""
|
1263 |
-
|
1264 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1265 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1266 |
-
msgid "Price is %1$s%%"
|
1267 |
-
msgstr ""
|
1268 |
-
|
1269 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1270 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1271 |
-
msgid "(Was %2$s when added in list)"
|
1272 |
-
msgstr ""
|
4 |
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"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: plugin-fw\n"
|
21 |
|
22 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
23 |
+
#, fuzzy
|
24 |
+
#| msgid "Wishlist"
|
25 |
+
msgid "Wishlist Page"
|
26 |
+
msgstr "Ønskeliste"
|
27 |
+
|
28 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
29 |
msgid "General settings"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
33 |
msgid "Add to wishlist options"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
37 |
msgid "Wishlist page options"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
41 |
msgid "Premium Version"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
45 |
msgid "YITH WooCommerce Wishlist"
|
46 |
msgstr "Ønskeliste"
|
47 |
|
48 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
49 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
50 |
msgid "Wishlist"
|
51 |
msgstr "Ønskeliste"
|
52 |
|
53 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
54 |
+
msgid ""
|
55 |
+
"Allows your customers to create and share lists of products that they want "
|
56 |
+
"to purchase on your e-commerce."
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
60 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
61 |
+
msgid "View ›"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
65 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
66 |
+
msgid "or"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
70 |
+
msgid "Close"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
74 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
75 |
msgid "Product successfully removed."
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
79 |
msgid "Please, make sure to enter a valid title"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
83 |
+
msgid ""
|
84 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
85 |
+
"are enabled."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
89 |
msgid "Product added to cart successfully"
|
90 |
msgstr ""
|
91 |
|
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 ""
|
99 |
+
|
100 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
101 |
+
msgctxt "page_slug"
|
102 |
+
msgid "wishlist"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
106 |
msgid "While you visit our site, we’ll track:"
|
107 |
msgstr ""
|
108 |
|
109 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
110 |
+
msgid ""
|
111 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
112 |
+
"users your favourite products, and to create targeted email campaigns."
|
113 |
msgstr ""
|
114 |
|
115 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
116 |
+
msgid ""
|
117 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
118 |
+
"make them visible to the store staff"
|
119 |
msgstr ""
|
120 |
|
121 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
122 |
+
msgid ""
|
123 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
124 |
+
"browsing our site."
|
125 |
msgstr ""
|
126 |
|
127 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
128 |
+
msgid ""
|
129 |
+
"Members of our team have access to the information you provide us with. For "
|
130 |
+
"example, both Administrators and Shop Managers can access:"
|
131 |
msgstr ""
|
132 |
|
133 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
134 |
+
msgid ""
|
135 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
136 |
+
"settings of your wishlists"
|
137 |
msgstr ""
|
138 |
|
139 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
140 |
+
msgid ""
|
141 |
+
"Our team members have access to this information to offer you better deals "
|
142 |
+
"for the products you love."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
146 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
147 |
msgid "Customer wishlists"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
151 |
+
#: ../plugin-options/lists-options.php:23,
|
152 |
+
#: ../plugin-options/lists-options.php:30
|
153 |
msgid "Wishlists"
|
154 |
msgstr "Ønskeliste"
|
155 |
|
175 |
msgid "Title"
|
176 |
msgstr "Titel felt"
|
177 |
|
178 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
179 |
+
msgctxt "date when wishlist was created"
|
180 |
+
msgid "Created on"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
184 |
msgid "Visibility"
|
185 |
msgstr ""
|
188 |
msgid "Items added"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
192 |
+
msgctxt "[gutenberg]: block name"
|
193 |
+
msgid "YITH Add to wishlist"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
197 |
+
msgctxt "[gutenberg]: block description"
|
198 |
+
msgid "Shows Add to wishlist button"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
202 |
+
msgid ""
|
203 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
204 |
+
"product)"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
208 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
212 |
msgid "Button label (leave empty to use the default settings)"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
216 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
220 |
+
msgid ""
|
221 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
222 |
+
"settings)"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
226 |
+
msgid ""
|
227 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
231 |
+
msgid ""
|
232 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
233 |
+
"the default settings)"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
237 |
+
msgid ""
|
238 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
239 |
+
"settings)"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
243 |
+
msgctxt "[gutenberg]: block name"
|
244 |
+
msgid "YITH Wishlist"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
248 |
+
msgctxt "[gutenberg]: block description"
|
249 |
+
msgid "Shows a list of products in wishlist"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
253 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
257 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
258 |
msgid "Paginate"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
262 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
263 |
msgid "Do not paginate"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
267 |
msgid "Number of items to show per page"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
271 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
275 |
msgid "Share on:"
|
276 |
msgstr "Del på:"
|
277 |
|
278 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
279 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
280 |
msgid "Share on Facebook"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
284 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
285 |
msgid "Tweet on Twitter"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
289 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
290 |
msgid "Pin on Pinterest"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
294 |
msgid "Share via email"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
298 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
299 |
msgid "My wishlist on "
|
300 |
msgstr "ønskeliste"
|
301 |
|
302 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
303 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
304 |
msgid "Share on WhatsApp"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
308 |
msgid "Remove from list"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
312 |
msgid "Free!"
|
313 |
msgstr "Gratis!"
|
314 |
|
315 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
316 |
+
msgctxt ""
|
317 |
+
"Part of the template that shows price variation since addition to list; "
|
318 |
+
"placeholder will be replaced with a percentage"
|
319 |
+
msgid "Price is %1$s%%"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
323 |
+
msgctxt ""
|
324 |
+
"Part of the template that shows price variation since addition to list; "
|
325 |
+
"placeholder will be replaced with a price"
|
326 |
+
msgid "(Was %2$s when added in list)"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
#: ../includes/class.yith-wcwl.php:161
|
330 |
msgid "The item cannot be added to this wishlist"
|
331 |
msgstr ""
|
334 |
msgid "An error occurred while adding the products to the wishlist."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
338 |
msgid "Error. Unable to remove the product from the wishlist."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
342 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
343 |
msgid "Invalid wishlist."
|
344 |
msgstr ""
|
345 |
|
347 |
msgid "Invalid wishlist item."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#. translators: 1. Number of users.
|
351 |
+
#: ../includes/functions.yith-wcwl.php:216
|
352 |
msgid "%d user"
|
353 |
msgid_plural "%d users"
|
354 |
msgstr[0] ""
|
355 |
msgstr[1] ""
|
356 |
|
357 |
+
#: ../includes/functions.yith-wcwl.php:217
|
358 |
msgid "has this item in wishlist"
|
359 |
msgid_plural "have this item in wishlist"
|
360 |
msgstr[0] ""
|
361 |
msgstr[1] ""
|
362 |
|
363 |
+
#: ../includes/functions.yith-wcwl.php:219
|
364 |
msgid "You're the first"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../includes/functions.yith-wcwl.php:220
|
368 |
msgid "to add this item in wishlist"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
372 |
+
#: ../includes/functions.yith-wcwl.php:224
|
373 |
msgid "You and %s user"
|
374 |
msgid_plural "You and %d users"
|
375 |
msgstr[0] ""
|
376 |
msgstr[1] ""
|
377 |
|
378 |
+
#: ../includes/functions.yith-wcwl.php:225
|
379 |
msgid "have this item in wishlist"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../includes/functions.yith-wcwl.php:460
|
383 |
+
msgid "None"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: ../includes/functions.yith-wcwl.php:461
|
387 |
+
msgid "Custom"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: ../includes/functions.yith-wcwl.php:553
|
391 |
msgid "Shared"
|
392 |
msgstr "Delt"
|
393 |
|
394 |
+
#: ../includes/functions.yith-wcwl.php:557
|
395 |
+
msgid "Only people with a link to this list can see it"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ../includes/functions.yith-wcwl.php:563
|
399 |
msgid "Private"
|
400 |
msgstr "Privat"
|
401 |
|
402 |
+
#: ../includes/functions.yith-wcwl.php:567
|
403 |
+
msgid "Only you can see this list"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: ../includes/functions.yith-wcwl.php:573
|
407 |
msgid "Public"
|
408 |
msgstr "Offentlig"
|
409 |
|
410 |
+
#: ../includes/functions.yith-wcwl.php:577
|
411 |
+
msgid "Anyone can search for and see this list"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
415 |
+
msgctxt "Elementor widget name"
|
416 |
+
msgid "YITH Wishlist Add button"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
420 |
+
msgctxt "Elementor section title"
|
421 |
+
msgid "Product"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
425 |
+
msgctxt "Elementor control label"
|
426 |
+
msgid "Product ID"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
430 |
+
msgctxt "Elementor section title"
|
431 |
+
msgid "Labels"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
435 |
+
msgctxt "Elementor control label"
|
436 |
+
msgid "Button label"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
440 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
441 |
+
msgid "Add to wishlist"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
445 |
+
msgctxt "Elementor control label"
|
446 |
+
msgid "\"Browse wishlist\" label"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
450 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
451 |
+
msgid "Browse wishlist"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
455 |
+
msgctxt "Elementor control label"
|
456 |
+
msgid "\"Product already in wishlist\" label"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
460 |
+
msgid "Product already in wishlist"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
464 |
+
msgctxt "Elementor control label"
|
465 |
+
msgid "\"Product added to wishlist\" label"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
469 |
+
msgid "Product added to wishlist"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
473 |
+
msgctxt "Elementor section title"
|
474 |
+
msgid "Advanced"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
478 |
+
msgctxt "Elementor control label"
|
479 |
+
msgid "URL of the wishlist page"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
483 |
+
msgctxt "Elementor control label"
|
484 |
+
msgid "Icon for the button"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
488 |
+
msgctxt "Elementor control label"
|
489 |
+
msgid "Additional CSS classes for the button"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
493 |
+
#, fuzzy
|
494 |
+
#| msgid "Wishlist"
|
495 |
+
msgctxt "Elementor widget name"
|
496 |
+
msgid "YITH Wishlist"
|
497 |
+
msgstr "Ønskeliste"
|
498 |
+
|
499 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
500 |
+
#, fuzzy
|
501 |
+
#| msgid "Wishlist"
|
502 |
+
msgctxt "Elementor section title"
|
503 |
+
msgid "Wishlist"
|
504 |
+
msgstr "Ønskeliste"
|
505 |
+
|
506 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
507 |
+
#, fuzzy
|
508 |
+
#| msgid "Wishlist"
|
509 |
+
msgctxt "Elementor control label"
|
510 |
+
msgid "Wishlist ID"
|
511 |
+
msgstr "Ønskeliste"
|
512 |
+
|
513 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
514 |
+
msgctxt "Elementor section title"
|
515 |
+
msgid "Pagination"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
519 |
+
msgctxt "Elementor control label"
|
520 |
+
msgid "Paginate items"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
524 |
+
msgctxt "yith-woocommerce-wishlist"
|
525 |
+
msgid "Items per page"
|
526 |
msgstr ""
|
527 |
|
528 |
#: ../init.php:4
|
530 |
msgstr ""
|
531 |
|
532 |
#: ../init.php:5
|
533 |
+
msgid ""
|
534 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
535 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
536 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
537 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
538 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
539 |
msgstr ""
|
540 |
|
541 |
#: ../init.php:7
|
546 |
msgid "https://yithemes.com/"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../init.php:141
|
550 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../init.php:151
|
554 |
msgid "You can't activate the free version of"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../init.php:151
|
558 |
msgid "while you are using the premium one."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
562 |
+
#: ../plugin-options/settings-options.php:23
|
563 |
msgid "General Settings"
|
564 |
msgstr ""
|
565 |
|
566 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
567 |
+
msgid "After product is added to wishlist"
|
568 |
msgstr ""
|
569 |
|
570 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
571 |
+
msgid ""
|
572 |
+
"Choose the look of the Wishlist button when the product has already been "
|
573 |
+
"added to a wishlist"
|
574 |
msgstr ""
|
575 |
|
576 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
590 |
msgstr ""
|
591 |
|
592 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
593 |
+
msgid ""
|
594 |
+
"Loop options will be visible on Shop page, category pages, product "
|
595 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
596 |
+
"products' loop is used"
|
597 |
msgstr ""
|
598 |
|
599 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
612 |
+
msgid ""
|
613 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
614 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
615 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
616 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
617 |
msgstr ""
|
618 |
|
619 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
628 |
msgid "After \"Add to cart\" button"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
632 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
633 |
msgid "Use shortcode"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
637 |
msgid "Product page settings"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
641 |
msgid "Position of \"Add to wishlist\" on product page"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
645 |
+
msgid ""
|
646 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
647 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
648 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
649 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
653 |
msgid "After \"Add to cart\""
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
657 |
msgid "After thumbnails"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
661 |
msgid "After summary"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
665 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
666 |
msgid "Text customization"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
670 |
msgid "\"Add to wishlist\" text"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
674 |
msgid "Enter a text for \"Add to wishlist\" button"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
678 |
msgid "\"Product added\" text"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
682 |
+
msgid ""
|
683 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
684 |
+
"wishlist"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
688 |
msgid "Product added!"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
692 |
msgid "\"Browse wishlist\" text"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
696 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
700 |
msgid "\"Product already in wishlist\" text"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
704 |
+
msgid ""
|
705 |
+
"Enter the text for the message displayed when the user views a product that "
|
706 |
+
"is already in the wishlist"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
710 |
msgid "The product is already in your wishlist!"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
714 |
msgid "Style & Color customization"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
718 |
msgid "Style of \"Add to wishlist\""
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
722 |
+
msgid ""
|
723 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
727 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
728 |
msgid "Textual (anchor)"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
732 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
733 |
msgid "Button with theme style"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
737 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
738 |
msgid "Button with custom style"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
742 |
msgid "\"Add to wishlist\" button style"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
746 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
750 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
751 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
752 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
753 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
754 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
755 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
756 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
757 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
758 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
759 |
msgid "Background"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
763 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
764 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
765 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
766 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
767 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
768 |
msgid "Text"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
772 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
773 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
774 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
776 |
msgid "Border"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
780 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
784 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
785 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
786 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
787 |
msgid "Background Hover"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
791 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
792 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
793 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
794 |
msgid "Text Hover"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
798 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
799 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
800 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
801 |
msgid "Border Hover"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
805 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
806 |
msgid "Border radius"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
810 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
814 |
msgid "\"Add to wishlist\" icon"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
818 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
822 |
msgid "\"Add to wishlist\" custom icon"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
826 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
827 |
+
msgid ""
|
828 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
829 |
+
"32px x 32px)"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
833 |
msgid "\"Added to wishlist\" icon"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
837 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
841 |
msgid "Same used for Add to wishlist"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
845 |
msgid "\"Added to wishlist\" custom icon"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
849 |
msgid "Custom CSS"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
853 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: ../plugin-options/lists-options.php:32
|
857 |
+
msgid "Search list"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
#: ../plugin-options/settings-options.php:17
|
861 |
+
msgid ""
|
862 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
863 |
+
"the %s."
|
864 |
msgstr ""
|
865 |
|
866 |
#: ../plugin-options/settings-options.php:30
|
876 |
msgstr ""
|
877 |
|
878 |
#: ../plugin-options/settings-options.php:46
|
879 |
+
msgid ""
|
880 |
+
"In order to use this integration you have to install and activate YITH "
|
881 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
882 |
msgstr ""
|
883 |
|
884 |
#: ../plugin-options/settings-options.php:51
|
886 |
msgstr ""
|
887 |
|
888 |
#: ../plugin-options/settings-options.php:52
|
889 |
+
msgid ""
|
890 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
891 |
+
"class=\"thickbox\">Example</a>). %s"
|
892 |
msgstr ""
|
893 |
|
894 |
#: ../plugin-options/wishlist_page-options.php:17
|
900 |
msgstr ""
|
901 |
|
902 |
#: ../plugin-options/wishlist_page-options.php:25
|
903 |
+
msgid ""
|
904 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
905 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
906 |
+
"content"
|
907 |
msgstr ""
|
908 |
|
909 |
#: ../plugin-options/wishlist_page-options.php:38
|
910 |
msgid "Wishlist Detail Page"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
914 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
915 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
916 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
917 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
918 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
919 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
920 |
msgid "In wishlist table show"
|
921 |
msgstr ""
|
922 |
|
941 |
msgstr ""
|
942 |
|
943 |
#: ../plugin-options/wishlist_page-options.php:91
|
944 |
+
msgid ""
|
945 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
946 |
msgstr ""
|
947 |
|
948 |
#: ../plugin-options/wishlist_page-options.php:100
|
949 |
+
msgid ""
|
950 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
951 |
msgstr ""
|
952 |
|
953 |
#: ../plugin-options/wishlist_page-options.php:108
|
955 |
msgstr ""
|
956 |
|
957 |
#: ../plugin-options/wishlist_page-options.php:109
|
958 |
+
msgid ""
|
959 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
960 |
+
"wishlist page"
|
961 |
msgstr ""
|
962 |
|
963 |
#: ../plugin-options/wishlist_page-options.php:117
|
965 |
msgstr ""
|
966 |
|
967 |
#: ../plugin-options/wishlist_page-options.php:118
|
968 |
+
msgid ""
|
969 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
970 |
msgstr ""
|
971 |
|
972 |
#: ../plugin-options/wishlist_page-options.php:126
|
977 |
msgid "Enable this option to let users share their wishlist on social media"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
981 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
982 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
983 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
984 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
985 |
msgid "Share on social media"
|
986 |
msgstr ""
|
987 |
|
1005 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1009 |
msgid "My wishlist on %s"
|
1010 |
msgstr ""
|
1011 |
|
1014 |
msgstr ""
|
1015 |
|
1016 |
#: ../plugin-options/wishlist_page-options.php:198
|
1017 |
+
msgid ""
|
1018 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1019 |
+
"and Pinterest"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
#: ../plugin-options/wishlist_page-options.php:206
|
1032 |
msgstr ""
|
1033 |
|
1034 |
#: ../plugin-options/wishlist_page-options.php:227
|
1035 |
+
msgid ""
|
1036 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1037 |
+
"automatically generated for all users if they do not create any custom one"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1041 |
+
#, fuzzy
|
1042 |
+
#| msgid "My wishlist on "
|
1043 |
+
msgid "My wishlist"
|
1044 |
+
msgstr "ønskeliste"
|
1045 |
+
|
1046 |
#: ../plugin-options/wishlist_page-options.php:234
|
1047 |
msgid "\"Add to cart\" text"
|
1048 |
msgstr ""
|
1051 |
msgid "Enter a text for the \"Add to cart\" button"
|
1052 |
msgstr ""
|
1053 |
|
|
|
|
|
|
|
|
|
1054 |
#: ../plugin-options/wishlist_page-options.php:247
|
1055 |
msgid "Style & color customization"
|
1056 |
msgstr ""
|
1075 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1079 |
msgid "Set the radius for the \"Add to cart\" button"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1083 |
msgid "\"Add to cart\" icon"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1087 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1091 |
msgid "\"Add to cart\" custom icon"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1095 |
+
msgid ""
|
1096 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1097 |
+
"32px x 32px)"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1101 |
msgid "Primary button style"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1105 |
+
msgid ""
|
1106 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1107 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1108 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1112 |
+
msgid ""
|
1113 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1114 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1115 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1116 |
+
"small>"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1120 |
msgid "Secondary button style"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1124 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1125 |
+
msgid ""
|
1126 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1127 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1128 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1132 |
msgid "Wishlist table style"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1136 |
+
msgid ""
|
1137 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1141 |
msgid "Highlight color"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1145 |
+
msgid ""
|
1146 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1147 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1148 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1152 |
msgid "Share button text color"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1156 |
msgid "Choose colors for share buttons text"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1160 |
msgid "Text hover"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1164 |
msgid "Facebook share button icon"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1168 |
msgid "Select an icon for the Facebook share button"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1172 |
msgid "Facebook share button custom icon"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1176 |
+
msgid ""
|
1177 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1178 |
+
"32px)"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1182 |
msgid "Facebook share button style"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1186 |
msgid "Choose colors for Facebook share button"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1190 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1191 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1192 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1193 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1194 |
msgid "Background hover"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1198 |
msgid "Twitter share button icon"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1202 |
msgid "Select an icon for the Twitter share button"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1206 |
msgid "Twitter share button custom icon"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1210 |
+
msgid ""
|
1211 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1212 |
+
"32px)"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1216 |
msgid "Twitter share button style"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1220 |
msgid "Choose colors for Twitter share button"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1224 |
msgid "Pinterest share button icon"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1228 |
msgid "Select an icon for the Pinterest share button"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1232 |
msgid "Pinterest share button custom icon"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1236 |
+
msgid ""
|
1237 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1238 |
+
"x 32px)"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1242 |
msgid "Pinterest share button style"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1246 |
msgid "Choose colors for Pinterest share button"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1250 |
msgid "Email share button icon"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1254 |
msgid "Select an icon for the Email share button"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1258 |
msgid "Email share button custom icon"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1262 |
+
msgid ""
|
1263 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1264 |
+
"x 32px)"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1268 |
msgid "Email share button style"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1272 |
msgid "Choose colors for the Email share button"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1276 |
msgid "WhatsApp share button icon"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1280 |
msgid "Select an icon for the WhatsApp share button"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1284 |
msgid "WhatsApp share button custom icon"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1288 |
+
msgid ""
|
1289 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1290 |
+
"32px)"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1294 |
msgid "WhatsApp share button style"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1298 |
msgid "Choose colors for WhatsApp share button"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1302 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1303 |
+
msgid ""
|
1304 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1305 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1309 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1310 |
msgid "Upgrade"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1314 |
msgid "Premium Features"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1318 |
msgid "Allow your customers to create multiple wishlists"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1322 |
+
msgid ""
|
1323 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1324 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1325 |
+
"other parameters."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1329 |
msgid "Multiple Wishlist"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1333 |
msgid "Wishlist Private"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1337 |
msgid "A transparent privacy management"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1341 |
+
msgid ""
|
1342 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1343 |
+
"sharing the wishlist or making it private."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1347 |
+
msgid ""
|
1348 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1349 |
+
"page"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1353 |
+
msgid ""
|
1354 |
+
"And give only registered users the privilege to use the wishlist "
|
1355 |
+
"functionalities."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1359 |
msgid "Estimate Cost"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1363 |
msgid "Admin Panel"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1367 |
msgid "An advanced and more versatile management of the wishlist"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1371 |
+
msgid ""
|
1372 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1373 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1374 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1375 |
+
"social networks, and much more!"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1379 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1383 |
+
msgid ""
|
1384 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1385 |
+
"are more interested in and plan targeted marketing strategies."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1389 |
msgid "Search Wishlists"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1393 |
msgid "'ADD TO CART'"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1397 |
+
msgid ""
|
1398 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1402 |
+
msgid ""
|
1403 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1404 |
+
"customers who have added specific products to their wishlist and push them "
|
1405 |
+
"to buy."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1409 |
msgid "Let users buy the product right from the wishlist page"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1413 |
+
msgid ""
|
1414 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1415 |
+
"also the information about the size, colour or quantity selected when added "
|
1416 |
+
"to the wishlist."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1420 |
msgid "DISABLE WISHLIST"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1424 |
msgid "Choose a charming layout for your wishlist page"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1428 |
+
msgid ""
|
1429 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1430 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1431 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1432 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1433 |
+
"your website."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1437 |
msgid "UNLOGGED USERS"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1441 |
msgid "Wishlist widgets for the header and sidebars"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1445 |
+
msgid ""
|
1446 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1447 |
+
"in the header, in the sidebars, wherever you want."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1451 |
msgid "POPULAR TABLE"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1455 |
msgid "FUNCTIONALITIES"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1459 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1463 |
+
msgid ""
|
1464 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1465 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1466 |
+
"product and how much they can save when there’s a promotion running or a "
|
1467 |
+
"discount on the product they’ve added to the wishlist."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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"
|
1544 |
|
1545 |
+
#: ../templates/wishlist-view-header.php:48
|
1546 |
msgid "Save"
|
1547 |
msgstr "Gem"
|
1548 |
|
1549 |
+
#: ../templates/wishlist-view-header.php:51
|
1550 |
msgid "Cancel"
|
1551 |
msgstr "Annullere"
|
1552 |
|
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 ›"
|
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 ""
|
1598 |
|
1599 |
+
#: ../templates/wishlist-view.php:78
|
1600 |
msgid "Product name"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: ../templates/wishlist-view.php:86
|
1604 |
msgid "Unit price"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: ../templates/wishlist-view.php:95
|
1608 |
msgid "Quantity"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: ../templates/wishlist-view.php:104
|
1612 |
msgid "Stock status"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: ../templates/wishlist-view.php:122
|
1616 |
msgid "Arrange"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#. translators: date added label: 1 date added.
|
1620 |
+
#: ../templates/wishlist-view.php:238
|
1621 |
msgid "Added on: %s"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: ../templates/wishlist-view.php:287
|
1625 |
msgid "Remove"
|
1626 |
msgstr "Fjern"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
11 |
"Language: de_DE\n"
|
@@ -13,90 +13,146 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr "Premium Version"
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "YITH WooCommerce Wunschliste"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "Wunschliste"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "Artikel entfernt."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr ""
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "Wunschlisten"
|
102 |
|
@@ -122,6 +178,11 @@ msgstr ""
|
|
122 |
msgid "Title"
|
123 |
msgstr "Titel:"
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr ""
|
@@ -130,94 +191,144 @@ msgstr ""
|
|
130 |
msgid "Items added"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "Teile auf:"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "Auf Facebook teilen"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "Auf Twitter teilen"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "Auf Pinterest teilen"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "Meine Wunschliste bei %s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr "Kostenlos!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr ""
|
@@ -226,11 +337,12 @@ msgstr ""
|
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "Fehler: Artikel konnte nicht von der Wunschliste entfernt werden."
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr ""
|
236 |
|
@@ -238,58 +350,198 @@ msgstr ""
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr ""
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] ""
|
245 |
msgstr[1] ""
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] ""
|
251 |
msgstr[1] ""
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr ""
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] ""
|
265 |
msgstr[1] ""
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "geteilt"
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr "Privat"
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr "Öffentlich"
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgstr ""
|
294 |
|
295 |
#: ../init.php:4
|
@@ -297,7 +549,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,28 +565,31 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
msgstr "YITH Wishlist erfordert WooCommerce"
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "Allgemeine Einstellungen"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -349,7 +609,10 @@ msgid "Loop settings"
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
|
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -365,7 +628,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
|
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -380,196 +647,239 @@ msgstr ""
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "Benutze Shortcodes"
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
|
|
|
|
|
|
|
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "Nach \"in den Warenkorb\""
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "Nach dem Vorschaubild"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "Nach der Zusammenfassung"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "Artikel hinzugefügt Text"
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "Artikel hinzugefügt!"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "\"Wunschliste durchsuchen\" Text"
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "Artikel ist bereits auf der Wunschliste Text"
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
|
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr "Hintergrund"
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr "Text"
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr "Rand"
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "Benutzerdefiniertes CSS"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
msgstr ""
|
570 |
|
|
|
|
|
|
|
|
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
@@ -585,7 +895,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
585 |
msgstr "YITH WooCommerce Frequently Bought Together integration"
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
|
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
@@ -593,7 +905,9 @@ msgid "Enable slider in wishlist"
|
|
593 |
msgstr "Slider in Wunschliste aktivieren"
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -605,14 +919,23 @@ msgid "Wishlist page"
|
|
605 |
msgstr ""
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr ""
|
618 |
|
@@ -637,11 +960,13 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr ""
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -649,7 +974,9 @@ msgid "Redirect to cart"
|
|
649 |
msgstr "Zum Warenkorb weiterleiten"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -657,7 +984,8 @@ msgid "Remove if added to the cart"
|
|
657 |
msgstr "Entfernen wenn zum Warenkorb hinzugefügt"
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -668,7 +996,11 @@ msgstr ""
|
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr ""
|
674 |
|
@@ -692,7 +1024,7 @@ msgstr ""
|
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "Meine Wunschliste bei %s"
|
698 |
|
@@ -701,7 +1033,9 @@ msgid "Social text"
|
|
701 |
msgstr "Social Text"
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
|
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -717,9 +1051,17 @@ msgid "Default wishlist name"
|
|
717 |
msgstr ""
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
725 |
msgstr ""
|
@@ -728,10 +1070,6 @@ msgstr ""
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr ""
|
@@ -756,336 +1094,396 @@ msgstr ""
|
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
|
|
|
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
|
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
|
|
|
|
|
|
|
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
|
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
|
|
|
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
|
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
|
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
960 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1522,50 @@ msgstr ""
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr "Nach einem Angebot Fragen"
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "Titel bearbeiten"
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr "Speichern"
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr "Abbrechen"
|
1166 |
|
@@ -1180,94 +1585,61 @@ msgstr ""
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "Auf Lager"
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr "Verschieben"
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "Artikel entfernen"
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr "Entfernen"
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "Wunschliste"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr "Premium Version"
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "YITH WooCommerce Wunschliste"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "Wunschliste"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
63 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
64 |
+
msgid "View ›"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
68 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
69 |
+
msgid "or"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
73 |
+
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
77 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
78 |
msgid "Product successfully removed."
|
79 |
msgstr "Artikel entfernt."
|
80 |
|
81 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
82 |
msgid "Please, make sure to enter a valid title"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
86 |
+
msgid ""
|
87 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
88 |
+
"are enabled."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
92 |
msgid "Product added to cart successfully"
|
93 |
msgstr ""
|
94 |
|
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 ""
|
102 |
+
|
103 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
104 |
+
msgctxt "page_slug"
|
105 |
+
msgid "wishlist"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
109 |
msgid "While you visit our site, we’ll track:"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
113 |
+
msgid ""
|
114 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
115 |
+
"users your favourite products, and to create targeted email campaigns."
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
119 |
+
msgid ""
|
120 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
121 |
+
"make them visible to the store staff"
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
125 |
+
msgid ""
|
126 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
127 |
+
"browsing our site."
|
128 |
msgstr ""
|
129 |
|
130 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
131 |
+
msgid ""
|
132 |
+
"Members of our team have access to the information you provide us with. For "
|
133 |
+
"example, both Administrators and Shop Managers can access:"
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
137 |
+
msgid ""
|
138 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
139 |
+
"settings of your wishlists"
|
140 |
msgstr ""
|
141 |
|
142 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
143 |
+
msgid ""
|
144 |
+
"Our team members have access to this information to offer you better deals "
|
145 |
+
"for the products you love."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
149 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
150 |
msgid "Customer wishlists"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
154 |
+
#: ../plugin-options/lists-options.php:23,
|
155 |
+
#: ../plugin-options/lists-options.php:30
|
156 |
msgid "Wishlists"
|
157 |
msgstr "Wunschlisten"
|
158 |
|
178 |
msgid "Title"
|
179 |
msgstr "Titel:"
|
180 |
|
181 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
182 |
+
msgctxt "date when wishlist was created"
|
183 |
+
msgid "Created on"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
187 |
msgid "Visibility"
|
188 |
msgstr ""
|
191 |
msgid "Items added"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
195 |
+
msgctxt "[gutenberg]: block name"
|
196 |
+
msgid "YITH Add to wishlist"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
200 |
+
msgctxt "[gutenberg]: block description"
|
201 |
+
msgid "Shows Add to wishlist button"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
205 |
+
msgid ""
|
206 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
207 |
+
"product)"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
211 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
215 |
msgid "Button label (leave empty to use the default settings)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
219 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
223 |
+
msgid ""
|
224 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
225 |
+
"settings)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
229 |
+
msgid ""
|
230 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
234 |
+
msgid ""
|
235 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
236 |
+
"the default settings)"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
240 |
+
msgid ""
|
241 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
242 |
+
"settings)"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
246 |
+
msgctxt "[gutenberg]: block name"
|
247 |
+
msgid "YITH Wishlist"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
251 |
+
msgctxt "[gutenberg]: block description"
|
252 |
+
msgid "Shows a list of products in wishlist"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
256 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
260 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
261 |
msgid "Paginate"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
265 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
266 |
msgid "Do not paginate"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
270 |
msgid "Number of items to show per page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
274 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
278 |
msgid "Share on:"
|
279 |
msgstr "Teile auf:"
|
280 |
|
281 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
282 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
283 |
msgid "Share on Facebook"
|
284 |
msgstr "Auf Facebook teilen"
|
285 |
|
286 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
287 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
288 |
msgid "Tweet on Twitter"
|
289 |
msgstr "Auf Twitter teilen"
|
290 |
|
291 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
292 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
293 |
msgid "Pin on Pinterest"
|
294 |
msgstr "Auf Pinterest teilen"
|
295 |
|
296 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
297 |
msgid "Share via email"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
301 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
302 |
msgid "My wishlist on "
|
303 |
msgstr "Meine Wunschliste bei %s"
|
304 |
|
305 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
306 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
307 |
msgid "Share on WhatsApp"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
311 |
msgid "Remove from list"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
315 |
msgid "Free!"
|
316 |
msgstr "Kostenlos!"
|
317 |
|
318 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
319 |
+
msgctxt ""
|
320 |
+
"Part of the template that shows price variation since addition to list; "
|
321 |
+
"placeholder will be replaced with a percentage"
|
322 |
+
msgid "Price is %1$s%%"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
326 |
+
msgctxt ""
|
327 |
+
"Part of the template that shows price variation since addition to list; "
|
328 |
+
"placeholder will be replaced with a price"
|
329 |
+
msgid "(Was %2$s when added in list)"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
#: ../includes/class.yith-wcwl.php:161
|
333 |
msgid "The item cannot be added to this wishlist"
|
334 |
msgstr ""
|
337 |
msgid "An error occurred while adding the products to the wishlist."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
341 |
msgid "Error. Unable to remove the product from the wishlist."
|
342 |
msgstr "Fehler: Artikel konnte nicht von der Wunschliste entfernt werden."
|
343 |
|
344 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
345 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
346 |
msgid "Invalid wishlist."
|
347 |
msgstr ""
|
348 |
|
350 |
msgid "Invalid wishlist item."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#. translators: 1. Number of users.
|
354 |
+
#: ../includes/functions.yith-wcwl.php:216
|
355 |
msgid "%d user"
|
356 |
msgid_plural "%d users"
|
357 |
msgstr[0] ""
|
358 |
msgstr[1] ""
|
359 |
|
360 |
+
#: ../includes/functions.yith-wcwl.php:217
|
361 |
msgid "has this item in wishlist"
|
362 |
msgid_plural "have this item in wishlist"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ../includes/functions.yith-wcwl.php:219
|
367 |
msgid "You're the first"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../includes/functions.yith-wcwl.php:220
|
371 |
msgid "to add this item in wishlist"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
375 |
+
#: ../includes/functions.yith-wcwl.php:224
|
376 |
msgid "You and %s user"
|
377 |
msgid_plural "You and %d users"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ../includes/functions.yith-wcwl.php:225
|
382 |
msgid "have this item in wishlist"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/functions.yith-wcwl.php:460
|
386 |
+
msgid "None"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../includes/functions.yith-wcwl.php:461
|
390 |
+
#, fuzzy
|
391 |
+
#| msgid "Custom CSS"
|
392 |
+
msgid "Custom"
|
393 |
+
msgstr "Benutzerdefiniertes CSS"
|
394 |
+
|
395 |
+
#: ../includes/functions.yith-wcwl.php:553
|
396 |
msgid "Shared"
|
397 |
msgstr "geteilt"
|
398 |
|
399 |
+
#: ../includes/functions.yith-wcwl.php:557
|
400 |
+
msgid "Only people with a link to this list can see it"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../includes/functions.yith-wcwl.php:563
|
404 |
msgid "Private"
|
405 |
msgstr "Privat"
|
406 |
|
407 |
+
#: ../includes/functions.yith-wcwl.php:567
|
408 |
+
msgid "Only you can see this list"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../includes/functions.yith-wcwl.php:573
|
412 |
msgid "Public"
|
413 |
msgstr "Öffentlich"
|
414 |
|
415 |
+
#: ../includes/functions.yith-wcwl.php:577
|
416 |
+
msgid "Anyone can search for and see this list"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
420 |
+
msgctxt "Elementor widget name"
|
421 |
+
msgid "YITH Wishlist Add button"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
425 |
+
#, fuzzy
|
426 |
+
#| msgid "Product added!"
|
427 |
+
msgctxt "Elementor section title"
|
428 |
+
msgid "Product"
|
429 |
+
msgstr "Artikel hinzugefügt!"
|
430 |
+
|
431 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
432 |
+
#, fuzzy
|
433 |
+
#| msgid "Product added!"
|
434 |
+
msgctxt "Elementor control label"
|
435 |
+
msgid "Product ID"
|
436 |
+
msgstr "Artikel hinzugefügt!"
|
437 |
+
|
438 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
439 |
+
msgctxt "Elementor section title"
|
440 |
+
msgid "Labels"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
444 |
+
msgctxt "Elementor control label"
|
445 |
+
msgid "Button label"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
449 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
450 |
+
msgid "Add to wishlist"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
454 |
+
#, fuzzy
|
455 |
+
#| msgid "\"Browse wishlist\" text"
|
456 |
+
msgctxt "Elementor control label"
|
457 |
+
msgid "\"Browse wishlist\" label"
|
458 |
+
msgstr "\"Wunschliste durchsuchen\" Text"
|
459 |
+
|
460 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
461 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
462 |
+
msgid "Browse wishlist"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
466 |
+
#, fuzzy
|
467 |
+
#| msgid "\"Product already in wishlist\" text"
|
468 |
+
msgctxt "Elementor control label"
|
469 |
+
msgid "\"Product already in wishlist\" label"
|
470 |
+
msgstr "Artikel ist bereits auf der Wunschliste Text"
|
471 |
+
|
472 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
473 |
+
#, fuzzy
|
474 |
+
#| msgid "\"Product already in wishlist\" text"
|
475 |
+
msgid "Product already in wishlist"
|
476 |
+
msgstr "Artikel ist bereits auf der Wunschliste Text"
|
477 |
+
|
478 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
479 |
+
#, fuzzy
|
480 |
+
#| msgid "\"Product already in wishlist\" text"
|
481 |
+
msgctxt "Elementor control label"
|
482 |
+
msgid "\"Product added to wishlist\" label"
|
483 |
+
msgstr "Artikel ist bereits auf der Wunschliste Text"
|
484 |
+
|
485 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
486 |
+
#, fuzzy
|
487 |
+
#| msgid "\"Product already in wishlist\" text"
|
488 |
+
msgid "Product added to wishlist"
|
489 |
+
msgstr "Artikel ist bereits auf der Wunschliste Text"
|
490 |
+
|
491 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
492 |
+
msgctxt "Elementor section title"
|
493 |
+
msgid "Advanced"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
497 |
+
msgctxt "Elementor control label"
|
498 |
+
msgid "URL of the wishlist page"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
502 |
+
msgctxt "Elementor control label"
|
503 |
+
msgid "Icon for the button"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
507 |
+
msgctxt "Elementor control label"
|
508 |
+
msgid "Additional CSS classes for the button"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
512 |
+
#, fuzzy
|
513 |
+
#| msgid "Wishlist"
|
514 |
+
msgctxt "Elementor widget name"
|
515 |
+
msgid "YITH Wishlist"
|
516 |
+
msgstr "Wunschliste"
|
517 |
+
|
518 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
519 |
+
#, fuzzy
|
520 |
+
#| msgid "Wishlist"
|
521 |
+
msgctxt "Elementor section title"
|
522 |
+
msgid "Wishlist"
|
523 |
+
msgstr "Wunschliste"
|
524 |
+
|
525 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
526 |
+
#, fuzzy
|
527 |
+
#| msgid "Wishlist"
|
528 |
+
msgctxt "Elementor control label"
|
529 |
+
msgid "Wishlist ID"
|
530 |
+
msgstr "Wunschliste"
|
531 |
+
|
532 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
533 |
+
msgctxt "Elementor section title"
|
534 |
+
msgid "Pagination"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
538 |
+
msgctxt "Elementor control label"
|
539 |
+
msgid "Paginate items"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
543 |
+
msgctxt "yith-woocommerce-wishlist"
|
544 |
+
msgid "Items per page"
|
545 |
msgstr ""
|
546 |
|
547 |
#: ../init.php:4
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../init.php:5
|
552 |
+
msgid ""
|
553 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
554 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
555 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
556 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
557 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
558 |
msgstr ""
|
559 |
|
560 |
#: ../init.php:7
|
565 |
msgid "https://yithemes.com/"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../init.php:141
|
569 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
570 |
msgstr "YITH Wishlist erfordert WooCommerce"
|
571 |
|
572 |
+
#: ../init.php:151
|
573 |
msgid "You can't activate the free version of"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../init.php:151
|
577 |
msgid "while you are using the premium one."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
581 |
+
#: ../plugin-options/settings-options.php:23
|
582 |
msgid "General Settings"
|
583 |
msgstr "Allgemeine Einstellungen"
|
584 |
|
585 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
586 |
+
msgid "After product is added to wishlist"
|
587 |
msgstr ""
|
588 |
|
589 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
590 |
+
msgid ""
|
591 |
+
"Choose the look of the Wishlist button when the product has already been "
|
592 |
+
"added to a wishlist"
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
612 |
+
msgid ""
|
613 |
+
"Loop options will be visible on Shop page, category pages, product "
|
614 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
615 |
+
"products' loop is used"
|
616 |
msgstr ""
|
617 |
|
618 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
628 |
msgstr ""
|
629 |
|
630 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
631 |
+
msgid ""
|
632 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
633 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
634 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
635 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
636 |
msgstr ""
|
637 |
|
638 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
647 |
msgid "After \"Add to cart\" button"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
651 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
652 |
msgid "Use shortcode"
|
653 |
msgstr "Benutze Shortcodes"
|
654 |
|
655 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
656 |
msgid "Product page settings"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
660 |
msgid "Position of \"Add to wishlist\" on product page"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
664 |
+
msgid ""
|
665 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
666 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
667 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
668 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
672 |
msgid "After \"Add to cart\""
|
673 |
msgstr "Nach \"in den Warenkorb\""
|
674 |
|
675 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
676 |
msgid "After thumbnails"
|
677 |
msgstr "Nach dem Vorschaubild"
|
678 |
|
679 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
680 |
msgid "After summary"
|
681 |
msgstr "Nach der Zusammenfassung"
|
682 |
|
683 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
684 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
685 |
msgid "Text customization"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
689 |
msgid "\"Add to wishlist\" text"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
693 |
msgid "Enter a text for \"Add to wishlist\" button"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
697 |
msgid "\"Product added\" text"
|
698 |
msgstr "Artikel hinzugefügt Text"
|
699 |
|
700 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
701 |
+
msgid ""
|
702 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
703 |
+
"wishlist"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
707 |
msgid "Product added!"
|
708 |
msgstr "Artikel hinzugefügt!"
|
709 |
|
710 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
711 |
msgid "\"Browse wishlist\" text"
|
712 |
msgstr "\"Wunschliste durchsuchen\" Text"
|
713 |
|
714 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
715 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
719 |
msgid "\"Product already in wishlist\" text"
|
720 |
msgstr "Artikel ist bereits auf der Wunschliste Text"
|
721 |
|
722 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
723 |
+
msgid ""
|
724 |
+
"Enter the text for the message displayed when the user views a product that "
|
725 |
+
"is already in the wishlist"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
729 |
msgid "The product is already in your wishlist!"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
733 |
msgid "Style & Color customization"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
737 |
msgid "Style of \"Add to wishlist\""
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
741 |
+
msgid ""
|
742 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
746 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
747 |
msgid "Textual (anchor)"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
751 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
752 |
msgid "Button with theme style"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
756 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
757 |
msgid "Button with custom style"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
761 |
msgid "\"Add to wishlist\" button style"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
765 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
769 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
770 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
771 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
772 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
773 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
774 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
776 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
777 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
778 |
msgid "Background"
|
779 |
msgstr "Hintergrund"
|
780 |
|
781 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
782 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
783 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
784 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
785 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
786 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
787 |
msgid "Text"
|
788 |
msgstr "Text"
|
789 |
|
790 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
791 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
792 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
793 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
794 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
795 |
msgid "Border"
|
796 |
msgstr "Rand"
|
797 |
|
798 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
799 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
803 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
804 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
805 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
806 |
msgid "Background Hover"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
810 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
811 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
812 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
813 |
msgid "Text Hover"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
817 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
818 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
819 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
820 |
msgid "Border Hover"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
824 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
825 |
msgid "Border radius"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
829 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
833 |
msgid "\"Add to wishlist\" icon"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
837 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
841 |
msgid "\"Add to wishlist\" custom icon"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
845 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
846 |
+
msgid ""
|
847 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
848 |
+
"32px x 32px)"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
852 |
msgid "\"Added to wishlist\" icon"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
856 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
860 |
msgid "Same used for Add to wishlist"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
864 |
msgid "\"Added to wishlist\" custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
868 |
msgid "Custom CSS"
|
869 |
msgstr "Benutzerdefiniertes CSS"
|
870 |
|
871 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
872 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../plugin-options/lists-options.php:32
|
876 |
+
msgid "Search list"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
#: ../plugin-options/settings-options.php:17
|
880 |
+
msgid ""
|
881 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
882 |
+
"the %s."
|
883 |
msgstr ""
|
884 |
|
885 |
#: ../plugin-options/settings-options.php:30
|
895 |
msgstr "YITH WooCommerce Frequently Bought Together integration"
|
896 |
|
897 |
#: ../plugin-options/settings-options.php:46
|
898 |
+
msgid ""
|
899 |
+
"In order to use this integration you have to install and activate YITH "
|
900 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
901 |
msgstr ""
|
902 |
|
903 |
#: ../plugin-options/settings-options.php:51
|
905 |
msgstr "Slider in Wunschliste aktivieren"
|
906 |
|
907 |
#: ../plugin-options/settings-options.php:52
|
908 |
+
msgid ""
|
909 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
910 |
+
"class=\"thickbox\">Example</a>). %s"
|
911 |
msgstr ""
|
912 |
|
913 |
#: ../plugin-options/wishlist_page-options.php:17
|
919 |
msgstr ""
|
920 |
|
921 |
#: ../plugin-options/wishlist_page-options.php:25
|
922 |
+
msgid ""
|
923 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
924 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
925 |
+
"content"
|
926 |
msgstr ""
|
927 |
|
928 |
#: ../plugin-options/wishlist_page-options.php:38
|
929 |
msgid "Wishlist Detail Page"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
933 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
934 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
935 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
936 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
937 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
938 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
939 |
msgid "In wishlist table show"
|
940 |
msgstr ""
|
941 |
|
960 |
msgstr ""
|
961 |
|
962 |
#: ../plugin-options/wishlist_page-options.php:91
|
963 |
+
msgid ""
|
964 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
965 |
msgstr ""
|
966 |
|
967 |
#: ../plugin-options/wishlist_page-options.php:100
|
968 |
+
msgid ""
|
969 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
970 |
msgstr ""
|
971 |
|
972 |
#: ../plugin-options/wishlist_page-options.php:108
|
974 |
msgstr "Zum Warenkorb weiterleiten"
|
975 |
|
976 |
#: ../plugin-options/wishlist_page-options.php:109
|
977 |
+
msgid ""
|
978 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
979 |
+
"wishlist page"
|
980 |
msgstr ""
|
981 |
|
982 |
#: ../plugin-options/wishlist_page-options.php:117
|
984 |
msgstr "Entfernen wenn zum Warenkorb hinzugefügt"
|
985 |
|
986 |
#: ../plugin-options/wishlist_page-options.php:118
|
987 |
+
msgid ""
|
988 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
989 |
msgstr ""
|
990 |
|
991 |
#: ../plugin-options/wishlist_page-options.php:126
|
996 |
msgid "Enable this option to let users share their wishlist on social media"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1000 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1001 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1002 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1003 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1004 |
msgid "Share on social media"
|
1005 |
msgstr ""
|
1006 |
|
1024 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1028 |
msgid "My wishlist on %s"
|
1029 |
msgstr "Meine Wunschliste bei %s"
|
1030 |
|
1033 |
msgstr "Social Text"
|
1034 |
|
1035 |
#: ../plugin-options/wishlist_page-options.php:198
|
1036 |
+
msgid ""
|
1037 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1038 |
+
"and Pinterest"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: ../plugin-options/wishlist_page-options.php:206
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: ../plugin-options/wishlist_page-options.php:227
|
1054 |
+
msgid ""
|
1055 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1056 |
+
"automatically generated for all users if they do not create any custom one"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1060 |
+
#, fuzzy
|
1061 |
+
#| msgid "My wishlist on "
|
1062 |
+
msgid "My wishlist"
|
1063 |
+
msgstr "Meine Wunschliste bei %s"
|
1064 |
+
|
1065 |
#: ../plugin-options/wishlist_page-options.php:234
|
1066 |
msgid "\"Add to cart\" text"
|
1067 |
msgstr ""
|
1070 |
msgid "Enter a text for the \"Add to cart\" button"
|
1071 |
msgstr ""
|
1072 |
|
|
|
|
|
|
|
|
|
1073 |
#: ../plugin-options/wishlist_page-options.php:247
|
1074 |
msgid "Style & color customization"
|
1075 |
msgstr ""
|
1094 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1098 |
msgid "Set the radius for the \"Add to cart\" button"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1102 |
msgid "\"Add to cart\" icon"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1106 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1110 |
msgid "\"Add to cart\" custom icon"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1114 |
+
msgid ""
|
1115 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1116 |
+
"32px x 32px)"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1120 |
msgid "Primary button style"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1124 |
+
msgid ""
|
1125 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1126 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1127 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1131 |
+
msgid ""
|
1132 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1133 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1134 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1135 |
+
"small>"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1139 |
msgid "Secondary button style"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1143 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1144 |
+
msgid ""
|
1145 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1146 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1147 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1151 |
msgid "Wishlist table style"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1155 |
+
msgid ""
|
1156 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1160 |
msgid "Highlight color"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1164 |
+
msgid ""
|
1165 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1166 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1167 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1171 |
msgid "Share button text color"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1175 |
msgid "Choose colors for share buttons text"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1179 |
msgid "Text hover"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1183 |
msgid "Facebook share button icon"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1187 |
msgid "Select an icon for the Facebook share button"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1191 |
msgid "Facebook share button custom icon"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1195 |
+
msgid ""
|
1196 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1197 |
+
"32px)"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1201 |
msgid "Facebook share button style"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1205 |
msgid "Choose colors for Facebook share button"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1209 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1210 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1211 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1212 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1213 |
msgid "Background hover"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1217 |
msgid "Twitter share button icon"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1221 |
msgid "Select an icon for the Twitter share button"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1225 |
msgid "Twitter share button custom icon"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1229 |
+
msgid ""
|
1230 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1231 |
+
"32px)"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1235 |
msgid "Twitter share button style"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1239 |
msgid "Choose colors for Twitter share button"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1243 |
msgid "Pinterest share button icon"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1247 |
msgid "Select an icon for the Pinterest share button"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1251 |
msgid "Pinterest share button custom icon"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1255 |
+
msgid ""
|
1256 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1257 |
+
"x 32px)"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1261 |
msgid "Pinterest share button style"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1265 |
msgid "Choose colors for Pinterest share button"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1269 |
msgid "Email share button icon"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1273 |
msgid "Select an icon for the Email share button"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1277 |
msgid "Email share button custom icon"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1281 |
+
msgid ""
|
1282 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1283 |
+
"x 32px)"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1287 |
msgid "Email share button style"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1291 |
msgid "Choose colors for the Email share button"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1295 |
msgid "WhatsApp share button icon"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1299 |
msgid "Select an icon for the WhatsApp share button"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1303 |
msgid "WhatsApp share button custom icon"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1307 |
+
msgid ""
|
1308 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1309 |
+
"32px)"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1313 |
msgid "WhatsApp share button style"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1317 |
msgid "Choose colors for WhatsApp share button"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1321 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1322 |
+
msgid ""
|
1323 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1324 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1328 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1329 |
msgid "Upgrade"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1333 |
msgid "Premium Features"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1337 |
msgid "Allow your customers to create multiple wishlists"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1341 |
+
msgid ""
|
1342 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1343 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1344 |
+
"other parameters."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1348 |
msgid "Multiple Wishlist"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1352 |
msgid "Wishlist Private"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1356 |
msgid "A transparent privacy management"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1360 |
+
msgid ""
|
1361 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1362 |
+
"sharing the wishlist or making it private."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1366 |
+
msgid ""
|
1367 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1368 |
+
"page"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1372 |
+
msgid ""
|
1373 |
+
"And give only registered users the privilege to use the wishlist "
|
1374 |
+
"functionalities."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1378 |
msgid "Estimate Cost"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1382 |
msgid "Admin Panel"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1386 |
msgid "An advanced and more versatile management of the wishlist"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1390 |
+
msgid ""
|
1391 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1392 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1393 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1394 |
+
"social networks, and much more!"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1398 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1402 |
+
msgid ""
|
1403 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1404 |
+
"are more interested in and plan targeted marketing strategies."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1408 |
msgid "Search Wishlists"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1412 |
msgid "'ADD TO CART'"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1416 |
+
msgid ""
|
1417 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1421 |
+
msgid ""
|
1422 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1423 |
+
"customers who have added specific products to their wishlist and push them "
|
1424 |
+
"to buy."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1428 |
msgid "Let users buy the product right from the wishlist page"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1432 |
+
msgid ""
|
1433 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1434 |
+
"also the information about the size, colour or quantity selected when added "
|
1435 |
+
"to the wishlist."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1439 |
msgid "DISABLE WISHLIST"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1443 |
msgid "Choose a charming layout for your wishlist page"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1447 |
+
msgid ""
|
1448 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1449 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1450 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1451 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1452 |
+
"your website."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1456 |
msgid "UNLOGGED USERS"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1460 |
msgid "Wishlist widgets for the header and sidebars"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1464 |
+
msgid ""
|
1465 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1466 |
+
"in the header, in the sidebars, wherever you want."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1470 |
msgid "POPULAR TABLE"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1474 |
msgid "FUNCTIONALITIES"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1478 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1482 |
+
msgid ""
|
1483 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1484 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1485 |
+
"product and how much they can save when there’s a promotion running or a "
|
1486 |
+
"discount on the product they’ve added to the wishlist."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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"
|
1563 |
|
1564 |
+
#: ../templates/wishlist-view-header.php:48
|
1565 |
msgid "Save"
|
1566 |
msgstr "Speichern"
|
1567 |
|
1568 |
+
#: ../templates/wishlist-view-header.php:51
|
1569 |
msgid "Cancel"
|
1570 |
msgstr "Abbrechen"
|
1571 |
|
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 ›"
|
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 ""
|
1617 |
|
1618 |
+
#: ../templates/wishlist-view.php:78
|
1619 |
msgid "Product name"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: ../templates/wishlist-view.php:86
|
1623 |
msgid "Unit price"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: ../templates/wishlist-view.php:95
|
1627 |
msgid "Quantity"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../templates/wishlist-view.php:104
|
1631 |
msgid "Stock status"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: ../templates/wishlist-view.php:122
|
1635 |
msgid "Arrange"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#. translators: date added label: 1 date added.
|
1639 |
+
#: ../templates/wishlist-view.php:238
|
1640 |
msgid "Added on: %s"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: ../templates/wishlist-view.php:287
|
1644 |
msgid "Remove"
|
1645 |
msgstr "Entfernen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
10 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
11 |
"Language: es_AR\n"
|
@@ -13,90 +13,146 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "Agregar a la Lista de deseos"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "Lista de deseos"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "Bien, lo hemos eliminado de tu lista..."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr ""
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "Lista de deseos"
|
102 |
|
@@ -122,6 +178,11 @@ msgstr ""
|
|
122 |
msgid "Title"
|
123 |
msgstr ""
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr ""
|
@@ -130,94 +191,144 @@ msgstr ""
|
|
130 |
msgid "Items added"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "Compartir en:"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "Compartir en Facebook"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "Tuitear en Twitter"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "Compartir en Pinterest"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "Mi lista de deseos en %s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr ""
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr ""
|
@@ -226,11 +337,14 @@ msgstr ""
|
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
-
msgstr "
|
|
|
|
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr ""
|
236 |
|
@@ -238,58 +352,198 @@ msgstr ""
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr ""
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] ""
|
245 |
msgstr[1] ""
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] ""
|
251 |
msgstr[1] ""
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr ""
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] ""
|
265 |
msgstr[1] ""
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "Compartir en:"
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgstr ""
|
294 |
|
295 |
#: ../init.php:4
|
@@ -297,7 +551,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,28 +567,31 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "Configuraciones generales"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -349,7 +611,10 @@ msgid "Loop settings"
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
|
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -365,7 +630,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
|
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -380,196 +649,239 @@ msgstr ""
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "Usar shortcode"
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
|
|
|
|
|
|
|
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "Después de \"Agregar al carrito\""
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "Después de las miniaturas"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "Después del resúmen"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "¡Agregado!"
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "¡Agregado!"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "Ir a la Lista de deseos"
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "Ya está en tu lista de deseos!"
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
|
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "CSS personalizado"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
msgstr ""
|
570 |
|
|
|
|
|
|
|
|
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
@@ -585,7 +897,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
585 |
msgstr ""
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
|
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
@@ -593,7 +907,9 @@ msgid "Enable slider in wishlist"
|
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -605,14 +921,23 @@ msgid "Wishlist page"
|
|
605 |
msgstr ""
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr ""
|
618 |
|
@@ -637,11 +962,13 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr ""
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -649,7 +976,9 @@ msgid "Redirect to cart"
|
|
649 |
msgstr "Redireccionar al carrito"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -657,7 +986,8 @@ msgid "Remove if added to the cart"
|
|
657 |
msgstr "Eliminar después de agregar al carrito"
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -668,7 +998,11 @@ msgstr ""
|
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr ""
|
674 |
|
@@ -692,7 +1026,7 @@ msgstr ""
|
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "Mi lista de deseos en %s"
|
698 |
|
@@ -701,7 +1035,9 @@ msgid "Social text"
|
|
701 |
msgstr "Texto de sociales"
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
|
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -717,9 +1053,17 @@ msgid "Default wishlist name"
|
|
717 |
msgstr ""
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
725 |
msgstr ""
|
@@ -728,10 +1072,6 @@ msgstr ""
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr ""
|
@@ -756,336 +1096,396 @@ msgstr ""
|
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
|
|
|
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
|
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
|
|
|
|
|
|
|
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
|
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
|
|
|
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
|
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
|
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
960 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1524,50 @@ msgstr ""
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "Título de la Lista de deseos"
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr ""
|
1166 |
|
@@ -1180,94 +1587,61 @@ msgstr ""
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "¡Disponible!"
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "Ya no lo quiero"
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr ""
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "Lista de deseos"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "Agregar a la Lista de deseos"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "Lista de deseos"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
63 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
64 |
+
msgid "View ›"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
68 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
69 |
+
msgid "or"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
73 |
+
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
77 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
78 |
msgid "Product successfully removed."
|
79 |
msgstr "Bien, lo hemos eliminado de tu lista..."
|
80 |
|
81 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
82 |
msgid "Please, make sure to enter a valid title"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
86 |
+
msgid ""
|
87 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
88 |
+
"are enabled."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
92 |
msgid "Product added to cart successfully"
|
93 |
msgstr ""
|
94 |
|
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 ""
|
102 |
+
|
103 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
104 |
+
msgctxt "page_slug"
|
105 |
+
msgid "wishlist"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
109 |
msgid "While you visit our site, we’ll track:"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
113 |
+
msgid ""
|
114 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
115 |
+
"users your favourite products, and to create targeted email campaigns."
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
119 |
+
msgid ""
|
120 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
121 |
+
"make them visible to the store staff"
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
125 |
+
msgid ""
|
126 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
127 |
+
"browsing our site."
|
128 |
msgstr ""
|
129 |
|
130 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
131 |
+
msgid ""
|
132 |
+
"Members of our team have access to the information you provide us with. For "
|
133 |
+
"example, both Administrators and Shop Managers can access:"
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
137 |
+
msgid ""
|
138 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
139 |
+
"settings of your wishlists"
|
140 |
msgstr ""
|
141 |
|
142 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
143 |
+
msgid ""
|
144 |
+
"Our team members have access to this information to offer you better deals "
|
145 |
+
"for the products you love."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
149 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
150 |
msgid "Customer wishlists"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
154 |
+
#: ../plugin-options/lists-options.php:23,
|
155 |
+
#: ../plugin-options/lists-options.php:30
|
156 |
msgid "Wishlists"
|
157 |
msgstr "Lista de deseos"
|
158 |
|
178 |
msgid "Title"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
182 |
+
msgctxt "date when wishlist was created"
|
183 |
+
msgid "Created on"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
187 |
msgid "Visibility"
|
188 |
msgstr ""
|
191 |
msgid "Items added"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
195 |
+
msgctxt "[gutenberg]: block name"
|
196 |
+
msgid "YITH Add to wishlist"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
200 |
+
msgctxt "[gutenberg]: block description"
|
201 |
+
msgid "Shows Add to wishlist button"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
205 |
+
msgid ""
|
206 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
207 |
+
"product)"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
211 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
215 |
msgid "Button label (leave empty to use the default settings)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
219 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
223 |
+
msgid ""
|
224 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
225 |
+
"settings)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
229 |
+
msgid ""
|
230 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
234 |
+
msgid ""
|
235 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
236 |
+
"the default settings)"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
240 |
+
msgid ""
|
241 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
242 |
+
"settings)"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
246 |
+
msgctxt "[gutenberg]: block name"
|
247 |
+
msgid "YITH Wishlist"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
251 |
+
msgctxt "[gutenberg]: block description"
|
252 |
+
msgid "Shows a list of products in wishlist"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
256 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
260 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
261 |
msgid "Paginate"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
265 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
266 |
msgid "Do not paginate"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
270 |
msgid "Number of items to show per page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
274 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
278 |
msgid "Share on:"
|
279 |
msgstr "Compartir en:"
|
280 |
|
281 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
282 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
283 |
msgid "Share on Facebook"
|
284 |
msgstr "Compartir en Facebook"
|
285 |
|
286 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
287 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
288 |
msgid "Tweet on Twitter"
|
289 |
msgstr "Tuitear en Twitter"
|
290 |
|
291 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
292 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
293 |
msgid "Pin on Pinterest"
|
294 |
msgstr "Compartir en Pinterest"
|
295 |
|
296 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
297 |
msgid "Share via email"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
301 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
302 |
msgid "My wishlist on "
|
303 |
msgstr "Mi lista de deseos en %s"
|
304 |
|
305 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
306 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
307 |
msgid "Share on WhatsApp"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
311 |
msgid "Remove from list"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
315 |
msgid "Free!"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
319 |
+
msgctxt ""
|
320 |
+
"Part of the template that shows price variation since addition to list; "
|
321 |
+
"placeholder will be replaced with a percentage"
|
322 |
+
msgid "Price is %1$s%%"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
326 |
+
msgctxt ""
|
327 |
+
"Part of the template that shows price variation since addition to list; "
|
328 |
+
"placeholder will be replaced with a price"
|
329 |
+
msgid "(Was %2$s when added in list)"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
#: ../includes/class.yith-wcwl.php:161
|
333 |
msgid "The item cannot be added to this wishlist"
|
334 |
msgstr ""
|
337 |
msgid "An error occurred while adding the products to the wishlist."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
341 |
msgid "Error. Unable to remove the product from the wishlist."
|
342 |
+
msgstr ""
|
343 |
+
"¡Ups! Ha ocurrido un error al eliminar el producto de tu lista. Intenta "
|
344 |
+
"nuevamente, por favor."
|
345 |
|
346 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
347 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
348 |
msgid "Invalid wishlist."
|
349 |
msgstr ""
|
350 |
|
352 |
msgid "Invalid wishlist item."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#. translators: 1. Number of users.
|
356 |
+
#: ../includes/functions.yith-wcwl.php:216
|
357 |
msgid "%d user"
|
358 |
msgid_plural "%d users"
|
359 |
msgstr[0] ""
|
360 |
msgstr[1] ""
|
361 |
|
362 |
+
#: ../includes/functions.yith-wcwl.php:217
|
363 |
msgid "has this item in wishlist"
|
364 |
msgid_plural "have this item in wishlist"
|
365 |
msgstr[0] ""
|
366 |
msgstr[1] ""
|
367 |
|
368 |
+
#: ../includes/functions.yith-wcwl.php:219
|
369 |
msgid "You're the first"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../includes/functions.yith-wcwl.php:220
|
373 |
msgid "to add this item in wishlist"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
377 |
+
#: ../includes/functions.yith-wcwl.php:224
|
378 |
msgid "You and %s user"
|
379 |
msgid_plural "You and %d users"
|
380 |
msgstr[0] ""
|
381 |
msgstr[1] ""
|
382 |
|
383 |
+
#: ../includes/functions.yith-wcwl.php:225
|
384 |
msgid "have this item in wishlist"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../includes/functions.yith-wcwl.php:460
|
388 |
+
msgid "None"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: ../includes/functions.yith-wcwl.php:461
|
392 |
+
#, fuzzy
|
393 |
+
#| msgid "Custom CSS"
|
394 |
+
msgid "Custom"
|
395 |
+
msgstr "CSS personalizado"
|
396 |
+
|
397 |
+
#: ../includes/functions.yith-wcwl.php:553
|
398 |
msgid "Shared"
|
399 |
msgstr "Compartir en:"
|
400 |
|
401 |
+
#: ../includes/functions.yith-wcwl.php:557
|
402 |
+
msgid "Only people with a link to this list can see it"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../includes/functions.yith-wcwl.php:563
|
406 |
msgid "Private"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../includes/functions.yith-wcwl.php:567
|
410 |
+
msgid "Only you can see this list"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../includes/functions.yith-wcwl.php:573
|
414 |
msgid "Public"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../includes/functions.yith-wcwl.php:577
|
418 |
+
msgid "Anyone can search for and see this list"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
422 |
+
msgctxt "Elementor widget name"
|
423 |
+
msgid "YITH Wishlist Add button"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
427 |
+
#, fuzzy
|
428 |
+
#| msgid "Product added!"
|
429 |
+
msgctxt "Elementor section title"
|
430 |
+
msgid "Product"
|
431 |
+
msgstr "¡Agregado!"
|
432 |
+
|
433 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
434 |
+
#, fuzzy
|
435 |
+
#| msgid "Product added!"
|
436 |
+
msgctxt "Elementor control label"
|
437 |
+
msgid "Product ID"
|
438 |
+
msgstr "¡Agregado!"
|
439 |
+
|
440 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
441 |
+
msgctxt "Elementor section title"
|
442 |
+
msgid "Labels"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
446 |
+
msgctxt "Elementor control label"
|
447 |
+
msgid "Button label"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
451 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
452 |
+
msgid "Add to wishlist"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
456 |
+
#, fuzzy
|
457 |
+
#| msgid "\"Browse wishlist\" text"
|
458 |
+
msgctxt "Elementor control label"
|
459 |
+
msgid "\"Browse wishlist\" label"
|
460 |
+
msgstr "Ir a la Lista de deseos"
|
461 |
+
|
462 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
463 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
464 |
+
msgid "Browse wishlist"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
468 |
+
#, fuzzy
|
469 |
+
#| msgid "\"Product already in wishlist\" text"
|
470 |
+
msgctxt "Elementor control label"
|
471 |
+
msgid "\"Product already in wishlist\" label"
|
472 |
+
msgstr "Ya está en tu lista de deseos!"
|
473 |
+
|
474 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
475 |
+
#, fuzzy
|
476 |
+
#| msgid "\"Product already in wishlist\" text"
|
477 |
+
msgid "Product already in wishlist"
|
478 |
+
msgstr "Ya está en tu lista de deseos!"
|
479 |
+
|
480 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
481 |
+
#, fuzzy
|
482 |
+
#| msgid "\"Product already in wishlist\" text"
|
483 |
+
msgctxt "Elementor control label"
|
484 |
+
msgid "\"Product added to wishlist\" label"
|
485 |
+
msgstr "Ya está en tu lista de deseos!"
|
486 |
+
|
487 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
488 |
+
#, fuzzy
|
489 |
+
#| msgid "\"Product already in wishlist\" text"
|
490 |
+
msgid "Product added to wishlist"
|
491 |
+
msgstr "Ya está en tu lista de deseos!"
|
492 |
+
|
493 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
494 |
+
msgctxt "Elementor section title"
|
495 |
+
msgid "Advanced"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
499 |
+
msgctxt "Elementor control label"
|
500 |
+
msgid "URL of the wishlist page"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
504 |
+
msgctxt "Elementor control label"
|
505 |
+
msgid "Icon for the button"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
509 |
+
msgctxt "Elementor control label"
|
510 |
+
msgid "Additional CSS classes for the button"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
514 |
+
#, fuzzy
|
515 |
+
#| msgid "Wishlist"
|
516 |
+
msgctxt "Elementor widget name"
|
517 |
+
msgid "YITH Wishlist"
|
518 |
+
msgstr "Lista de deseos"
|
519 |
+
|
520 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
521 |
+
#, fuzzy
|
522 |
+
#| msgid "Wishlist"
|
523 |
+
msgctxt "Elementor section title"
|
524 |
+
msgid "Wishlist"
|
525 |
+
msgstr "Lista de deseos"
|
526 |
+
|
527 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
528 |
+
#, fuzzy
|
529 |
+
#| msgid "Wishlist"
|
530 |
+
msgctxt "Elementor control label"
|
531 |
+
msgid "Wishlist ID"
|
532 |
+
msgstr "Lista de deseos"
|
533 |
+
|
534 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
535 |
+
msgctxt "Elementor section title"
|
536 |
+
msgid "Pagination"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
540 |
+
msgctxt "Elementor control label"
|
541 |
+
msgid "Paginate items"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
545 |
+
msgctxt "yith-woocommerce-wishlist"
|
546 |
+
msgid "Items per page"
|
547 |
msgstr ""
|
548 |
|
549 |
#: ../init.php:4
|
551 |
msgstr ""
|
552 |
|
553 |
#: ../init.php:5
|
554 |
+
msgid ""
|
555 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
556 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
557 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
558 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
559 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
560 |
msgstr ""
|
561 |
|
562 |
#: ../init.php:7
|
567 |
msgid "https://yithemes.com/"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../init.php:141
|
571 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../init.php:151
|
575 |
msgid "You can't activate the free version of"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../init.php:151
|
579 |
msgid "while you are using the premium one."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
583 |
+
#: ../plugin-options/settings-options.php:23
|
584 |
msgid "General Settings"
|
585 |
msgstr "Configuraciones generales"
|
586 |
|
587 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
588 |
+
msgid "After product is added to wishlist"
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
592 |
+
msgid ""
|
593 |
+
"Choose the look of the Wishlist button when the product has already been "
|
594 |
+
"added to a wishlist"
|
595 |
msgstr ""
|
596 |
|
597 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
611 |
msgstr ""
|
612 |
|
613 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
614 |
+
msgid ""
|
615 |
+
"Loop options will be visible on Shop page, category pages, product "
|
616 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
617 |
+
"products' loop is used"
|
618 |
msgstr ""
|
619 |
|
620 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
630 |
msgstr ""
|
631 |
|
632 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
633 |
+
msgid ""
|
634 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
635 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
636 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
637 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
638 |
msgstr ""
|
639 |
|
640 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
649 |
msgid "After \"Add to cart\" button"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
653 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
654 |
msgid "Use shortcode"
|
655 |
msgstr "Usar shortcode"
|
656 |
|
657 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
658 |
msgid "Product page settings"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
662 |
msgid "Position of \"Add to wishlist\" on product page"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
666 |
+
msgid ""
|
667 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
668 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
669 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
670 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
674 |
msgid "After \"Add to cart\""
|
675 |
msgstr "Después de \"Agregar al carrito\""
|
676 |
|
677 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
678 |
msgid "After thumbnails"
|
679 |
msgstr "Después de las miniaturas"
|
680 |
|
681 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
682 |
msgid "After summary"
|
683 |
msgstr "Después del resúmen"
|
684 |
|
685 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
686 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
687 |
msgid "Text customization"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
691 |
msgid "\"Add to wishlist\" text"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
695 |
msgid "Enter a text for \"Add to wishlist\" button"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
699 |
msgid "\"Product added\" text"
|
700 |
msgstr "¡Agregado!"
|
701 |
|
702 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
703 |
+
msgid ""
|
704 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
705 |
+
"wishlist"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
709 |
msgid "Product added!"
|
710 |
msgstr "¡Agregado!"
|
711 |
|
712 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
713 |
msgid "\"Browse wishlist\" text"
|
714 |
msgstr "Ir a la Lista de deseos"
|
715 |
|
716 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
717 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
721 |
msgid "\"Product already in wishlist\" text"
|
722 |
msgstr "Ya está en tu lista de deseos!"
|
723 |
|
724 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
725 |
+
msgid ""
|
726 |
+
"Enter the text for the message displayed when the user views a product that "
|
727 |
+
"is already in the wishlist"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
731 |
msgid "The product is already in your wishlist!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
735 |
msgid "Style & Color customization"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
739 |
msgid "Style of \"Add to wishlist\""
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
743 |
+
msgid ""
|
744 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
748 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
749 |
msgid "Textual (anchor)"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
753 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
754 |
msgid "Button with theme style"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
758 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
759 |
msgid "Button with custom style"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
763 |
msgid "\"Add to wishlist\" button style"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
767 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
771 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
772 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
773 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
774 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
776 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
777 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
778 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
779 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
780 |
msgid "Background"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
784 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
785 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
786 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
787 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
788 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
789 |
msgid "Text"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
793 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
794 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
795 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
796 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
797 |
msgid "Border"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
801 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
805 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
806 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
807 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
808 |
msgid "Background Hover"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
812 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
813 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
814 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
815 |
msgid "Text Hover"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
819 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
820 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
821 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
822 |
msgid "Border Hover"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
826 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
827 |
msgid "Border radius"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
831 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
835 |
msgid "\"Add to wishlist\" icon"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
839 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
843 |
msgid "\"Add to wishlist\" custom icon"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
847 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
848 |
+
msgid ""
|
849 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
850 |
+
"32px x 32px)"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
854 |
msgid "\"Added to wishlist\" icon"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
858 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
862 |
msgid "Same used for Add to wishlist"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
866 |
msgid "\"Added to wishlist\" custom icon"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
870 |
msgid "Custom CSS"
|
871 |
msgstr "CSS personalizado"
|
872 |
|
873 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
874 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: ../plugin-options/lists-options.php:32
|
878 |
+
msgid "Search list"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
#: ../plugin-options/settings-options.php:17
|
882 |
+
msgid ""
|
883 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
884 |
+
"the %s."
|
885 |
msgstr ""
|
886 |
|
887 |
#: ../plugin-options/settings-options.php:30
|
897 |
msgstr ""
|
898 |
|
899 |
#: ../plugin-options/settings-options.php:46
|
900 |
+
msgid ""
|
901 |
+
"In order to use this integration you have to install and activate YITH "
|
902 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
903 |
msgstr ""
|
904 |
|
905 |
#: ../plugin-options/settings-options.php:51
|
907 |
msgstr ""
|
908 |
|
909 |
#: ../plugin-options/settings-options.php:52
|
910 |
+
msgid ""
|
911 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
912 |
+
"class=\"thickbox\">Example</a>). %s"
|
913 |
msgstr ""
|
914 |
|
915 |
#: ../plugin-options/wishlist_page-options.php:17
|
921 |
msgstr ""
|
922 |
|
923 |
#: ../plugin-options/wishlist_page-options.php:25
|
924 |
+
msgid ""
|
925 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
926 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
927 |
+
"content"
|
928 |
msgstr ""
|
929 |
|
930 |
#: ../plugin-options/wishlist_page-options.php:38
|
931 |
msgid "Wishlist Detail Page"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
935 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
936 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
937 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
938 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
939 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
940 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
941 |
msgid "In wishlist table show"
|
942 |
msgstr ""
|
943 |
|
962 |
msgstr ""
|
963 |
|
964 |
#: ../plugin-options/wishlist_page-options.php:91
|
965 |
+
msgid ""
|
966 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
967 |
msgstr ""
|
968 |
|
969 |
#: ../plugin-options/wishlist_page-options.php:100
|
970 |
+
msgid ""
|
971 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
972 |
msgstr ""
|
973 |
|
974 |
#: ../plugin-options/wishlist_page-options.php:108
|
976 |
msgstr "Redireccionar al carrito"
|
977 |
|
978 |
#: ../plugin-options/wishlist_page-options.php:109
|
979 |
+
msgid ""
|
980 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
981 |
+
"wishlist page"
|
982 |
msgstr ""
|
983 |
|
984 |
#: ../plugin-options/wishlist_page-options.php:117
|
986 |
msgstr "Eliminar después de agregar al carrito"
|
987 |
|
988 |
#: ../plugin-options/wishlist_page-options.php:118
|
989 |
+
msgid ""
|
990 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
991 |
msgstr ""
|
992 |
|
993 |
#: ../plugin-options/wishlist_page-options.php:126
|
998 |
msgid "Enable this option to let users share their wishlist on social media"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1002 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1003 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1004 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1005 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1006 |
msgid "Share on social media"
|
1007 |
msgstr ""
|
1008 |
|
1026 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1030 |
msgid "My wishlist on %s"
|
1031 |
msgstr "Mi lista de deseos en %s"
|
1032 |
|
1035 |
msgstr "Texto de sociales"
|
1036 |
|
1037 |
#: ../plugin-options/wishlist_page-options.php:198
|
1038 |
+
msgid ""
|
1039 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1040 |
+
"and Pinterest"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
#: ../plugin-options/wishlist_page-options.php:206
|
1053 |
msgstr ""
|
1054 |
|
1055 |
#: ../plugin-options/wishlist_page-options.php:227
|
1056 |
+
msgid ""
|
1057 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1058 |
+
"automatically generated for all users if they do not create any custom one"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1062 |
+
#, fuzzy
|
1063 |
+
#| msgid "My wishlist on "
|
1064 |
+
msgid "My wishlist"
|
1065 |
+
msgstr "Mi lista de deseos en %s"
|
1066 |
+
|
1067 |
#: ../plugin-options/wishlist_page-options.php:234
|
1068 |
msgid "\"Add to cart\" text"
|
1069 |
msgstr ""
|
1072 |
msgid "Enter a text for the \"Add to cart\" button"
|
1073 |
msgstr ""
|
1074 |
|
|
|
|
|
|
|
|
|
1075 |
#: ../plugin-options/wishlist_page-options.php:247
|
1076 |
msgid "Style & color customization"
|
1077 |
msgstr ""
|
1096 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1100 |
msgid "Set the radius for the \"Add to cart\" button"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1104 |
msgid "\"Add to cart\" icon"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1108 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1112 |
msgid "\"Add to cart\" custom icon"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1116 |
+
msgid ""
|
1117 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1118 |
+
"32px x 32px)"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1122 |
msgid "Primary button style"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1126 |
+
msgid ""
|
1127 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1128 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1129 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1133 |
+
msgid ""
|
1134 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1135 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1136 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1137 |
+
"small>"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1141 |
msgid "Secondary button style"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1145 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1146 |
+
msgid ""
|
1147 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1148 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1149 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1153 |
msgid "Wishlist table style"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1157 |
+
msgid ""
|
1158 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1162 |
msgid "Highlight color"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1166 |
+
msgid ""
|
1167 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1168 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1169 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1173 |
msgid "Share button text color"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1177 |
msgid "Choose colors for share buttons text"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1181 |
msgid "Text hover"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1185 |
msgid "Facebook share button icon"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1189 |
msgid "Select an icon for the Facebook share button"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1193 |
msgid "Facebook share button custom icon"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1197 |
+
msgid ""
|
1198 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1199 |
+
"32px)"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1203 |
msgid "Facebook share button style"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1207 |
msgid "Choose colors for Facebook share button"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1211 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1212 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1213 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1214 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1215 |
msgid "Background hover"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1219 |
msgid "Twitter share button icon"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1223 |
msgid "Select an icon for the Twitter share button"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1227 |
msgid "Twitter share button custom icon"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1231 |
+
msgid ""
|
1232 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1233 |
+
"32px)"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1237 |
msgid "Twitter share button style"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1241 |
msgid "Choose colors for Twitter share button"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1245 |
msgid "Pinterest share button icon"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1249 |
msgid "Select an icon for the Pinterest share button"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1253 |
msgid "Pinterest share button custom icon"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1257 |
+
msgid ""
|
1258 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1259 |
+
"x 32px)"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1263 |
msgid "Pinterest share button style"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1267 |
msgid "Choose colors for Pinterest share button"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1271 |
msgid "Email share button icon"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1275 |
msgid "Select an icon for the Email share button"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1279 |
msgid "Email share button custom icon"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1283 |
+
msgid ""
|
1284 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1285 |
+
"x 32px)"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1289 |
msgid "Email share button style"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1293 |
msgid "Choose colors for the Email share button"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1297 |
msgid "WhatsApp share button icon"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1301 |
msgid "Select an icon for the WhatsApp share button"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1305 |
msgid "WhatsApp share button custom icon"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1309 |
+
msgid ""
|
1310 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1311 |
+
"32px)"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1315 |
msgid "WhatsApp share button style"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1319 |
msgid "Choose colors for WhatsApp share button"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1323 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1324 |
+
msgid ""
|
1325 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1326 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1330 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1331 |
msgid "Upgrade"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1335 |
msgid "Premium Features"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1339 |
msgid "Allow your customers to create multiple wishlists"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1343 |
+
msgid ""
|
1344 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1345 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1346 |
+
"other parameters."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1350 |
msgid "Multiple Wishlist"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1354 |
msgid "Wishlist Private"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1358 |
msgid "A transparent privacy management"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1362 |
+
msgid ""
|
1363 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1364 |
+
"sharing the wishlist or making it private."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1368 |
+
msgid ""
|
1369 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1370 |
+
"page"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1374 |
+
msgid ""
|
1375 |
+
"And give only registered users the privilege to use the wishlist "
|
1376 |
+
"functionalities."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1380 |
msgid "Estimate Cost"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1384 |
msgid "Admin Panel"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1388 |
msgid "An advanced and more versatile management of the wishlist"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1392 |
+
msgid ""
|
1393 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1394 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1395 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1396 |
+
"social networks, and much more!"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1400 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1404 |
+
msgid ""
|
1405 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1406 |
+
"are more interested in and plan targeted marketing strategies."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1410 |
msgid "Search Wishlists"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1414 |
msgid "'ADD TO CART'"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1418 |
+
msgid ""
|
1419 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1423 |
+
msgid ""
|
1424 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1425 |
+
"customers who have added specific products to their wishlist and push them "
|
1426 |
+
"to buy."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1430 |
msgid "Let users buy the product right from the wishlist page"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1434 |
+
msgid ""
|
1435 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1436 |
+
"also the information about the size, colour or quantity selected when added "
|
1437 |
+
"to the wishlist."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1441 |
msgid "DISABLE WISHLIST"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1445 |
msgid "Choose a charming layout for your wishlist page"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1449 |
+
msgid ""
|
1450 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1451 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1452 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1453 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1454 |
+
"your website."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1458 |
msgid "UNLOGGED USERS"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1462 |
msgid "Wishlist widgets for the header and sidebars"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1466 |
+
msgid ""
|
1467 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1468 |
+
"in the header, in the sidebars, wherever you want."
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1472 |
msgid "POPULAR TABLE"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1476 |
msgid "FUNCTIONALITIES"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1480 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1484 |
+
msgid ""
|
1485 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1486 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1487 |
+
"product and how much they can save when there’s a promotion running or a "
|
1488 |
+
"discount on the product they’ve added to the wishlist."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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"
|
1565 |
|
1566 |
+
#: ../templates/wishlist-view-header.php:48
|
1567 |
msgid "Save"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: ../templates/wishlist-view-header.php:51
|
1571 |
msgid "Cancel"
|
1572 |
msgstr ""
|
1573 |
|
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 ›"
|
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 ""
|
1619 |
|
1620 |
+
#: ../templates/wishlist-view.php:78
|
1621 |
msgid "Product name"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: ../templates/wishlist-view.php:86
|
1625 |
msgid "Unit price"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: ../templates/wishlist-view.php:95
|
1629 |
msgid "Quantity"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../templates/wishlist-view.php:104
|
1633 |
msgid "Stock status"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: ../templates/wishlist-view.php:122
|
1637 |
msgid "Arrange"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#. translators: date added label: 1 date added.
|
1641 |
+
#: ../templates/wishlist-view.php:238
|
1642 |
msgid "Added on: %s"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: ../templates/wishlist-view.php:287
|
1646 |
msgid "Remove"
|
1647 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
10 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
11 |
"Language: es_ES\n"
|
@@ -13,90 +13,164 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr "Ajustes generales"
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr "Opciones de Añadir a la lista de deseos"
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr "Opciones de la página Lista de deseos"
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr "Versión premium"
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "YITH WooCommerce Wishlist"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "Wishlist"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "Producto eliminado satisfactoriamente."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr "Por favor, asegúrate de haber introducido un título válido"
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
61 |
-
|
|
|
|
|
|
|
|
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr "Producto añadido al carrito con éxito"
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr "Mientras visitas nuestro sitio, nosotros rastrearemos:"
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
77 |
-
|
|
|
|
|
|
|
|
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
81 |
-
|
|
|
|
|
|
|
|
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
89 |
-
|
|
|
|
|
|
|
|
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
93 |
-
|
|
|
|
|
|
|
|
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr "Listas de deseos del cliente"
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "Listas de deseos"
|
102 |
|
@@ -122,6 +196,11 @@ msgstr "URL de la lista de deseos"
|
|
122 |
msgid "Title"
|
123 |
msgstr "Título"
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr "Visibilidad"
|
@@ -130,107 +209,175 @@ msgstr "Visibilidad"
|
|
130 |
msgid "Items added"
|
131 |
msgstr "Artículos añadidos"
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
-
msgstr "
|
|
|
|
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
-
msgstr "
|
|
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
151 |
-
|
|
|
|
|
|
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
155 |
-
|
|
|
|
|
|
|
|
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
159 |
-
|
|
|
|
|
|
|
|
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
|
163 |
-
|
|
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
-
msgstr "
|
|
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr "Paginar"
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr "No paginar"
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr "Número de artículos a mostrar por página"
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr "ID de la lista de deseos a mostrar (ej: K6EOWXB888ZD)"
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "Compartir en:"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "Compartir en Facebook"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "Twittear en Twitter"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "Pinear en Pinterest"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr "Compartir por correo electrónico"
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "Mi lista de deseos en "
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr "Compartir en WhatsApp"
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr "Eliminar de la lista"
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr "¡Gratis!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr "El artículo no puede ser añadido a la lista de deseos"
|
224 |
|
225 |
#: ../includes/class.yith-wcwl.php:165, ../includes/class.yith-wcwl.php:171
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
-
msgstr "
|
|
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "Error. No hemos podido eliminar el producto de la lista de deseos."
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr "Lista de deseos no válida."
|
236 |
|
@@ -238,66 +385,228 @@ msgstr "Lista de deseos no válida."
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr "Artículo de lista de deseos no válido."
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] "%d usuario"
|
245 |
msgstr[1] "%d usuarios"
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] "tiene este artículo en la lista de deseos"
|
251 |
msgstr[1] "tiene este artículo en la lista de deseos"
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr "Eres el primero"
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr "en añadir este artículo a la lista de deseos"
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] "Tú y el usuario %s"
|
265 |
msgstr[1] "Tú y los usuarios %d"
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr "tienen este artículo en la lista de deseos"
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "Compartidas"
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr "Privada"
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
-
msgstr "Solo
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr "Pública"
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
293 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
#: ../init.php:4
|
296 |
msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,29 +617,36 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "Ajustes Generales"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
|
|
|
|
|
329 |
msgstr "Cuando el producto es añadido a la lista de deseos"
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
333 |
-
|
|
|
|
|
|
|
|
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
336 |
msgid "Show \"Add to wishilist\" button"
|
@@ -349,8 +665,14 @@ msgid "Loop settings"
|
|
349 |
msgstr "Ajustes de loop"
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
356 |
msgid "Show \"Add to wishlist\" in loop"
|
@@ -358,15 +680,26 @@ msgstr "Mostrar el bucle ''Añadir a la lista de deseos''"
|
|
358 |
|
359 |
#: ../plugin-options/add_to_wishlist-options.php:54
|
360 |
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
|
361 |
-
msgstr "
|
|
|
|
|
362 |
|
363 |
#: ../plugin-options/add_to_wishlist-options.php:62
|
364 |
msgid "Position of \"Add to wishlist\" in loop"
|
365 |
msgstr "Posición de ''Añadir a la lista de deseos'' en bucle"
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
369 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
372 |
msgid "On top of the image"
|
@@ -380,197 +713,265 @@ msgstr "Antes del botón ''Añadir al carrito''"
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr "Despuésl botón ''Añadir al carrito''"
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "Usar shortcode"
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr "Ajustes de página de producto"
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr "Posición de ''Añadir a la lista de deseos'' en la página del producto"
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
397 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "Después de \"Añadir al carrito\""
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "Después de las miniaturas"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "Después del resumen"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr "Personalización de texto"
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr "Texto ''Añadir a la lista de deseos''"
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr "Introduce un texto para el botón ''Añadir a la lista de deseos''"
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr "Añadir a la lista de deseos"
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "Texto de \"Producto añadido\""
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
433 |
-
|
|
|
|
|
|
|
|
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "¡Producto añadido!"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "Texto para \"Echar un vistazo a la lista de deseos\""
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
-
msgstr "
|
446 |
-
|
447 |
-
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr "Echar un vistazo a la lista de deseos"
|
450 |
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "Texto para \"El producto ya está en la lista de deseos\""
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
457 |
-
|
|
|
|
|
|
|
|
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr "¡El producto ya está en tu lista de deseos!"
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr "Personalización de estilo y color"
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr "Estilo del ''Añadir a la lista de deseos''"
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
473 |
-
|
|
|
|
|
|
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr "Textual (anclaje)"
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr "Botón con estilo del tema"
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr "Botón con estilo personalizado"
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr "Estilo del botón ''Añadir a la lista de deseos''"
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr "Elige los colores para el botón ''Añadir a la lista de deseos''"
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr "Fondo"
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr "Texto"
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr "Borde"
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
-
msgstr "
|
|
|
|
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr "Al pasar el cursor por el fondo"
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr "Al pasar el cursor por el texto"
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr "Al pasar el cursor por el borde"
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr "Radio del borde"
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
msgstr "Elige un radio para el botón ''Añadir a la lista de deseos''"
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr "Icono de ''Añadir a la lista de deseos''"
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
-
msgstr "
|
|
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr "Icono personalizado de ''Añadir a la lista de deseos''"
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
545 |
-
|
|
|
|
|
|
|
|
|
|
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr "Icono de ''Añadido a la lista de deseos''"
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
-
msgstr "
|
|
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr "El mismo usado para Añadir a la lista de deseos"
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr "Icono personalizado de ''Añadido a la lista de deseos''"
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "Personalizar CSS"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
570 |
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
573 |
-
|
|
|
|
|
|
|
|
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
576 |
msgid "Enable AJAX loading"
|
@@ -582,19 +983,28 @@ msgstr "Cargar cualquier artículo de lista de deseos cacheable via AJX"
|
|
582 |
|
583 |
#: ../plugin-options/settings-options.php:44
|
584 |
msgid "YITH WooCommerce Frequently Bought Together Integration"
|
585 |
-
msgstr "
|
|
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
589 |
-
|
|
|
|
|
|
|
|
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
592 |
msgid "Enable slider in wishlist"
|
593 |
msgstr "Habilitar deslizador en la lista de deseos"
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
597 |
-
|
|
|
|
|
|
|
|
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
600 |
msgid "All your wishlists"
|
@@ -605,20 +1015,33 @@ msgid "Wishlist page"
|
|
605 |
msgstr "Página de Lista de deseos"
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
609 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr "Página de detalles de la lista de deseos"
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr "Mostrar en la tabla de la lista de deseos"
|
618 |
|
619 |
#: ../plugin-options/wishlist_page-options.php:46
|
620 |
msgid "Product variations selected by the user (example: size or color)"
|
621 |
-
msgstr "
|
|
|
622 |
|
623 |
#: ../plugin-options/wishlist_page-options.php:55
|
624 |
msgid "Product price"
|
@@ -637,28 +1060,40 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr "Opción de añadir al carrito para cada producto"
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
641 |
-
|
|
|
|
|
|
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
645 |
-
|
|
|
|
|
|
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
648 |
msgid "Redirect to cart"
|
649 |
msgstr "Redirigir al carrito"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
653 |
-
|
|
|
|
|
|
|
|
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
656 |
msgid "Remove if added to the cart"
|
657 |
msgstr "Quitar si se añade al carrito"
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
661 |
-
|
|
|
|
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
664 |
msgid "Share wishlist"
|
@@ -666,9 +1101,15 @@ msgstr "Compartir lista de deseos"
|
|
666 |
|
667 |
#: ../plugin-options/wishlist_page-options.php:127
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
-
msgstr "
|
670 |
-
|
671 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr "Compartir en redes sociales"
|
674 |
|
@@ -690,9 +1131,11 @@ msgstr "Título a compartir"
|
|
690 |
|
691 |
#: ../plugin-options/wishlist_page-options.php:190
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
-
msgstr "
|
|
|
|
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "Mi lista de deseos en %s"
|
698 |
|
@@ -701,8 +1144,12 @@ msgid "Social text"
|
|
701 |
msgstr "Texto social"
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
705 |
-
|
|
|
|
|
|
|
|
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
708 |
msgid "Social image URL"
|
@@ -717,8 +1164,19 @@ msgid "Default wishlist name"
|
|
717 |
msgstr "Nombre predeterminado de lista de deseos"
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
721 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
@@ -728,10 +1186,6 @@ msgstr "Texto ''Añadir al carrito''"
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr "Introduce un texto para el botón ''Añadir al carrito''"
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr "Añadir al carrito"
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr "Personalización de estilo y color"
|
@@ -756,336 +1210,423 @@ msgstr "Elige colores para el botón ''Añadir al carrito''"
|
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
msgstr "Elige colores para el botón ''Añadir al carrito'' al pasar el cursor"
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
msgstr "Configura el radio para el botón ''Añadir al carrito''"
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr "Icono de ''Añadir al carrito''"
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr "Selecciona un icono para el botón ''Añadir al carrito'' (opcional)"
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr "Icono personalizado de ''Añadir al carrito''"
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
777 |
-
|
|
|
|
|
|
|
|
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr "Estilo de botón primario"
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
785 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
789 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr "Estilo de botón secundario"
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr "Estilo de la tabla de la lista de deseos"
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
805 |
-
|
|
|
|
|
|
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr "Destacar color"
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
813 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr "Color de texto de botón para compartir"
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr "Elige los colores para el texto de los botones para compartir"
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr "Al pasar el cursor por el texto"
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr "Icono del botón para compartir en Facebook"
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr "Selecciona un icono para el botón para compartir en Facebook"
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr "Icono personalizado del botón para compartir en Facebook"
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
841 |
-
|
|
|
|
|
|
|
|
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr "Estilo del botón para compartir en Facebook"
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr "Elige los colores para el botón para compartir en Facebook"
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr "Fondo al pasar el cursor"
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr "Icono del botón para compartir en Twitter"
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr "Selecciona un icono para el botón para compartir en Twitter"
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr "Icono personalizado para compartir en Twitter"
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
869 |
-
|
|
|
|
|
|
|
|
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr "Estilo del botón para compartir en Twitter"
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr "Elige los colores para el botón para compartir en Twitter"
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr "Icono para compartir por Pinterest"
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr "Selecciona un icono para el botón para compartir por Pinterest"
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr "Icono personalizado del botón para compartir por Pinterest"
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
893 |
-
|
|
|
|
|
|
|
|
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr "Estilo del botón para compartir por Pinterest"
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr "Elige colores para el botón para compartir por Pinterest"
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr "Icono para compartir por Correo electrónico"
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
-
msgstr "
|
|
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr "Icono personalizado del botón para compartir por Correo electrónico"
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
917 |
-
|
|
|
|
|
|
|
|
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr "Estilo del botón para compartir por Correo electrónico"
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr "Elige los colores para el botón para compartir por Correo electrónico"
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr "Icono de botón para compartir por WhatsApp"
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr "Selecciona un icono para el botón para compartir por WhatsApp"
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr "Icono personalizado del botón para compartir por WhatsApp"
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
941 |
-
|
|
|
|
|
|
|
|
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr "Estilo del botón para compartir por WhatsApp"
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr "Elige los colores para el botón para compartir por WhatsApp"
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
-
msgstr "Ver ›"
|
958 |
-
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
960 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1665,50 @@ msgstr "copiar"
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr "este enlace a la lista de deseos y compártelo en cualquier parte)"
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr "Aplicar esta acción a todos los artículos seleccionados:"
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr "Eliminar de la lista de deseos"
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr "Aplicar"
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr "Actualizar"
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr "Añadir todo al carrito"
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr "Solicitar una estimación"
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "Editar título"
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr "Guardar"
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr "Cancelar"
|
1166 |
|
@@ -1180,94 +1728,61 @@ msgstr "Cantidad:"
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr "En inventario:"
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr "Agotado"
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "En stock"
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr "Mover"
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr "Mover a otra lista ›"
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "Eliminar este producto"
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr "No se han añadido productos a la lista de deseos"
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr "Nombre del producto"
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr "Precio por unidad"
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr "Cantidad"
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr "Estado de inventario"
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr "Ordenar"
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr "Añadido el: %s"
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr "Quitar"
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist page"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "Página de Lista de deseos"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr "Ajustes generales"
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr "Opciones de Añadir a la lista de deseos"
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr "Opciones de la página Lista de deseos"
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr "Versión premium"
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "YITH WooCommerce Wishlist"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "Wishlist"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
"Permitir a tus clientes crear y compartir productos que quieran comprar en "
|
62 |
+
"tu comercio electrónico."
|
63 |
+
|
64 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
65 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
66 |
+
msgid "View ›"
|
67 |
+
msgstr "Ver ›"
|
68 |
+
|
69 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
70 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
71 |
+
msgid "or"
|
72 |
+
msgstr "o"
|
73 |
+
|
74 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
75 |
+
msgid "Close"
|
76 |
+
msgstr ""
|
77 |
|
78 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
79 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
80 |
msgid "Product successfully removed."
|
81 |
msgstr "Producto eliminado satisfactoriamente."
|
82 |
|
83 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
84 |
msgid "Please, make sure to enter a valid title"
|
85 |
msgstr "Por favor, asegúrate de haber introducido un título válido"
|
86 |
|
87 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
88 |
+
msgid ""
|
89 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
90 |
+
"are enabled."
|
91 |
+
msgstr ""
|
92 |
+
"Lo siento, pero esta característica solo está disponible si las cookies de "
|
93 |
+
"tu navegador están habilitadas."
|
94 |
|
95 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
96 |
msgid "Product added to cart successfully"
|
97 |
msgstr "Producto añadido al carrito con éxito"
|
98 |
|
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"
|
106 |
+
|
107 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
108 |
+
msgctxt "page_slug"
|
109 |
+
msgid "wishlist"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
113 |
msgid "While you visit our site, we’ll track:"
|
114 |
msgstr "Mientras visitas nuestro sitio, nosotros rastrearemos:"
|
115 |
|
116 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
117 |
+
msgid ""
|
118 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
119 |
+
"users your favourite products, and to create targeted email campaigns."
|
120 |
+
msgstr ""
|
121 |
+
"Productos que has agregado a la lista de deseos: lo usaremos para mostrarte "
|
122 |
+
"a ti y a otros usuarios tus productos favoritos y para crear campañas de "
|
123 |
+
"correo electrónico específicas."
|
124 |
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
126 |
+
msgid ""
|
127 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
128 |
+
"make them visible to the store staff"
|
129 |
+
msgstr ""
|
130 |
+
"Listas de deseos que has creado: recopilaremos las listas de deseos que "
|
131 |
+
"crees y las haremos visibles al personal de la tienda"
|
132 |
|
133 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
134 |
+
msgid ""
|
135 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
136 |
+
"browsing our site."
|
137 |
+
msgstr ""
|
138 |
+
"También usaremos cookies para realizar un seguimiento del contenido de la "
|
139 |
+
"lista de deseos mientras navegas por nuestro sitio."
|
140 |
|
141 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
142 |
+
msgid ""
|
143 |
+
"Members of our team have access to the information you provide us with. For "
|
144 |
+
"example, both Administrators and Shop Managers can access:"
|
145 |
+
msgstr ""
|
146 |
+
"Miembros de nuestro equipo tienen acceso a la información que nos "
|
147 |
+
"proporcionas. Por ejemplo, tanto los administradores como los gerentes de "
|
148 |
+
"tienda pueden acceder a:"
|
149 |
|
150 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
151 |
+
msgid ""
|
152 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
153 |
+
"settings of your wishlists"
|
154 |
+
msgstr ""
|
155 |
+
"Detalles de la lista de deseos, como productos agregados, fecha de adición, "
|
156 |
+
"nombre y configuración de privacidad de tus listas de deseos"
|
157 |
|
158 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
159 |
+
msgid ""
|
160 |
+
"Our team members have access to this information to offer you better deals "
|
161 |
+
"for the products you love."
|
162 |
+
msgstr ""
|
163 |
+
"Los miembros de nuestro equipo tienen acceso a esta información para "
|
164 |
+
"ofrecerte mejores ofertas para los productos que te gusten."
|
165 |
|
166 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
167 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
168 |
msgid "Customer wishlists"
|
169 |
msgstr "Listas de deseos del cliente"
|
170 |
|
171 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
172 |
+
#: ../plugin-options/lists-options.php:23,
|
173 |
+
#: ../plugin-options/lists-options.php:30
|
174 |
msgid "Wishlists"
|
175 |
msgstr "Listas de deseos"
|
176 |
|
196 |
msgid "Title"
|
197 |
msgstr "Título"
|
198 |
|
199 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
200 |
+
msgctxt "date when wishlist was created"
|
201 |
+
msgid "Created on"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
205 |
msgid "Visibility"
|
206 |
msgstr "Visibilidad"
|
209 |
msgid "Items added"
|
210 |
msgstr "Artículos añadidos"
|
211 |
|
212 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
213 |
+
msgctxt "[gutenberg]: block name"
|
214 |
+
msgid "YITH Add to wishlist"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
218 |
+
msgctxt "[gutenberg]: block description"
|
219 |
+
msgid "Shows Add to wishlist button"
|
220 |
+
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
223 |
+
msgid ""
|
224 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
225 |
+
"product)"
|
226 |
+
msgstr ""
|
227 |
+
"ID del producto a añadir a la lista de deseos (déjalo vacío para usar el "
|
228 |
+
"producto global)"
|
229 |
+
|
230 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
231 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
232 |
+
msgstr ""
|
233 |
+
"URL de la página de lista de deseos (déjalo vacío para usar los ajustes "
|
234 |
+
"predeterminados)"
|
235 |
|
236 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
237 |
msgid "Button label (leave empty to use the default settings)"
|
238 |
+
msgstr ""
|
239 |
+
"Etiqueta del botón (déjalo vacío para usar los ajustes predeterminados)"
|
240 |
|
241 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
242 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
243 |
+
msgstr ""
|
244 |
+
"Etiqueta ''Echar un vistazo a la lista de deseos'' (déjalo vacío para usar "
|
245 |
+
"los ajustes predeterminados)"
|
246 |
+
|
247 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
248 |
+
msgid ""
|
249 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
250 |
+
"settings)"
|
251 |
+
msgstr ""
|
252 |
+
"Etiqueta ''El producto ya está en la lista de deseos'' (déjalo vacío para "
|
253 |
+
"usar los ajustes predeterminados)"
|
254 |
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
256 |
+
msgid ""
|
257 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
258 |
+
msgstr ""
|
259 |
+
"Etiqueta ''Producto añadido a la lista de deseos'' (déjalo vacío para usar "
|
260 |
+
"los ajustes predeterminados)"
|
261 |
|
262 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
263 |
+
msgid ""
|
264 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
265 |
+
"the default settings)"
|
266 |
+
msgstr ""
|
267 |
+
"Icono para el botón (utiliza cualquier clase válida de FontAwesome, o déjalo "
|
268 |
+
"vacío para usar los ajustes predeterminados)"
|
269 |
|
270 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
271 |
+
msgid ""
|
272 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
273 |
+
"settings)"
|
274 |
+
msgstr ""
|
275 |
+
"Botón para clases CSS adicionales (déjalo vacío para usar los ajustes "
|
276 |
+
"predeterminados)"
|
277 |
|
278 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
279 |
+
msgctxt "[gutenberg]: block name"
|
280 |
+
msgid "YITH Wishlist"
|
281 |
+
msgstr ""
|
282 |
|
283 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
284 |
+
msgctxt "[gutenberg]: block description"
|
285 |
+
msgid "Shows a list of products in wishlist"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
289 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
290 |
+
msgstr ""
|
291 |
+
"Elige si paginar los artículos en la lista de deseos o mostrarlos todos"
|
292 |
|
293 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
294 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
295 |
msgid "Paginate"
|
296 |
msgstr "Paginar"
|
297 |
|
298 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
299 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
300 |
msgid "Do not paginate"
|
301 |
msgstr "No paginar"
|
302 |
|
303 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
304 |
msgid "Number of items to show per page"
|
305 |
msgstr "Número de artículos a mostrar por página"
|
306 |
|
307 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
308 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
309 |
msgstr "ID de la lista de deseos a mostrar (ej: K6EOWXB888ZD)"
|
310 |
|
311 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
312 |
msgid "Share on:"
|
313 |
msgstr "Compartir en:"
|
314 |
|
315 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
316 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
317 |
msgid "Share on Facebook"
|
318 |
msgstr "Compartir en Facebook"
|
319 |
|
320 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
321 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
322 |
msgid "Tweet on Twitter"
|
323 |
msgstr "Twittear en Twitter"
|
324 |
|
325 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
326 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
327 |
msgid "Pin on Pinterest"
|
328 |
msgstr "Pinear en Pinterest"
|
329 |
|
330 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
331 |
msgid "Share via email"
|
332 |
msgstr "Compartir por correo electrónico"
|
333 |
|
334 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
335 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
336 |
msgid "My wishlist on "
|
337 |
msgstr "Mi lista de deseos en "
|
338 |
|
339 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
340 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
341 |
msgid "Share on WhatsApp"
|
342 |
msgstr "Compartir en WhatsApp"
|
343 |
|
344 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
345 |
msgid "Remove from list"
|
346 |
msgstr "Eliminar de la lista"
|
347 |
|
348 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
349 |
msgid "Free!"
|
350 |
msgstr "¡Gratis!"
|
351 |
|
352 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
353 |
+
msgctxt ""
|
354 |
+
"Part of the template that shows price variation since addition to list; "
|
355 |
+
"placeholder will be replaced with a percentage"
|
356 |
+
msgid "Price is %1$s%%"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
360 |
+
msgctxt ""
|
361 |
+
"Part of the template that shows price variation since addition to list; "
|
362 |
+
"placeholder will be replaced with a price"
|
363 |
+
msgid "(Was %2$s when added in list)"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
#: ../includes/class.yith-wcwl.php:161
|
367 |
msgid "The item cannot be added to this wishlist"
|
368 |
msgstr "El artículo no puede ser añadido a la lista de deseos"
|
369 |
|
370 |
#: ../includes/class.yith-wcwl.php:165, ../includes/class.yith-wcwl.php:171
|
371 |
msgid "An error occurred while adding the products to the wishlist."
|
372 |
+
msgstr ""
|
373 |
+
"Ha ocurrido un error mientras se añadían los productos a la lista de deseos."
|
374 |
|
375 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
376 |
msgid "Error. Unable to remove the product from the wishlist."
|
377 |
msgstr "Error. No hemos podido eliminar el producto de la lista de deseos."
|
378 |
|
379 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
380 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
381 |
msgid "Invalid wishlist."
|
382 |
msgstr "Lista de deseos no válida."
|
383 |
|
385 |
msgid "Invalid wishlist item."
|
386 |
msgstr "Artículo de lista de deseos no válido."
|
387 |
|
388 |
+
#. translators: 1. Number of users.
|
389 |
+
#: ../includes/functions.yith-wcwl.php:216
|
390 |
msgid "%d user"
|
391 |
msgid_plural "%d users"
|
392 |
msgstr[0] "%d usuario"
|
393 |
msgstr[1] "%d usuarios"
|
394 |
|
395 |
+
#: ../includes/functions.yith-wcwl.php:217
|
396 |
msgid "has this item in wishlist"
|
397 |
msgid_plural "have this item in wishlist"
|
398 |
msgstr[0] "tiene este artículo en la lista de deseos"
|
399 |
msgstr[1] "tiene este artículo en la lista de deseos"
|
400 |
|
401 |
+
#: ../includes/functions.yith-wcwl.php:219
|
402 |
msgid "You're the first"
|
403 |
msgstr "Eres el primero"
|
404 |
|
405 |
+
#: ../includes/functions.yith-wcwl.php:220
|
406 |
msgid "to add this item in wishlist"
|
407 |
msgstr "en añadir este artículo a la lista de deseos"
|
408 |
|
409 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
410 |
+
#: ../includes/functions.yith-wcwl.php:224
|
411 |
msgid "You and %s user"
|
412 |
msgid_plural "You and %d users"
|
413 |
msgstr[0] "Tú y el usuario %s"
|
414 |
msgstr[1] "Tú y los usuarios %d"
|
415 |
|
416 |
+
#: ../includes/functions.yith-wcwl.php:225
|
417 |
msgid "have this item in wishlist"
|
418 |
msgstr "tienen este artículo en la lista de deseos"
|
419 |
|
420 |
+
#: ../includes/functions.yith-wcwl.php:460
|
421 |
+
msgid "None"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/functions.yith-wcwl.php:461
|
425 |
+
#, fuzzy
|
426 |
+
#| msgid "Custom CSS"
|
427 |
+
msgid "Custom"
|
428 |
+
msgstr "Personalizar CSS"
|
429 |
+
|
430 |
+
#: ../includes/functions.yith-wcwl.php:553
|
431 |
msgid "Shared"
|
432 |
msgstr "Compartidas"
|
433 |
|
434 |
+
#: ../includes/functions.yith-wcwl.php:557
|
435 |
+
msgid "Only people with a link to this list can see it"
|
436 |
+
msgstr "Solo gente con un enlace a esta lista puede verla"
|
437 |
|
438 |
+
#: ../includes/functions.yith-wcwl.php:563
|
439 |
msgid "Private"
|
440 |
msgstr "Privada"
|
441 |
|
442 |
+
#: ../includes/functions.yith-wcwl.php:567
|
443 |
+
msgid "Only you can see this list"
|
444 |
+
msgstr "Solo tú puedes ver esta lista"
|
445 |
|
446 |
+
#: ../includes/functions.yith-wcwl.php:573
|
447 |
msgid "Public"
|
448 |
msgstr "Pública"
|
449 |
|
450 |
+
#: ../includes/functions.yith-wcwl.php:577
|
451 |
+
msgid "Anyone can search for and see this list"
|
452 |
+
msgstr "Cualquiera puede buscar y ver esta lista"
|
453 |
+
|
454 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
455 |
+
msgctxt "Elementor widget name"
|
456 |
+
msgid "YITH Wishlist Add button"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
460 |
+
#, fuzzy
|
461 |
+
#| msgid "Product name"
|
462 |
+
msgctxt "Elementor section title"
|
463 |
+
msgid "Product"
|
464 |
+
msgstr "Nombre del producto"
|
465 |
+
|
466 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
467 |
+
#, fuzzy
|
468 |
+
#| msgid "Product name"
|
469 |
+
msgctxt "Elementor control label"
|
470 |
+
msgid "Product ID"
|
471 |
+
msgstr "Nombre del producto"
|
472 |
+
|
473 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
474 |
+
msgctxt "Elementor section title"
|
475 |
+
msgid "Labels"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
479 |
+
msgctxt "Elementor control label"
|
480 |
+
msgid "Button label"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
484 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
485 |
+
msgid "Add to wishlist"
|
486 |
+
msgstr "Añadir a la lista de deseos"
|
487 |
+
|
488 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
489 |
+
#, fuzzy
|
490 |
+
#| msgid "\"Browse wishlist\" text"
|
491 |
+
msgctxt "Elementor control label"
|
492 |
+
msgid "\"Browse wishlist\" label"
|
493 |
+
msgstr "Texto para \"Echar un vistazo a la lista de deseos\""
|
494 |
+
|
495 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
496 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
497 |
+
msgid "Browse wishlist"
|
498 |
+
msgstr "Echar un vistazo a la lista de deseos"
|
499 |
+
|
500 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
501 |
+
#, fuzzy
|
502 |
+
#| msgid "\"Product already in wishlist\" text"
|
503 |
+
msgctxt "Elementor control label"
|
504 |
+
msgid "\"Product already in wishlist\" label"
|
505 |
+
msgstr "Texto para \"El producto ya está en la lista de deseos\""
|
506 |
+
|
507 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
508 |
+
#, fuzzy
|
509 |
+
#| msgid "\"Product already in wishlist\" text"
|
510 |
+
msgid "Product already in wishlist"
|
511 |
+
msgstr "Texto para \"El producto ya está en la lista de deseos\""
|
512 |
+
|
513 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
514 |
+
#, fuzzy
|
515 |
+
#| msgid "\"Product already in wishlist\" text"
|
516 |
+
msgctxt "Elementor control label"
|
517 |
+
msgid "\"Product added to wishlist\" label"
|
518 |
+
msgstr "Texto para \"El producto ya está en la lista de deseos\""
|
519 |
+
|
520 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
521 |
+
#, fuzzy
|
522 |
+
#| msgid "When product is added to wishlist"
|
523 |
+
msgid "Product added to wishlist"
|
524 |
+
msgstr "Cuando el producto es añadido a la lista de deseos"
|
525 |
+
|
526 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
527 |
+
msgctxt "Elementor section title"
|
528 |
+
msgid "Advanced"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
532 |
+
#, fuzzy
|
533 |
+
#| msgid "Wishlist page"
|
534 |
+
msgctxt "Elementor control label"
|
535 |
+
msgid "URL of the wishlist page"
|
536 |
+
msgstr "Página de Lista de deseos"
|
537 |
+
|
538 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
539 |
+
#, fuzzy
|
540 |
+
#| msgid "Select an icon for the Email share button"
|
541 |
+
msgctxt "Elementor control label"
|
542 |
+
msgid "Icon for the button"
|
543 |
+
msgstr ""
|
544 |
+
"Selecciona un icono para el botón para compartir por Correo electrónico"
|
545 |
+
|
546 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
547 |
+
#, fuzzy
|
548 |
+
#| msgid ""
|
549 |
+
#| "Additional CSS classes for the button (leave empty to use the default "
|
550 |
+
#| "settings)"
|
551 |
+
msgctxt "Elementor control label"
|
552 |
+
msgid "Additional CSS classes for the button"
|
553 |
+
msgstr ""
|
554 |
+
"Botón para clases CSS adicionales (déjalo vacío para usar los ajustes "
|
555 |
+
"predeterminados)"
|
556 |
+
|
557 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
558 |
+
#, fuzzy
|
559 |
+
#| msgid "Wishlist"
|
560 |
+
msgctxt "Elementor widget name"
|
561 |
+
msgid "YITH Wishlist"
|
562 |
+
msgstr "Wishlist"
|
563 |
+
|
564 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
565 |
+
#, fuzzy
|
566 |
+
#| msgid "Wishlist"
|
567 |
+
msgctxt "Elementor section title"
|
568 |
+
msgid "Wishlist"
|
569 |
+
msgstr "Wishlist"
|
570 |
+
|
571 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
572 |
+
#, fuzzy
|
573 |
+
#| msgid "Wishlist"
|
574 |
+
msgctxt "Elementor control label"
|
575 |
+
msgid "Wishlist ID"
|
576 |
+
msgstr "Wishlist"
|
577 |
+
|
578 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
579 |
+
#, fuzzy
|
580 |
+
#| msgid "Paginate"
|
581 |
+
msgctxt "Elementor section title"
|
582 |
+
msgid "Pagination"
|
583 |
+
msgstr "Paginar"
|
584 |
+
|
585 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
586 |
+
#, fuzzy
|
587 |
+
#| msgid "Paginate"
|
588 |
+
msgctxt "Elementor control label"
|
589 |
+
msgid "Paginate items"
|
590 |
+
msgstr "Paginar"
|
591 |
+
|
592 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
593 |
+
#, fuzzy
|
594 |
+
#| msgid "Items added"
|
595 |
+
msgctxt "yith-woocommerce-wishlist"
|
596 |
+
msgid "Items per page"
|
597 |
+
msgstr "Artículos añadidos"
|
598 |
|
599 |
#: ../init.php:4
|
600 |
msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
601 |
msgstr ""
|
602 |
|
603 |
#: ../init.php:5
|
604 |
+
msgid ""
|
605 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
606 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
607 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
608 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
609 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
610 |
msgstr ""
|
611 |
|
612 |
#: ../init.php:7
|
617 |
msgid "https://yithemes.com/"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../init.php:141
|
621 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../init.php:151
|
625 |
msgid "You can't activate the free version of"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../init.php:151
|
629 |
msgid "while you are using the premium one."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
633 |
+
#: ../plugin-options/settings-options.php:23
|
634 |
msgid "General Settings"
|
635 |
msgstr "Ajustes Generales"
|
636 |
|
637 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
638 |
+
#, fuzzy
|
639 |
+
#| msgid "When product is added to wishlist"
|
640 |
+
msgid "After product is added to wishlist"
|
641 |
msgstr "Cuando el producto es añadido a la lista de deseos"
|
642 |
|
643 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
644 |
+
msgid ""
|
645 |
+
"Choose the look of the Wishlist button when the product has already been "
|
646 |
+
"added to a wishlist"
|
647 |
+
msgstr ""
|
648 |
+
"Elige la apariencia del botón Lista de deseos cuando el producto ya ha sido "
|
649 |
+
"añadido a la lista de deseos"
|
650 |
|
651 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
652 |
msgid "Show \"Add to wishilist\" button"
|
665 |
msgstr "Ajustes de loop"
|
666 |
|
667 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
668 |
+
msgid ""
|
669 |
+
"Loop options will be visible on Shop page, category pages, product "
|
670 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
671 |
+
"products' loop is used"
|
672 |
+
msgstr ""
|
673 |
+
"Las opciones del bucle serán visibles en la página Tienda, en página de "
|
674 |
+
"categoría, shortcodes de producto, carruseles y todos los demás lugares en "
|
675 |
+
"los que el bucle de los productos de WooCommerce es usado"
|
676 |
|
677 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
678 |
msgid "Show \"Add to wishlist\" in loop"
|
680 |
|
681 |
#: ../plugin-options/add_to_wishlist-options.php:54
|
682 |
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
|
683 |
+
msgstr ""
|
684 |
+
"Activar la característica ''Añadir a la lista de deseos'' en el bucle de los "
|
685 |
+
"productos de WooCommerce"
|
686 |
|
687 |
#: ../plugin-options/add_to_wishlist-options.php:62
|
688 |
msgid "Position of \"Add to wishlist\" in loop"
|
689 |
msgstr "Posición de ''Añadir a la lista de deseos'' en bucle"
|
690 |
|
691 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
692 |
+
msgid ""
|
693 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
694 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
695 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
696 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
697 |
+
msgstr ""
|
698 |
+
"Elige donde mostrar el botón o enlace de \"Añadir a la lista de deseos\" en "
|
699 |
+
"el bucle de los productos de WooCommerce. <span class=\"addon\">Copia este "
|
700 |
+
"shortcode <span class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></"
|
701 |
+
"span> y pégalo donde quieras mostrar el botón o enlace ''Añadir a la lista "
|
702 |
+
"de deseos''</span>"
|
703 |
|
704 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
705 |
msgid "On top of the image"
|
713 |
msgid "After \"Add to cart\" button"
|
714 |
msgstr "Despuésl botón ''Añadir al carrito''"
|
715 |
|
716 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
717 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
718 |
msgid "Use shortcode"
|
719 |
msgstr "Usar shortcode"
|
720 |
|
721 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
722 |
msgid "Product page settings"
|
723 |
msgstr "Ajustes de página de producto"
|
724 |
|
725 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
726 |
msgid "Position of \"Add to wishlist\" on product page"
|
727 |
msgstr "Posición de ''Añadir a la lista de deseos'' en la página del producto"
|
728 |
|
729 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
730 |
+
msgid ""
|
731 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
732 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
733 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
734 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
735 |
+
msgstr ""
|
736 |
+
"Escoge donde mostrar el botón o enlace ''Añadir a la lista de deseos\"Add to "
|
737 |
+
"wishlist\" en la página de producto. <span class=\"addon\">Copia este "
|
738 |
+
"shortcode <span class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></"
|
739 |
+
"span> y pégalo donde quieras mostrar el botón o enlace ''Añadir al "
|
740 |
+
"carrito''</span>"
|
741 |
|
742 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
743 |
msgid "After \"Add to cart\""
|
744 |
msgstr "Después de \"Añadir al carrito\""
|
745 |
|
746 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
747 |
msgid "After thumbnails"
|
748 |
msgstr "Después de las miniaturas"
|
749 |
|
750 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
751 |
msgid "After summary"
|
752 |
msgstr "Después del resumen"
|
753 |
|
754 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
755 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
756 |
msgid "Text customization"
|
757 |
msgstr "Personalización de texto"
|
758 |
|
759 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
760 |
msgid "\"Add to wishlist\" text"
|
761 |
msgstr "Texto ''Añadir a la lista de deseos''"
|
762 |
|
763 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
764 |
msgid "Enter a text for \"Add to wishlist\" button"
|
765 |
msgstr "Introduce un texto para el botón ''Añadir a la lista de deseos''"
|
766 |
|
767 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
768 |
msgid "\"Product added\" text"
|
769 |
msgstr "Texto de \"Producto añadido\""
|
770 |
|
771 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
772 |
+
msgid ""
|
773 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
774 |
+
"wishlist"
|
775 |
+
msgstr ""
|
776 |
+
"Introduce el texto del mensaje mostrado cuando el usuario añade un producto "
|
777 |
+
"a la lista de deseos"
|
778 |
|
779 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
780 |
msgid "Product added!"
|
781 |
msgstr "¡Producto añadido!"
|
782 |
|
783 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
784 |
msgid "\"Browse wishlist\" text"
|
785 |
msgstr "Texto para \"Echar un vistazo a la lista de deseos\""
|
786 |
|
787 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
788 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
789 |
+
msgstr ""
|
790 |
+
"Introduce el texto para el enlace ''Echas un vistazo a la lista de deseos'' "
|
791 |
+
"en la página de producto"
|
|
|
|
|
792 |
|
793 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
794 |
msgid "\"Product already in wishlist\" text"
|
795 |
msgstr "Texto para \"El producto ya está en la lista de deseos\""
|
796 |
|
797 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
798 |
+
msgid ""
|
799 |
+
"Enter the text for the message displayed when the user views a product that "
|
800 |
+
"is already in the wishlist"
|
801 |
+
msgstr ""
|
802 |
+
"Introduce el texto para el mensaje mostrado cuando el usuario ve un producto "
|
803 |
+
"que ya está en su lista de deseos"
|
804 |
|
805 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
806 |
msgid "The product is already in your wishlist!"
|
807 |
msgstr "¡El producto ya está en tu lista de deseos!"
|
808 |
|
809 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
810 |
msgid "Style & Color customization"
|
811 |
msgstr "Personalización de estilo y color"
|
812 |
|
813 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
814 |
msgid "Style of \"Add to wishlist\""
|
815 |
msgstr "Estilo del ''Añadir a la lista de deseos''"
|
816 |
|
817 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
818 |
+
msgid ""
|
819 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
820 |
+
msgstr ""
|
821 |
+
"Elige si quieres mostrar un enlace textual o un botón de ''Añadir a la lista "
|
822 |
+
"de deseos''"
|
823 |
|
824 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
825 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
826 |
msgid "Textual (anchor)"
|
827 |
msgstr "Textual (anclaje)"
|
828 |
|
829 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
830 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
831 |
msgid "Button with theme style"
|
832 |
msgstr "Botón con estilo del tema"
|
833 |
|
834 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
835 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
836 |
msgid "Button with custom style"
|
837 |
msgstr "Botón con estilo personalizado"
|
838 |
|
839 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
840 |
msgid "\"Add to wishlist\" button style"
|
841 |
msgstr "Estilo del botón ''Añadir a la lista de deseos''"
|
842 |
|
843 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
844 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
845 |
msgstr "Elige los colores para el botón ''Añadir a la lista de deseos''"
|
846 |
|
847 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
848 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
849 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
850 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
851 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
852 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
853 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
854 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
855 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
856 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
857 |
msgid "Background"
|
858 |
msgstr "Fondo"
|
859 |
|
860 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
861 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
862 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
863 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
864 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
865 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
866 |
msgid "Text"
|
867 |
msgstr "Texto"
|
868 |
|
869 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
870 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
871 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
872 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
873 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
874 |
msgid "Border"
|
875 |
msgstr "Borde"
|
876 |
|
877 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
878 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
879 |
+
msgstr ""
|
880 |
+
"Elige colores para el botón ''Añadir a la lista de deseos'' al pasar el "
|
881 |
+
"cursor"
|
882 |
|
883 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
884 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
885 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
886 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
887 |
msgid "Background Hover"
|
888 |
msgstr "Al pasar el cursor por el fondo"
|
889 |
|
890 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
891 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
892 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
893 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
894 |
msgid "Text Hover"
|
895 |
msgstr "Al pasar el cursor por el texto"
|
896 |
|
897 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
898 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
899 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
900 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
901 |
msgid "Border Hover"
|
902 |
msgstr "Al pasar el cursor por el borde"
|
903 |
|
904 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
905 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
906 |
msgid "Border radius"
|
907 |
msgstr "Radio del borde"
|
908 |
|
909 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
910 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
911 |
msgstr "Elige un radio para el botón ''Añadir a la lista de deseos''"
|
912 |
|
913 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
914 |
msgid "\"Add to wishlist\" icon"
|
915 |
msgstr "Icono de ''Añadir a la lista de deseos''"
|
916 |
|
917 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
918 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
919 |
+
msgstr ""
|
920 |
+
"Selecciona un icono para el botón ''Añadir a la lista de deseos'' (opcional)"
|
921 |
|
922 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
923 |
msgid "\"Add to wishlist\" custom icon"
|
924 |
msgstr "Icono personalizado de ''Añadir a la lista de deseos''"
|
925 |
|
926 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
927 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
928 |
+
msgid ""
|
929 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
930 |
+
"32px x 32px)"
|
931 |
+
msgstr ""
|
932 |
+
"Sube un icono que te gustaría usar para el botón ''Añadir a la lista de "
|
933 |
+
"deseos'' (sugerencia: 32px x 32px)"
|
934 |
|
935 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
936 |
msgid "\"Added to wishlist\" icon"
|
937 |
msgstr "Icono de ''Añadido a la lista de deseos''"
|
938 |
|
939 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
940 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
941 |
+
msgstr ""
|
942 |
+
"Selecciona un icono para el botón ''Añadido a la lista de deseos'' (opcional)"
|
943 |
|
944 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
945 |
msgid "Same used for Add to wishlist"
|
946 |
msgstr "El mismo usado para Añadir a la lista de deseos"
|
947 |
|
948 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
949 |
msgid "\"Added to wishlist\" custom icon"
|
950 |
msgstr "Icono personalizado de ''Añadido a la lista de deseos''"
|
951 |
|
952 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
953 |
msgid "Custom CSS"
|
954 |
msgstr "Personalizar CSS"
|
955 |
|
956 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
957 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
958 |
+
msgstr ""
|
959 |
+
"Introduce el CSS personalizado a aplicar en los elementos de la Lista de "
|
960 |
+
"deseos (opcional)"
|
961 |
+
|
962 |
+
#: ../plugin-options/lists-options.php:32
|
963 |
+
#, fuzzy
|
964 |
+
#| msgid "Share wishlist"
|
965 |
+
msgid "Search list"
|
966 |
+
msgstr "Compartir lista de deseos"
|
967 |
|
968 |
#: ../plugin-options/settings-options.php:17
|
969 |
+
msgid ""
|
970 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
971 |
+
"the %s."
|
972 |
+
msgstr ""
|
973 |
+
"Si quieres beneficiarte de esta característica, podrías considerar la compra "
|
974 |
+
"de la %s."
|
975 |
|
976 |
#: ../plugin-options/settings-options.php:30
|
977 |
msgid "Enable AJAX loading"
|
983 |
|
984 |
#: ../plugin-options/settings-options.php:44
|
985 |
msgid "YITH WooCommerce Frequently Bought Together Integration"
|
986 |
+
msgstr ""
|
987 |
+
"Integración de productos YITH WooCommerce comprados juntos frecuentemente"
|
988 |
|
989 |
#: ../plugin-options/settings-options.php:46
|
990 |
+
msgid ""
|
991 |
+
"In order to use this integration you have to install and activate YITH "
|
992 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
993 |
+
msgstr ""
|
994 |
+
"Para usar esta integración debes instalar y activar YITH WooCommerce "
|
995 |
+
"Frequently Bought Together. <a href=\"%s\">Leer más</a>"
|
996 |
|
997 |
#: ../plugin-options/settings-options.php:51
|
998 |
msgid "Enable slider in wishlist"
|
999 |
msgstr "Habilitar deslizador en la lista de deseos"
|
1000 |
|
1001 |
#: ../plugin-options/settings-options.php:52
|
1002 |
+
msgid ""
|
1003 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
1004 |
+
"class=\"thickbox\">Example</a>). %s"
|
1005 |
+
msgstr ""
|
1006 |
+
"Activa el carrusel con los productos relacionados en la página de Lista de "
|
1007 |
+
"deseos (<a href=\"%s\" class=\"thickbox\">Ejemplo</a>). %s"
|
1008 |
|
1009 |
#: ../plugin-options/wishlist_page-options.php:17
|
1010 |
msgid "All your wishlists"
|
1015 |
msgstr "Página de Lista de deseos"
|
1016 |
|
1017 |
#: ../plugin-options/wishlist_page-options.php:25
|
1018 |
+
msgid ""
|
1019 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
1020 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
1021 |
+
"content"
|
1022 |
+
msgstr ""
|
1023 |
+
"Escoge una página como la página de Lista de deseos predeterminada; "
|
1024 |
+
"asegúrate de añadir el <span class=\"code\"><code>[yith_wcwl_wishlist]</"
|
1025 |
+
"code></span> shortcode en el contenido de la página"
|
1026 |
|
1027 |
#: ../plugin-options/wishlist_page-options.php:38
|
1028 |
msgid "Wishlist Detail Page"
|
1029 |
msgstr "Página de detalles de la lista de deseos"
|
1030 |
|
1031 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
1032 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
1033 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
1034 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
1035 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
1036 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
1037 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
1038 |
msgid "In wishlist table show"
|
1039 |
msgstr "Mostrar en la tabla de la lista de deseos"
|
1040 |
|
1041 |
#: ../plugin-options/wishlist_page-options.php:46
|
1042 |
msgid "Product variations selected by the user (example: size or color)"
|
1043 |
+
msgstr ""
|
1044 |
+
"Variaciones de producto seleccionada por el usuario (ejemplo: talla o color)"
|
1045 |
|
1046 |
#: ../plugin-options/wishlist_page-options.php:55
|
1047 |
msgid "Product price"
|
1060 |
msgstr "Opción de añadir al carrito para cada producto"
|
1061 |
|
1062 |
#: ../plugin-options/wishlist_page-options.php:91
|
1063 |
+
msgid ""
|
1064 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
1065 |
+
msgstr ""
|
1066 |
+
"Icono para eliminar el producto de la lista de deseos - a la izquierda del "
|
1067 |
+
"producto"
|
1068 |
|
1069 |
#: ../plugin-options/wishlist_page-options.php:100
|
1070 |
+
msgid ""
|
1071 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
1072 |
+
msgstr ""
|
1073 |
+
"Botón para eliminar el producto de la lista de deseos - a la derecha del "
|
1074 |
+
"producto"
|
1075 |
|
1076 |
#: ../plugin-options/wishlist_page-options.php:108
|
1077 |
msgid "Redirect to cart"
|
1078 |
msgstr "Redirigir al carrito"
|
1079 |
|
1080 |
#: ../plugin-options/wishlist_page-options.php:109
|
1081 |
+
msgid ""
|
1082 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
1083 |
+
"wishlist page"
|
1084 |
+
msgstr ""
|
1085 |
+
"Redireccionar a los usuarios a la página de carrito cuando añaden un "
|
1086 |
+
"producto al carrito desde la página de la lista de deseos"
|
1087 |
|
1088 |
#: ../plugin-options/wishlist_page-options.php:117
|
1089 |
msgid "Remove if added to the cart"
|
1090 |
msgstr "Quitar si se añade al carrito"
|
1091 |
|
1092 |
#: ../plugin-options/wishlist_page-options.php:118
|
1093 |
+
msgid ""
|
1094 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
1095 |
+
msgstr ""
|
1096 |
+
"Eliminar el producto de la lista de deseos tras haber sido añadido al carrito"
|
1097 |
|
1098 |
#: ../plugin-options/wishlist_page-options.php:126
|
1099 |
msgid "Share wishlist"
|
1101 |
|
1102 |
#: ../plugin-options/wishlist_page-options.php:127
|
1103 |
msgid "Enable this option to let users share their wishlist on social media"
|
1104 |
+
msgstr ""
|
1105 |
+
"Activa esta opción para permitir a los usuarios compartir su lista de deseos "
|
1106 |
+
"en redes sociales"
|
1107 |
+
|
1108 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1109 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1110 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1111 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1112 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1113 |
msgid "Share on social media"
|
1114 |
msgstr "Compartir en redes sociales"
|
1115 |
|
1131 |
|
1132 |
#: ../plugin-options/wishlist_page-options.php:190
|
1133 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1134 |
+
msgstr ""
|
1135 |
+
"Título de la lista de deseos usado para compartir (solo en Twitter y "
|
1136 |
+
"Pinterest)"
|
1137 |
|
1138 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1139 |
msgid "My wishlist on %s"
|
1140 |
msgstr "Mi lista de deseos en %s"
|
1141 |
|
1144 |
msgstr "Texto social"
|
1145 |
|
1146 |
#: ../plugin-options/wishlist_page-options.php:198
|
1147 |
+
msgid ""
|
1148 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1149 |
+
"and Pinterest"
|
1150 |
+
msgstr ""
|
1151 |
+
"Introduce el mensaje que quieres publicar cuando compartes una lista de "
|
1152 |
+
"deseos en Twitter y Pinterest"
|
1153 |
|
1154 |
#: ../plugin-options/wishlist_page-options.php:206
|
1155 |
msgid "Social image URL"
|
1164 |
msgstr "Nombre predeterminado de lista de deseos"
|
1165 |
|
1166 |
#: ../plugin-options/wishlist_page-options.php:227
|
1167 |
+
msgid ""
|
1168 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1169 |
+
"automatically generated for all users if they do not create any custom one"
|
1170 |
+
msgstr ""
|
1171 |
+
"Introduce el nombre para la lista de deseos predeterminada. Esta es la lista "
|
1172 |
+
"de deseos que se creará automáticamente si los usuarios no crean una "
|
1173 |
+
"personalizada"
|
1174 |
+
|
1175 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1176 |
+
#, fuzzy
|
1177 |
+
#| msgid "My wishlist on "
|
1178 |
+
msgid "My wishlist"
|
1179 |
+
msgstr "Mi lista de deseos en "
|
1180 |
|
1181 |
#: ../plugin-options/wishlist_page-options.php:234
|
1182 |
msgid "\"Add to cart\" text"
|
1186 |
msgid "Enter a text for the \"Add to cart\" button"
|
1187 |
msgstr "Introduce un texto para el botón ''Añadir al carrito''"
|
1188 |
|
|
|
|
|
|
|
|
|
1189 |
#: ../plugin-options/wishlist_page-options.php:247
|
1190 |
msgid "Style & color customization"
|
1191 |
msgstr "Personalización de estilo y color"
|
1210 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1211 |
msgstr "Elige colores para el botón ''Añadir al carrito'' al pasar el cursor"
|
1212 |
|
1213 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1214 |
msgid "Set the radius for the \"Add to cart\" button"
|
1215 |
msgstr "Configura el radio para el botón ''Añadir al carrito''"
|
1216 |
|
1217 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1218 |
msgid "\"Add to cart\" icon"
|
1219 |
msgstr "Icono de ''Añadir al carrito''"
|
1220 |
|
1221 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1222 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1223 |
msgstr "Selecciona un icono para el botón ''Añadir al carrito'' (opcional)"
|
1224 |
|
1225 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1226 |
msgid "\"Add to cart\" custom icon"
|
1227 |
msgstr "Icono personalizado de ''Añadir al carrito''"
|
1228 |
|
1229 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1230 |
+
msgid ""
|
1231 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1232 |
+
"32px x 32px)"
|
1233 |
+
msgstr ""
|
1234 |
+
"Sube un icono que te gustaría usar para el botón ''Añadir al "
|
1235 |
+
"carrito'' (sugerencia: 32px x 32px)"
|
1236 |
|
1237 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1238 |
msgid "Primary button style"
|
1239 |
msgstr "Estilo de botón primario"
|
1240 |
|
1241 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1242 |
+
msgid ""
|
1243 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1244 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1245 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1246 |
+
msgstr ""
|
1247 |
+
"Elige colores para el botón primario<br/><small>Este estilo será aplicado al "
|
1248 |
+
"botón \"Editar título\" en la vista de Lista de deseos, en el botón "
|
1249 |
+
"\"Guardar cambios\" en la vista de Administrar y el botón \"Buscar lista de "
|
1250 |
+
"deseos\" en la vista de Buscar</small>"
|
1251 |
|
1252 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1253 |
+
msgid ""
|
1254 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1255 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1256 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1257 |
+
"small>"
|
1258 |
+
msgstr ""
|
1259 |
+
"Elige colores para el botón primario al pasar el cursor<br/><small>Este "
|
1260 |
+
"estilo será aplicado al botón ''Editar título'' en la vista de Lista de "
|
1261 |
+
"deseos, en el botón ''Guardar cambios'' en la vista Administrar y en el "
|
1262 |
+
"botón ''buscar lista de deseos'' en la vista Buscar</small>"
|
1263 |
|
1264 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1265 |
msgid "Secondary button style"
|
1266 |
msgstr "Estilo de botón secundario"
|
1267 |
|
1268 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1269 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1270 |
+
msgid ""
|
1271 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1272 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1273 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1277 |
msgid "Wishlist table style"
|
1278 |
msgstr "Estilo de la tabla de la lista de deseos"
|
1279 |
|
1280 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1281 |
+
msgid ""
|
1282 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1283 |
+
msgstr ""
|
1284 |
+
"Elige los colores para la tabla de la lista de deseos (cuando se establece "
|
1285 |
+
"el estilo ''Tradicional'')"
|
1286 |
|
1287 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1288 |
msgid "Highlight color"
|
1289 |
msgstr "Destacar color"
|
1290 |
|
1291 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1292 |
+
msgid ""
|
1293 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1294 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1295 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1296 |
+
msgstr ""
|
1297 |
+
"Elige el color para todas las secciones con fondo<br/><small>Este color será "
|
1298 |
+
"usado como fondo para el encabezado de la tabla de la lista de deseos y el "
|
1299 |
+
"pie de página (cuando se establece el estilo \"Tradicional\"), y para varios "
|
1300 |
+
"formularios sobre las visitas de la lista de deseos</small>"
|
1301 |
|
1302 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1303 |
msgid "Share button text color"
|
1304 |
msgstr "Color de texto de botón para compartir"
|
1305 |
|
1306 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1307 |
msgid "Choose colors for share buttons text"
|
1308 |
msgstr "Elige los colores para el texto de los botones para compartir"
|
1309 |
|
1310 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1311 |
msgid "Text hover"
|
1312 |
msgstr "Al pasar el cursor por el texto"
|
1313 |
|
1314 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1315 |
msgid "Facebook share button icon"
|
1316 |
msgstr "Icono del botón para compartir en Facebook"
|
1317 |
|
1318 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1319 |
msgid "Select an icon for the Facebook share button"
|
1320 |
msgstr "Selecciona un icono para el botón para compartir en Facebook"
|
1321 |
|
1322 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1323 |
msgid "Facebook share button custom icon"
|
1324 |
msgstr "Icono personalizado del botón para compartir en Facebook"
|
1325 |
|
1326 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1327 |
+
msgid ""
|
1328 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1329 |
+
"32px)"
|
1330 |
+
msgstr ""
|
1331 |
+
"Sube un icono que te gustaría usar para el botón para compartir en Facebook "
|
1332 |
+
"(sugerencia: 32px x 32px)"
|
1333 |
|
1334 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1335 |
msgid "Facebook share button style"
|
1336 |
msgstr "Estilo del botón para compartir en Facebook"
|
1337 |
|
1338 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1339 |
msgid "Choose colors for Facebook share button"
|
1340 |
msgstr "Elige los colores para el botón para compartir en Facebook"
|
1341 |
|
1342 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1343 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1344 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1345 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1346 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1347 |
msgid "Background hover"
|
1348 |
msgstr "Fondo al pasar el cursor"
|
1349 |
|
1350 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1351 |
msgid "Twitter share button icon"
|
1352 |
msgstr "Icono del botón para compartir en Twitter"
|
1353 |
|
1354 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1355 |
msgid "Select an icon for the Twitter share button"
|
1356 |
msgstr "Selecciona un icono para el botón para compartir en Twitter"
|
1357 |
|
1358 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1359 |
msgid "Twitter share button custom icon"
|
1360 |
msgstr "Icono personalizado para compartir en Twitter"
|
1361 |
|
1362 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1363 |
+
msgid ""
|
1364 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1365 |
+
"32px)"
|
1366 |
+
msgstr ""
|
1367 |
+
"Sube un icono que te gustaría usar para el botón para compartir en Twitter "
|
1368 |
+
"(sugerencia:: 32px x 32px)"
|
1369 |
|
1370 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1371 |
msgid "Twitter share button style"
|
1372 |
msgstr "Estilo del botón para compartir en Twitter"
|
1373 |
|
1374 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1375 |
msgid "Choose colors for Twitter share button"
|
1376 |
msgstr "Elige los colores para el botón para compartir en Twitter"
|
1377 |
|
1378 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1379 |
msgid "Pinterest share button icon"
|
1380 |
msgstr "Icono para compartir por Pinterest"
|
1381 |
|
1382 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1383 |
msgid "Select an icon for the Pinterest share button"
|
1384 |
msgstr "Selecciona un icono para el botón para compartir por Pinterest"
|
1385 |
|
1386 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1387 |
msgid "Pinterest share button custom icon"
|
1388 |
msgstr "Icono personalizado del botón para compartir por Pinterest"
|
1389 |
|
1390 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1391 |
+
msgid ""
|
1392 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1393 |
+
"x 32px)"
|
1394 |
+
msgstr ""
|
1395 |
+
"Sube un icono que te gustaría usar para el botón para compartir por "
|
1396 |
+
"Pinterest (sugerencia: 32px x 32px)"
|
1397 |
|
1398 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1399 |
msgid "Pinterest share button style"
|
1400 |
msgstr "Estilo del botón para compartir por Pinterest"
|
1401 |
|
1402 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1403 |
msgid "Choose colors for Pinterest share button"
|
1404 |
msgstr "Elige colores para el botón para compartir por Pinterest"
|
1405 |
|
1406 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1407 |
msgid "Email share button icon"
|
1408 |
msgstr "Icono para compartir por Correo electrónico"
|
1409 |
|
1410 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1411 |
msgid "Select an icon for the Email share button"
|
1412 |
+
msgstr ""
|
1413 |
+
"Selecciona un icono para el botón para compartir por Correo electrónico"
|
1414 |
|
1415 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1416 |
msgid "Email share button custom icon"
|
1417 |
msgstr "Icono personalizado del botón para compartir por Correo electrónico"
|
1418 |
|
1419 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1420 |
+
msgid ""
|
1421 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1422 |
+
"x 32px)"
|
1423 |
+
msgstr ""
|
1424 |
+
"Sube un icono que te gustaría usar para el botón para compartir por Correo "
|
1425 |
+
"electrónico (sugerencia: 32px x 32px)"
|
1426 |
|
1427 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1428 |
msgid "Email share button style"
|
1429 |
msgstr "Estilo del botón para compartir por Correo electrónico"
|
1430 |
|
1431 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1432 |
msgid "Choose colors for the Email share button"
|
1433 |
msgstr "Elige los colores para el botón para compartir por Correo electrónico"
|
1434 |
|
1435 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1436 |
msgid "WhatsApp share button icon"
|
1437 |
msgstr "Icono de botón para compartir por WhatsApp"
|
1438 |
|
1439 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1440 |
msgid "Select an icon for the WhatsApp share button"
|
1441 |
msgstr "Selecciona un icono para el botón para compartir por WhatsApp"
|
1442 |
|
1443 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1444 |
msgid "WhatsApp share button custom icon"
|
1445 |
msgstr "Icono personalizado del botón para compartir por WhatsApp"
|
1446 |
|
1447 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1448 |
+
msgid ""
|
1449 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1450 |
+
"32px)"
|
1451 |
+
msgstr ""
|
1452 |
+
"Sube un icono que te gustaría usar para el botón para compartir por WhatsApp "
|
1453 |
+
"(sugerencia: 32px x 32px)"
|
1454 |
|
1455 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1456 |
msgid "WhatsApp share button style"
|
1457 |
msgstr "Estilo del botón para compartir por WhatsApp"
|
1458 |
|
1459 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1460 |
msgid "Choose colors for WhatsApp share button"
|
1461 |
msgstr "Elige los colores para el botón para compartir por WhatsApp"
|
1462 |
|
1463 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1464 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1465 |
+
msgid ""
|
1466 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1467 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1471 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1472 |
msgid "Upgrade"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1476 |
msgid "Premium Features"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1480 |
msgid "Allow your customers to create multiple wishlists"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1484 |
+
msgid ""
|
1485 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1486 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1487 |
+
"other parameters."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1491 |
msgid "Multiple Wishlist"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1495 |
msgid "Wishlist Private"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1499 |
msgid "A transparent privacy management"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1503 |
+
msgid ""
|
1504 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1505 |
+
"sharing the wishlist or making it private."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1509 |
+
msgid ""
|
1510 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1511 |
+
"page"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1515 |
+
msgid ""
|
1516 |
+
"And give only registered users the privilege to use the wishlist "
|
1517 |
+
"functionalities."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1521 |
msgid "Estimate Cost"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1525 |
msgid "Admin Panel"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1529 |
msgid "An advanced and more versatile management of the wishlist"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1533 |
+
msgid ""
|
1534 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1535 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1536 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1537 |
+
"social networks, and much more!"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1541 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1545 |
+
msgid ""
|
1546 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1547 |
+
"are more interested in and plan targeted marketing strategies."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1551 |
msgid "Search Wishlists"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1555 |
msgid "'ADD TO CART'"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1559 |
+
msgid ""
|
1560 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1564 |
+
msgid ""
|
1565 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1566 |
+
"customers who have added specific products to their wishlist and push them "
|
1567 |
+
"to buy."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1571 |
msgid "Let users buy the product right from the wishlist page"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1575 |
+
msgid ""
|
1576 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1577 |
+
"also the information about the size, colour or quantity selected when added "
|
1578 |
+
"to the wishlist."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1582 |
msgid "DISABLE WISHLIST"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1586 |
msgid "Choose a charming layout for your wishlist page"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1590 |
+
msgid ""
|
1591 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1592 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1593 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1594 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1595 |
+
"your website."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1599 |
msgid "UNLOGGED USERS"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1603 |
msgid "Wishlist widgets for the header and sidebars"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1607 |
+
msgid ""
|
1608 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1609 |
+
"in the header, in the sidebars, wherever you want."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1613 |
msgid "POPULAR TABLE"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1617 |
msgid "FUNCTIONALITIES"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1621 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1625 |
+
msgid ""
|
1626 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1627 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1628 |
+
"product and how much they can save when there’s a promotion running or a "
|
1629 |
+
"discount on the product they’ve added to the wishlist."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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"
|
1706 |
|
1707 |
+
#: ../templates/wishlist-view-header.php:48
|
1708 |
msgid "Save"
|
1709 |
msgstr "Guardar"
|
1710 |
|
1711 |
+
#: ../templates/wishlist-view-header.php:51
|
1712 |
msgid "Cancel"
|
1713 |
msgstr "Cancelar"
|
1714 |
|
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 ›"
|
1749 |
msgstr "Mover a otra lista ›"
|
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"
|
1760 |
|
1761 |
+
#: ../templates/wishlist-view.php:78
|
1762 |
msgid "Product name"
|
1763 |
msgstr "Nombre del producto"
|
1764 |
|
1765 |
+
#: ../templates/wishlist-view.php:86
|
1766 |
msgid "Unit price"
|
1767 |
msgstr "Precio por unidad"
|
1768 |
|
1769 |
+
#: ../templates/wishlist-view.php:95
|
1770 |
msgid "Quantity"
|
1771 |
msgstr "Cantidad"
|
1772 |
|
1773 |
+
#: ../templates/wishlist-view.php:104
|
1774 |
msgid "Stock status"
|
1775 |
msgstr "Estado de inventario"
|
1776 |
|
1777 |
+
#: ../templates/wishlist-view.php:122
|
1778 |
msgid "Arrange"
|
1779 |
msgstr "Ordenar"
|
1780 |
|
1781 |
+
#. translators: date added label: 1 date added.
|
1782 |
+
#: ../templates/wishlist-view.php:238
|
1783 |
msgid "Added on: %s"
|
1784 |
msgstr "Añadido el: %s"
|
1785 |
|
1786 |
+
#: ../templates/wishlist-view.php:287
|
1787 |
msgid "Remove"
|
1788 |
msgstr "Quitar"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
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"
|
@@ -13,90 +13,146 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "Agregar a la Lista de deseos"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "Lista de deseos"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "Producto exitosamente eliminado"
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr ""
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "Lista de deseos"
|
102 |
|
@@ -122,6 +178,11 @@ msgstr ""
|
|
122 |
msgid "Title"
|
123 |
msgstr ""
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr ""
|
@@ -130,94 +191,144 @@ msgstr ""
|
|
130 |
msgid "Items added"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "Compartir en:"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "Compartir en Facebook"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "Tweet en Twitter"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "Pin en Pinterest"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "My Lista de deseos en %s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr "Gratis!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr ""
|
@@ -226,11 +337,12 @@ msgstr ""
|
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "Error. No fue posible eliminar el producto de la Lista."
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr ""
|
236 |
|
@@ -238,58 +350,198 @@ msgstr ""
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr ""
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] ""
|
245 |
msgstr[1] ""
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] ""
|
251 |
msgstr[1] ""
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr ""
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] ""
|
265 |
msgstr[1] ""
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "Compartir en:"
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgstr ""
|
294 |
|
295 |
#: ../init.php:4
|
@@ -297,7 +549,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,28 +565,31 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "Ajustes Generales"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -349,7 +609,10 @@ msgid "Loop settings"
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
|
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -365,7 +628,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
|
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -380,196 +647,239 @@ msgstr ""
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "Usar shortcode"
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
|
|
|
|
|
|
|
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "Despued de \"Agregar al Carrito\""
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "Despues de las miniaturas"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "Despues del Resumen"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "¡Producto agregado!"
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "¡Producto agregado!"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "Ir a la Lista de deseos"
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "El producto ya está en la Lista"
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
|
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "Css personalizado"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
msgstr ""
|
570 |
|
|
|
|
|
|
|
|
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
@@ -585,7 +895,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
585 |
msgstr ""
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
|
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
@@ -593,7 +905,9 @@ msgid "Enable slider in wishlist"
|
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -605,14 +919,23 @@ msgid "Wishlist page"
|
|
605 |
msgstr ""
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr ""
|
618 |
|
@@ -637,11 +960,13 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr ""
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -649,7 +974,9 @@ msgid "Redirect to cart"
|
|
649 |
msgstr "Redirreccionar al Carrito"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -657,7 +984,8 @@ msgid "Remove if added to the cart"
|
|
657 |
msgstr "Remover si es agregado al Carrito."
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -668,7 +996,11 @@ msgstr ""
|
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr ""
|
674 |
|
@@ -692,7 +1024,7 @@ msgstr ""
|
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "My Lista de deseos en %s"
|
698 |
|
@@ -701,7 +1033,9 @@ msgid "Social text"
|
|
701 |
msgstr "Texto de redes sociales"
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
|
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -717,9 +1051,17 @@ msgid "Default wishlist name"
|
|
717 |
msgstr ""
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
725 |
msgstr ""
|
@@ -728,10 +1070,6 @@ msgstr ""
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr ""
|
@@ -756,336 +1094,396 @@ msgstr ""
|
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
|
|
|
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
|
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
|
|
|
|
|
|
|
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
|
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
|
|
|
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
|
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
|
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
960 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1522,50 @@ msgstr ""
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "Título de la Lista de deseos"
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr ""
|
1166 |
|
@@ -1180,94 +1585,61 @@ msgstr ""
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "Disponilbe."
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "Remover este producto"
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr ""
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "Lista de deseos"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "Agregar a la Lista de deseos"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "Lista de deseos"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
63 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
64 |
+
msgid "View ›"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
68 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
69 |
+
msgid "or"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
73 |
+
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
77 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
78 |
msgid "Product successfully removed."
|
79 |
msgstr "Producto exitosamente eliminado"
|
80 |
|
81 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
82 |
msgid "Please, make sure to enter a valid title"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
86 |
+
msgid ""
|
87 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
88 |
+
"are enabled."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
92 |
msgid "Product added to cart successfully"
|
93 |
msgstr ""
|
94 |
|
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 ""
|
102 |
+
|
103 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
104 |
+
msgctxt "page_slug"
|
105 |
+
msgid "wishlist"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
109 |
msgid "While you visit our site, we’ll track:"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
113 |
+
msgid ""
|
114 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
115 |
+
"users your favourite products, and to create targeted email campaigns."
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
119 |
+
msgid ""
|
120 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
121 |
+
"make them visible to the store staff"
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
125 |
+
msgid ""
|
126 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
127 |
+
"browsing our site."
|
128 |
msgstr ""
|
129 |
|
130 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
131 |
+
msgid ""
|
132 |
+
"Members of our team have access to the information you provide us with. For "
|
133 |
+
"example, both Administrators and Shop Managers can access:"
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
137 |
+
msgid ""
|
138 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
139 |
+
"settings of your wishlists"
|
140 |
msgstr ""
|
141 |
|
142 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
143 |
+
msgid ""
|
144 |
+
"Our team members have access to this information to offer you better deals "
|
145 |
+
"for the products you love."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
149 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
150 |
msgid "Customer wishlists"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
154 |
+
#: ../plugin-options/lists-options.php:23,
|
155 |
+
#: ../plugin-options/lists-options.php:30
|
156 |
msgid "Wishlists"
|
157 |
msgstr "Lista de deseos"
|
158 |
|
178 |
msgid "Title"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
182 |
+
msgctxt "date when wishlist was created"
|
183 |
+
msgid "Created on"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
187 |
msgid "Visibility"
|
188 |
msgstr ""
|
191 |
msgid "Items added"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
195 |
+
msgctxt "[gutenberg]: block name"
|
196 |
+
msgid "YITH Add to wishlist"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
200 |
+
msgctxt "[gutenberg]: block description"
|
201 |
+
msgid "Shows Add to wishlist button"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
205 |
+
msgid ""
|
206 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
207 |
+
"product)"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
211 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
215 |
msgid "Button label (leave empty to use the default settings)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
219 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
223 |
+
msgid ""
|
224 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
225 |
+
"settings)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
229 |
+
msgid ""
|
230 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
234 |
+
msgid ""
|
235 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
236 |
+
"the default settings)"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
240 |
+
msgid ""
|
241 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
242 |
+
"settings)"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
246 |
+
msgctxt "[gutenberg]: block name"
|
247 |
+
msgid "YITH Wishlist"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
251 |
+
msgctxt "[gutenberg]: block description"
|
252 |
+
msgid "Shows a list of products in wishlist"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
256 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
260 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
261 |
msgid "Paginate"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
265 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
266 |
msgid "Do not paginate"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
270 |
msgid "Number of items to show per page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
274 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
278 |
msgid "Share on:"
|
279 |
msgstr "Compartir en:"
|
280 |
|
281 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
282 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
283 |
msgid "Share on Facebook"
|
284 |
msgstr "Compartir en Facebook"
|
285 |
|
286 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
287 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
288 |
msgid "Tweet on Twitter"
|
289 |
msgstr "Tweet en Twitter"
|
290 |
|
291 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
292 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
293 |
msgid "Pin on Pinterest"
|
294 |
msgstr "Pin en Pinterest"
|
295 |
|
296 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
297 |
msgid "Share via email"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
301 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
302 |
msgid "My wishlist on "
|
303 |
msgstr "My Lista de deseos en %s"
|
304 |
|
305 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
306 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
307 |
msgid "Share on WhatsApp"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
311 |
msgid "Remove from list"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
315 |
msgid "Free!"
|
316 |
msgstr "Gratis!"
|
317 |
|
318 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
319 |
+
msgctxt ""
|
320 |
+
"Part of the template that shows price variation since addition to list; "
|
321 |
+
"placeholder will be replaced with a percentage"
|
322 |
+
msgid "Price is %1$s%%"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
326 |
+
msgctxt ""
|
327 |
+
"Part of the template that shows price variation since addition to list; "
|
328 |
+
"placeholder will be replaced with a price"
|
329 |
+
msgid "(Was %2$s when added in list)"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
#: ../includes/class.yith-wcwl.php:161
|
333 |
msgid "The item cannot be added to this wishlist"
|
334 |
msgstr ""
|
337 |
msgid "An error occurred while adding the products to the wishlist."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
341 |
msgid "Error. Unable to remove the product from the wishlist."
|
342 |
msgstr "Error. No fue posible eliminar el producto de la Lista."
|
343 |
|
344 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
345 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
346 |
msgid "Invalid wishlist."
|
347 |
msgstr ""
|
348 |
|
350 |
msgid "Invalid wishlist item."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#. translators: 1. Number of users.
|
354 |
+
#: ../includes/functions.yith-wcwl.php:216
|
355 |
msgid "%d user"
|
356 |
msgid_plural "%d users"
|
357 |
msgstr[0] ""
|
358 |
msgstr[1] ""
|
359 |
|
360 |
+
#: ../includes/functions.yith-wcwl.php:217
|
361 |
msgid "has this item in wishlist"
|
362 |
msgid_plural "have this item in wishlist"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ../includes/functions.yith-wcwl.php:219
|
367 |
msgid "You're the first"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../includes/functions.yith-wcwl.php:220
|
371 |
msgid "to add this item in wishlist"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
375 |
+
#: ../includes/functions.yith-wcwl.php:224
|
376 |
msgid "You and %s user"
|
377 |
msgid_plural "You and %d users"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ../includes/functions.yith-wcwl.php:225
|
382 |
msgid "have this item in wishlist"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/functions.yith-wcwl.php:460
|
386 |
+
msgid "None"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../includes/functions.yith-wcwl.php:461
|
390 |
+
#, fuzzy
|
391 |
+
#| msgid "Custom CSS"
|
392 |
+
msgid "Custom"
|
393 |
+
msgstr "Css personalizado"
|
394 |
+
|
395 |
+
#: ../includes/functions.yith-wcwl.php:553
|
396 |
msgid "Shared"
|
397 |
msgstr "Compartir en:"
|
398 |
|
399 |
+
#: ../includes/functions.yith-wcwl.php:557
|
400 |
+
msgid "Only people with a link to this list can see it"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../includes/functions.yith-wcwl.php:563
|
404 |
msgid "Private"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../includes/functions.yith-wcwl.php:567
|
408 |
+
msgid "Only you can see this list"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../includes/functions.yith-wcwl.php:573
|
412 |
msgid "Public"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/functions.yith-wcwl.php:577
|
416 |
+
msgid "Anyone can search for and see this list"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
420 |
+
msgctxt "Elementor widget name"
|
421 |
+
msgid "YITH Wishlist Add button"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
425 |
+
#, fuzzy
|
426 |
+
#| msgid "Product added!"
|
427 |
+
msgctxt "Elementor section title"
|
428 |
+
msgid "Product"
|
429 |
+
msgstr "¡Producto agregado!"
|
430 |
+
|
431 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
432 |
+
#, fuzzy
|
433 |
+
#| msgid "Product added!"
|
434 |
+
msgctxt "Elementor control label"
|
435 |
+
msgid "Product ID"
|
436 |
+
msgstr "¡Producto agregado!"
|
437 |
+
|
438 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
439 |
+
msgctxt "Elementor section title"
|
440 |
+
msgid "Labels"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
444 |
+
msgctxt "Elementor control label"
|
445 |
+
msgid "Button label"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
449 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
450 |
+
msgid "Add to wishlist"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
454 |
+
#, fuzzy
|
455 |
+
#| msgid "\"Browse wishlist\" text"
|
456 |
+
msgctxt "Elementor control label"
|
457 |
+
msgid "\"Browse wishlist\" label"
|
458 |
+
msgstr "Ir a la Lista de deseos"
|
459 |
+
|
460 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
461 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
462 |
+
msgid "Browse wishlist"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
466 |
+
#, fuzzy
|
467 |
+
#| msgid "\"Product already in wishlist\" text"
|
468 |
+
msgctxt "Elementor control label"
|
469 |
+
msgid "\"Product already in wishlist\" label"
|
470 |
+
msgstr "El producto ya está en la Lista"
|
471 |
+
|
472 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
473 |
+
#, fuzzy
|
474 |
+
#| msgid "\"Product already in wishlist\" text"
|
475 |
+
msgid "Product already in wishlist"
|
476 |
+
msgstr "El producto ya está en la Lista"
|
477 |
+
|
478 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
479 |
+
#, fuzzy
|
480 |
+
#| msgid "\"Product already in wishlist\" text"
|
481 |
+
msgctxt "Elementor control label"
|
482 |
+
msgid "\"Product added to wishlist\" label"
|
483 |
+
msgstr "El producto ya está en la Lista"
|
484 |
+
|
485 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
486 |
+
#, fuzzy
|
487 |
+
#| msgid "\"Product already in wishlist\" text"
|
488 |
+
msgid "Product added to wishlist"
|
489 |
+
msgstr "El producto ya está en la Lista"
|
490 |
+
|
491 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
492 |
+
msgctxt "Elementor section title"
|
493 |
+
msgid "Advanced"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
497 |
+
msgctxt "Elementor control label"
|
498 |
+
msgid "URL of the wishlist page"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
502 |
+
msgctxt "Elementor control label"
|
503 |
+
msgid "Icon for the button"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
507 |
+
msgctxt "Elementor control label"
|
508 |
+
msgid "Additional CSS classes for the button"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
512 |
+
#, fuzzy
|
513 |
+
#| msgid "Wishlist"
|
514 |
+
msgctxt "Elementor widget name"
|
515 |
+
msgid "YITH Wishlist"
|
516 |
+
msgstr "Lista de deseos"
|
517 |
+
|
518 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
519 |
+
#, fuzzy
|
520 |
+
#| msgid "Wishlist"
|
521 |
+
msgctxt "Elementor section title"
|
522 |
+
msgid "Wishlist"
|
523 |
+
msgstr "Lista de deseos"
|
524 |
+
|
525 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
526 |
+
#, fuzzy
|
527 |
+
#| msgid "Wishlist"
|
528 |
+
msgctxt "Elementor control label"
|
529 |
+
msgid "Wishlist ID"
|
530 |
+
msgstr "Lista de deseos"
|
531 |
+
|
532 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
533 |
+
msgctxt "Elementor section title"
|
534 |
+
msgid "Pagination"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
538 |
+
msgctxt "Elementor control label"
|
539 |
+
msgid "Paginate items"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
543 |
+
msgctxt "yith-woocommerce-wishlist"
|
544 |
+
msgid "Items per page"
|
545 |
msgstr ""
|
546 |
|
547 |
#: ../init.php:4
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../init.php:5
|
552 |
+
msgid ""
|
553 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
554 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
555 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
556 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
557 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
558 |
msgstr ""
|
559 |
|
560 |
#: ../init.php:7
|
565 |
msgid "https://yithemes.com/"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../init.php:141
|
569 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../init.php:151
|
573 |
msgid "You can't activate the free version of"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../init.php:151
|
577 |
msgid "while you are using the premium one."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
581 |
+
#: ../plugin-options/settings-options.php:23
|
582 |
msgid "General Settings"
|
583 |
msgstr "Ajustes Generales"
|
584 |
|
585 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
586 |
+
msgid "After product is added to wishlist"
|
587 |
msgstr ""
|
588 |
|
589 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
590 |
+
msgid ""
|
591 |
+
"Choose the look of the Wishlist button when the product has already been "
|
592 |
+
"added to a wishlist"
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
612 |
+
msgid ""
|
613 |
+
"Loop options will be visible on Shop page, category pages, product "
|
614 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
615 |
+
"products' loop is used"
|
616 |
msgstr ""
|
617 |
|
618 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
628 |
msgstr ""
|
629 |
|
630 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
631 |
+
msgid ""
|
632 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
633 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
634 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
635 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
636 |
msgstr ""
|
637 |
|
638 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
647 |
msgid "After \"Add to cart\" button"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
651 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
652 |
msgid "Use shortcode"
|
653 |
msgstr "Usar shortcode"
|
654 |
|
655 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
656 |
msgid "Product page settings"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
660 |
msgid "Position of \"Add to wishlist\" on product page"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
664 |
+
msgid ""
|
665 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
666 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
667 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
668 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
672 |
msgid "After \"Add to cart\""
|
673 |
msgstr "Despued de \"Agregar al Carrito\""
|
674 |
|
675 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
676 |
msgid "After thumbnails"
|
677 |
msgstr "Despues de las miniaturas"
|
678 |
|
679 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
680 |
msgid "After summary"
|
681 |
msgstr "Despues del Resumen"
|
682 |
|
683 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
684 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
685 |
msgid "Text customization"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
689 |
msgid "\"Add to wishlist\" text"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
693 |
msgid "Enter a text for \"Add to wishlist\" button"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
697 |
msgid "\"Product added\" text"
|
698 |
msgstr "¡Producto agregado!"
|
699 |
|
700 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
701 |
+
msgid ""
|
702 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
703 |
+
"wishlist"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
707 |
msgid "Product added!"
|
708 |
msgstr "¡Producto agregado!"
|
709 |
|
710 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
711 |
msgid "\"Browse wishlist\" text"
|
712 |
msgstr "Ir a la Lista de deseos"
|
713 |
|
714 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
715 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
719 |
msgid "\"Product already in wishlist\" text"
|
720 |
msgstr "El producto ya está en la Lista"
|
721 |
|
722 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
723 |
+
msgid ""
|
724 |
+
"Enter the text for the message displayed when the user views a product that "
|
725 |
+
"is already in the wishlist"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
729 |
msgid "The product is already in your wishlist!"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
733 |
msgid "Style & Color customization"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
737 |
msgid "Style of \"Add to wishlist\""
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
741 |
+
msgid ""
|
742 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
746 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
747 |
msgid "Textual (anchor)"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
751 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
752 |
msgid "Button with theme style"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
756 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
757 |
msgid "Button with custom style"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
761 |
msgid "\"Add to wishlist\" button style"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
765 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
769 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
770 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
771 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
772 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
773 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
774 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
776 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
777 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
778 |
msgid "Background"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
782 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
783 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
784 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
785 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
786 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
787 |
msgid "Text"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
791 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
792 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
793 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
794 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
795 |
msgid "Border"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
799 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
803 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
804 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
805 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
806 |
msgid "Background Hover"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
810 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
811 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
812 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
813 |
msgid "Text Hover"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
817 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
818 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
819 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
820 |
msgid "Border Hover"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
824 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
825 |
msgid "Border radius"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
829 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
833 |
msgid "\"Add to wishlist\" icon"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
837 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
841 |
msgid "\"Add to wishlist\" custom icon"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
845 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
846 |
+
msgid ""
|
847 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
848 |
+
"32px x 32px)"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
852 |
msgid "\"Added to wishlist\" icon"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
856 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
860 |
msgid "Same used for Add to wishlist"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
864 |
msgid "\"Added to wishlist\" custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
868 |
msgid "Custom CSS"
|
869 |
msgstr "Css personalizado"
|
870 |
|
871 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
872 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../plugin-options/lists-options.php:32
|
876 |
+
msgid "Search list"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
#: ../plugin-options/settings-options.php:17
|
880 |
+
msgid ""
|
881 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
882 |
+
"the %s."
|
883 |
msgstr ""
|
884 |
|
885 |
#: ../plugin-options/settings-options.php:30
|
895 |
msgstr ""
|
896 |
|
897 |
#: ../plugin-options/settings-options.php:46
|
898 |
+
msgid ""
|
899 |
+
"In order to use this integration you have to install and activate YITH "
|
900 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
901 |
msgstr ""
|
902 |
|
903 |
#: ../plugin-options/settings-options.php:51
|
905 |
msgstr ""
|
906 |
|
907 |
#: ../plugin-options/settings-options.php:52
|
908 |
+
msgid ""
|
909 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
910 |
+
"class=\"thickbox\">Example</a>). %s"
|
911 |
msgstr ""
|
912 |
|
913 |
#: ../plugin-options/wishlist_page-options.php:17
|
919 |
msgstr ""
|
920 |
|
921 |
#: ../plugin-options/wishlist_page-options.php:25
|
922 |
+
msgid ""
|
923 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
924 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
925 |
+
"content"
|
926 |
msgstr ""
|
927 |
|
928 |
#: ../plugin-options/wishlist_page-options.php:38
|
929 |
msgid "Wishlist Detail Page"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
933 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
934 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
935 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
936 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
937 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
938 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
939 |
msgid "In wishlist table show"
|
940 |
msgstr ""
|
941 |
|
960 |
msgstr ""
|
961 |
|
962 |
#: ../plugin-options/wishlist_page-options.php:91
|
963 |
+
msgid ""
|
964 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
965 |
msgstr ""
|
966 |
|
967 |
#: ../plugin-options/wishlist_page-options.php:100
|
968 |
+
msgid ""
|
969 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
970 |
msgstr ""
|
971 |
|
972 |
#: ../plugin-options/wishlist_page-options.php:108
|
974 |
msgstr "Redirreccionar al Carrito"
|
975 |
|
976 |
#: ../plugin-options/wishlist_page-options.php:109
|
977 |
+
msgid ""
|
978 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
979 |
+
"wishlist page"
|
980 |
msgstr ""
|
981 |
|
982 |
#: ../plugin-options/wishlist_page-options.php:117
|
984 |
msgstr "Remover si es agregado al Carrito."
|
985 |
|
986 |
#: ../plugin-options/wishlist_page-options.php:118
|
987 |
+
msgid ""
|
988 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
989 |
msgstr ""
|
990 |
|
991 |
#: ../plugin-options/wishlist_page-options.php:126
|
996 |
msgid "Enable this option to let users share their wishlist on social media"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1000 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1001 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1002 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1003 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1004 |
msgid "Share on social media"
|
1005 |
msgstr ""
|
1006 |
|
1024 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1028 |
msgid "My wishlist on %s"
|
1029 |
msgstr "My Lista de deseos en %s"
|
1030 |
|
1033 |
msgstr "Texto de redes sociales"
|
1034 |
|
1035 |
#: ../plugin-options/wishlist_page-options.php:198
|
1036 |
+
msgid ""
|
1037 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1038 |
+
"and Pinterest"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: ../plugin-options/wishlist_page-options.php:206
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: ../plugin-options/wishlist_page-options.php:227
|
1054 |
+
msgid ""
|
1055 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1056 |
+
"automatically generated for all users if they do not create any custom one"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1060 |
+
#, fuzzy
|
1061 |
+
#| msgid "My wishlist on "
|
1062 |
+
msgid "My wishlist"
|
1063 |
+
msgstr "My Lista de deseos en %s"
|
1064 |
+
|
1065 |
#: ../plugin-options/wishlist_page-options.php:234
|
1066 |
msgid "\"Add to cart\" text"
|
1067 |
msgstr ""
|
1070 |
msgid "Enter a text for the \"Add to cart\" button"
|
1071 |
msgstr ""
|
1072 |
|
|
|
|
|
|
|
|
|
1073 |
#: ../plugin-options/wishlist_page-options.php:247
|
1074 |
msgid "Style & color customization"
|
1075 |
msgstr ""
|
1094 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1098 |
msgid "Set the radius for the \"Add to cart\" button"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1102 |
msgid "\"Add to cart\" icon"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1106 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1110 |
msgid "\"Add to cart\" custom icon"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1114 |
+
msgid ""
|
1115 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1116 |
+
"32px x 32px)"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1120 |
msgid "Primary button style"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1124 |
+
msgid ""
|
1125 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1126 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1127 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1131 |
+
msgid ""
|
1132 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1133 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1134 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1135 |
+
"small>"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1139 |
msgid "Secondary button style"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1143 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1144 |
+
msgid ""
|
1145 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1146 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1147 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1151 |
msgid "Wishlist table style"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1155 |
+
msgid ""
|
1156 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1160 |
msgid "Highlight color"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1164 |
+
msgid ""
|
1165 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1166 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1167 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1171 |
msgid "Share button text color"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1175 |
msgid "Choose colors for share buttons text"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1179 |
msgid "Text hover"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1183 |
msgid "Facebook share button icon"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1187 |
msgid "Select an icon for the Facebook share button"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1191 |
msgid "Facebook share button custom icon"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1195 |
+
msgid ""
|
1196 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1197 |
+
"32px)"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1201 |
msgid "Facebook share button style"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1205 |
msgid "Choose colors for Facebook share button"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1209 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1210 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1211 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1212 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1213 |
msgid "Background hover"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1217 |
msgid "Twitter share button icon"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1221 |
msgid "Select an icon for the Twitter share button"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1225 |
msgid "Twitter share button custom icon"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1229 |
+
msgid ""
|
1230 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1231 |
+
"32px)"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1235 |
msgid "Twitter share button style"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1239 |
msgid "Choose colors for Twitter share button"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1243 |
msgid "Pinterest share button icon"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1247 |
msgid "Select an icon for the Pinterest share button"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1251 |
msgid "Pinterest share button custom icon"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1255 |
+
msgid ""
|
1256 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1257 |
+
"x 32px)"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1261 |
msgid "Pinterest share button style"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1265 |
msgid "Choose colors for Pinterest share button"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1269 |
msgid "Email share button icon"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1273 |
msgid "Select an icon for the Email share button"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1277 |
msgid "Email share button custom icon"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1281 |
+
msgid ""
|
1282 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1283 |
+
"x 32px)"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1287 |
msgid "Email share button style"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1291 |
msgid "Choose colors for the Email share button"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1295 |
msgid "WhatsApp share button icon"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1299 |
msgid "Select an icon for the WhatsApp share button"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1303 |
msgid "WhatsApp share button custom icon"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1307 |
+
msgid ""
|
1308 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1309 |
+
"32px)"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1313 |
msgid "WhatsApp share button style"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1317 |
msgid "Choose colors for WhatsApp share button"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1321 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1322 |
+
msgid ""
|
1323 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1324 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1328 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1329 |
msgid "Upgrade"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1333 |
msgid "Premium Features"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1337 |
msgid "Allow your customers to create multiple wishlists"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1341 |
+
msgid ""
|
1342 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1343 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1344 |
+
"other parameters."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1348 |
msgid "Multiple Wishlist"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1352 |
msgid "Wishlist Private"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1356 |
msgid "A transparent privacy management"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1360 |
+
msgid ""
|
1361 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1362 |
+
"sharing the wishlist or making it private."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1366 |
+
msgid ""
|
1367 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1368 |
+
"page"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1372 |
+
msgid ""
|
1373 |
+
"And give only registered users the privilege to use the wishlist "
|
1374 |
+
"functionalities."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1378 |
msgid "Estimate Cost"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1382 |
msgid "Admin Panel"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1386 |
msgid "An advanced and more versatile management of the wishlist"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1390 |
+
msgid ""
|
1391 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1392 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1393 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1394 |
+
"social networks, and much more!"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1398 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1402 |
+
msgid ""
|
1403 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1404 |
+
"are more interested in and plan targeted marketing strategies."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1408 |
msgid "Search Wishlists"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1412 |
msgid "'ADD TO CART'"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1416 |
+
msgid ""
|
1417 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1421 |
+
msgid ""
|
1422 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1423 |
+
"customers who have added specific products to their wishlist and push them "
|
1424 |
+
"to buy."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1428 |
msgid "Let users buy the product right from the wishlist page"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1432 |
+
msgid ""
|
1433 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1434 |
+
"also the information about the size, colour or quantity selected when added "
|
1435 |
+
"to the wishlist."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1439 |
msgid "DISABLE WISHLIST"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1443 |
msgid "Choose a charming layout for your wishlist page"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1447 |
+
msgid ""
|
1448 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1449 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1450 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1451 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1452 |
+
"your website."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1456 |
msgid "UNLOGGED USERS"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1460 |
msgid "Wishlist widgets for the header and sidebars"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1464 |
+
msgid ""
|
1465 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1466 |
+
"in the header, in the sidebars, wherever you want."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1470 |
msgid "POPULAR TABLE"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1474 |
msgid "FUNCTIONALITIES"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1478 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1482 |
+
msgid ""
|
1483 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1484 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1485 |
+
"product and how much they can save when there’s a promotion running or a "
|
1486 |
+
"discount on the product they’ve added to the wishlist."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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"
|
1563 |
|
1564 |
+
#: ../templates/wishlist-view-header.php:48
|
1565 |
msgid "Save"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: ../templates/wishlist-view-header.php:51
|
1569 |
msgid "Cancel"
|
1570 |
msgstr ""
|
1571 |
|
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 ›"
|
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 ""
|
1617 |
|
1618 |
+
#: ../templates/wishlist-view.php:78
|
1619 |
msgid "Product name"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: ../templates/wishlist-view.php:86
|
1623 |
msgid "Unit price"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: ../templates/wishlist-view.php:95
|
1627 |
msgid "Quantity"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../templates/wishlist-view.php:104
|
1631 |
msgid "Stock status"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: ../templates/wishlist-view.php:122
|
1635 |
msgid "Arrange"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#. translators: date added label: 1 date added.
|
1639 |
+
#: ../templates/wishlist-view.php:238
|
1640 |
msgid "Added on: %s"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: ../templates/wishlist-view.php:287
|
1644 |
msgid "Remove"
|
1645 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
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"
|
@@ -13,90 +13,146 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr "نسخه پولی"
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "YITH WooCommerce Wishlist"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "لیست علاقه مندی ها"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "محصول با موفقیت حذف شد."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr ""
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "لیست علاقه مندی ها"
|
102 |
|
@@ -122,6 +178,11 @@ msgstr ""
|
|
122 |
msgid "Title"
|
123 |
msgstr "عنوان فیلد"
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr ""
|
@@ -130,94 +191,144 @@ msgstr ""
|
|
130 |
msgid "Items added"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "اشتراک در : "
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "اشتراک در فیس بوک"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "توییت در توییتر"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "پین به پینترست"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "لیست علاقه مندی های من در %s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr "رایگان!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr ""
|
@@ -226,11 +337,12 @@ msgstr ""
|
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "خطا : محصول از لیست علاقه مندی ها حذف نشد."
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr ""
|
236 |
|
@@ -238,58 +350,198 @@ msgstr ""
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr ""
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] ""
|
245 |
msgstr[1] ""
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] ""
|
251 |
msgstr[1] ""
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr ""
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] ""
|
265 |
msgstr[1] ""
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgstr ""
|
294 |
|
295 |
#: ../init.php:4
|
@@ -297,7 +549,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,28 +565,33 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
-
msgstr "
|
|
|
|
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "تنظیمات عمومی"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -349,7 +611,10 @@ msgid "Loop settings"
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
|
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -365,7 +630,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
|
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -380,196 +649,239 @@ msgstr ""
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "استفاده از شورتکد"
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
|
|
|
|
|
|
|
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "بعد از \"افزودن به سبد\""
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "بعد از تصاویر محصول"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "بعد از خلاصه محصول"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "متن \"محصول اضافه شد\""
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "اضافه شد!"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "متن \"مشاهده علاقه مندی ها\""
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "متن \"محصول از قبل اضافه شده\""
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
|
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr "پس زمینه"
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr "متن"
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr "کادر"
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "CSS دستی"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
msgstr ""
|
570 |
|
|
|
|
|
|
|
|
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
@@ -585,7 +897,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
585 |
msgstr ""
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
|
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
@@ -593,7 +907,9 @@ msgid "Enable slider in wishlist"
|
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -605,14 +921,23 @@ msgid "Wishlist page"
|
|
605 |
msgstr ""
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr ""
|
618 |
|
@@ -637,11 +962,13 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr ""
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -649,7 +976,9 @@ msgid "Redirect to cart"
|
|
649 |
msgstr "انتقال به سبد خرید"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -657,7 +986,8 @@ msgid "Remove if added to the cart"
|
|
657 |
msgstr "حذف محصول در صورت افزودن به سبد"
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -668,7 +998,11 @@ msgstr ""
|
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr ""
|
674 |
|
@@ -692,7 +1026,7 @@ msgstr ""
|
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "لیست علاقه مندی های من در %s"
|
698 |
|
@@ -701,7 +1035,9 @@ msgid "Social text"
|
|
701 |
msgstr "متن اجتماعی"
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
|
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -717,9 +1053,17 @@ msgid "Default wishlist name"
|
|
717 |
msgstr ""
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
725 |
msgstr ""
|
@@ -728,10 +1072,6 @@ msgstr ""
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr ""
|
@@ -756,336 +1096,396 @@ msgstr ""
|
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
|
|
|
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
|
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
|
|
|
|
|
|
|
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
|
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
|
|
|
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
|
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
|
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
960 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1524,50 @@ msgstr ""
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "ویرایش عنوان"
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr "ذخیره"
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr "لغو"
|
1166 |
|
@@ -1180,94 +1587,61 @@ msgstr ""
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "موجود"
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "حذف این محصول"
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr "حذف"
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "لیست علاقه مندی ها"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr "نسخه پولی"
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "YITH WooCommerce Wishlist"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "لیست علاقه مندی ها"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
63 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
64 |
+
msgid "View ›"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
68 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
69 |
+
msgid "or"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
73 |
+
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
77 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
78 |
msgid "Product successfully removed."
|
79 |
msgstr "محصول با موفقیت حذف شد."
|
80 |
|
81 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
82 |
msgid "Please, make sure to enter a valid title"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
86 |
+
msgid ""
|
87 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
88 |
+
"are enabled."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
92 |
msgid "Product added to cart successfully"
|
93 |
msgstr ""
|
94 |
|
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 ""
|
102 |
+
|
103 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
104 |
+
msgctxt "page_slug"
|
105 |
+
msgid "wishlist"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
109 |
msgid "While you visit our site, we’ll track:"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
113 |
+
msgid ""
|
114 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
115 |
+
"users your favourite products, and to create targeted email campaigns."
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
119 |
+
msgid ""
|
120 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
121 |
+
"make them visible to the store staff"
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
125 |
+
msgid ""
|
126 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
127 |
+
"browsing our site."
|
128 |
msgstr ""
|
129 |
|
130 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
131 |
+
msgid ""
|
132 |
+
"Members of our team have access to the information you provide us with. For "
|
133 |
+
"example, both Administrators and Shop Managers can access:"
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
137 |
+
msgid ""
|
138 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
139 |
+
"settings of your wishlists"
|
140 |
msgstr ""
|
141 |
|
142 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
143 |
+
msgid ""
|
144 |
+
"Our team members have access to this information to offer you better deals "
|
145 |
+
"for the products you love."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
149 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
150 |
msgid "Customer wishlists"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
154 |
+
#: ../plugin-options/lists-options.php:23,
|
155 |
+
#: ../plugin-options/lists-options.php:30
|
156 |
msgid "Wishlists"
|
157 |
msgstr "لیست علاقه مندی ها"
|
158 |
|
178 |
msgid "Title"
|
179 |
msgstr "عنوان فیلد"
|
180 |
|
181 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
182 |
+
msgctxt "date when wishlist was created"
|
183 |
+
msgid "Created on"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
187 |
msgid "Visibility"
|
188 |
msgstr ""
|
191 |
msgid "Items added"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
195 |
+
msgctxt "[gutenberg]: block name"
|
196 |
+
msgid "YITH Add to wishlist"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
200 |
+
msgctxt "[gutenberg]: block description"
|
201 |
+
msgid "Shows Add to wishlist button"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
205 |
+
msgid ""
|
206 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
207 |
+
"product)"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
211 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
215 |
msgid "Button label (leave empty to use the default settings)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
219 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
223 |
+
msgid ""
|
224 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
225 |
+
"settings)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
229 |
+
msgid ""
|
230 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
234 |
+
msgid ""
|
235 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
236 |
+
"the default settings)"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
240 |
+
msgid ""
|
241 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
242 |
+
"settings)"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
246 |
+
msgctxt "[gutenberg]: block name"
|
247 |
+
msgid "YITH Wishlist"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
251 |
+
msgctxt "[gutenberg]: block description"
|
252 |
+
msgid "Shows a list of products in wishlist"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
256 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
260 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
261 |
msgid "Paginate"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
265 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
266 |
msgid "Do not paginate"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
270 |
msgid "Number of items to show per page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
274 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
278 |
msgid "Share on:"
|
279 |
msgstr "اشتراک در : "
|
280 |
|
281 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
282 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
283 |
msgid "Share on Facebook"
|
284 |
msgstr "اشتراک در فیس بوک"
|
285 |
|
286 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
287 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
288 |
msgid "Tweet on Twitter"
|
289 |
msgstr "توییت در توییتر"
|
290 |
|
291 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
292 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
293 |
msgid "Pin on Pinterest"
|
294 |
msgstr "پین به پینترست"
|
295 |
|
296 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
297 |
msgid "Share via email"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
301 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
302 |
msgid "My wishlist on "
|
303 |
msgstr "لیست علاقه مندی های من در %s"
|
304 |
|
305 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
306 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
307 |
msgid "Share on WhatsApp"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
311 |
msgid "Remove from list"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
315 |
msgid "Free!"
|
316 |
msgstr "رایگان!"
|
317 |
|
318 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
319 |
+
msgctxt ""
|
320 |
+
"Part of the template that shows price variation since addition to list; "
|
321 |
+
"placeholder will be replaced with a percentage"
|
322 |
+
msgid "Price is %1$s%%"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
326 |
+
msgctxt ""
|
327 |
+
"Part of the template that shows price variation since addition to list; "
|
328 |
+
"placeholder will be replaced with a price"
|
329 |
+
msgid "(Was %2$s when added in list)"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
#: ../includes/class.yith-wcwl.php:161
|
333 |
msgid "The item cannot be added to this wishlist"
|
334 |
msgstr ""
|
337 |
msgid "An error occurred while adding the products to the wishlist."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
341 |
msgid "Error. Unable to remove the product from the wishlist."
|
342 |
msgstr "خطا : محصول از لیست علاقه مندی ها حذف نشد."
|
343 |
|
344 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
345 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
346 |
msgid "Invalid wishlist."
|
347 |
msgstr ""
|
348 |
|
350 |
msgid "Invalid wishlist item."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#. translators: 1. Number of users.
|
354 |
+
#: ../includes/functions.yith-wcwl.php:216
|
355 |
msgid "%d user"
|
356 |
msgid_plural "%d users"
|
357 |
msgstr[0] ""
|
358 |
msgstr[1] ""
|
359 |
|
360 |
+
#: ../includes/functions.yith-wcwl.php:217
|
361 |
msgid "has this item in wishlist"
|
362 |
msgid_plural "have this item in wishlist"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ../includes/functions.yith-wcwl.php:219
|
367 |
msgid "You're the first"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../includes/functions.yith-wcwl.php:220
|
371 |
msgid "to add this item in wishlist"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
375 |
+
#: ../includes/functions.yith-wcwl.php:224
|
376 |
msgid "You and %s user"
|
377 |
msgid_plural "You and %d users"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ../includes/functions.yith-wcwl.php:225
|
382 |
msgid "have this item in wishlist"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/functions.yith-wcwl.php:460
|
386 |
+
msgid "None"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../includes/functions.yith-wcwl.php:461
|
390 |
+
#, fuzzy
|
391 |
+
#| msgid "Custom CSS"
|
392 |
+
msgid "Custom"
|
393 |
+
msgstr "CSS دستی"
|
394 |
+
|
395 |
+
#: ../includes/functions.yith-wcwl.php:553
|
396 |
msgid "Shared"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../includes/functions.yith-wcwl.php:557
|
400 |
+
msgid "Only people with a link to this list can see it"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../includes/functions.yith-wcwl.php:563
|
404 |
msgid "Private"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../includes/functions.yith-wcwl.php:567
|
408 |
+
msgid "Only you can see this list"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../includes/functions.yith-wcwl.php:573
|
412 |
msgid "Public"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/functions.yith-wcwl.php:577
|
416 |
+
msgid "Anyone can search for and see this list"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
420 |
+
msgctxt "Elementor widget name"
|
421 |
+
msgid "YITH Wishlist Add button"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
425 |
+
#, fuzzy
|
426 |
+
#| msgid "Product added!"
|
427 |
+
msgctxt "Elementor section title"
|
428 |
+
msgid "Product"
|
429 |
+
msgstr "اضافه شد!"
|
430 |
+
|
431 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
432 |
+
#, fuzzy
|
433 |
+
#| msgid "Product added!"
|
434 |
+
msgctxt "Elementor control label"
|
435 |
+
msgid "Product ID"
|
436 |
+
msgstr "اضافه شد!"
|
437 |
+
|
438 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
439 |
+
msgctxt "Elementor section title"
|
440 |
+
msgid "Labels"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
444 |
+
msgctxt "Elementor control label"
|
445 |
+
msgid "Button label"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
449 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
450 |
+
msgid "Add to wishlist"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
454 |
+
#, fuzzy
|
455 |
+
#| msgid "\"Browse wishlist\" text"
|
456 |
+
msgctxt "Elementor control label"
|
457 |
+
msgid "\"Browse wishlist\" label"
|
458 |
+
msgstr "متن \"مشاهده علاقه مندی ها\""
|
459 |
+
|
460 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
461 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
462 |
+
msgid "Browse wishlist"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
466 |
+
#, fuzzy
|
467 |
+
#| msgid "\"Product already in wishlist\" text"
|
468 |
+
msgctxt "Elementor control label"
|
469 |
+
msgid "\"Product already in wishlist\" label"
|
470 |
+
msgstr "متن \"محصول از قبل اضافه شده\""
|
471 |
+
|
472 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
473 |
+
#, fuzzy
|
474 |
+
#| msgid "\"Product already in wishlist\" text"
|
475 |
+
msgid "Product already in wishlist"
|
476 |
+
msgstr "متن \"محصول از قبل اضافه شده\""
|
477 |
+
|
478 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
479 |
+
#, fuzzy
|
480 |
+
#| msgid "\"Product already in wishlist\" text"
|
481 |
+
msgctxt "Elementor control label"
|
482 |
+
msgid "\"Product added to wishlist\" label"
|
483 |
+
msgstr "متن \"محصول از قبل اضافه شده\""
|
484 |
+
|
485 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
486 |
+
#, fuzzy
|
487 |
+
#| msgid "\"Product already in wishlist\" text"
|
488 |
+
msgid "Product added to wishlist"
|
489 |
+
msgstr "متن \"محصول از قبل اضافه شده\""
|
490 |
+
|
491 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
492 |
+
msgctxt "Elementor section title"
|
493 |
+
msgid "Advanced"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
497 |
+
msgctxt "Elementor control label"
|
498 |
+
msgid "URL of the wishlist page"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
502 |
+
msgctxt "Elementor control label"
|
503 |
+
msgid "Icon for the button"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
507 |
+
msgctxt "Elementor control label"
|
508 |
+
msgid "Additional CSS classes for the button"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
512 |
+
#, fuzzy
|
513 |
+
#| msgid "Wishlist"
|
514 |
+
msgctxt "Elementor widget name"
|
515 |
+
msgid "YITH Wishlist"
|
516 |
+
msgstr "لیست علاقه مندی ها"
|
517 |
+
|
518 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
519 |
+
#, fuzzy
|
520 |
+
#| msgid "Wishlist"
|
521 |
+
msgctxt "Elementor section title"
|
522 |
+
msgid "Wishlist"
|
523 |
+
msgstr "لیست علاقه مندی ها"
|
524 |
+
|
525 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
526 |
+
#, fuzzy
|
527 |
+
#| msgid "Wishlist"
|
528 |
+
msgctxt "Elementor control label"
|
529 |
+
msgid "Wishlist ID"
|
530 |
+
msgstr "لیست علاقه مندی ها"
|
531 |
+
|
532 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
533 |
+
msgctxt "Elementor section title"
|
534 |
+
msgid "Pagination"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
538 |
+
msgctxt "Elementor control label"
|
539 |
+
msgid "Paginate items"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
543 |
+
msgctxt "yith-woocommerce-wishlist"
|
544 |
+
msgid "Items per page"
|
545 |
msgstr ""
|
546 |
|
547 |
#: ../init.php:4
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../init.php:5
|
552 |
+
msgid ""
|
553 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
554 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
555 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
556 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
557 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
558 |
msgstr ""
|
559 |
|
560 |
#: ../init.php:7
|
565 |
msgid "https://yithemes.com/"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../init.php:141
|
569 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
570 |
+
msgstr ""
|
571 |
+
"YITH WooCommerce Wishlist فعال شده اما برای عملکرد ابتدا باید پلاگین "
|
572 |
+
"woocommerce را نصب کنید"
|
573 |
|
574 |
+
#: ../init.php:151
|
575 |
msgid "You can't activate the free version of"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../init.php:151
|
579 |
msgid "while you are using the premium one."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
583 |
+
#: ../plugin-options/settings-options.php:23
|
584 |
msgid "General Settings"
|
585 |
msgstr "تنظیمات عمومی"
|
586 |
|
587 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
588 |
+
msgid "After product is added to wishlist"
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
592 |
+
msgid ""
|
593 |
+
"Choose the look of the Wishlist button when the product has already been "
|
594 |
+
"added to a wishlist"
|
595 |
msgstr ""
|
596 |
|
597 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
611 |
msgstr ""
|
612 |
|
613 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
614 |
+
msgid ""
|
615 |
+
"Loop options will be visible on Shop page, category pages, product "
|
616 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
617 |
+
"products' loop is used"
|
618 |
msgstr ""
|
619 |
|
620 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
630 |
msgstr ""
|
631 |
|
632 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
633 |
+
msgid ""
|
634 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
635 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
636 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
637 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
638 |
msgstr ""
|
639 |
|
640 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
649 |
msgid "After \"Add to cart\" button"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
653 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
654 |
msgid "Use shortcode"
|
655 |
msgstr "استفاده از شورتکد"
|
656 |
|
657 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
658 |
msgid "Product page settings"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
662 |
msgid "Position of \"Add to wishlist\" on product page"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
666 |
+
msgid ""
|
667 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
668 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
669 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
670 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
674 |
msgid "After \"Add to cart\""
|
675 |
msgstr "بعد از \"افزودن به سبد\""
|
676 |
|
677 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
678 |
msgid "After thumbnails"
|
679 |
msgstr "بعد از تصاویر محصول"
|
680 |
|
681 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
682 |
msgid "After summary"
|
683 |
msgstr "بعد از خلاصه محصول"
|
684 |
|
685 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
686 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
687 |
msgid "Text customization"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
691 |
msgid "\"Add to wishlist\" text"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
695 |
msgid "Enter a text for \"Add to wishlist\" button"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
699 |
msgid "\"Product added\" text"
|
700 |
msgstr "متن \"محصول اضافه شد\""
|
701 |
|
702 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
703 |
+
msgid ""
|
704 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
705 |
+
"wishlist"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
709 |
msgid "Product added!"
|
710 |
msgstr "اضافه شد!"
|
711 |
|
712 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
713 |
msgid "\"Browse wishlist\" text"
|
714 |
msgstr "متن \"مشاهده علاقه مندی ها\""
|
715 |
|
716 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
717 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
721 |
msgid "\"Product already in wishlist\" text"
|
722 |
msgstr "متن \"محصول از قبل اضافه شده\""
|
723 |
|
724 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
725 |
+
msgid ""
|
726 |
+
"Enter the text for the message displayed when the user views a product that "
|
727 |
+
"is already in the wishlist"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
731 |
msgid "The product is already in your wishlist!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
735 |
msgid "Style & Color customization"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
739 |
msgid "Style of \"Add to wishlist\""
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
743 |
+
msgid ""
|
744 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
748 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
749 |
msgid "Textual (anchor)"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
753 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
754 |
msgid "Button with theme style"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
758 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
759 |
msgid "Button with custom style"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
763 |
msgid "\"Add to wishlist\" button style"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
767 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
771 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
772 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
773 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
774 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
776 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
777 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
778 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
779 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
780 |
msgid "Background"
|
781 |
msgstr "پس زمینه"
|
782 |
|
783 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
784 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
785 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
786 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
787 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
788 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
789 |
msgid "Text"
|
790 |
msgstr "متن"
|
791 |
|
792 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
793 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
794 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
795 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
796 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
797 |
msgid "Border"
|
798 |
msgstr "کادر"
|
799 |
|
800 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
801 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
805 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
806 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
807 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
808 |
msgid "Background Hover"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
812 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
813 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
814 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
815 |
msgid "Text Hover"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
819 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
820 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
821 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
822 |
msgid "Border Hover"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
826 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
827 |
msgid "Border radius"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
831 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
835 |
msgid "\"Add to wishlist\" icon"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
839 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
843 |
msgid "\"Add to wishlist\" custom icon"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
847 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
848 |
+
msgid ""
|
849 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
850 |
+
"32px x 32px)"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
854 |
msgid "\"Added to wishlist\" icon"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
858 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
862 |
msgid "Same used for Add to wishlist"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
866 |
msgid "\"Added to wishlist\" custom icon"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
870 |
msgid "Custom CSS"
|
871 |
msgstr "CSS دستی"
|
872 |
|
873 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
874 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: ../plugin-options/lists-options.php:32
|
878 |
+
msgid "Search list"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
#: ../plugin-options/settings-options.php:17
|
882 |
+
msgid ""
|
883 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
884 |
+
"the %s."
|
885 |
msgstr ""
|
886 |
|
887 |
#: ../plugin-options/settings-options.php:30
|
897 |
msgstr ""
|
898 |
|
899 |
#: ../plugin-options/settings-options.php:46
|
900 |
+
msgid ""
|
901 |
+
"In order to use this integration you have to install and activate YITH "
|
902 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
903 |
msgstr ""
|
904 |
|
905 |
#: ../plugin-options/settings-options.php:51
|
907 |
msgstr ""
|
908 |
|
909 |
#: ../plugin-options/settings-options.php:52
|
910 |
+
msgid ""
|
911 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
912 |
+
"class=\"thickbox\">Example</a>). %s"
|
913 |
msgstr ""
|
914 |
|
915 |
#: ../plugin-options/wishlist_page-options.php:17
|
921 |
msgstr ""
|
922 |
|
923 |
#: ../plugin-options/wishlist_page-options.php:25
|
924 |
+
msgid ""
|
925 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
926 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
927 |
+
"content"
|
928 |
msgstr ""
|
929 |
|
930 |
#: ../plugin-options/wishlist_page-options.php:38
|
931 |
msgid "Wishlist Detail Page"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
935 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
936 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
937 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
938 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
939 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
940 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
941 |
msgid "In wishlist table show"
|
942 |
msgstr ""
|
943 |
|
962 |
msgstr ""
|
963 |
|
964 |
#: ../plugin-options/wishlist_page-options.php:91
|
965 |
+
msgid ""
|
966 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
967 |
msgstr ""
|
968 |
|
969 |
#: ../plugin-options/wishlist_page-options.php:100
|
970 |
+
msgid ""
|
971 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
972 |
msgstr ""
|
973 |
|
974 |
#: ../plugin-options/wishlist_page-options.php:108
|
976 |
msgstr "انتقال به سبد خرید"
|
977 |
|
978 |
#: ../plugin-options/wishlist_page-options.php:109
|
979 |
+
msgid ""
|
980 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
981 |
+
"wishlist page"
|
982 |
msgstr ""
|
983 |
|
984 |
#: ../plugin-options/wishlist_page-options.php:117
|
986 |
msgstr "حذف محصول در صورت افزودن به سبد"
|
987 |
|
988 |
#: ../plugin-options/wishlist_page-options.php:118
|
989 |
+
msgid ""
|
990 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
991 |
msgstr ""
|
992 |
|
993 |
#: ../plugin-options/wishlist_page-options.php:126
|
998 |
msgid "Enable this option to let users share their wishlist on social media"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1002 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1003 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1004 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1005 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1006 |
msgid "Share on social media"
|
1007 |
msgstr ""
|
1008 |
|
1026 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1030 |
msgid "My wishlist on %s"
|
1031 |
msgstr "لیست علاقه مندی های من در %s"
|
1032 |
|
1035 |
msgstr "متن اجتماعی"
|
1036 |
|
1037 |
#: ../plugin-options/wishlist_page-options.php:198
|
1038 |
+
msgid ""
|
1039 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1040 |
+
"and Pinterest"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
#: ../plugin-options/wishlist_page-options.php:206
|
1053 |
msgstr ""
|
1054 |
|
1055 |
#: ../plugin-options/wishlist_page-options.php:227
|
1056 |
+
msgid ""
|
1057 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1058 |
+
"automatically generated for all users if they do not create any custom one"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1062 |
+
#, fuzzy
|
1063 |
+
#| msgid "My wishlist on "
|
1064 |
+
msgid "My wishlist"
|
1065 |
+
msgstr "لیست علاقه مندی های من در %s"
|
1066 |
+
|
1067 |
#: ../plugin-options/wishlist_page-options.php:234
|
1068 |
msgid "\"Add to cart\" text"
|
1069 |
msgstr ""
|
1072 |
msgid "Enter a text for the \"Add to cart\" button"
|
1073 |
msgstr ""
|
1074 |
|
|
|
|
|
|
|
|
|
1075 |
#: ../plugin-options/wishlist_page-options.php:247
|
1076 |
msgid "Style & color customization"
|
1077 |
msgstr ""
|
1096 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1100 |
msgid "Set the radius for the \"Add to cart\" button"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1104 |
msgid "\"Add to cart\" icon"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1108 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1112 |
msgid "\"Add to cart\" custom icon"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1116 |
+
msgid ""
|
1117 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1118 |
+
"32px x 32px)"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1122 |
msgid "Primary button style"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1126 |
+
msgid ""
|
1127 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1128 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1129 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1133 |
+
msgid ""
|
1134 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1135 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1136 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1137 |
+
"small>"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1141 |
msgid "Secondary button style"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1145 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1146 |
+
msgid ""
|
1147 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1148 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1149 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1153 |
msgid "Wishlist table style"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1157 |
+
msgid ""
|
1158 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1162 |
msgid "Highlight color"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1166 |
+
msgid ""
|
1167 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1168 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1169 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1173 |
msgid "Share button text color"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1177 |
msgid "Choose colors for share buttons text"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1181 |
msgid "Text hover"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1185 |
msgid "Facebook share button icon"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1189 |
msgid "Select an icon for the Facebook share button"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1193 |
msgid "Facebook share button custom icon"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1197 |
+
msgid ""
|
1198 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1199 |
+
"32px)"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1203 |
msgid "Facebook share button style"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1207 |
msgid "Choose colors for Facebook share button"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1211 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1212 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1213 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1214 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1215 |
msgid "Background hover"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1219 |
msgid "Twitter share button icon"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1223 |
msgid "Select an icon for the Twitter share button"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1227 |
msgid "Twitter share button custom icon"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1231 |
+
msgid ""
|
1232 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1233 |
+
"32px)"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1237 |
msgid "Twitter share button style"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1241 |
msgid "Choose colors for Twitter share button"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1245 |
msgid "Pinterest share button icon"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1249 |
msgid "Select an icon for the Pinterest share button"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1253 |
msgid "Pinterest share button custom icon"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1257 |
+
msgid ""
|
1258 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1259 |
+
"x 32px)"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1263 |
msgid "Pinterest share button style"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1267 |
msgid "Choose colors for Pinterest share button"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1271 |
msgid "Email share button icon"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1275 |
msgid "Select an icon for the Email share button"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1279 |
msgid "Email share button custom icon"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1283 |
+
msgid ""
|
1284 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1285 |
+
"x 32px)"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1289 |
msgid "Email share button style"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1293 |
msgid "Choose colors for the Email share button"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1297 |
msgid "WhatsApp share button icon"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1301 |
msgid "Select an icon for the WhatsApp share button"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1305 |
msgid "WhatsApp share button custom icon"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1309 |
+
msgid ""
|
1310 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1311 |
+
"32px)"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1315 |
msgid "WhatsApp share button style"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1319 |
msgid "Choose colors for WhatsApp share button"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1323 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1324 |
+
msgid ""
|
1325 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1326 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1330 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1331 |
msgid "Upgrade"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1335 |
msgid "Premium Features"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1339 |
msgid "Allow your customers to create multiple wishlists"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1343 |
+
msgid ""
|
1344 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1345 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1346 |
+
"other parameters."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1350 |
msgid "Multiple Wishlist"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1354 |
msgid "Wishlist Private"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1358 |
msgid "A transparent privacy management"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1362 |
+
msgid ""
|
1363 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1364 |
+
"sharing the wishlist or making it private."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1368 |
+
msgid ""
|
1369 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1370 |
+
"page"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1374 |
+
msgid ""
|
1375 |
+
"And give only registered users the privilege to use the wishlist "
|
1376 |
+
"functionalities."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1380 |
msgid "Estimate Cost"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1384 |
msgid "Admin Panel"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1388 |
msgid "An advanced and more versatile management of the wishlist"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1392 |
+
msgid ""
|
1393 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1394 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1395 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1396 |
+
"social networks, and much more!"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1400 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1404 |
+
msgid ""
|
1405 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1406 |
+
"are more interested in and plan targeted marketing strategies."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1410 |
msgid "Search Wishlists"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1414 |
msgid "'ADD TO CART'"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1418 |
+
msgid ""
|
1419 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1423 |
+
msgid ""
|
1424 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1425 |
+
"customers who have added specific products to their wishlist and push them "
|
1426 |
+
"to buy."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1430 |
msgid "Let users buy the product right from the wishlist page"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1434 |
+
msgid ""
|
1435 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1436 |
+
"also the information about the size, colour or quantity selected when added "
|
1437 |
+
"to the wishlist."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1441 |
msgid "DISABLE WISHLIST"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1445 |
msgid "Choose a charming layout for your wishlist page"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1449 |
+
msgid ""
|
1450 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1451 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1452 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1453 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1454 |
+
"your website."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1458 |
msgid "UNLOGGED USERS"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1462 |
msgid "Wishlist widgets for the header and sidebars"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1466 |
+
msgid ""
|
1467 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1468 |
+
"in the header, in the sidebars, wherever you want."
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1472 |
msgid "POPULAR TABLE"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1476 |
msgid "FUNCTIONALITIES"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1480 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1484 |
+
msgid ""
|
1485 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1486 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1487 |
+
"product and how much they can save when there’s a promotion running or a "
|
1488 |
+
"discount on the product they’ve added to the wishlist."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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 "ویرایش عنوان"
|
1565 |
|
1566 |
+
#: ../templates/wishlist-view-header.php:48
|
1567 |
msgid "Save"
|
1568 |
msgstr "ذخیره"
|
1569 |
|
1570 |
+
#: ../templates/wishlist-view-header.php:51
|
1571 |
msgid "Cancel"
|
1572 |
msgstr "لغو"
|
1573 |
|
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 ›"
|
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 ""
|
1619 |
|
1620 |
+
#: ../templates/wishlist-view.php:78
|
1621 |
msgid "Product name"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: ../templates/wishlist-view.php:86
|
1625 |
msgid "Unit price"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: ../templates/wishlist-view.php:95
|
1629 |
msgid "Quantity"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../templates/wishlist-view.php:104
|
1633 |
msgid "Stock status"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: ../templates/wishlist-view.php:122
|
1637 |
msgid "Arrange"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#. translators: date added label: 1 date added.
|
1641 |
+
#: ../templates/wishlist-view.php:238
|
1642 |
msgid "Added on: %s"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: ../templates/wishlist-view.php:287
|
1646 |
msgid "Remove"
|
1647 |
msgstr "حذف"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
11 |
"Language: fr_FR\n"
|
@@ -13,90 +13,146 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
19 |
"X-Generator: Poedit 2.2\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "Ajouter à la wishlist"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "Wishlist"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "Le produit a bien été supprimé"
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr ""
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "Wishlist"
|
102 |
|
@@ -122,6 +178,11 @@ msgstr ""
|
|
122 |
msgid "Title"
|
123 |
msgstr ""
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr ""
|
@@ -130,94 +191,144 @@ msgstr ""
|
|
130 |
msgid "Items added"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "Partager sur :"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "Partager sur Facebook"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "Partager sur Twitter"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "Partager sur Pinterest"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "Ma wishlist sur %s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr ""
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr ""
|
@@ -226,11 +337,12 @@ msgstr ""
|
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "Erreur : impossible de supprimer le produit de la wishlist"
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr ""
|
236 |
|
@@ -238,58 +350,198 @@ msgstr ""
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr ""
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] ""
|
245 |
msgstr[1] ""
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] ""
|
251 |
msgstr[1] ""
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr ""
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] ""
|
265 |
msgstr[1] ""
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "Partager sur :"
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgstr ""
|
294 |
|
295 |
#: ../init.php:4
|
@@ -297,7 +549,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,28 +565,31 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "Paramètres généraux"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -349,7 +609,10 @@ msgid "Loop settings"
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
|
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -365,7 +628,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
|
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -380,196 +647,239 @@ msgstr ""
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "Utiliser le shortcode"
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
|
|
|
|
|
|
|
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "Après \"Ajouter au panier\""
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "Après les images"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "Après le résumé"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "Produit ajouté !"
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "Produit ajouté !"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "Parcourir la wishlist"
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "Ce produit est déjà dans votre wishlist"
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
|
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "CSS personnalisée"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
msgstr ""
|
570 |
|
|
|
|
|
|
|
|
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
@@ -585,7 +895,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
585 |
msgstr ""
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
|
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
@@ -593,7 +905,9 @@ msgid "Enable slider in wishlist"
|
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -605,14 +919,23 @@ msgid "Wishlist page"
|
|
605 |
msgstr ""
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr ""
|
618 |
|
@@ -637,11 +960,13 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr ""
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -649,7 +974,9 @@ msgid "Redirect to cart"
|
|
649 |
msgstr "Rediriger vers le panier"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -657,7 +984,8 @@ msgid "Remove if added to the cart"
|
|
657 |
msgstr "Supprimer si ajouté au panier"
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -668,7 +996,11 @@ msgstr ""
|
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr ""
|
674 |
|
@@ -692,7 +1024,7 @@ msgstr ""
|
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "Ma wishlist sur %s"
|
698 |
|
@@ -701,7 +1033,9 @@ msgid "Social text"
|
|
701 |
msgstr "Texte pour les réseaux sociaux"
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
|
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -717,9 +1051,17 @@ msgid "Default wishlist name"
|
|
717 |
msgstr ""
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
725 |
msgstr ""
|
@@ -728,10 +1070,6 @@ msgstr ""
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr ""
|
@@ -756,336 +1094,396 @@ msgstr ""
|
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
|
|
|
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
|
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
|
|
|
|
|
|
|
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
|
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
|
|
|
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
|
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
|
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
960 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1522,50 @@ msgstr ""
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "Titre de la Wishlist"
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr ""
|
1166 |
|
@@ -1180,94 +1585,61 @@ msgstr ""
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "En stock"
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "Enlever ce produit"
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr ""
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
21 |
"X-Generator: Poedit 2.2\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "Wishlist"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "Ajouter à la wishlist"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "Wishlist"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
63 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
64 |
+
msgid "View ›"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
68 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
69 |
+
msgid "or"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
73 |
+
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
77 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
78 |
msgid "Product successfully removed."
|
79 |
msgstr "Le produit a bien été supprimé"
|
80 |
|
81 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
82 |
msgid "Please, make sure to enter a valid title"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
86 |
+
msgid ""
|
87 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
88 |
+
"are enabled."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
92 |
msgid "Product added to cart successfully"
|
93 |
msgstr ""
|
94 |
|
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 ""
|
102 |
+
|
103 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
104 |
+
msgctxt "page_slug"
|
105 |
+
msgid "wishlist"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
109 |
msgid "While you visit our site, we’ll track:"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
113 |
+
msgid ""
|
114 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
115 |
+
"users your favourite products, and to create targeted email campaigns."
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
119 |
+
msgid ""
|
120 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
121 |
+
"make them visible to the store staff"
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
125 |
+
msgid ""
|
126 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
127 |
+
"browsing our site."
|
128 |
msgstr ""
|
129 |
|
130 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
131 |
+
msgid ""
|
132 |
+
"Members of our team have access to the information you provide us with. For "
|
133 |
+
"example, both Administrators and Shop Managers can access:"
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
137 |
+
msgid ""
|
138 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
139 |
+
"settings of your wishlists"
|
140 |
msgstr ""
|
141 |
|
142 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
143 |
+
msgid ""
|
144 |
+
"Our team members have access to this information to offer you better deals "
|
145 |
+
"for the products you love."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
149 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
150 |
msgid "Customer wishlists"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
154 |
+
#: ../plugin-options/lists-options.php:23,
|
155 |
+
#: ../plugin-options/lists-options.php:30
|
156 |
msgid "Wishlists"
|
157 |
msgstr "Wishlist"
|
158 |
|
178 |
msgid "Title"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
182 |
+
msgctxt "date when wishlist was created"
|
183 |
+
msgid "Created on"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
187 |
msgid "Visibility"
|
188 |
msgstr ""
|
191 |
msgid "Items added"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
195 |
+
msgctxt "[gutenberg]: block name"
|
196 |
+
msgid "YITH Add to wishlist"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
200 |
+
msgctxt "[gutenberg]: block description"
|
201 |
+
msgid "Shows Add to wishlist button"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
205 |
+
msgid ""
|
206 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
207 |
+
"product)"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
211 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
215 |
msgid "Button label (leave empty to use the default settings)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
219 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
223 |
+
msgid ""
|
224 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
225 |
+
"settings)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
229 |
+
msgid ""
|
230 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
234 |
+
msgid ""
|
235 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
236 |
+
"the default settings)"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
240 |
+
msgid ""
|
241 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
242 |
+
"settings)"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
246 |
+
msgctxt "[gutenberg]: block name"
|
247 |
+
msgid "YITH Wishlist"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
251 |
+
msgctxt "[gutenberg]: block description"
|
252 |
+
msgid "Shows a list of products in wishlist"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
256 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
260 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
261 |
msgid "Paginate"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
265 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
266 |
msgid "Do not paginate"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
270 |
msgid "Number of items to show per page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
274 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
278 |
msgid "Share on:"
|
279 |
msgstr "Partager sur :"
|
280 |
|
281 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
282 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
283 |
msgid "Share on Facebook"
|
284 |
msgstr "Partager sur Facebook"
|
285 |
|
286 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
287 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
288 |
msgid "Tweet on Twitter"
|
289 |
msgstr "Partager sur Twitter"
|
290 |
|
291 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
292 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
293 |
msgid "Pin on Pinterest"
|
294 |
msgstr "Partager sur Pinterest"
|
295 |
|
296 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
297 |
msgid "Share via email"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
301 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
302 |
msgid "My wishlist on "
|
303 |
msgstr "Ma wishlist sur %s"
|
304 |
|
305 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
306 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
307 |
msgid "Share on WhatsApp"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
311 |
msgid "Remove from list"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
315 |
msgid "Free!"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
319 |
+
msgctxt ""
|
320 |
+
"Part of the template that shows price variation since addition to list; "
|
321 |
+
"placeholder will be replaced with a percentage"
|
322 |
+
msgid "Price is %1$s%%"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
326 |
+
msgctxt ""
|
327 |
+
"Part of the template that shows price variation since addition to list; "
|
328 |
+
"placeholder will be replaced with a price"
|
329 |
+
msgid "(Was %2$s when added in list)"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
#: ../includes/class.yith-wcwl.php:161
|
333 |
msgid "The item cannot be added to this wishlist"
|
334 |
msgstr ""
|
337 |
msgid "An error occurred while adding the products to the wishlist."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
341 |
msgid "Error. Unable to remove the product from the wishlist."
|
342 |
msgstr "Erreur : impossible de supprimer le produit de la wishlist"
|
343 |
|
344 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
345 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
346 |
msgid "Invalid wishlist."
|
347 |
msgstr ""
|
348 |
|
350 |
msgid "Invalid wishlist item."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#. translators: 1. Number of users.
|
354 |
+
#: ../includes/functions.yith-wcwl.php:216
|
355 |
msgid "%d user"
|
356 |
msgid_plural "%d users"
|
357 |
msgstr[0] ""
|
358 |
msgstr[1] ""
|
359 |
|
360 |
+
#: ../includes/functions.yith-wcwl.php:217
|
361 |
msgid "has this item in wishlist"
|
362 |
msgid_plural "have this item in wishlist"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ../includes/functions.yith-wcwl.php:219
|
367 |
msgid "You're the first"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../includes/functions.yith-wcwl.php:220
|
371 |
msgid "to add this item in wishlist"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
375 |
+
#: ../includes/functions.yith-wcwl.php:224
|
376 |
msgid "You and %s user"
|
377 |
msgid_plural "You and %d users"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ../includes/functions.yith-wcwl.php:225
|
382 |
msgid "have this item in wishlist"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/functions.yith-wcwl.php:460
|
386 |
+
msgid "None"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../includes/functions.yith-wcwl.php:461
|
390 |
+
#, fuzzy
|
391 |
+
#| msgid "Custom CSS"
|
392 |
+
msgid "Custom"
|
393 |
+
msgstr "CSS personnalisée"
|
394 |
+
|
395 |
+
#: ../includes/functions.yith-wcwl.php:553
|
396 |
msgid "Shared"
|
397 |
msgstr "Partager sur :"
|
398 |
|
399 |
+
#: ../includes/functions.yith-wcwl.php:557
|
400 |
+
msgid "Only people with a link to this list can see it"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../includes/functions.yith-wcwl.php:563
|
404 |
msgid "Private"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../includes/functions.yith-wcwl.php:567
|
408 |
+
msgid "Only you can see this list"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../includes/functions.yith-wcwl.php:573
|
412 |
msgid "Public"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/functions.yith-wcwl.php:577
|
416 |
+
msgid "Anyone can search for and see this list"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
420 |
+
msgctxt "Elementor widget name"
|
421 |
+
msgid "YITH Wishlist Add button"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
425 |
+
#, fuzzy
|
426 |
+
#| msgid "Product added!"
|
427 |
+
msgctxt "Elementor section title"
|
428 |
+
msgid "Product"
|
429 |
+
msgstr "Produit ajouté !"
|
430 |
+
|
431 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
432 |
+
#, fuzzy
|
433 |
+
#| msgid "Product added!"
|
434 |
+
msgctxt "Elementor control label"
|
435 |
+
msgid "Product ID"
|
436 |
+
msgstr "Produit ajouté !"
|
437 |
+
|
438 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
439 |
+
msgctxt "Elementor section title"
|
440 |
+
msgid "Labels"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
444 |
+
msgctxt "Elementor control label"
|
445 |
+
msgid "Button label"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
449 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
450 |
+
msgid "Add to wishlist"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
454 |
+
#, fuzzy
|
455 |
+
#| msgid "\"Browse wishlist\" text"
|
456 |
+
msgctxt "Elementor control label"
|
457 |
+
msgid "\"Browse wishlist\" label"
|
458 |
+
msgstr "Parcourir la wishlist"
|
459 |
+
|
460 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
461 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
462 |
+
msgid "Browse wishlist"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
466 |
+
#, fuzzy
|
467 |
+
#| msgid "\"Product already in wishlist\" text"
|
468 |
+
msgctxt "Elementor control label"
|
469 |
+
msgid "\"Product already in wishlist\" label"
|
470 |
+
msgstr "Ce produit est déjà dans votre wishlist"
|
471 |
+
|
472 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
473 |
+
#, fuzzy
|
474 |
+
#| msgid "\"Product already in wishlist\" text"
|
475 |
+
msgid "Product already in wishlist"
|
476 |
+
msgstr "Ce produit est déjà dans votre wishlist"
|
477 |
+
|
478 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
479 |
+
#, fuzzy
|
480 |
+
#| msgid "\"Product already in wishlist\" text"
|
481 |
+
msgctxt "Elementor control label"
|
482 |
+
msgid "\"Product added to wishlist\" label"
|
483 |
+
msgstr "Ce produit est déjà dans votre wishlist"
|
484 |
+
|
485 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
486 |
+
#, fuzzy
|
487 |
+
#| msgid "\"Product already in wishlist\" text"
|
488 |
+
msgid "Product added to wishlist"
|
489 |
+
msgstr "Ce produit est déjà dans votre wishlist"
|
490 |
+
|
491 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
492 |
+
msgctxt "Elementor section title"
|
493 |
+
msgid "Advanced"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
497 |
+
msgctxt "Elementor control label"
|
498 |
+
msgid "URL of the wishlist page"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
502 |
+
msgctxt "Elementor control label"
|
503 |
+
msgid "Icon for the button"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
507 |
+
msgctxt "Elementor control label"
|
508 |
+
msgid "Additional CSS classes for the button"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
512 |
+
#, fuzzy
|
513 |
+
#| msgid "Wishlist"
|
514 |
+
msgctxt "Elementor widget name"
|
515 |
+
msgid "YITH Wishlist"
|
516 |
+
msgstr "Wishlist"
|
517 |
+
|
518 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
519 |
+
#, fuzzy
|
520 |
+
#| msgid "Wishlist"
|
521 |
+
msgctxt "Elementor section title"
|
522 |
+
msgid "Wishlist"
|
523 |
+
msgstr "Wishlist"
|
524 |
+
|
525 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
526 |
+
#, fuzzy
|
527 |
+
#| msgid "Wishlist"
|
528 |
+
msgctxt "Elementor control label"
|
529 |
+
msgid "Wishlist ID"
|
530 |
+
msgstr "Wishlist"
|
531 |
+
|
532 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
533 |
+
msgctxt "Elementor section title"
|
534 |
+
msgid "Pagination"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
538 |
+
msgctxt "Elementor control label"
|
539 |
+
msgid "Paginate items"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
543 |
+
msgctxt "yith-woocommerce-wishlist"
|
544 |
+
msgid "Items per page"
|
545 |
msgstr ""
|
546 |
|
547 |
#: ../init.php:4
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../init.php:5
|
552 |
+
msgid ""
|
553 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
554 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
555 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
556 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
557 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
558 |
msgstr ""
|
559 |
|
560 |
#: ../init.php:7
|
565 |
msgid "https://yithemes.com/"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../init.php:141
|
569 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../init.php:151
|
573 |
msgid "You can't activate the free version of"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../init.php:151
|
577 |
msgid "while you are using the premium one."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
581 |
+
#: ../plugin-options/settings-options.php:23
|
582 |
msgid "General Settings"
|
583 |
msgstr "Paramètres généraux"
|
584 |
|
585 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
586 |
+
msgid "After product is added to wishlist"
|
587 |
msgstr ""
|
588 |
|
589 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
590 |
+
msgid ""
|
591 |
+
"Choose the look of the Wishlist button when the product has already been "
|
592 |
+
"added to a wishlist"
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
612 |
+
msgid ""
|
613 |
+
"Loop options will be visible on Shop page, category pages, product "
|
614 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
615 |
+
"products' loop is used"
|
616 |
msgstr ""
|
617 |
|
618 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
628 |
msgstr ""
|
629 |
|
630 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
631 |
+
msgid ""
|
632 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
633 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
634 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
635 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
636 |
msgstr ""
|
637 |
|
638 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
647 |
msgid "After \"Add to cart\" button"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
651 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
652 |
msgid "Use shortcode"
|
653 |
msgstr "Utiliser le shortcode"
|
654 |
|
655 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
656 |
msgid "Product page settings"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
660 |
msgid "Position of \"Add to wishlist\" on product page"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
664 |
+
msgid ""
|
665 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
666 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
667 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
668 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
672 |
msgid "After \"Add to cart\""
|
673 |
msgstr "Après \"Ajouter au panier\""
|
674 |
|
675 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
676 |
msgid "After thumbnails"
|
677 |
msgstr "Après les images"
|
678 |
|
679 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
680 |
msgid "After summary"
|
681 |
msgstr "Après le résumé"
|
682 |
|
683 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
684 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
685 |
msgid "Text customization"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
689 |
msgid "\"Add to wishlist\" text"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
693 |
msgid "Enter a text for \"Add to wishlist\" button"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
697 |
msgid "\"Product added\" text"
|
698 |
msgstr "Produit ajouté !"
|
699 |
|
700 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
701 |
+
msgid ""
|
702 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
703 |
+
"wishlist"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
707 |
msgid "Product added!"
|
708 |
msgstr "Produit ajouté !"
|
709 |
|
710 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
711 |
msgid "\"Browse wishlist\" text"
|
712 |
msgstr "Parcourir la wishlist"
|
713 |
|
714 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
715 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
719 |
msgid "\"Product already in wishlist\" text"
|
720 |
msgstr "Ce produit est déjà dans votre wishlist"
|
721 |
|
722 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
723 |
+
msgid ""
|
724 |
+
"Enter the text for the message displayed when the user views a product that "
|
725 |
+
"is already in the wishlist"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
729 |
msgid "The product is already in your wishlist!"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
733 |
msgid "Style & Color customization"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
737 |
msgid "Style of \"Add to wishlist\""
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
741 |
+
msgid ""
|
742 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
746 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
747 |
msgid "Textual (anchor)"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
751 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
752 |
msgid "Button with theme style"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
756 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
757 |
msgid "Button with custom style"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
761 |
msgid "\"Add to wishlist\" button style"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
765 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
769 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
770 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
771 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
772 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
773 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
774 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
776 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
777 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
778 |
msgid "Background"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
782 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
783 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
784 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
785 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
786 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
787 |
msgid "Text"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
791 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
792 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
793 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
794 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
795 |
msgid "Border"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
799 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
803 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
804 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
805 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
806 |
msgid "Background Hover"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
810 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
811 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
812 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
813 |
msgid "Text Hover"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
817 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
818 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
819 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
820 |
msgid "Border Hover"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
824 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
825 |
msgid "Border radius"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
829 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
833 |
msgid "\"Add to wishlist\" icon"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
837 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
841 |
msgid "\"Add to wishlist\" custom icon"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
845 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
846 |
+
msgid ""
|
847 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
848 |
+
"32px x 32px)"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
852 |
msgid "\"Added to wishlist\" icon"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
856 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
860 |
msgid "Same used for Add to wishlist"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
864 |
msgid "\"Added to wishlist\" custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
868 |
msgid "Custom CSS"
|
869 |
msgstr "CSS personnalisée"
|
870 |
|
871 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
872 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../plugin-options/lists-options.php:32
|
876 |
+
msgid "Search list"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
#: ../plugin-options/settings-options.php:17
|
880 |
+
msgid ""
|
881 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
882 |
+
"the %s."
|
883 |
msgstr ""
|
884 |
|
885 |
#: ../plugin-options/settings-options.php:30
|
895 |
msgstr ""
|
896 |
|
897 |
#: ../plugin-options/settings-options.php:46
|
898 |
+
msgid ""
|
899 |
+
"In order to use this integration you have to install and activate YITH "
|
900 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
901 |
msgstr ""
|
902 |
|
903 |
#: ../plugin-options/settings-options.php:51
|
905 |
msgstr ""
|
906 |
|
907 |
#: ../plugin-options/settings-options.php:52
|
908 |
+
msgid ""
|
909 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
910 |
+
"class=\"thickbox\">Example</a>). %s"
|
911 |
msgstr ""
|
912 |
|
913 |
#: ../plugin-options/wishlist_page-options.php:17
|
919 |
msgstr ""
|
920 |
|
921 |
#: ../plugin-options/wishlist_page-options.php:25
|
922 |
+
msgid ""
|
923 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
924 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
925 |
+
"content"
|
926 |
msgstr ""
|
927 |
|
928 |
#: ../plugin-options/wishlist_page-options.php:38
|
929 |
msgid "Wishlist Detail Page"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
933 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
934 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
935 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
936 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
937 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
938 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
939 |
msgid "In wishlist table show"
|
940 |
msgstr ""
|
941 |
|
960 |
msgstr ""
|
961 |
|
962 |
#: ../plugin-options/wishlist_page-options.php:91
|
963 |
+
msgid ""
|
964 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
965 |
msgstr ""
|
966 |
|
967 |
#: ../plugin-options/wishlist_page-options.php:100
|
968 |
+
msgid ""
|
969 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
970 |
msgstr ""
|
971 |
|
972 |
#: ../plugin-options/wishlist_page-options.php:108
|
974 |
msgstr "Rediriger vers le panier"
|
975 |
|
976 |
#: ../plugin-options/wishlist_page-options.php:109
|
977 |
+
msgid ""
|
978 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
979 |
+
"wishlist page"
|
980 |
msgstr ""
|
981 |
|
982 |
#: ../plugin-options/wishlist_page-options.php:117
|
984 |
msgstr "Supprimer si ajouté au panier"
|
985 |
|
986 |
#: ../plugin-options/wishlist_page-options.php:118
|
987 |
+
msgid ""
|
988 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
989 |
msgstr ""
|
990 |
|
991 |
#: ../plugin-options/wishlist_page-options.php:126
|
996 |
msgid "Enable this option to let users share their wishlist on social media"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1000 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1001 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1002 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1003 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1004 |
msgid "Share on social media"
|
1005 |
msgstr ""
|
1006 |
|
1024 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1028 |
msgid "My wishlist on %s"
|
1029 |
msgstr "Ma wishlist sur %s"
|
1030 |
|
1033 |
msgstr "Texte pour les réseaux sociaux"
|
1034 |
|
1035 |
#: ../plugin-options/wishlist_page-options.php:198
|
1036 |
+
msgid ""
|
1037 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1038 |
+
"and Pinterest"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: ../plugin-options/wishlist_page-options.php:206
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: ../plugin-options/wishlist_page-options.php:227
|
1054 |
+
msgid ""
|
1055 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1056 |
+
"automatically generated for all users if they do not create any custom one"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1060 |
+
#, fuzzy
|
1061 |
+
#| msgid "My wishlist on "
|
1062 |
+
msgid "My wishlist"
|
1063 |
+
msgstr "Ma wishlist sur %s"
|
1064 |
+
|
1065 |
#: ../plugin-options/wishlist_page-options.php:234
|
1066 |
msgid "\"Add to cart\" text"
|
1067 |
msgstr ""
|
1070 |
msgid "Enter a text for the \"Add to cart\" button"
|
1071 |
msgstr ""
|
1072 |
|
|
|
|
|
|
|
|
|
1073 |
#: ../plugin-options/wishlist_page-options.php:247
|
1074 |
msgid "Style & color customization"
|
1075 |
msgstr ""
|
1094 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1098 |
msgid "Set the radius for the \"Add to cart\" button"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1102 |
msgid "\"Add to cart\" icon"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1106 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1110 |
msgid "\"Add to cart\" custom icon"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1114 |
+
msgid ""
|
1115 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1116 |
+
"32px x 32px)"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1120 |
msgid "Primary button style"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1124 |
+
msgid ""
|
1125 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1126 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1127 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1131 |
+
msgid ""
|
1132 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1133 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1134 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1135 |
+
"small>"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1139 |
msgid "Secondary button style"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1143 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1144 |
+
msgid ""
|
1145 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1146 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1147 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1151 |
msgid "Wishlist table style"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1155 |
+
msgid ""
|
1156 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1160 |
msgid "Highlight color"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1164 |
+
msgid ""
|
1165 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1166 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1167 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1171 |
msgid "Share button text color"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1175 |
msgid "Choose colors for share buttons text"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1179 |
msgid "Text hover"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1183 |
msgid "Facebook share button icon"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1187 |
msgid "Select an icon for the Facebook share button"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1191 |
msgid "Facebook share button custom icon"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1195 |
+
msgid ""
|
1196 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1197 |
+
"32px)"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1201 |
msgid "Facebook share button style"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1205 |
msgid "Choose colors for Facebook share button"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1209 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1210 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1211 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1212 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1213 |
msgid "Background hover"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1217 |
msgid "Twitter share button icon"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1221 |
msgid "Select an icon for the Twitter share button"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1225 |
msgid "Twitter share button custom icon"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1229 |
+
msgid ""
|
1230 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1231 |
+
"32px)"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1235 |
msgid "Twitter share button style"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1239 |
msgid "Choose colors for Twitter share button"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1243 |
msgid "Pinterest share button icon"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1247 |
msgid "Select an icon for the Pinterest share button"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1251 |
msgid "Pinterest share button custom icon"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1255 |
+
msgid ""
|
1256 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1257 |
+
"x 32px)"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1261 |
msgid "Pinterest share button style"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1265 |
msgid "Choose colors for Pinterest share button"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1269 |
msgid "Email share button icon"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1273 |
msgid "Select an icon for the Email share button"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1277 |
msgid "Email share button custom icon"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1281 |
+
msgid ""
|
1282 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1283 |
+
"x 32px)"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1287 |
msgid "Email share button style"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1291 |
msgid "Choose colors for the Email share button"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1295 |
msgid "WhatsApp share button icon"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1299 |
msgid "Select an icon for the WhatsApp share button"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1303 |
msgid "WhatsApp share button custom icon"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1307 |
+
msgid ""
|
1308 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1309 |
+
"32px)"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1313 |
msgid "WhatsApp share button style"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1317 |
msgid "Choose colors for WhatsApp share button"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1321 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1322 |
+
msgid ""
|
1323 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1324 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1328 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1329 |
msgid "Upgrade"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1333 |
msgid "Premium Features"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1337 |
msgid "Allow your customers to create multiple wishlists"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1341 |
+
msgid ""
|
1342 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1343 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1344 |
+
"other parameters."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1348 |
msgid "Multiple Wishlist"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1352 |
msgid "Wishlist Private"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1356 |
msgid "A transparent privacy management"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1360 |
+
msgid ""
|
1361 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1362 |
+
"sharing the wishlist or making it private."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1366 |
+
msgid ""
|
1367 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1368 |
+
"page"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1372 |
+
msgid ""
|
1373 |
+
"And give only registered users the privilege to use the wishlist "
|
1374 |
+
"functionalities."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1378 |
msgid "Estimate Cost"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1382 |
msgid "Admin Panel"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1386 |
msgid "An advanced and more versatile management of the wishlist"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1390 |
+
msgid ""
|
1391 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1392 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1393 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1394 |
+
"social networks, and much more!"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1398 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1402 |
+
msgid ""
|
1403 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1404 |
+
"are more interested in and plan targeted marketing strategies."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1408 |
msgid "Search Wishlists"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1412 |
msgid "'ADD TO CART'"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1416 |
+
msgid ""
|
1417 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1421 |
+
msgid ""
|
1422 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1423 |
+
"customers who have added specific products to their wishlist and push them "
|
1424 |
+
"to buy."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1428 |
msgid "Let users buy the product right from the wishlist page"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1432 |
+
msgid ""
|
1433 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1434 |
+
"also the information about the size, colour or quantity selected when added "
|
1435 |
+
"to the wishlist."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1439 |
msgid "DISABLE WISHLIST"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1443 |
msgid "Choose a charming layout for your wishlist page"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1447 |
+
msgid ""
|
1448 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1449 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1450 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1451 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1452 |
+
"your website."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1456 |
msgid "UNLOGGED USERS"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1460 |
msgid "Wishlist widgets for the header and sidebars"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1464 |
+
msgid ""
|
1465 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1466 |
+
"in the header, in the sidebars, wherever you want."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1470 |
msgid "POPULAR TABLE"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1474 |
msgid "FUNCTIONALITIES"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1478 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1482 |
+
msgid ""
|
1483 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1484 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1485 |
+
"product and how much they can save when there’s a promotion running or a "
|
1486 |
+
"discount on the product they’ve added to the wishlist."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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"
|
1563 |
|
1564 |
+
#: ../templates/wishlist-view-header.php:48
|
1565 |
msgid "Save"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: ../templates/wishlist-view-header.php:51
|
1569 |
msgid "Cancel"
|
1570 |
msgstr ""
|
1571 |
|
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 ›"
|
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 ""
|
1617 |
|
1618 |
+
#: ../templates/wishlist-view.php:78
|
1619 |
msgid "Product name"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: ../templates/wishlist-view.php:86
|
1623 |
msgid "Unit price"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: ../templates/wishlist-view.php:95
|
1627 |
msgid "Quantity"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../templates/wishlist-view.php:104
|
1631 |
msgid "Stock status"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: ../templates/wishlist-view.php:122
|
1635 |
msgid "Arrange"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#. translators: date added label: 1 date added.
|
1639 |
+
#: ../templates/wishlist-view.php:238
|
1640 |
msgid "Added on: %s"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: ../templates/wishlist-view.php:287
|
1644 |
msgid "Remove"
|
1645 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
10 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
11 |
"Language: he_IL\n"
|
@@ -13,90 +13,146 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "הוסף לרשימת המשאלות"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "רשימת משאלות"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "המוצר הוסר מהרשימה בהצלחה."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr ""
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "רשימת משאלות"
|
102 |
|
@@ -122,6 +178,11 @@ msgstr ""
|
|
122 |
msgid "Title"
|
123 |
msgstr ""
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr ""
|
@@ -130,94 +191,144 @@ msgstr ""
|
|
130 |
msgid "Items added"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "שתף ברשת:"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "שתף בפייסבוק"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "רשימת המשאלות שלי ב-%s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr ""
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr ""
|
@@ -226,11 +337,12 @@ msgstr ""
|
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "שגיאה. לא הצלחנו להסיר את המוצר מרשימת המשאלות."
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr ""
|
236 |
|
@@ -238,58 +350,198 @@ msgstr ""
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr ""
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] ""
|
245 |
msgstr[1] ""
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] ""
|
251 |
msgstr[1] ""
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr ""
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] ""
|
265 |
msgstr[1] ""
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "שתף ברשת:"
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgstr ""
|
294 |
|
295 |
#: ../init.php:4
|
@@ -297,7 +549,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,28 +565,31 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "הגדרות כלליות"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -349,7 +609,10 @@ msgid "Loop settings"
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
|
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -365,7 +628,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
|
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -380,196 +647,239 @@ msgstr ""
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "השתמש בקוד מקוצר"
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
|
|
|
|
|
|
|
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "לאחר \"הוספה לסל\""
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "אחרי התמונות המוקטנות"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "אחרי תיאור מוצר"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "המוצר נשמר!"
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "המוצר נשמר!"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "צפה ברשימת השמורים שלך"
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
|
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "הכנס שורות CSS משלך"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
msgstr ""
|
570 |
|
|
|
|
|
|
|
|
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
@@ -585,7 +895,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
585 |
msgstr ""
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
|
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
@@ -593,7 +905,9 @@ msgid "Enable slider in wishlist"
|
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -605,14 +919,23 @@ msgid "Wishlist page"
|
|
605 |
msgstr ""
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr ""
|
618 |
|
@@ -637,11 +960,13 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr ""
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -649,7 +974,9 @@ msgid "Redirect to cart"
|
|
649 |
msgstr "הפנייה לסל הקניות"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -657,7 +984,8 @@ msgid "Remove if added to the cart"
|
|
657 |
msgstr "הסר מהרשימה אם הוסף לסל"
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -668,7 +996,11 @@ msgstr ""
|
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr ""
|
674 |
|
@@ -692,7 +1024,7 @@ msgstr ""
|
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "רשימת המשאלות שלי ב-%s"
|
698 |
|
@@ -701,7 +1033,9 @@ msgid "Social text"
|
|
701 |
msgstr ""
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
|
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -717,9 +1051,17 @@ msgid "Default wishlist name"
|
|
717 |
msgstr ""
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
725 |
msgstr ""
|
@@ -728,10 +1070,6 @@ msgstr ""
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr ""
|
@@ -756,336 +1094,396 @@ msgstr ""
|
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
|
|
|
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
|
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
|
|
|
|
|
|
|
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
|
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
|
|
|
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
|
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
|
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
960 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1522,50 @@ msgstr ""
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "כותרת רשימת משאלות"
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr ""
|
1166 |
|
@@ -1180,94 +1585,61 @@ msgstr ""
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "קיים במלאי"
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "הסרת מוצר מהרשימה"
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr ""
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "רשימת משאלות"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "הוסף לרשימת המשאלות"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "רשימת משאלות"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
63 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
64 |
+
msgid "View ›"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
68 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
69 |
+
msgid "or"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
73 |
+
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
77 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
78 |
msgid "Product successfully removed."
|
79 |
msgstr "המוצר הוסר מהרשימה בהצלחה."
|
80 |
|
81 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
82 |
msgid "Please, make sure to enter a valid title"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
86 |
+
msgid ""
|
87 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
88 |
+
"are enabled."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
92 |
msgid "Product added to cart successfully"
|
93 |
msgstr ""
|
94 |
|
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 ""
|
102 |
+
|
103 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
104 |
+
msgctxt "page_slug"
|
105 |
+
msgid "wishlist"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
109 |
msgid "While you visit our site, we’ll track:"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
113 |
+
msgid ""
|
114 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
115 |
+
"users your favourite products, and to create targeted email campaigns."
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
119 |
+
msgid ""
|
120 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
121 |
+
"make them visible to the store staff"
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
125 |
+
msgid ""
|
126 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
127 |
+
"browsing our site."
|
128 |
msgstr ""
|
129 |
|
130 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
131 |
+
msgid ""
|
132 |
+
"Members of our team have access to the information you provide us with. For "
|
133 |
+
"example, both Administrators and Shop Managers can access:"
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
137 |
+
msgid ""
|
138 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
139 |
+
"settings of your wishlists"
|
140 |
msgstr ""
|
141 |
|
142 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
143 |
+
msgid ""
|
144 |
+
"Our team members have access to this information to offer you better deals "
|
145 |
+
"for the products you love."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
149 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
150 |
msgid "Customer wishlists"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
154 |
+
#: ../plugin-options/lists-options.php:23,
|
155 |
+
#: ../plugin-options/lists-options.php:30
|
156 |
msgid "Wishlists"
|
157 |
msgstr "רשימת משאלות"
|
158 |
|
178 |
msgid "Title"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
182 |
+
msgctxt "date when wishlist was created"
|
183 |
+
msgid "Created on"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
187 |
msgid "Visibility"
|
188 |
msgstr ""
|
191 |
msgid "Items added"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
195 |
+
msgctxt "[gutenberg]: block name"
|
196 |
+
msgid "YITH Add to wishlist"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
200 |
+
msgctxt "[gutenberg]: block description"
|
201 |
+
msgid "Shows Add to wishlist button"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
205 |
+
msgid ""
|
206 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
207 |
+
"product)"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
211 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
215 |
msgid "Button label (leave empty to use the default settings)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
219 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
223 |
+
msgid ""
|
224 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
225 |
+
"settings)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
229 |
+
msgid ""
|
230 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
234 |
+
msgid ""
|
235 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
236 |
+
"the default settings)"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
240 |
+
msgid ""
|
241 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
242 |
+
"settings)"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
246 |
+
msgctxt "[gutenberg]: block name"
|
247 |
+
msgid "YITH Wishlist"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
251 |
+
msgctxt "[gutenberg]: block description"
|
252 |
+
msgid "Shows a list of products in wishlist"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
256 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
260 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
261 |
msgid "Paginate"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
265 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
266 |
msgid "Do not paginate"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
270 |
msgid "Number of items to show per page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
274 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
278 |
msgid "Share on:"
|
279 |
msgstr "שתף ברשת:"
|
280 |
|
281 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
282 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
283 |
msgid "Share on Facebook"
|
284 |
msgstr "שתף בפייסבוק"
|
285 |
|
286 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
287 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
288 |
msgid "Tweet on Twitter"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
292 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
293 |
msgid "Pin on Pinterest"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
297 |
msgid "Share via email"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
301 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
302 |
msgid "My wishlist on "
|
303 |
msgstr "רשימת המשאלות שלי ב-%s"
|
304 |
|
305 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
306 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
307 |
msgid "Share on WhatsApp"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
311 |
msgid "Remove from list"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
315 |
msgid "Free!"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
319 |
+
msgctxt ""
|
320 |
+
"Part of the template that shows price variation since addition to list; "
|
321 |
+
"placeholder will be replaced with a percentage"
|
322 |
+
msgid "Price is %1$s%%"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
326 |
+
msgctxt ""
|
327 |
+
"Part of the template that shows price variation since addition to list; "
|
328 |
+
"placeholder will be replaced with a price"
|
329 |
+
msgid "(Was %2$s when added in list)"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
#: ../includes/class.yith-wcwl.php:161
|
333 |
msgid "The item cannot be added to this wishlist"
|
334 |
msgstr ""
|
337 |
msgid "An error occurred while adding the products to the wishlist."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
341 |
msgid "Error. Unable to remove the product from the wishlist."
|
342 |
msgstr "שגיאה. לא הצלחנו להסיר את המוצר מרשימת המשאלות."
|
343 |
|
344 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
345 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
346 |
msgid "Invalid wishlist."
|
347 |
msgstr ""
|
348 |
|
350 |
msgid "Invalid wishlist item."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#. translators: 1. Number of users.
|
354 |
+
#: ../includes/functions.yith-wcwl.php:216
|
355 |
msgid "%d user"
|
356 |
msgid_plural "%d users"
|
357 |
msgstr[0] ""
|
358 |
msgstr[1] ""
|
359 |
|
360 |
+
#: ../includes/functions.yith-wcwl.php:217
|
361 |
msgid "has this item in wishlist"
|
362 |
msgid_plural "have this item in wishlist"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ../includes/functions.yith-wcwl.php:219
|
367 |
msgid "You're the first"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../includes/functions.yith-wcwl.php:220
|
371 |
msgid "to add this item in wishlist"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
375 |
+
#: ../includes/functions.yith-wcwl.php:224
|
376 |
msgid "You and %s user"
|
377 |
msgid_plural "You and %d users"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ../includes/functions.yith-wcwl.php:225
|
382 |
msgid "have this item in wishlist"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/functions.yith-wcwl.php:460
|
386 |
+
msgid "None"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../includes/functions.yith-wcwl.php:461
|
390 |
+
#, fuzzy
|
391 |
+
#| msgid "Custom CSS"
|
392 |
+
msgid "Custom"
|
393 |
+
msgstr "הכנס שורות CSS משלך"
|
394 |
+
|
395 |
+
#: ../includes/functions.yith-wcwl.php:553
|
396 |
msgid "Shared"
|
397 |
msgstr "שתף ברשת:"
|
398 |
|
399 |
+
#: ../includes/functions.yith-wcwl.php:557
|
400 |
+
msgid "Only people with a link to this list can see it"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../includes/functions.yith-wcwl.php:563
|
404 |
msgid "Private"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../includes/functions.yith-wcwl.php:567
|
408 |
+
msgid "Only you can see this list"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../includes/functions.yith-wcwl.php:573
|
412 |
msgid "Public"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/functions.yith-wcwl.php:577
|
416 |
+
msgid "Anyone can search for and see this list"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
420 |
+
msgctxt "Elementor widget name"
|
421 |
+
msgid "YITH Wishlist Add button"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
425 |
+
#, fuzzy
|
426 |
+
#| msgid "Product added!"
|
427 |
+
msgctxt "Elementor section title"
|
428 |
+
msgid "Product"
|
429 |
+
msgstr "המוצר נשמר!"
|
430 |
+
|
431 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
432 |
+
#, fuzzy
|
433 |
+
#| msgid "Product added!"
|
434 |
+
msgctxt "Elementor control label"
|
435 |
+
msgid "Product ID"
|
436 |
+
msgstr "המוצר נשמר!"
|
437 |
+
|
438 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
439 |
+
msgctxt "Elementor section title"
|
440 |
+
msgid "Labels"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
444 |
+
msgctxt "Elementor control label"
|
445 |
+
msgid "Button label"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
449 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
450 |
+
msgid "Add to wishlist"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
454 |
+
#, fuzzy
|
455 |
+
#| msgid "\"Browse wishlist\" text"
|
456 |
+
msgctxt "Elementor control label"
|
457 |
+
msgid "\"Browse wishlist\" label"
|
458 |
+
msgstr "צפה ברשימת השמורים שלך"
|
459 |
+
|
460 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
461 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
462 |
+
msgid "Browse wishlist"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
466 |
+
#, fuzzy
|
467 |
+
#| msgid "\"Product already in wishlist\" text"
|
468 |
+
msgctxt "Elementor control label"
|
469 |
+
msgid "\"Product already in wishlist\" label"
|
470 |
+
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."
|
471 |
+
|
472 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
473 |
+
#, fuzzy
|
474 |
+
#| msgid "\"Product already in wishlist\" text"
|
475 |
+
msgid "Product already in wishlist"
|
476 |
+
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."
|
477 |
+
|
478 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
479 |
+
#, fuzzy
|
480 |
+
#| msgid "\"Product already in wishlist\" text"
|
481 |
+
msgctxt "Elementor control label"
|
482 |
+
msgid "\"Product added to wishlist\" label"
|
483 |
+
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."
|
484 |
+
|
485 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
486 |
+
#, fuzzy
|
487 |
+
#| msgid "\"Product already in wishlist\" text"
|
488 |
+
msgid "Product added to wishlist"
|
489 |
+
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."
|
490 |
+
|
491 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
492 |
+
msgctxt "Elementor section title"
|
493 |
+
msgid "Advanced"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
497 |
+
msgctxt "Elementor control label"
|
498 |
+
msgid "URL of the wishlist page"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
502 |
+
msgctxt "Elementor control label"
|
503 |
+
msgid "Icon for the button"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
507 |
+
msgctxt "Elementor control label"
|
508 |
+
msgid "Additional CSS classes for the button"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
512 |
+
#, fuzzy
|
513 |
+
#| msgid "Wishlist"
|
514 |
+
msgctxt "Elementor widget name"
|
515 |
+
msgid "YITH Wishlist"
|
516 |
+
msgstr "רשימת משאלות"
|
517 |
+
|
518 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
519 |
+
#, fuzzy
|
520 |
+
#| msgid "Wishlist"
|
521 |
+
msgctxt "Elementor section title"
|
522 |
+
msgid "Wishlist"
|
523 |
+
msgstr "רשימת משאלות"
|
524 |
+
|
525 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
526 |
+
#, fuzzy
|
527 |
+
#| msgid "Wishlist"
|
528 |
+
msgctxt "Elementor control label"
|
529 |
+
msgid "Wishlist ID"
|
530 |
+
msgstr "רשימת משאלות"
|
531 |
+
|
532 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
533 |
+
msgctxt "Elementor section title"
|
534 |
+
msgid "Pagination"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
538 |
+
msgctxt "Elementor control label"
|
539 |
+
msgid "Paginate items"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
543 |
+
msgctxt "yith-woocommerce-wishlist"
|
544 |
+
msgid "Items per page"
|
545 |
msgstr ""
|
546 |
|
547 |
#: ../init.php:4
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../init.php:5
|
552 |
+
msgid ""
|
553 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
554 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
555 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
556 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
557 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
558 |
msgstr ""
|
559 |
|
560 |
#: ../init.php:7
|
565 |
msgid "https://yithemes.com/"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../init.php:141
|
569 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../init.php:151
|
573 |
msgid "You can't activate the free version of"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../init.php:151
|
577 |
msgid "while you are using the premium one."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
581 |
+
#: ../plugin-options/settings-options.php:23
|
582 |
msgid "General Settings"
|
583 |
msgstr "הגדרות כלליות"
|
584 |
|
585 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
586 |
+
msgid "After product is added to wishlist"
|
587 |
msgstr ""
|
588 |
|
589 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
590 |
+
msgid ""
|
591 |
+
"Choose the look of the Wishlist button when the product has already been "
|
592 |
+
"added to a wishlist"
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
612 |
+
msgid ""
|
613 |
+
"Loop options will be visible on Shop page, category pages, product "
|
614 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
615 |
+
"products' loop is used"
|
616 |
msgstr ""
|
617 |
|
618 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
628 |
msgstr ""
|
629 |
|
630 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
631 |
+
msgid ""
|
632 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
633 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
634 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
635 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
636 |
msgstr ""
|
637 |
|
638 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
647 |
msgid "After \"Add to cart\" button"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
651 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
652 |
msgid "Use shortcode"
|
653 |
msgstr "השתמש בקוד מקוצר"
|
654 |
|
655 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
656 |
msgid "Product page settings"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
660 |
msgid "Position of \"Add to wishlist\" on product page"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
664 |
+
msgid ""
|
665 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
666 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
667 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
668 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
672 |
msgid "After \"Add to cart\""
|
673 |
msgstr "לאחר \"הוספה לסל\""
|
674 |
|
675 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
676 |
msgid "After thumbnails"
|
677 |
msgstr "אחרי התמונות המוקטנות"
|
678 |
|
679 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
680 |
msgid "After summary"
|
681 |
msgstr "אחרי תיאור מוצר"
|
682 |
|
683 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
684 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
685 |
msgid "Text customization"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
689 |
msgid "\"Add to wishlist\" text"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
693 |
msgid "Enter a text for \"Add to wishlist\" button"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
697 |
msgid "\"Product added\" text"
|
698 |
msgstr "המוצר נשמר!"
|
699 |
|
700 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
701 |
+
msgid ""
|
702 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
703 |
+
"wishlist"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
707 |
msgid "Product added!"
|
708 |
msgstr "המוצר נשמר!"
|
709 |
|
710 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
711 |
msgid "\"Browse wishlist\" text"
|
712 |
msgstr "צפה ברשימת השמורים שלך"
|
713 |
|
714 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
715 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
719 |
msgid "\"Product already in wishlist\" text"
|
720 |
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."
|
721 |
|
722 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
723 |
+
msgid ""
|
724 |
+
"Enter the text for the message displayed when the user views a product that "
|
725 |
+
"is already in the wishlist"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
729 |
msgid "The product is already in your wishlist!"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
733 |
msgid "Style & Color customization"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
737 |
msgid "Style of \"Add to wishlist\""
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
741 |
+
msgid ""
|
742 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
746 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
747 |
msgid "Textual (anchor)"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
751 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
752 |
msgid "Button with theme style"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
756 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
757 |
msgid "Button with custom style"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
761 |
msgid "\"Add to wishlist\" button style"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
765 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
769 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
770 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
771 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
772 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
773 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
774 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
776 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
777 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
778 |
msgid "Background"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
782 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
783 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
784 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
785 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
786 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
787 |
msgid "Text"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
791 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
792 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
793 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
794 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
795 |
msgid "Border"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
799 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
803 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
804 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
805 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
806 |
msgid "Background Hover"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
810 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
811 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
812 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
813 |
msgid "Text Hover"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
817 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
818 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
819 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
820 |
msgid "Border Hover"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
824 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
825 |
msgid "Border radius"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
829 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
833 |
msgid "\"Add to wishlist\" icon"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
837 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
841 |
msgid "\"Add to wishlist\" custom icon"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
845 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
846 |
+
msgid ""
|
847 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
848 |
+
"32px x 32px)"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
852 |
msgid "\"Added to wishlist\" icon"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
856 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
860 |
msgid "Same used for Add to wishlist"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
864 |
msgid "\"Added to wishlist\" custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
868 |
msgid "Custom CSS"
|
869 |
msgstr "הכנס שורות CSS משלך"
|
870 |
|
871 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
872 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../plugin-options/lists-options.php:32
|
876 |
+
msgid "Search list"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
#: ../plugin-options/settings-options.php:17
|
880 |
+
msgid ""
|
881 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
882 |
+
"the %s."
|
883 |
msgstr ""
|
884 |
|
885 |
#: ../plugin-options/settings-options.php:30
|
895 |
msgstr ""
|
896 |
|
897 |
#: ../plugin-options/settings-options.php:46
|
898 |
+
msgid ""
|
899 |
+
"In order to use this integration you have to install and activate YITH "
|
900 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
901 |
msgstr ""
|
902 |
|
903 |
#: ../plugin-options/settings-options.php:51
|
905 |
msgstr ""
|
906 |
|
907 |
#: ../plugin-options/settings-options.php:52
|
908 |
+
msgid ""
|
909 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
910 |
+
"class=\"thickbox\">Example</a>). %s"
|
911 |
msgstr ""
|
912 |
|
913 |
#: ../plugin-options/wishlist_page-options.php:17
|
919 |
msgstr ""
|
920 |
|
921 |
#: ../plugin-options/wishlist_page-options.php:25
|
922 |
+
msgid ""
|
923 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
924 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
925 |
+
"content"
|
926 |
msgstr ""
|
927 |
|
928 |
#: ../plugin-options/wishlist_page-options.php:38
|
929 |
msgid "Wishlist Detail Page"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
933 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
934 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
935 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
936 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
937 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
938 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
939 |
msgid "In wishlist table show"
|
940 |
msgstr ""
|
941 |
|
960 |
msgstr ""
|
961 |
|
962 |
#: ../plugin-options/wishlist_page-options.php:91
|
963 |
+
msgid ""
|
964 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
965 |
msgstr ""
|
966 |
|
967 |
#: ../plugin-options/wishlist_page-options.php:100
|
968 |
+
msgid ""
|
969 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
970 |
msgstr ""
|
971 |
|
972 |
#: ../plugin-options/wishlist_page-options.php:108
|
974 |
msgstr "הפנייה לסל הקניות"
|
975 |
|
976 |
#: ../plugin-options/wishlist_page-options.php:109
|
977 |
+
msgid ""
|
978 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
979 |
+
"wishlist page"
|
980 |
msgstr ""
|
981 |
|
982 |
#: ../plugin-options/wishlist_page-options.php:117
|
984 |
msgstr "הסר מהרשימה אם הוסף לסל"
|
985 |
|
986 |
#: ../plugin-options/wishlist_page-options.php:118
|
987 |
+
msgid ""
|
988 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
989 |
msgstr ""
|
990 |
|
991 |
#: ../plugin-options/wishlist_page-options.php:126
|
996 |
msgid "Enable this option to let users share their wishlist on social media"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1000 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1001 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1002 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1003 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1004 |
msgid "Share on social media"
|
1005 |
msgstr ""
|
1006 |
|
1024 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1028 |
msgid "My wishlist on %s"
|
1029 |
msgstr "רשימת המשאלות שלי ב-%s"
|
1030 |
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: ../plugin-options/wishlist_page-options.php:198
|
1036 |
+
msgid ""
|
1037 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1038 |
+
"and Pinterest"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: ../plugin-options/wishlist_page-options.php:206
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: ../plugin-options/wishlist_page-options.php:227
|
1054 |
+
msgid ""
|
1055 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1056 |
+
"automatically generated for all users if they do not create any custom one"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1060 |
+
#, fuzzy
|
1061 |
+
#| msgid "My wishlist on "
|
1062 |
+
msgid "My wishlist"
|
1063 |
+
msgstr "רשימת המשאלות שלי ב-%s"
|
1064 |
+
|
1065 |
#: ../plugin-options/wishlist_page-options.php:234
|
1066 |
msgid "\"Add to cart\" text"
|
1067 |
msgstr ""
|
1070 |
msgid "Enter a text for the \"Add to cart\" button"
|
1071 |
msgstr ""
|
1072 |
|
|
|
|
|
|
|
|
|
1073 |
#: ../plugin-options/wishlist_page-options.php:247
|
1074 |
msgid "Style & color customization"
|
1075 |
msgstr ""
|
1094 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1098 |
msgid "Set the radius for the \"Add to cart\" button"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1102 |
msgid "\"Add to cart\" icon"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1106 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1110 |
msgid "\"Add to cart\" custom icon"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1114 |
+
msgid ""
|
1115 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1116 |
+
"32px x 32px)"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1120 |
msgid "Primary button style"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1124 |
+
msgid ""
|
1125 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1126 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1127 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1131 |
+
msgid ""
|
1132 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1133 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1134 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1135 |
+
"small>"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1139 |
msgid "Secondary button style"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1143 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1144 |
+
msgid ""
|
1145 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1146 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1147 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1151 |
msgid "Wishlist table style"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1155 |
+
msgid ""
|
1156 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1160 |
msgid "Highlight color"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1164 |
+
msgid ""
|
1165 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1166 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1167 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1171 |
msgid "Share button text color"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1175 |
msgid "Choose colors for share buttons text"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1179 |
msgid "Text hover"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1183 |
msgid "Facebook share button icon"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1187 |
msgid "Select an icon for the Facebook share button"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1191 |
msgid "Facebook share button custom icon"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1195 |
+
msgid ""
|
1196 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1197 |
+
"32px)"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1201 |
msgid "Facebook share button style"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1205 |
msgid "Choose colors for Facebook share button"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1209 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1210 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1211 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1212 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1213 |
msgid "Background hover"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1217 |
msgid "Twitter share button icon"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1221 |
msgid "Select an icon for the Twitter share button"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1225 |
msgid "Twitter share button custom icon"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1229 |
+
msgid ""
|
1230 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1231 |
+
"32px)"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1235 |
msgid "Twitter share button style"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1239 |
msgid "Choose colors for Twitter share button"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1243 |
msgid "Pinterest share button icon"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1247 |
msgid "Select an icon for the Pinterest share button"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1251 |
msgid "Pinterest share button custom icon"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1255 |
+
msgid ""
|
1256 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1257 |
+
"x 32px)"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1261 |
msgid "Pinterest share button style"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1265 |
msgid "Choose colors for Pinterest share button"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1269 |
msgid "Email share button icon"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1273 |
msgid "Select an icon for the Email share button"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1277 |
msgid "Email share button custom icon"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1281 |
+
msgid ""
|
1282 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1283 |
+
"x 32px)"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1287 |
msgid "Email share button style"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1291 |
msgid "Choose colors for the Email share button"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1295 |
msgid "WhatsApp share button icon"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1299 |
msgid "Select an icon for the WhatsApp share button"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1303 |
msgid "WhatsApp share button custom icon"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1307 |
+
msgid ""
|
1308 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1309 |
+
"32px)"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1313 |
msgid "WhatsApp share button style"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1317 |
msgid "Choose colors for WhatsApp share button"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1321 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1322 |
+
msgid ""
|
1323 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1324 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1328 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1329 |
msgid "Upgrade"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1333 |
msgid "Premium Features"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1337 |
msgid "Allow your customers to create multiple wishlists"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1341 |
+
msgid ""
|
1342 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1343 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1344 |
+
"other parameters."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1348 |
msgid "Multiple Wishlist"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1352 |
msgid "Wishlist Private"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1356 |
msgid "A transparent privacy management"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1360 |
+
msgid ""
|
1361 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1362 |
+
"sharing the wishlist or making it private."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1366 |
+
msgid ""
|
1367 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1368 |
+
"page"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1372 |
+
msgid ""
|
1373 |
+
"And give only registered users the privilege to use the wishlist "
|
1374 |
+
"functionalities."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1378 |
msgid "Estimate Cost"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1382 |
msgid "Admin Panel"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1386 |
msgid "An advanced and more versatile management of the wishlist"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1390 |
+
msgid ""
|
1391 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1392 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1393 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1394 |
+
"social networks, and much more!"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1398 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1402 |
+
msgid ""
|
1403 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1404 |
+
"are more interested in and plan targeted marketing strategies."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1408 |
msgid "Search Wishlists"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1412 |
msgid "'ADD TO CART'"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1416 |
+
msgid ""
|
1417 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1421 |
+
msgid ""
|
1422 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1423 |
+
"customers who have added specific products to their wishlist and push them "
|
1424 |
+
"to buy."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1428 |
msgid "Let users buy the product right from the wishlist page"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1432 |
+
msgid ""
|
1433 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1434 |
+
"also the information about the size, colour or quantity selected when added "
|
1435 |
+
"to the wishlist."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1439 |
msgid "DISABLE WISHLIST"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1443 |
msgid "Choose a charming layout for your wishlist page"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1447 |
+
msgid ""
|
1448 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1449 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1450 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1451 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1452 |
+
"your website."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1456 |
msgid "UNLOGGED USERS"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1460 |
msgid "Wishlist widgets for the header and sidebars"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1464 |
+
msgid ""
|
1465 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1466 |
+
"in the header, in the sidebars, wherever you want."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1470 |
msgid "POPULAR TABLE"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1474 |
msgid "FUNCTIONALITIES"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1478 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1482 |
+
msgid ""
|
1483 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1484 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1485 |
+
"product and how much they can save when there’s a promotion running or a "
|
1486 |
+
"discount on the product they’ve added to the wishlist."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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 "כותרת רשימת משאלות"
|
1563 |
|
1564 |
+
#: ../templates/wishlist-view-header.php:48
|
1565 |
msgid "Save"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: ../templates/wishlist-view-header.php:51
|
1569 |
msgid "Cancel"
|
1570 |
msgstr ""
|
1571 |
|
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 ›"
|
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 ""
|
1617 |
|
1618 |
+
#: ../templates/wishlist-view.php:78
|
1619 |
msgid "Product name"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: ../templates/wishlist-view.php:86
|
1623 |
msgid "Unit price"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: ../templates/wishlist-view.php:95
|
1627 |
msgid "Quantity"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../templates/wishlist-view.php:104
|
1631 |
msgid "Stock status"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: ../templates/wishlist-view.php:122
|
1635 |
msgid "Arrange"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#. translators: date added label: 1 date added.
|
1639 |
+
#: ../templates/wishlist-view.php:238
|
1640 |
msgid "Added on: %s"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: ../templates/wishlist-view.php:287
|
1644 |
msgid "Remove"
|
1645 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
11 |
"Language: hr_HR\n"
|
@@ -13,90 +13,147 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n
|
|
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr "Premium verzija"
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "YITH WooCommerce Lista želja"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "Lista želja"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "Proizvod uspješno obrisan."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr ""
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "Lista želja"
|
102 |
|
@@ -122,6 +179,11 @@ msgstr ""
|
|
122 |
msgid "Title"
|
123 |
msgstr ""
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr ""
|
@@ -130,94 +192,144 @@ msgstr ""
|
|
130 |
msgid "Items added"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "Podijeli na:"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "Podijeli na Facebooku"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "Tweet-aj na Twitteru"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "Pinaj na Pinterestu"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "Moja lista želja na %s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr "Besplatno!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr ""
|
@@ -226,11 +338,12 @@ msgstr ""
|
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "Greška. Proizvod se ne može obrisati iz liste želja."
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr ""
|
236 |
|
@@ -238,61 +351,201 @@ msgstr ""
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr ""
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] ""
|
245 |
msgstr[1] ""
|
246 |
msgstr[2] ""
|
247 |
|
248 |
-
#: ../includes/functions.yith-wcwl.php:
|
249 |
msgid "has this item in wishlist"
|
250 |
msgid_plural "have this item in wishlist"
|
251 |
msgstr[0] ""
|
252 |
msgstr[1] ""
|
253 |
msgstr[2] ""
|
254 |
|
255 |
-
#: ../includes/functions.yith-wcwl.php:
|
256 |
msgid "You're the first"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../includes/functions.yith-wcwl.php:
|
260 |
msgid "to add this item in wishlist"
|
261 |
msgstr ""
|
262 |
|
263 |
-
|
|
|
264 |
msgid "You and %s user"
|
265 |
msgid_plural "You and %d users"
|
266 |
msgstr[0] ""
|
267 |
msgstr[1] ""
|
268 |
msgstr[2] ""
|
269 |
|
270 |
-
#: ../includes/functions.yith-wcwl.php:
|
271 |
msgid "have this item in wishlist"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
msgid "Shared"
|
276 |
msgstr "Podijeljeno"
|
277 |
|
278 |
-
#: ../includes/functions.yith-wcwl.php:
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../includes/functions.yith-wcwl.php:
|
283 |
msgid "Private"
|
284 |
msgstr "Privatno"
|
285 |
|
286 |
-
#: ../includes/functions.yith-wcwl.php:
|
287 |
-
msgid "Only
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../includes/functions.yith-wcwl.php:
|
291 |
msgid "Public"
|
292 |
msgstr "Javno"
|
293 |
|
294 |
-
#: ../includes/functions.yith-wcwl.php:
|
295 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
msgstr ""
|
297 |
|
298 |
#: ../init.php:4
|
@@ -300,7 +553,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
300 |
msgstr ""
|
301 |
|
302 |
#: ../init.php:5
|
303 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
304 |
msgstr ""
|
305 |
|
306 |
#: ../init.php:7
|
@@ -311,28 +569,33 @@ msgstr ""
|
|
311 |
msgid "https://yithemes.com/"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ../init.php:
|
315 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
316 |
-
msgstr "
|
|
|
|
|
317 |
|
318 |
-
#: ../init.php:
|
319 |
msgid "You can't activate the free version of"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../init.php:
|
323 |
msgid "while you are using the premium one."
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
327 |
msgid "General Settings"
|
328 |
msgstr "Osnovne postavke"
|
329 |
|
330 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
331 |
-
msgid "
|
332 |
msgstr ""
|
333 |
|
334 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
335 |
-
msgid "
|
|
|
|
|
336 |
msgstr ""
|
337 |
|
338 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -352,7 +615,10 @@ msgid "Loop settings"
|
|
352 |
msgstr ""
|
353 |
|
354 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
355 |
-
msgid "
|
|
|
|
|
|
|
356 |
msgstr ""
|
357 |
|
358 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -368,7 +634,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
368 |
msgstr ""
|
369 |
|
370 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
371 |
-
msgid "
|
|
|
|
|
|
|
|
|
372 |
msgstr ""
|
373 |
|
374 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -383,196 +653,241 @@ msgstr ""
|
|
383 |
msgid "After \"Add to cart\" button"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
387 |
msgid "Use shortcode"
|
388 |
msgstr "Koristi shorcode"
|
389 |
|
390 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
391 |
msgid "Product page settings"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
395 |
msgid "Position of \"Add to wishlist\" on product page"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
399 |
-
msgid "
|
|
|
|
|
|
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
403 |
msgid "After \"Add to cart\""
|
404 |
msgstr "Nakon \"Dodaj u košaricu\""
|
405 |
|
406 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
407 |
msgid "After thumbnails"
|
408 |
msgstr "Nakon minijatura"
|
409 |
|
410 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
411 |
msgid "After summary"
|
412 |
msgstr "Nakon sažetka"
|
413 |
|
414 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
415 |
msgid "Text customization"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
419 |
msgid "\"Add to wishlist\" text"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
423 |
msgid "Enter a text for \"Add to wishlist\" button"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
427 |
-
msgid "Add to wishlist"
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
431 |
msgid "\"Product added\" text"
|
432 |
msgstr "Tekst za \"Proizvod je dodan\""
|
433 |
|
434 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
435 |
-
msgid "
|
|
|
|
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
439 |
msgid "Product added!"
|
440 |
msgstr "Proizvod je dodan!"
|
441 |
|
442 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
443 |
msgid "\"Browse wishlist\" text"
|
444 |
msgstr "Tekst za \"Pregledaj listu želja\""
|
445 |
|
446 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
447 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
451 |
-
msgid "Browse wishlist"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
455 |
msgid "\"Product already in wishlist\" text"
|
456 |
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""
|
457 |
|
458 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
459 |
-
msgid "
|
|
|
|
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
463 |
msgid "The product is already in your wishlist!"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
467 |
msgid "Style & Color customization"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
471 |
msgid "Style of \"Add to wishlist\""
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
475 |
-
msgid "
|
|
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
479 |
msgid "Textual (anchor)"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
483 |
msgid "Button with theme style"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
487 |
msgid "Button with custom style"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
491 |
msgid "\"Add to wishlist\" button style"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
495 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
msgid "Background"
|
500 |
msgstr "Pozadina"
|
501 |
|
502 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
503 |
msgid "Text"
|
504 |
msgstr "Tekst"
|
505 |
|
506 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
507 |
msgid "Border"
|
508 |
msgstr "Obrub"
|
509 |
|
510 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
511 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
515 |
msgid "Background Hover"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
519 |
msgid "Text Hover"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
523 |
msgid "Border Hover"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
527 |
msgid "Border radius"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
531 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
535 |
msgid "\"Add to wishlist\" icon"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
539 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
543 |
msgid "\"Add to wishlist\" custom icon"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
547 |
-
|
|
|
|
|
|
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
551 |
msgid "\"Added to wishlist\" icon"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
555 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
559 |
msgid "Same used for Add to wishlist"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
563 |
msgid "\"Added to wishlist\" custom icon"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
567 |
msgid "Custom CSS"
|
568 |
msgstr "Prilagođeni CSS"
|
569 |
|
570 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
571 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
572 |
msgstr ""
|
573 |
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
#: ../plugin-options/settings-options.php:17
|
575 |
-
msgid "
|
|
|
|
|
576 |
msgstr ""
|
577 |
|
578 |
#: ../plugin-options/settings-options.php:30
|
@@ -588,7 +903,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
588 |
msgstr "YITH WooCommerse skupna Integracija"
|
589 |
|
590 |
#: ../plugin-options/settings-options.php:46
|
591 |
-
msgid "
|
|
|
|
|
592 |
msgstr ""
|
593 |
|
594 |
#: ../plugin-options/settings-options.php:51
|
@@ -596,7 +913,9 @@ msgid "Enable slider in wishlist"
|
|
596 |
msgstr "Omogući slider u listi želja"
|
597 |
|
598 |
#: ../plugin-options/settings-options.php:52
|
599 |
-
msgid "
|
|
|
|
|
600 |
msgstr ""
|
601 |
|
602 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -608,14 +927,23 @@ msgid "Wishlist page"
|
|
608 |
msgstr ""
|
609 |
|
610 |
#: ../plugin-options/wishlist_page-options.php:25
|
611 |
-
msgid "
|
|
|
|
|
|
|
612 |
msgstr ""
|
613 |
|
614 |
#: ../plugin-options/wishlist_page-options.php:38
|
615 |
msgid "Wishlist Detail Page"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
msgid "In wishlist table show"
|
620 |
msgstr ""
|
621 |
|
@@ -640,11 +968,13 @@ msgid "Add to cart option for each product"
|
|
640 |
msgstr ""
|
641 |
|
642 |
#: ../plugin-options/wishlist_page-options.php:91
|
643 |
-
msgid "
|
|
|
644 |
msgstr ""
|
645 |
|
646 |
#: ../plugin-options/wishlist_page-options.php:100
|
647 |
-
msgid "
|
|
|
648 |
msgstr ""
|
649 |
|
650 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -652,7 +982,9 @@ msgid "Redirect to cart"
|
|
652 |
msgstr "Preusmjeri na košaricu"
|
653 |
|
654 |
#: ../plugin-options/wishlist_page-options.php:109
|
655 |
-
msgid "
|
|
|
|
|
656 |
msgstr ""
|
657 |
|
658 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -660,7 +992,8 @@ msgid "Remove if added to the cart"
|
|
660 |
msgstr "Obriši ako je dodan u košaricu"
|
661 |
|
662 |
#: ../plugin-options/wishlist_page-options.php:118
|
663 |
-
msgid "
|
|
|
664 |
msgstr ""
|
665 |
|
666 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -671,7 +1004,11 @@ msgstr ""
|
|
671 |
msgid "Enable this option to let users share their wishlist on social media"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
675 |
msgid "Share on social media"
|
676 |
msgstr ""
|
677 |
|
@@ -695,7 +1032,7 @@ msgstr ""
|
|
695 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
699 |
msgid "My wishlist on %s"
|
700 |
msgstr "Moja lista želja na %s"
|
701 |
|
@@ -704,7 +1041,9 @@ msgid "Social text"
|
|
704 |
msgstr "Tekst za objavu"
|
705 |
|
706 |
#: ../plugin-options/wishlist_page-options.php:198
|
707 |
-
msgid "
|
|
|
|
|
708 |
msgstr ""
|
709 |
|
710 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -720,9 +1059,17 @@ msgid "Default wishlist name"
|
|
720 |
msgstr ""
|
721 |
|
722 |
#: ../plugin-options/wishlist_page-options.php:227
|
723 |
-
msgid "
|
|
|
|
|
724 |
msgstr ""
|
725 |
|
|
|
|
|
|
|
|
|
|
|
|
|
726 |
#: ../plugin-options/wishlist_page-options.php:234
|
727 |
msgid "\"Add to cart\" text"
|
728 |
msgstr ""
|
@@ -731,10 +1078,6 @@ msgstr ""
|
|
731 |
msgid "Enter a text for the \"Add to cart\" button"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
735 |
-
msgid "Add to cart"
|
736 |
-
msgstr ""
|
737 |
-
|
738 |
#: ../plugin-options/wishlist_page-options.php:247
|
739 |
msgid "Style & color customization"
|
740 |
msgstr ""
|
@@ -759,336 +1102,398 @@ msgstr ""
|
|
759 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../plugin-options/wishlist_page-options.php:
|
763 |
msgid "Set the radius for the \"Add to cart\" button"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../plugin-options/wishlist_page-options.php:
|
767 |
msgid "\"Add to cart\" icon"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../plugin-options/wishlist_page-options.php:
|
771 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: ../plugin-options/wishlist_page-options.php:
|
775 |
msgid "\"Add to cart\" custom icon"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: ../plugin-options/wishlist_page-options.php:
|
779 |
-
msgid "
|
|
|
|
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: ../plugin-options/wishlist_page-options.php:
|
783 |
msgid "Primary button style"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: ../plugin-options/wishlist_page-options.php:
|
787 |
-
msgid "
|
|
|
|
|
|
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../plugin-options/wishlist_page-options.php:
|
791 |
-
msgid "
|
|
|
|
|
|
|
|
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../plugin-options/wishlist_page-options.php:
|
795 |
msgid "Secondary button style"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../plugin-options/wishlist_page-options.php:
|
799 |
-
|
|
|
|
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../plugin-options/wishlist_page-options.php:
|
803 |
msgid "Wishlist table style"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../plugin-options/wishlist_page-options.php:
|
807 |
-
msgid "
|
|
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: ../plugin-options/wishlist_page-options.php:
|
811 |
msgid "Highlight color"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../plugin-options/wishlist_page-options.php:
|
815 |
-
msgid "
|
|
|
|
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../plugin-options/wishlist_page-options.php:
|
819 |
msgid "Share button text color"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../plugin-options/wishlist_page-options.php:
|
823 |
msgid "Choose colors for share buttons text"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../plugin-options/wishlist_page-options.php:
|
827 |
msgid "Text hover"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: ../plugin-options/wishlist_page-options.php:
|
831 |
msgid "Facebook share button icon"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: ../plugin-options/wishlist_page-options.php:
|
835 |
msgid "Select an icon for the Facebook share button"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: ../plugin-options/wishlist_page-options.php:
|
839 |
msgid "Facebook share button custom icon"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../plugin-options/wishlist_page-options.php:
|
843 |
-
msgid "
|
|
|
|
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../plugin-options/wishlist_page-options.php:
|
847 |
msgid "Facebook share button style"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../plugin-options/wishlist_page-options.php:
|
851 |
msgid "Choose colors for Facebook share button"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
855 |
msgid "Background hover"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: ../plugin-options/wishlist_page-options.php:
|
859 |
msgid "Twitter share button icon"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: ../plugin-options/wishlist_page-options.php:
|
863 |
msgid "Select an icon for the Twitter share button"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../plugin-options/wishlist_page-options.php:
|
867 |
msgid "Twitter share button custom icon"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: ../plugin-options/wishlist_page-options.php:
|
871 |
-
msgid "
|
|
|
|
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../plugin-options/wishlist_page-options.php:
|
875 |
msgid "Twitter share button style"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../plugin-options/wishlist_page-options.php:
|
879 |
msgid "Choose colors for Twitter share button"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../plugin-options/wishlist_page-options.php:
|
883 |
msgid "Pinterest share button icon"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../plugin-options/wishlist_page-options.php:
|
887 |
msgid "Select an icon for the Pinterest share button"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../plugin-options/wishlist_page-options.php:
|
891 |
msgid "Pinterest share button custom icon"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: ../plugin-options/wishlist_page-options.php:
|
895 |
-
msgid "
|
|
|
|
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../plugin-options/wishlist_page-options.php:
|
899 |
msgid "Pinterest share button style"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../plugin-options/wishlist_page-options.php:
|
903 |
msgid "Choose colors for Pinterest share button"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../plugin-options/wishlist_page-options.php:
|
907 |
msgid "Email share button icon"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../plugin-options/wishlist_page-options.php:
|
911 |
msgid "Select an icon for the Email share button"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../plugin-options/wishlist_page-options.php:
|
915 |
msgid "Email share button custom icon"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../plugin-options/wishlist_page-options.php:
|
919 |
-
msgid "
|
|
|
|
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../plugin-options/wishlist_page-options.php:
|
923 |
msgid "Email share button style"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../plugin-options/wishlist_page-options.php:
|
927 |
msgid "Choose colors for the Email share button"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../plugin-options/wishlist_page-options.php:
|
931 |
msgid "WhatsApp share button icon"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: ../plugin-options/wishlist_page-options.php:
|
935 |
msgid "Select an icon for the WhatsApp share button"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../plugin-options/wishlist_page-options.php:
|
939 |
msgid "WhatsApp share button custom icon"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../plugin-options/wishlist_page-options.php:
|
943 |
-
msgid "
|
|
|
|
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../plugin-options/wishlist_page-options.php:
|
947 |
msgid "WhatsApp share button style"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: ../plugin-options/wishlist_page-options.php:
|
951 |
msgid "Choose colors for WhatsApp share button"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: ../templates/
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
msgid "View ›"
|
960 |
msgstr ""
|
|
|
|
|
961 |
|
962 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
963 |
-
|
964 |
-
msgstr "Nadogradite na %1$spremium verziju%2$s%3$s %1$sYITH WooCommerce Listu želja%2$s "
|
965 |
-
|
966 |
-
#: ../templates/admin/wishlist-panel-premium.php:169, ../templates/admin/wishlist-panel-premium.php:310
|
967 |
msgid "Upgrade"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
971 |
msgid "Premium Features"
|
972 |
msgstr "Premium dodaci"
|
973 |
|
974 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
975 |
msgid "Allow your customers to create multiple wishlists"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
979 |
-
msgid "
|
|
|
|
|
|
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
983 |
msgid "Multiple Wishlist"
|
984 |
msgstr "Višestruka Lista želja"
|
985 |
|
986 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
987 |
msgid "Wishlist Private"
|
988 |
msgstr "Privatna lista želja"
|
989 |
|
990 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
991 |
msgid "A transparent privacy management"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
995 |
-
msgid "
|
|
|
|
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
999 |
-
msgid "
|
|
|
|
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1003 |
-
msgid "
|
|
|
|
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1007 |
msgid "Estimate Cost"
|
1008 |
msgstr "Procjena troška"
|
1009 |
|
1010 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1011 |
msgid "Admin Panel"
|
1012 |
msgstr "Upravljačka ploča Admina"
|
1013 |
|
1014 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1015 |
msgid "An advanced and more versatile management of the wishlist"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1019 |
-
msgid "
|
|
|
|
|
|
|
|
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1023 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1027 |
-
msgid "
|
|
|
|
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1031 |
msgid "Search Wishlists"
|
1032 |
msgstr "Pretraga listi želja"
|
1033 |
|
1034 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1035 |
msgid "'ADD TO CART'"
|
1036 |
msgstr "'DODAJ U KOŠARICU'"
|
1037 |
|
1038 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1039 |
-
msgid "
|
|
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1043 |
-
msgid "
|
|
|
|
|
|
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1047 |
msgid "Let users buy the product right from the wishlist page"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1051 |
-
msgid "
|
|
|
|
|
|
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1055 |
msgid "DISABLE WISHLIST"
|
1056 |
msgstr "ONEMOGUĆI LISTU ŽELJA"
|
1057 |
|
1058 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1059 |
msgid "Choose a charming layout for your wishlist page"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1063 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1067 |
msgid "UNLOGGED USERS"
|
1068 |
msgstr "NEPRIJAVLJENI KORISNICI"
|
1069 |
|
1070 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1071 |
msgid "Wishlist widgets for the header and sidebars"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1075 |
-
msgid "
|
|
|
|
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1079 |
msgid "POPULAR TABLE"
|
1080 |
msgstr "TABLICA POPULARNOSTI"
|
1081 |
|
1082 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1083 |
msgid "FUNCTIONALITIES"
|
1084 |
msgstr "FUNKCIONALNOSTI"
|
1085 |
|
1086 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1087 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1091 |
-
msgid "
|
|
|
|
|
|
|
|
|
1092 |
msgstr ""
|
1093 |
|
1094 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1127,43 +1532,50 @@ msgstr ""
|
|
1127 |
msgid "this wishlist link and share it anywhere)"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1131 |
msgid "Apply this action to all the selected items:"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1135 |
msgid "Remove from wishlist"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
|
|
|
|
|
1139 |
msgid "Move to %s"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1143 |
msgid "Apply"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1147 |
msgid "Update"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1151 |
msgid "Add all to cart"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1155 |
msgid "Ask for an estimate"
|
1156 |
msgstr "Zatraži procjenu cijene"
|
1157 |
|
1158 |
-
#: ../templates/wishlist-view-header.php:
|
1159 |
msgid "Edit title"
|
1160 |
msgstr "Uredi naslov"
|
1161 |
|
1162 |
-
#: ../templates/wishlist-view-header.php:
|
1163 |
msgid "Save"
|
1164 |
msgstr "Spremi"
|
1165 |
|
1166 |
-
#: ../templates/wishlist-view-header.php:
|
1167 |
msgid "Cancel"
|
1168 |
msgstr "Odustani"
|
1169 |
|
@@ -1183,94 +1595,61 @@ msgstr ""
|
|
1183 |
msgid "Stock:"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1187 |
msgid "Out of stock"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1191 |
msgid "In Stock"
|
1192 |
msgstr "Na zalihi"
|
1193 |
|
1194 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1195 |
msgid "Move"
|
1196 |
msgstr "Premjesti"
|
1197 |
|
1198 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1199 |
msgid "Move to another list ›"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1203 |
msgid "Remove this product"
|
1204 |
msgstr "Obriši ovaj proizvod"
|
1205 |
|
1206 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1207 |
msgid "No products added to the wishlist"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../templates/wishlist-view.php:
|
1211 |
msgid "Product name"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: ../templates/wishlist-view.php:
|
1215 |
msgid "Unit price"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: ../templates/wishlist-view.php:
|
1219 |
msgid "Quantity"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: ../templates/wishlist-view.php:
|
1223 |
msgid "Stock status"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: ../templates/wishlist-view.php:
|
1227 |
msgid "Arrange"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
|
|
|
1231 |
msgid "Added on: %s"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: ../templates/wishlist-view.php:
|
1235 |
msgid "Remove"
|
1236 |
msgstr "Obriši"
|
1237 |
-
|
1238 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1239 |
-
msgctxt "page_slug"
|
1240 |
-
msgid "wishlist"
|
1241 |
-
msgstr ""
|
1242 |
-
|
1243 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1244 |
-
msgctxt "date when wishlist was created"
|
1245 |
-
msgid "Created on"
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1249 |
-
msgctxt "[gutenberg]: block name"
|
1250 |
-
msgid "YITH Add to wishlist"
|
1251 |
-
msgstr ""
|
1252 |
-
|
1253 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1254 |
-
msgctxt "[gutenberg]: block name"
|
1255 |
-
msgid "YITH Wishlist"
|
1256 |
-
msgstr ""
|
1257 |
-
|
1258 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1259 |
-
msgctxt "[gutenberg]: block description"
|
1260 |
-
msgid "Shows Add to wishlist button"
|
1261 |
-
msgstr ""
|
1262 |
-
|
1263 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1264 |
-
msgctxt "[gutenberg]: block description"
|
1265 |
-
msgid "Shows a list of products in wishlist"
|
1266 |
-
msgstr ""
|
1267 |
-
|
1268 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1269 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1270 |
-
msgid "Price is %1$s%%"
|
1271 |
-
msgstr ""
|
1272 |
-
|
1273 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1274 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1275 |
-
msgid "(Was %2$s when added in list)"
|
1276 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
21 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
25 |
|
26 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
27 |
+
#, fuzzy
|
28 |
+
#| msgid "Wishlist Private"
|
29 |
+
msgid "Wishlist Page"
|
30 |
+
msgstr "Privatna lista želja"
|
31 |
+
|
32 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
33 |
msgid "General settings"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
37 |
msgid "Add to wishlist options"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
41 |
msgid "Wishlist page options"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
45 |
msgid "Premium Version"
|
46 |
msgstr "Premium verzija"
|
47 |
|
48 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
49 |
msgid "YITH WooCommerce Wishlist"
|
50 |
msgstr "YITH WooCommerce Lista želja"
|
51 |
|
52 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
53 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
54 |
msgid "Wishlist"
|
55 |
msgstr "Lista želja"
|
56 |
|
57 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
58 |
+
msgid ""
|
59 |
+
"Allows your customers to create and share lists of products that they want "
|
60 |
+
"to purchase on your e-commerce."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
64 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
65 |
+
msgid "View ›"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
69 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
70 |
+
msgid "or"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
74 |
+
msgid "Close"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
78 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
79 |
msgid "Product successfully removed."
|
80 |
msgstr "Proizvod uspješno obrisan."
|
81 |
|
82 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
83 |
msgid "Please, make sure to enter a valid title"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
87 |
+
msgid ""
|
88 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
89 |
+
"are enabled."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
93 |
msgid "Product added to cart successfully"
|
94 |
msgstr ""
|
95 |
|
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 ""
|
103 |
+
|
104 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
105 |
+
msgctxt "page_slug"
|
106 |
+
msgid "wishlist"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
110 |
msgid "While you visit our site, we’ll track:"
|
111 |
msgstr ""
|
112 |
|
113 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
114 |
+
msgid ""
|
115 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
116 |
+
"users your favourite products, and to create targeted email campaigns."
|
117 |
msgstr ""
|
118 |
|
119 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
120 |
+
msgid ""
|
121 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
122 |
+
"make them visible to the store staff"
|
123 |
msgstr ""
|
124 |
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
126 |
+
msgid ""
|
127 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
128 |
+
"browsing our site."
|
129 |
msgstr ""
|
130 |
|
131 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
132 |
+
msgid ""
|
133 |
+
"Members of our team have access to the information you provide us with. For "
|
134 |
+
"example, both Administrators and Shop Managers can access:"
|
135 |
msgstr ""
|
136 |
|
137 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
138 |
+
msgid ""
|
139 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
140 |
+
"settings of your wishlists"
|
141 |
msgstr ""
|
142 |
|
143 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
144 |
+
msgid ""
|
145 |
+
"Our team members have access to this information to offer you better deals "
|
146 |
+
"for the products you love."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
150 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
151 |
msgid "Customer wishlists"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
155 |
+
#: ../plugin-options/lists-options.php:23,
|
156 |
+
#: ../plugin-options/lists-options.php:30
|
157 |
msgid "Wishlists"
|
158 |
msgstr "Lista želja"
|
159 |
|
179 |
msgid "Title"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
183 |
+
msgctxt "date when wishlist was created"
|
184 |
+
msgid "Created on"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
188 |
msgid "Visibility"
|
189 |
msgstr ""
|
192 |
msgid "Items added"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
196 |
+
msgctxt "[gutenberg]: block name"
|
197 |
+
msgid "YITH Add to wishlist"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
201 |
+
msgctxt "[gutenberg]: block description"
|
202 |
+
msgid "Shows Add to wishlist button"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
206 |
+
msgid ""
|
207 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
208 |
+
"product)"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
212 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
216 |
msgid "Button label (leave empty to use the default settings)"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
220 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
224 |
+
msgid ""
|
225 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
226 |
+
"settings)"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
230 |
+
msgid ""
|
231 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
235 |
+
msgid ""
|
236 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
237 |
+
"the default settings)"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
241 |
+
msgid ""
|
242 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
243 |
+
"settings)"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
247 |
+
msgctxt "[gutenberg]: block name"
|
248 |
+
msgid "YITH Wishlist"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
252 |
+
msgctxt "[gutenberg]: block description"
|
253 |
+
msgid "Shows a list of products in wishlist"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
257 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
261 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
262 |
msgid "Paginate"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
266 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
267 |
msgid "Do not paginate"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
271 |
msgid "Number of items to show per page"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
275 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
279 |
msgid "Share on:"
|
280 |
msgstr "Podijeli na:"
|
281 |
|
282 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
283 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
284 |
msgid "Share on Facebook"
|
285 |
msgstr "Podijeli na Facebooku"
|
286 |
|
287 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
288 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
289 |
msgid "Tweet on Twitter"
|
290 |
msgstr "Tweet-aj na Twitteru"
|
291 |
|
292 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
293 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
294 |
msgid "Pin on Pinterest"
|
295 |
msgstr "Pinaj na Pinterestu"
|
296 |
|
297 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
298 |
msgid "Share via email"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
302 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
303 |
msgid "My wishlist on "
|
304 |
msgstr "Moja lista želja na %s"
|
305 |
|
306 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
307 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
308 |
msgid "Share on WhatsApp"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
312 |
msgid "Remove from list"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
316 |
msgid "Free!"
|
317 |
msgstr "Besplatno!"
|
318 |
|
319 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
320 |
+
msgctxt ""
|
321 |
+
"Part of the template that shows price variation since addition to list; "
|
322 |
+
"placeholder will be replaced with a percentage"
|
323 |
+
msgid "Price is %1$s%%"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
327 |
+
msgctxt ""
|
328 |
+
"Part of the template that shows price variation since addition to list; "
|
329 |
+
"placeholder will be replaced with a price"
|
330 |
+
msgid "(Was %2$s when added in list)"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
#: ../includes/class.yith-wcwl.php:161
|
334 |
msgid "The item cannot be added to this wishlist"
|
335 |
msgstr ""
|
338 |
msgid "An error occurred while adding the products to the wishlist."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
342 |
msgid "Error. Unable to remove the product from the wishlist."
|
343 |
msgstr "Greška. Proizvod se ne može obrisati iz liste želja."
|
344 |
|
345 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
346 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
347 |
msgid "Invalid wishlist."
|
348 |
msgstr ""
|
349 |
|
351 |
msgid "Invalid wishlist item."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#. translators: 1. Number of users.
|
355 |
+
#: ../includes/functions.yith-wcwl.php:216
|
356 |
msgid "%d user"
|
357 |
msgid_plural "%d users"
|
358 |
msgstr[0] ""
|
359 |
msgstr[1] ""
|
360 |
msgstr[2] ""
|
361 |
|
362 |
+
#: ../includes/functions.yith-wcwl.php:217
|
363 |
msgid "has this item in wishlist"
|
364 |
msgid_plural "have this item in wishlist"
|
365 |
msgstr[0] ""
|
366 |
msgstr[1] ""
|
367 |
msgstr[2] ""
|
368 |
|
369 |
+
#: ../includes/functions.yith-wcwl.php:219
|
370 |
msgid "You're the first"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../includes/functions.yith-wcwl.php:220
|
374 |
msgid "to add this item in wishlist"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
378 |
+
#: ../includes/functions.yith-wcwl.php:224
|
379 |
msgid "You and %s user"
|
380 |
msgid_plural "You and %d users"
|
381 |
msgstr[0] ""
|
382 |
msgstr[1] ""
|
383 |
msgstr[2] ""
|
384 |
|
385 |
+
#: ../includes/functions.yith-wcwl.php:225
|
386 |
msgid "have this item in wishlist"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../includes/functions.yith-wcwl.php:460
|
390 |
+
msgid "None"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: ../includes/functions.yith-wcwl.php:461
|
394 |
+
#, fuzzy
|
395 |
+
#| msgid "Custom CSS"
|
396 |
+
msgid "Custom"
|
397 |
+
msgstr "Prilagođeni CSS"
|
398 |
+
|
399 |
+
#: ../includes/functions.yith-wcwl.php:553
|
400 |
msgid "Shared"
|
401 |
msgstr "Podijeljeno"
|
402 |
|
403 |
+
#: ../includes/functions.yith-wcwl.php:557
|
404 |
+
msgid "Only people with a link to this list can see it"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: ../includes/functions.yith-wcwl.php:563
|
408 |
msgid "Private"
|
409 |
msgstr "Privatno"
|
410 |
|
411 |
+
#: ../includes/functions.yith-wcwl.php:567
|
412 |
+
msgid "Only you can see this list"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/functions.yith-wcwl.php:573
|
416 |
msgid "Public"
|
417 |
msgstr "Javno"
|
418 |
|
419 |
+
#: ../includes/functions.yith-wcwl.php:577
|
420 |
+
msgid "Anyone can search for and see this list"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
424 |
+
msgctxt "Elementor widget name"
|
425 |
+
msgid "YITH Wishlist Add button"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
429 |
+
#, fuzzy
|
430 |
+
#| msgid "Product added!"
|
431 |
+
msgctxt "Elementor section title"
|
432 |
+
msgid "Product"
|
433 |
+
msgstr "Proizvod je dodan!"
|
434 |
+
|
435 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
436 |
+
#, fuzzy
|
437 |
+
#| msgid "Product added!"
|
438 |
+
msgctxt "Elementor control label"
|
439 |
+
msgid "Product ID"
|
440 |
+
msgstr "Proizvod je dodan!"
|
441 |
+
|
442 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
443 |
+
msgctxt "Elementor section title"
|
444 |
+
msgid "Labels"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
448 |
+
msgctxt "Elementor control label"
|
449 |
+
msgid "Button label"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
453 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
454 |
+
msgid "Add to wishlist"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
458 |
+
#, fuzzy
|
459 |
+
#| msgid "\"Browse wishlist\" text"
|
460 |
+
msgctxt "Elementor control label"
|
461 |
+
msgid "\"Browse wishlist\" label"
|
462 |
+
msgstr "Tekst za \"Pregledaj listu želja\""
|
463 |
+
|
464 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
465 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
466 |
+
msgid "Browse wishlist"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
470 |
+
#, fuzzy
|
471 |
+
#| msgid "\"Product already in wishlist\" text"
|
472 |
+
msgctxt "Elementor control label"
|
473 |
+
msgid "\"Product already in wishlist\" label"
|
474 |
+
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""
|
475 |
+
|
476 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
477 |
+
#, fuzzy
|
478 |
+
#| msgid "\"Product already in wishlist\" text"
|
479 |
+
msgid "Product already in wishlist"
|
480 |
+
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""
|
481 |
+
|
482 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
483 |
+
#, fuzzy
|
484 |
+
#| msgid "\"Product already in wishlist\" text"
|
485 |
+
msgctxt "Elementor control label"
|
486 |
+
msgid "\"Product added to wishlist\" label"
|
487 |
+
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""
|
488 |
+
|
489 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
490 |
+
#, fuzzy
|
491 |
+
#| msgid "\"Product already in wishlist\" text"
|
492 |
+
msgid "Product added to wishlist"
|
493 |
+
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""
|
494 |
+
|
495 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
496 |
+
msgctxt "Elementor section title"
|
497 |
+
msgid "Advanced"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
501 |
+
msgctxt "Elementor control label"
|
502 |
+
msgid "URL of the wishlist page"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
506 |
+
msgctxt "Elementor control label"
|
507 |
+
msgid "Icon for the button"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
511 |
+
msgctxt "Elementor control label"
|
512 |
+
msgid "Additional CSS classes for the button"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
516 |
+
#, fuzzy
|
517 |
+
#| msgid "Wishlist"
|
518 |
+
msgctxt "Elementor widget name"
|
519 |
+
msgid "YITH Wishlist"
|
520 |
+
msgstr "Lista želja"
|
521 |
+
|
522 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
523 |
+
#, fuzzy
|
524 |
+
#| msgid "Wishlist"
|
525 |
+
msgctxt "Elementor section title"
|
526 |
+
msgid "Wishlist"
|
527 |
+
msgstr "Lista želja"
|
528 |
+
|
529 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
530 |
+
#, fuzzy
|
531 |
+
#| msgid "Wishlist"
|
532 |
+
msgctxt "Elementor control label"
|
533 |
+
msgid "Wishlist ID"
|
534 |
+
msgstr "Lista želja"
|
535 |
+
|
536 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
537 |
+
msgctxt "Elementor section title"
|
538 |
+
msgid "Pagination"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
542 |
+
msgctxt "Elementor control label"
|
543 |
+
msgid "Paginate items"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
547 |
+
msgctxt "yith-woocommerce-wishlist"
|
548 |
+
msgid "Items per page"
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../init.php:4
|
553 |
msgstr ""
|
554 |
|
555 |
#: ../init.php:5
|
556 |
+
msgid ""
|
557 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
558 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
559 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
560 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
561 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
562 |
msgstr ""
|
563 |
|
564 |
#: ../init.php:7
|
569 |
msgid "https://yithemes.com/"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../init.php:141
|
573 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
574 |
+
msgstr ""
|
575 |
+
"YITH WooCommerce Lista želja je uključena ali nije omogućena. Zahtjeva "
|
576 |
+
"WooCommerce dodatak da bi mogla raditi."
|
577 |
|
578 |
+
#: ../init.php:151
|
579 |
msgid "You can't activate the free version of"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../init.php:151
|
583 |
msgid "while you are using the premium one."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
587 |
+
#: ../plugin-options/settings-options.php:23
|
588 |
msgid "General Settings"
|
589 |
msgstr "Osnovne postavke"
|
590 |
|
591 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
592 |
+
msgid "After product is added to wishlist"
|
593 |
msgstr ""
|
594 |
|
595 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
596 |
+
msgid ""
|
597 |
+
"Choose the look of the Wishlist button when the product has already been "
|
598 |
+
"added to a wishlist"
|
599 |
msgstr ""
|
600 |
|
601 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
615 |
msgstr ""
|
616 |
|
617 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
618 |
+
msgid ""
|
619 |
+
"Loop options will be visible on Shop page, category pages, product "
|
620 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
621 |
+
"products' loop is used"
|
622 |
msgstr ""
|
623 |
|
624 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
634 |
msgstr ""
|
635 |
|
636 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
637 |
+
msgid ""
|
638 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
639 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
640 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
641 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
642 |
msgstr ""
|
643 |
|
644 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
653 |
msgid "After \"Add to cart\" button"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
657 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
658 |
msgid "Use shortcode"
|
659 |
msgstr "Koristi shorcode"
|
660 |
|
661 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
662 |
msgid "Product page settings"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
666 |
msgid "Position of \"Add to wishlist\" on product page"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
670 |
+
msgid ""
|
671 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
672 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
673 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
674 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
678 |
msgid "After \"Add to cart\""
|
679 |
msgstr "Nakon \"Dodaj u košaricu\""
|
680 |
|
681 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
682 |
msgid "After thumbnails"
|
683 |
msgstr "Nakon minijatura"
|
684 |
|
685 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
686 |
msgid "After summary"
|
687 |
msgstr "Nakon sažetka"
|
688 |
|
689 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
690 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
691 |
msgid "Text customization"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
695 |
msgid "\"Add to wishlist\" text"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
699 |
msgid "Enter a text for \"Add to wishlist\" button"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
703 |
msgid "\"Product added\" text"
|
704 |
msgstr "Tekst za \"Proizvod je dodan\""
|
705 |
|
706 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
707 |
+
msgid ""
|
708 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
709 |
+
"wishlist"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
713 |
msgid "Product added!"
|
714 |
msgstr "Proizvod je dodan!"
|
715 |
|
716 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
717 |
msgid "\"Browse wishlist\" text"
|
718 |
msgstr "Tekst za \"Pregledaj listu želja\""
|
719 |
|
720 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
721 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
725 |
msgid "\"Product already in wishlist\" text"
|
726 |
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""
|
727 |
|
728 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
729 |
+
msgid ""
|
730 |
+
"Enter the text for the message displayed when the user views a product that "
|
731 |
+
"is already in the wishlist"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
735 |
msgid "The product is already in your wishlist!"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
739 |
msgid "Style & Color customization"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
743 |
msgid "Style of \"Add to wishlist\""
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
747 |
+
msgid ""
|
748 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
752 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
753 |
msgid "Textual (anchor)"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
757 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
758 |
msgid "Button with theme style"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
762 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
763 |
msgid "Button with custom style"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
767 |
msgid "\"Add to wishlist\" button style"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
771 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
776 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
777 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
778 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
779 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
780 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
781 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
782 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
783 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
784 |
msgid "Background"
|
785 |
msgstr "Pozadina"
|
786 |
|
787 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
788 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
789 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
790 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
791 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
792 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
793 |
msgid "Text"
|
794 |
msgstr "Tekst"
|
795 |
|
796 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
797 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
798 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
799 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
800 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
801 |
msgid "Border"
|
802 |
msgstr "Obrub"
|
803 |
|
804 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
805 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
809 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
810 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
811 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
812 |
msgid "Background Hover"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
816 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
817 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
818 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
819 |
msgid "Text Hover"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
823 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
824 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
825 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
826 |
msgid "Border Hover"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
830 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
831 |
msgid "Border radius"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
835 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
839 |
msgid "\"Add to wishlist\" icon"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
843 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
847 |
msgid "\"Add to wishlist\" custom icon"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
851 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
852 |
+
msgid ""
|
853 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
854 |
+
"32px x 32px)"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
858 |
msgid "\"Added to wishlist\" icon"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
862 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
866 |
msgid "Same used for Add to wishlist"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
870 |
msgid "\"Added to wishlist\" custom icon"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
874 |
msgid "Custom CSS"
|
875 |
msgstr "Prilagođeni CSS"
|
876 |
|
877 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
878 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: ../plugin-options/lists-options.php:32
|
882 |
+
#, fuzzy
|
883 |
+
#| msgid "Search Wishlists"
|
884 |
+
msgid "Search list"
|
885 |
+
msgstr "Pretraga listi želja"
|
886 |
+
|
887 |
#: ../plugin-options/settings-options.php:17
|
888 |
+
msgid ""
|
889 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
890 |
+
"the %s."
|
891 |
msgstr ""
|
892 |
|
893 |
#: ../plugin-options/settings-options.php:30
|
903 |
msgstr "YITH WooCommerse skupna Integracija"
|
904 |
|
905 |
#: ../plugin-options/settings-options.php:46
|
906 |
+
msgid ""
|
907 |
+
"In order to use this integration you have to install and activate YITH "
|
908 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
909 |
msgstr ""
|
910 |
|
911 |
#: ../plugin-options/settings-options.php:51
|
913 |
msgstr "Omogući slider u listi želja"
|
914 |
|
915 |
#: ../plugin-options/settings-options.php:52
|
916 |
+
msgid ""
|
917 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
918 |
+
"class=\"thickbox\">Example</a>). %s"
|
919 |
msgstr ""
|
920 |
|
921 |
#: ../plugin-options/wishlist_page-options.php:17
|
927 |
msgstr ""
|
928 |
|
929 |
#: ../plugin-options/wishlist_page-options.php:25
|
930 |
+
msgid ""
|
931 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
932 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
933 |
+
"content"
|
934 |
msgstr ""
|
935 |
|
936 |
#: ../plugin-options/wishlist_page-options.php:38
|
937 |
msgid "Wishlist Detail Page"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
941 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
942 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
943 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
944 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
945 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
946 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
947 |
msgid "In wishlist table show"
|
948 |
msgstr ""
|
949 |
|
968 |
msgstr ""
|
969 |
|
970 |
#: ../plugin-options/wishlist_page-options.php:91
|
971 |
+
msgid ""
|
972 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
973 |
msgstr ""
|
974 |
|
975 |
#: ../plugin-options/wishlist_page-options.php:100
|
976 |
+
msgid ""
|
977 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
978 |
msgstr ""
|
979 |
|
980 |
#: ../plugin-options/wishlist_page-options.php:108
|
982 |
msgstr "Preusmjeri na košaricu"
|
983 |
|
984 |
#: ../plugin-options/wishlist_page-options.php:109
|
985 |
+
msgid ""
|
986 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
987 |
+
"wishlist page"
|
988 |
msgstr ""
|
989 |
|
990 |
#: ../plugin-options/wishlist_page-options.php:117
|
992 |
msgstr "Obriši ako je dodan u košaricu"
|
993 |
|
994 |
#: ../plugin-options/wishlist_page-options.php:118
|
995 |
+
msgid ""
|
996 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
997 |
msgstr ""
|
998 |
|
999 |
#: ../plugin-options/wishlist_page-options.php:126
|
1004 |
msgid "Enable this option to let users share their wishlist on social media"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1008 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1009 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1010 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1011 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1012 |
msgid "Share on social media"
|
1013 |
msgstr ""
|
1014 |
|
1032 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1036 |
msgid "My wishlist on %s"
|
1037 |
msgstr "Moja lista želja na %s"
|
1038 |
|
1041 |
msgstr "Tekst za objavu"
|
1042 |
|
1043 |
#: ../plugin-options/wishlist_page-options.php:198
|
1044 |
+
msgid ""
|
1045 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1046 |
+
"and Pinterest"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
#: ../plugin-options/wishlist_page-options.php:206
|
1059 |
msgstr ""
|
1060 |
|
1061 |
#: ../plugin-options/wishlist_page-options.php:227
|
1062 |
+
msgid ""
|
1063 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1064 |
+
"automatically generated for all users if they do not create any custom one"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1068 |
+
#, fuzzy
|
1069 |
+
#| msgid "My wishlist on "
|
1070 |
+
msgid "My wishlist"
|
1071 |
+
msgstr "Moja lista želja na %s"
|
1072 |
+
|
1073 |
#: ../plugin-options/wishlist_page-options.php:234
|
1074 |
msgid "\"Add to cart\" text"
|
1075 |
msgstr ""
|
1078 |
msgid "Enter a text for the \"Add to cart\" button"
|
1079 |
msgstr ""
|
1080 |
|
|
|
|
|
|
|
|
|
1081 |
#: ../plugin-options/wishlist_page-options.php:247
|
1082 |
msgid "Style & color customization"
|
1083 |
msgstr ""
|
1102 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1106 |
msgid "Set the radius for the \"Add to cart\" button"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1110 |
msgid "\"Add to cart\" icon"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1114 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1118 |
msgid "\"Add to cart\" custom icon"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1122 |
+
msgid ""
|
1123 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1124 |
+
"32px x 32px)"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1128 |
msgid "Primary button style"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1132 |
+
msgid ""
|
1133 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1134 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1135 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1139 |
+
msgid ""
|
1140 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1141 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1142 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1143 |
+
"small>"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1147 |
msgid "Secondary button style"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1151 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1152 |
+
msgid ""
|
1153 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1154 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1155 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1159 |
msgid "Wishlist table style"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1163 |
+
msgid ""
|
1164 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1168 |
msgid "Highlight color"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1172 |
+
msgid ""
|
1173 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1174 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1175 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1179 |
msgid "Share button text color"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1183 |
msgid "Choose colors for share buttons text"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1187 |
msgid "Text hover"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1191 |
msgid "Facebook share button icon"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1195 |
msgid "Select an icon for the Facebook share button"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1199 |
msgid "Facebook share button custom icon"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1203 |
+
msgid ""
|
1204 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1205 |
+
"32px)"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1209 |
msgid "Facebook share button style"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1213 |
msgid "Choose colors for Facebook share button"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1217 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1218 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1219 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1220 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1221 |
msgid "Background hover"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1225 |
msgid "Twitter share button icon"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1229 |
msgid "Select an icon for the Twitter share button"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1233 |
msgid "Twitter share button custom icon"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1237 |
+
msgid ""
|
1238 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1239 |
+
"32px)"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1243 |
msgid "Twitter share button style"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1247 |
msgid "Choose colors for Twitter share button"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1251 |
msgid "Pinterest share button icon"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1255 |
msgid "Select an icon for the Pinterest share button"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1259 |
msgid "Pinterest share button custom icon"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1263 |
+
msgid ""
|
1264 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1265 |
+
"x 32px)"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1269 |
msgid "Pinterest share button style"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1273 |
msgid "Choose colors for Pinterest share button"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1277 |
msgid "Email share button icon"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1281 |
msgid "Select an icon for the Email share button"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1285 |
msgid "Email share button custom icon"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1289 |
+
msgid ""
|
1290 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1291 |
+
"x 32px)"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1295 |
msgid "Email share button style"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1299 |
msgid "Choose colors for the Email share button"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1303 |
msgid "WhatsApp share button icon"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1307 |
msgid "Select an icon for the WhatsApp share button"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1311 |
msgid "WhatsApp share button custom icon"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1315 |
+
msgid ""
|
1316 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1317 |
+
"32px)"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1321 |
msgid "WhatsApp share button style"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1325 |
msgid "Choose colors for WhatsApp share button"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1329 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1330 |
+
msgid ""
|
1331 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1332 |
+
"%2$s to benefit from all features!"
|
|
|
1333 |
msgstr ""
|
1334 |
+
"Nadogradite na %1$spremium verziju%2$s%3$s %1$sYITH WooCommerce Listu želja"
|
1335 |
+
"%2$s "
|
1336 |
|
1337 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1338 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
|
|
|
|
|
|
1339 |
msgid "Upgrade"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1343 |
msgid "Premium Features"
|
1344 |
msgstr "Premium dodaci"
|
1345 |
|
1346 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1347 |
msgid "Allow your customers to create multiple wishlists"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1351 |
+
msgid ""
|
1352 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1353 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1354 |
+
"other parameters."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1358 |
msgid "Multiple Wishlist"
|
1359 |
msgstr "Višestruka Lista želja"
|
1360 |
|
1361 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1362 |
msgid "Wishlist Private"
|
1363 |
msgstr "Privatna lista želja"
|
1364 |
|
1365 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1366 |
msgid "A transparent privacy management"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1370 |
+
msgid ""
|
1371 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1372 |
+
"sharing the wishlist or making it private."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1376 |
+
msgid ""
|
1377 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1378 |
+
"page"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1382 |
+
msgid ""
|
1383 |
+
"And give only registered users the privilege to use the wishlist "
|
1384 |
+
"functionalities."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1388 |
msgid "Estimate Cost"
|
1389 |
msgstr "Procjena troška"
|
1390 |
|
1391 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1392 |
msgid "Admin Panel"
|
1393 |
msgstr "Upravljačka ploča Admina"
|
1394 |
|
1395 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1396 |
msgid "An advanced and more versatile management of the wishlist"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1400 |
+
msgid ""
|
1401 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1402 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1403 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1404 |
+
"social networks, and much more!"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1408 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1412 |
+
msgid ""
|
1413 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1414 |
+
"are more interested in and plan targeted marketing strategies."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1418 |
msgid "Search Wishlists"
|
1419 |
msgstr "Pretraga listi želja"
|
1420 |
|
1421 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1422 |
msgid "'ADD TO CART'"
|
1423 |
msgstr "'DODAJ U KOŠARICU'"
|
1424 |
|
1425 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1426 |
+
msgid ""
|
1427 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1431 |
+
msgid ""
|
1432 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1433 |
+
"customers who have added specific products to their wishlist and push them "
|
1434 |
+
"to buy."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1438 |
msgid "Let users buy the product right from the wishlist page"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1442 |
+
msgid ""
|
1443 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1444 |
+
"also the information about the size, colour or quantity selected when added "
|
1445 |
+
"to the wishlist."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1449 |
msgid "DISABLE WISHLIST"
|
1450 |
msgstr "ONEMOGUĆI LISTU ŽELJA"
|
1451 |
|
1452 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1453 |
msgid "Choose a charming layout for your wishlist page"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1457 |
+
msgid ""
|
1458 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1459 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1460 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1461 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1462 |
+
"your website."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1466 |
msgid "UNLOGGED USERS"
|
1467 |
msgstr "NEPRIJAVLJENI KORISNICI"
|
1468 |
|
1469 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1470 |
msgid "Wishlist widgets for the header and sidebars"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1474 |
+
msgid ""
|
1475 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1476 |
+
"in the header, in the sidebars, wherever you want."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1480 |
msgid "POPULAR TABLE"
|
1481 |
msgstr "TABLICA POPULARNOSTI"
|
1482 |
|
1483 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1484 |
msgid "FUNCTIONALITIES"
|
1485 |
msgstr "FUNKCIONALNOSTI"
|
1486 |
|
1487 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1488 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1492 |
+
msgid ""
|
1493 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1494 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1495 |
+
"product and how much they can save when there’s a promotion running or a "
|
1496 |
+
"discount on the product they’ve added to the wishlist."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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"
|
1573 |
|
1574 |
+
#: ../templates/wishlist-view-header.php:48
|
1575 |
msgid "Save"
|
1576 |
msgstr "Spremi"
|
1577 |
|
1578 |
+
#: ../templates/wishlist-view-header.php:51
|
1579 |
msgid "Cancel"
|
1580 |
msgstr "Odustani"
|
1581 |
|
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 ›"
|
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 ""
|
1627 |
|
1628 |
+
#: ../templates/wishlist-view.php:78
|
1629 |
msgid "Product name"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../templates/wishlist-view.php:86
|
1633 |
msgid "Unit price"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: ../templates/wishlist-view.php:95
|
1637 |
msgid "Quantity"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: ../templates/wishlist-view.php:104
|
1641 |
msgid "Stock status"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: ../templates/wishlist-view.php:122
|
1645 |
msgid "Arrange"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#. translators: date added label: 1 date added.
|
1649 |
+
#: ../templates/wishlist-view.php:238
|
1650 |
msgid "Added on: %s"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: ../templates/wishlist-view.php:287
|
1654 |
msgid "Remove"
|
1655 |
msgstr "Obriši"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
10 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
11 |
"Language: it_IT\n"
|
@@ -13,90 +13,164 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr "Impostazioni generali"
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr "Opzioni Aggiungi alla lista"
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr "Opzioni pagina Lista dei desideri"
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr "Versione premium"
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "YITH WooCommerce Wishlist"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "Wishlist"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "Prodotto rimosso con successo."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr "Inserisci un valido titolo"
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
61 |
-
|
|
|
|
|
|
|
|
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr "Prodotto aggiunto al carrello con successo"
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr "Mentre visiti il nostro sito, terremo traccia di:"
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
77 |
-
|
|
|
|
|
|
|
|
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
81 |
-
|
|
|
|
|
|
|
|
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
89 |
-
|
|
|
|
|
|
|
|
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
93 |
-
|
|
|
|
|
|
|
|
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr "Liste dei clienti"
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "Liste dei desideri"
|
102 |
|
@@ -122,6 +196,11 @@ msgstr "URL lista dei desideri"
|
|
122 |
msgid "Title"
|
123 |
msgstr "Titolo"
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr "Visibilità"
|
@@ -130,107 +209,176 @@ msgstr "Visibilità"
|
|
130 |
msgid "Items added"
|
131 |
msgstr "Articoli aggiunti"
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
-
msgstr "
|
|
|
|
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
-
msgstr "
|
|
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
151 |
-
|
|
|
|
|
|
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
155 |
-
|
|
|
|
|
|
|
|
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
159 |
-
|
|
|
|
|
|
|
|
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
|
163 |
-
|
|
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
-
msgstr "
|
|
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr "Paginazione"
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr "Nessuna paginazione"
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr "Numero di articoli da mostrare per pagina"
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr "ID della lista da mostrare (es. K6EOWXB888ZD)"
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "Condividi su:"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "Condividi su Facebook"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "Condividi su Twitter"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "Condividi su Pinterest"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr "Condividi per email"
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "La mia lista dei desideri su %s "
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr "Condividi su WhatsApp"
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr "Rimuovi dalla lista"
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr "Gratuito!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr "L'elemento non può essere aggiunto alla lista dei desideri"
|
224 |
|
225 |
#: ../includes/class.yith-wcwl.php:165, ../includes/class.yith-wcwl.php:171
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
-
msgstr "
|
|
|
|
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "Errore. Impossibile rimuovere il prodotto dalla lista dei desideri."
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr "Lista non valida."
|
236 |
|
@@ -238,66 +386,227 @@ msgstr "Lista non valida."
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr "Elemento della lista non valido."
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] "%s utente"
|
245 |
msgstr[1] "%d utenti"
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] "ha aggiunto questo prodotto alla sua lista"
|
251 |
msgstr[1] "hanno aggiunto questo prodotto alla propria lista"
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr "Sei il primo"
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr "ad aver aggiunto questo prodotto alla lista dei desideri"
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] "Tu e un altro utente"
|
265 |
msgstr[1] "Tu e altri %d utenti"
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr "avete aggiunto questo prodotto alla lista dei desideri"
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "Condivisa"
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr "Privata"
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
-
msgstr "Solo
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr "Pubblica"
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
293 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
#: ../init.php:4
|
296 |
msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,29 +617,36 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "Impostazioni generali"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
|
|
|
|
|
329 |
msgstr "Quando il prodotto viene aggiunto alla lista"
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
333 |
-
|
|
|
|
|
|
|
|
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
336 |
msgid "Show \"Add to wishilist\" button"
|
@@ -349,8 +665,14 @@ msgid "Loop settings"
|
|
349 |
msgstr "Impostazioni loop"
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
356 |
msgid "Show \"Add to wishlist\" in loop"
|
@@ -358,15 +680,25 @@ msgstr "Mostra 'Aggiungi alla lista' nel loop"
|
|
358 |
|
359 |
#: ../plugin-options/add_to_wishlist-options.php:54
|
360 |
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
|
361 |
-
msgstr "
|
|
|
|
|
362 |
|
363 |
#: ../plugin-options/add_to_wishlist-options.php:62
|
364 |
msgid "Position of \"Add to wishlist\" in loop"
|
365 |
msgstr "Posizione di 'Aggiungi alla lista' nel loop"
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
369 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
372 |
msgid "On top of the image"
|
@@ -380,196 +712,258 @@ msgstr "Prima del pulsante 'Aggiungi al carrello'"
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr "Dopo il pulsante 'Aggiungi al carrello'"
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "Utilizza lo shortcode"
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr "Impostazioni pagina prodotto"
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr "Posizione di 'Aggiungi alla lista' nella pagina prodotto"
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
397 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "Dopo \"Aggiungi al carrello\""
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "Dopo le miniature"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "Dopo il sommario"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr "Personalizzazione testi"
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr "Testo 'Aggiungi alla lista'"
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr "Inserisci un testo per il pulsante 'Aggiungi alla lista'"
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr "Aggiungi alla lista dei desideri"
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "Testo per \"Articolo aggiunto\""
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
433 |
-
|
|
|
|
|
|
|
|
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "Articolo aggiunto!"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "Testo per \"Vedi la lista dei desideri\""
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
msgstr "Inserisci il testo del link 'Vedi la lista' nella pagina prodotto"
|
446 |
|
447 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr "Vedi la lista"
|
450 |
-
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
457 |
-
|
|
|
|
|
|
|
|
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr "Il prodotto è già nella tua lista!"
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr "Personalizzazione stile e colori"
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr "Stile di 'Aggiungi alla lista'"
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
473 |
-
|
|
|
|
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr "Testuale (ancora)"
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr "Pulsante con lo stile del tema"
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr "Pulsante con uno stile personalizzato"
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr "Stile pulsante 'Aggiungi alla lista'"
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr "Scegli i colori del pulsante 'Aggiungi alla lista'"
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr "Sfondo"
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr "Testo"
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr "Bordo"
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
-
msgstr "
|
|
|
|
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr "Colore - hover"
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr "Testo - hover"
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr "Bordo - hover"
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr "Border radius"
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
-
msgstr "
|
|
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr "Icona 'Aggiungi alla lista'"
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
msgstr "Seleziona un'icona per il pulsante 'Aggiungi alla lista' (opzionale)"
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr "Icona personalizzata per 'Aggiungi alla lista'"
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
545 |
-
|
|
|
|
|
|
|
|
|
|
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr "Icona 'Aggiungi alla lista'"
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
-
msgstr "
|
|
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr "La stessa utilizzata per Aggiungi alla lista"
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr "Icona personalizzata per 'Aggiungi alla lista'"
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "CSS personalizzato"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
570 |
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr "Se vuoi usufruire di questa funzionalità, acquista la %s."
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
@@ -578,23 +972,34 @@ msgstr "Abilita caricamento in AJAX"
|
|
578 |
|
579 |
#: ../plugin-options/settings-options.php:31
|
580 |
msgid "Load any cacheable wishlist item via AJAX"
|
581 |
-
msgstr "
|
|
|
|
|
582 |
|
583 |
#: ../plugin-options/settings-options.php:44
|
584 |
msgid "YITH WooCommerce Frequently Bought Together Integration"
|
585 |
msgstr "Integrazione con YITH WooCommerce Frequently Bought Together"
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
589 |
-
|
|
|
|
|
|
|
|
|
|
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
592 |
msgid "Enable slider in wishlist"
|
593 |
msgstr "Abilita lo slider nella lista dei desideri"
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
597 |
-
|
|
|
|
|
|
|
|
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
600 |
msgid "All your wishlists"
|
@@ -605,20 +1010,33 @@ msgid "Wishlist page"
|
|
605 |
msgstr "Pagina Lista dei desideri"
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
609 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr "Pagina dettaglio Lista dei desideri"
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr "Nella tabella mostra"
|
618 |
|
619 |
#: ../plugin-options/wishlist_page-options.php:46
|
620 |
msgid "Product variations selected by the user (example: size or color)"
|
621 |
-
msgstr "
|
|
|
622 |
|
623 |
#: ../plugin-options/wishlist_page-options.php:55
|
624 |
msgid "Product price"
|
@@ -637,27 +1055,38 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr "Opzione 'Aggiungi al carrello' per ogni prodotto"
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
641 |
-
|
|
|
|
|
|
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
645 |
-
|
|
|
|
|
|
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
648 |
msgid "Redirect to cart"
|
649 |
msgstr "Reindirizza al carrello"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
653 |
-
|
|
|
|
|
|
|
|
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
656 |
msgid "Remove if added to the cart"
|
657 |
msgstr "Rimuovi se aggiunto al carrello"
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
|
|
661 |
msgstr "Rimuovi il prodotto dalla lista dopo che è stato aggiunto al carrello"
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -666,9 +1095,15 @@ msgstr "Condividi la lista"
|
|
666 |
|
667 |
#: ../plugin-options/wishlist_page-options.php:127
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
-
msgstr "
|
670 |
-
|
671 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr "Condividi sui social"
|
674 |
|
@@ -690,9 +1125,11 @@ msgstr "Titolo per la condivisione"
|
|
690 |
|
691 |
#: ../plugin-options/wishlist_page-options.php:190
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
-
msgstr "
|
|
|
|
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "La mia lista dei desideri su %s"
|
698 |
|
@@ -701,8 +1138,12 @@ msgid "Social text"
|
|
701 |
msgstr "Testo per i social"
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
705 |
-
|
|
|
|
|
|
|
|
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
708 |
msgid "Social image URL"
|
@@ -717,8 +1158,19 @@ msgid "Default wishlist name"
|
|
717 |
msgstr "Nome predefinito della lista"
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
721 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
@@ -728,10 +1180,6 @@ msgstr "Testo 'Aggiungi al carrello'"
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr "Personalizza il testo del pulsante 'Aggiungi al carrello'"
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr "Aggiungi al carrello"
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr "Personalizzazione stile e colori"
|
@@ -742,7 +1190,8 @@ msgstr "Stile di 'Aggiungi al carrello'"
|
|
742 |
|
743 |
#: ../plugin-options/wishlist_page-options.php:255
|
744 |
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
|
745 |
-
msgstr "
|
|
|
746 |
|
747 |
#: ../plugin-options/wishlist_page-options.php:268
|
748 |
msgid "\"Add to cart\" button style"
|
@@ -754,338 +1203,428 @@ msgstr "Scegli i colori del pulsante 'Aggiungi al carrello'"
|
|
754 |
|
755 |
#: ../plugin-options/wishlist_page-options.php:292
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
-
msgstr "
|
|
|
|
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
-
msgstr "
|
|
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr "Icona 'Aggiungi al carrello'"
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr "Seleziona un'icona per il pulsante 'Aggiungi al carrello' (opzionale)"
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr "Icona personalizzata per 'Aggiungi al carrello'"
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
777 |
-
|
|
|
|
|
|
|
|
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr "Stile pulsante principale"
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
785 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
789 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr "Stile pulsante secondario"
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr "Stile tabella Lista dei desideri"
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
805 |
-
|
|
|
|
|
|
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr "Colore in evidenza"
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
813 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr "Colore testo pulsante condivisione"
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione"
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr "Testo - hover"
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr "Icona pulsante Condividi su Facebook"
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr "Seleziona un'icona per il pulsante di condivisione su Facebook"
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr "Icona personalizzata pulsante Condividi su Facebook"
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
841 |
-
|
|
|
|
|
|
|
|
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr "Stile pulsante Condividi su Facebook"
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr "Scegli i colori per il pulsante di condivisione su Facebook"
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr "Colore - hover"
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr "Icona pulsante Condividi su Twitter"
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr "Seleziona un'icona per il pulsante di condivisione su Twitter"
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr "Icona personalizzata pulsante Condividi su Twitter"
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
869 |
-
|
|
|
|
|
|
|
|
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr "Stile pulsante Condividi su Twitter"
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione su Twitter"
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr "Icona pulsante Condividi su Pinterest"
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr "Seleziona un'icona per il pulsante di condivisione su Pinterest"
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr "Icona personalizzata pulsante Condividi su Pinterest"
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
893 |
-
|
|
|
|
|
|
|
|
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr "Stile pulsante Condividi su Pinterest"
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione su Pinterest"
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr "Icona pulsante Condividi per email"
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
msgstr "Seleziona un'icona per il pulsante di condivisione per email"
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr "Icona personalizzata pulsante Condividi per email"
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
917 |
-
|
|
|
|
|
|
|
|
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr "Stile pulsante Condividi per email"
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione email"
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr "Icona pulsante Condividi su WhatsApp"
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr "Seleziona un'icona per il pulsante di condivisione su WhatsApp"
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr "Icona personalizzata pulsante Condividi su WhatsApp"
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
941 |
-
|
|
|
|
|
|
|
|
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr "Stile pulsante Condividi su WhatsApp"
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione su WhatsApp"
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
-
msgstr "Vedi ›"
|
958 |
-
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:167, ../templates/admin/wishlist-panel-premium.php:308
|
960 |
-
msgid "Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
|
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1663,50 @@ msgstr "copia"
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr "questo URL e condividilo dove vuoi)"
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr "Applica a tutti gli articoli selezionati:"
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr "Rimuovi dalla lista"
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr "Applica"
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr "Aggiorna"
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr "Aggiungi tutti al carrello"
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr "Richiedi un preventivo"
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "Modifica titolo"
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr "Salva"
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr "Annulla"
|
1166 |
|
@@ -1180,94 +1726,61 @@ msgstr "Quantità:"
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr "Disponibilità in magazzino:"
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr "Esaurito"
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "Disponibile"
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr "Sposta"
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr "Sposta in un'altra lista ›"
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "Rimuovi questo prodotto"
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr "Non è stato ancora aggiunto nessun prodotto alla lista"
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr "Nome prodotto"
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr "Prezzo unitario"
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr "Quantità"
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr "Disponibilità in magazzino"
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr "Riordina"
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr "Aggiunto il: %s"
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr "Rimuovi"
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist page"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "Pagina Lista dei desideri"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr "Impostazioni generali"
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr "Opzioni Aggiungi alla lista"
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr "Opzioni pagina Lista dei desideri"
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr "Versione premium"
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "YITH WooCommerce Wishlist"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "Wishlist"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
"Permette ai tuoi clienti di creare e condividere delle liste di prodotti che "
|
62 |
+
"desiderano acquistare sul tuo e-commerce."
|
63 |
+
|
64 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
65 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
66 |
+
msgid "View ›"
|
67 |
+
msgstr "Vedi ›"
|
68 |
+
|
69 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
70 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
71 |
+
msgid "or"
|
72 |
+
msgstr "oppure"
|
73 |
+
|
74 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
75 |
+
msgid "Close"
|
76 |
+
msgstr ""
|
77 |
|
78 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
79 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
80 |
msgid "Product successfully removed."
|
81 |
msgstr "Prodotto rimosso con successo."
|
82 |
|
83 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
84 |
msgid "Please, make sure to enter a valid title"
|
85 |
msgstr "Inserisci un valido titolo"
|
86 |
|
87 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
88 |
+
msgid ""
|
89 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
90 |
+
"are enabled."
|
91 |
+
msgstr ""
|
92 |
+
"Spiacenti, questa funzionalità è disponibile solo se hai abilitato i cookie "
|
93 |
+
"nel tuo browser."
|
94 |
|
95 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
96 |
msgid "Product added to cart successfully"
|
97 |
msgstr "Prodotto aggiunto al carrello con successo"
|
98 |
|
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"
|
106 |
+
|
107 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
108 |
+
msgctxt "page_slug"
|
109 |
+
msgid "wishlist"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
113 |
msgid "While you visit our site, we’ll track:"
|
114 |
msgstr "Mentre visiti il nostro sito, terremo traccia di:"
|
115 |
|
116 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
117 |
+
msgid ""
|
118 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
119 |
+
"users your favourite products, and to create targeted email campaigns."
|
120 |
+
msgstr ""
|
121 |
+
"Prodotti aggiunti alla lista dei desideri: useremo questa informazione per "
|
122 |
+
"mostrare a te e ad altri utenti i tuoi prodotti preferiti e per creare "
|
123 |
+
"campagne email mirate."
|
124 |
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
126 |
+
msgid ""
|
127 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
128 |
+
"make them visible to the store staff"
|
129 |
+
msgstr ""
|
130 |
+
"Le liste dei desideri che hai creato: terremo traccia delle liste da te "
|
131 |
+
"create che saranno visibili allo staff del nostro store"
|
132 |
|
133 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
134 |
+
msgid ""
|
135 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
136 |
+
"browsing our site."
|
137 |
+
msgstr ""
|
138 |
+
"Useremo anche i cookie per tenere traccia dei contenuti delle liste dei "
|
139 |
+
"desideri mentre visiti il nostro sito."
|
140 |
|
141 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
142 |
+
msgid ""
|
143 |
+
"Members of our team have access to the information you provide us with. For "
|
144 |
+
"example, both Administrators and Shop Managers can access:"
|
145 |
+
msgstr ""
|
146 |
+
"I membri del nostro team hanno accesso alle informazioni che ci fornisci. "
|
147 |
+
"Per esempio, sia l'amministratore che i Gestori del Negozio possono accedere "
|
148 |
+
"a:"
|
149 |
|
150 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
151 |
+
msgid ""
|
152 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
153 |
+
"settings of your wishlists"
|
154 |
+
msgstr ""
|
155 |
+
"Dettagli della lista dei desideri, come ad esempio i prodotti aggiunti, la "
|
156 |
+
"data, il nome e le impostazioni sulla privacy delle tue liste dei desideri"
|
157 |
|
158 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
159 |
+
msgid ""
|
160 |
+
"Our team members have access to this information to offer you better deals "
|
161 |
+
"for the products you love."
|
162 |
+
msgstr ""
|
163 |
+
"Il nostro team ha accesso a queste informazioni per offrirti le migliori "
|
164 |
+
"offerte per i prodotti che ami."
|
165 |
|
166 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
167 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
168 |
msgid "Customer wishlists"
|
169 |
msgstr "Liste dei clienti"
|
170 |
|
171 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
172 |
+
#: ../plugin-options/lists-options.php:23,
|
173 |
+
#: ../plugin-options/lists-options.php:30
|
174 |
msgid "Wishlists"
|
175 |
msgstr "Liste dei desideri"
|
176 |
|
196 |
msgid "Title"
|
197 |
msgstr "Titolo"
|
198 |
|
199 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
200 |
+
msgctxt "date when wishlist was created"
|
201 |
+
msgid "Created on"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
205 |
msgid "Visibility"
|
206 |
msgstr "Visibilità"
|
209 |
msgid "Items added"
|
210 |
msgstr "Articoli aggiunti"
|
211 |
|
212 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
213 |
+
msgctxt "[gutenberg]: block name"
|
214 |
+
msgid "YITH Add to wishlist"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
218 |
+
msgctxt "[gutenberg]: block description"
|
219 |
+
msgid "Shows Add to wishlist button"
|
220 |
+
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
223 |
+
msgid ""
|
224 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
225 |
+
"product)"
|
226 |
+
msgstr ""
|
227 |
+
"L'ID del prodotto da aggiungere alla lista dei desideri (lascia vuoto per "
|
228 |
+
"utilizzare il prodotto globale)"
|
229 |
+
|
230 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
231 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
232 |
+
msgstr ""
|
233 |
+
"URL della pagina Lista dei desideri (lascia vuoto per utilizzare le "
|
234 |
+
"impostazioni predefinite)"
|
235 |
|
236 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
237 |
msgid "Button label (leave empty to use the default settings)"
|
238 |
+
msgstr ""
|
239 |
+
"Testo pulsante (lascia vuoto per utilizzare le impostazioni predefinite)"
|
240 |
|
241 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
242 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
243 |
+
msgstr ""
|
244 |
+
"Testo 'Sfoglia liste' (lascia vuoto per utilizzare le impostazioni "
|
245 |
+
"predefinite)"
|
246 |
+
|
247 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
248 |
+
msgid ""
|
249 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
250 |
+
"settings)"
|
251 |
+
msgstr ""
|
252 |
+
"Testo per 'Prodotto già nella lista' (lascia vuoto per utilizzare le "
|
253 |
+
"impostazioni predefinite)"
|
254 |
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
256 |
+
msgid ""
|
257 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
258 |
+
msgstr ""
|
259 |
+
"Testo per 'Prodotto aggiunto alla lista' (lascia vuoto per utilizzare le "
|
260 |
+
"impostazioni predefinite)"
|
261 |
|
262 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
263 |
+
msgid ""
|
264 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
265 |
+
"the default settings)"
|
266 |
+
msgstr ""
|
267 |
+
"Icona del pulsante (utilizza una qualsiasi classe FontAwesome valida oppure "
|
268 |
+
"lascia vuoto per utilizzare le impostazioni predefinite)"
|
269 |
|
270 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
271 |
+
msgid ""
|
272 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
273 |
+
"settings)"
|
274 |
+
msgstr ""
|
275 |
+
"Classi CSS aggiuntive per il pulsante (lascia vuoto per utilizzare le "
|
276 |
+
"impostazioni predefinite)"
|
277 |
|
278 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
279 |
+
msgctxt "[gutenberg]: block name"
|
280 |
+
msgid "YITH Wishlist"
|
281 |
+
msgstr ""
|
282 |
|
283 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
284 |
+
msgctxt "[gutenberg]: block description"
|
285 |
+
msgid "Shows a list of products in wishlist"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
289 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
290 |
+
msgstr ""
|
291 |
+
"Scegli se paginare gli elementi nella lista dei desideri o mostrarli tutti"
|
292 |
|
293 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
294 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
295 |
msgid "Paginate"
|
296 |
msgstr "Paginazione"
|
297 |
|
298 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
299 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
300 |
msgid "Do not paginate"
|
301 |
msgstr "Nessuna paginazione"
|
302 |
|
303 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
304 |
msgid "Number of items to show per page"
|
305 |
msgstr "Numero di articoli da mostrare per pagina"
|
306 |
|
307 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
308 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
309 |
msgstr "ID della lista da mostrare (es. K6EOWXB888ZD)"
|
310 |
|
311 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
312 |
msgid "Share on:"
|
313 |
msgstr "Condividi su:"
|
314 |
|
315 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
316 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
317 |
msgid "Share on Facebook"
|
318 |
msgstr "Condividi su Facebook"
|
319 |
|
320 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
321 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
322 |
msgid "Tweet on Twitter"
|
323 |
msgstr "Condividi su Twitter"
|
324 |
|
325 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
326 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
327 |
msgid "Pin on Pinterest"
|
328 |
msgstr "Condividi su Pinterest"
|
329 |
|
330 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
331 |
msgid "Share via email"
|
332 |
msgstr "Condividi per email"
|
333 |
|
334 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
335 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
336 |
msgid "My wishlist on "
|
337 |
msgstr "La mia lista dei desideri su %s "
|
338 |
|
339 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
340 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
341 |
msgid "Share on WhatsApp"
|
342 |
msgstr "Condividi su WhatsApp"
|
343 |
|
344 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
345 |
msgid "Remove from list"
|
346 |
msgstr "Rimuovi dalla lista"
|
347 |
|
348 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
349 |
msgid "Free!"
|
350 |
msgstr "Gratuito!"
|
351 |
|
352 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
353 |
+
msgctxt ""
|
354 |
+
"Part of the template that shows price variation since addition to list; "
|
355 |
+
"placeholder will be replaced with a percentage"
|
356 |
+
msgid "Price is %1$s%%"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
360 |
+
msgctxt ""
|
361 |
+
"Part of the template that shows price variation since addition to list; "
|
362 |
+
"placeholder will be replaced with a price"
|
363 |
+
msgid "(Was %2$s when added in list)"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
#: ../includes/class.yith-wcwl.php:161
|
367 |
msgid "The item cannot be added to this wishlist"
|
368 |
msgstr "L'elemento non può essere aggiunto alla lista dei desideri"
|
369 |
|
370 |
#: ../includes/class.yith-wcwl.php:165, ../includes/class.yith-wcwl.php:171
|
371 |
msgid "An error occurred while adding the products to the wishlist."
|
372 |
+
msgstr ""
|
373 |
+
"Si è verificato un errore mentre si cercava di aggiungere i prodotti alla "
|
374 |
+
"lista."
|
375 |
|
376 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
377 |
msgid "Error. Unable to remove the product from the wishlist."
|
378 |
msgstr "Errore. Impossibile rimuovere il prodotto dalla lista dei desideri."
|
379 |
|
380 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
381 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
382 |
msgid "Invalid wishlist."
|
383 |
msgstr "Lista non valida."
|
384 |
|
386 |
msgid "Invalid wishlist item."
|
387 |
msgstr "Elemento della lista non valido."
|
388 |
|
389 |
+
#. translators: 1. Number of users.
|
390 |
+
#: ../includes/functions.yith-wcwl.php:216
|
391 |
msgid "%d user"
|
392 |
msgid_plural "%d users"
|
393 |
msgstr[0] "%s utente"
|
394 |
msgstr[1] "%d utenti"
|
395 |
|
396 |
+
#: ../includes/functions.yith-wcwl.php:217
|
397 |
msgid "has this item in wishlist"
|
398 |
msgid_plural "have this item in wishlist"
|
399 |
msgstr[0] "ha aggiunto questo prodotto alla sua lista"
|
400 |
msgstr[1] "hanno aggiunto questo prodotto alla propria lista"
|
401 |
|
402 |
+
#: ../includes/functions.yith-wcwl.php:219
|
403 |
msgid "You're the first"
|
404 |
msgstr "Sei il primo"
|
405 |
|
406 |
+
#: ../includes/functions.yith-wcwl.php:220
|
407 |
msgid "to add this item in wishlist"
|
408 |
msgstr "ad aver aggiunto questo prodotto alla lista dei desideri"
|
409 |
|
410 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
411 |
+
#: ../includes/functions.yith-wcwl.php:224
|
412 |
msgid "You and %s user"
|
413 |
msgid_plural "You and %d users"
|
414 |
msgstr[0] "Tu e un altro utente"
|
415 |
msgstr[1] "Tu e altri %d utenti"
|
416 |
|
417 |
+
#: ../includes/functions.yith-wcwl.php:225
|
418 |
msgid "have this item in wishlist"
|
419 |
msgstr "avete aggiunto questo prodotto alla lista dei desideri"
|
420 |
|
421 |
+
#: ../includes/functions.yith-wcwl.php:460
|
422 |
+
msgid "None"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: ../includes/functions.yith-wcwl.php:461
|
426 |
+
#, fuzzy
|
427 |
+
#| msgid "Custom CSS"
|
428 |
+
msgid "Custom"
|
429 |
+
msgstr "CSS personalizzato"
|
430 |
+
|
431 |
+
#: ../includes/functions.yith-wcwl.php:553
|
432 |
msgid "Shared"
|
433 |
msgstr "Condivisa"
|
434 |
|
435 |
+
#: ../includes/functions.yith-wcwl.php:557
|
436 |
+
msgid "Only people with a link to this list can see it"
|
437 |
+
msgstr "Solo le persone con cui condividi il link della lista possono vederla"
|
438 |
|
439 |
+
#: ../includes/functions.yith-wcwl.php:563
|
440 |
msgid "Private"
|
441 |
msgstr "Privata"
|
442 |
|
443 |
+
#: ../includes/functions.yith-wcwl.php:567
|
444 |
+
msgid "Only you can see this list"
|
445 |
+
msgstr "Solo tu puoi vedere questa lista"
|
446 |
|
447 |
+
#: ../includes/functions.yith-wcwl.php:573
|
448 |
msgid "Public"
|
449 |
msgstr "Pubblica"
|
450 |
|
451 |
+
#: ../includes/functions.yith-wcwl.php:577
|
452 |
+
msgid "Anyone can search for and see this list"
|
453 |
+
msgstr "Tutti possono cercare e vedere questa lista"
|
454 |
+
|
455 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
456 |
+
msgctxt "Elementor widget name"
|
457 |
+
msgid "YITH Wishlist Add button"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
461 |
+
#, fuzzy
|
462 |
+
#| msgid "Product name"
|
463 |
+
msgctxt "Elementor section title"
|
464 |
+
msgid "Product"
|
465 |
+
msgstr "Nome prodotto"
|
466 |
+
|
467 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
468 |
+
#, fuzzy
|
469 |
+
#| msgid "Product name"
|
470 |
+
msgctxt "Elementor control label"
|
471 |
+
msgid "Product ID"
|
472 |
+
msgstr "Nome prodotto"
|
473 |
+
|
474 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
475 |
+
msgctxt "Elementor section title"
|
476 |
+
msgid "Labels"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
480 |
+
msgctxt "Elementor control label"
|
481 |
+
msgid "Button label"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
485 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
486 |
+
msgid "Add to wishlist"
|
487 |
+
msgstr "Aggiungi alla lista dei desideri"
|
488 |
+
|
489 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
490 |
+
#, fuzzy
|
491 |
+
#| msgid "\"Browse wishlist\" text"
|
492 |
+
msgctxt "Elementor control label"
|
493 |
+
msgid "\"Browse wishlist\" label"
|
494 |
+
msgstr "Testo per \"Vedi la lista dei desideri\""
|
495 |
+
|
496 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
497 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
498 |
+
msgid "Browse wishlist"
|
499 |
+
msgstr "Vedi la lista"
|
500 |
+
|
501 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
502 |
+
#, fuzzy
|
503 |
+
#| msgid "\"Product already in wishlist\" text"
|
504 |
+
msgctxt "Elementor control label"
|
505 |
+
msgid "\"Product already in wishlist\" label"
|
506 |
+
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""
|
507 |
+
|
508 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
509 |
+
#, fuzzy
|
510 |
+
#| msgid "\"Product already in wishlist\" text"
|
511 |
+
msgid "Product already in wishlist"
|
512 |
+
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""
|
513 |
+
|
514 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
515 |
+
#, fuzzy
|
516 |
+
#| msgid "\"Product already in wishlist\" text"
|
517 |
+
msgctxt "Elementor control label"
|
518 |
+
msgid "\"Product added to wishlist\" label"
|
519 |
+
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""
|
520 |
+
|
521 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
522 |
+
#, fuzzy
|
523 |
+
#| msgid "When product is added to wishlist"
|
524 |
+
msgid "Product added to wishlist"
|
525 |
+
msgstr "Quando il prodotto viene aggiunto alla lista"
|
526 |
+
|
527 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
528 |
+
msgctxt "Elementor section title"
|
529 |
+
msgid "Advanced"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
533 |
+
#, fuzzy
|
534 |
+
#| msgid "Wishlist page"
|
535 |
+
msgctxt "Elementor control label"
|
536 |
+
msgid "URL of the wishlist page"
|
537 |
+
msgstr "Pagina Lista dei desideri"
|
538 |
+
|
539 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
540 |
+
#, fuzzy
|
541 |
+
#| msgid "Select an icon for the Email share button"
|
542 |
+
msgctxt "Elementor control label"
|
543 |
+
msgid "Icon for the button"
|
544 |
+
msgstr "Seleziona un'icona per il pulsante di condivisione per email"
|
545 |
+
|
546 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
547 |
+
#, fuzzy
|
548 |
+
#| msgid ""
|
549 |
+
#| "Additional CSS classes for the button (leave empty to use the default "
|
550 |
+
#| "settings)"
|
551 |
+
msgctxt "Elementor control label"
|
552 |
+
msgid "Additional CSS classes for the button"
|
553 |
+
msgstr ""
|
554 |
+
"Classi CSS aggiuntive per il pulsante (lascia vuoto per utilizzare le "
|
555 |
+
"impostazioni predefinite)"
|
556 |
+
|
557 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
558 |
+
#, fuzzy
|
559 |
+
#| msgid "Wishlist"
|
560 |
+
msgctxt "Elementor widget name"
|
561 |
+
msgid "YITH Wishlist"
|
562 |
+
msgstr "Wishlist"
|
563 |
+
|
564 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
565 |
+
#, fuzzy
|
566 |
+
#| msgid "Wishlist"
|
567 |
+
msgctxt "Elementor section title"
|
568 |
+
msgid "Wishlist"
|
569 |
+
msgstr "Wishlist"
|
570 |
+
|
571 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
572 |
+
#, fuzzy
|
573 |
+
#| msgid "Wishlist"
|
574 |
+
msgctxt "Elementor control label"
|
575 |
+
msgid "Wishlist ID"
|
576 |
+
msgstr "Wishlist"
|
577 |
+
|
578 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
579 |
+
#, fuzzy
|
580 |
+
#| msgid "Paginate"
|
581 |
+
msgctxt "Elementor section title"
|
582 |
+
msgid "Pagination"
|
583 |
+
msgstr "Paginazione"
|
584 |
+
|
585 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
586 |
+
#, fuzzy
|
587 |
+
#| msgid "Paginate"
|
588 |
+
msgctxt "Elementor control label"
|
589 |
+
msgid "Paginate items"
|
590 |
+
msgstr "Paginazione"
|
591 |
+
|
592 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
593 |
+
#, fuzzy
|
594 |
+
#| msgid "Items added"
|
595 |
+
msgctxt "yith-woocommerce-wishlist"
|
596 |
+
msgid "Items per page"
|
597 |
+
msgstr "Articoli aggiunti"
|
598 |
|
599 |
#: ../init.php:4
|
600 |
msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
601 |
msgstr ""
|
602 |
|
603 |
#: ../init.php:5
|
604 |
+
msgid ""
|
605 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
606 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
607 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
608 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
609 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
610 |
msgstr ""
|
611 |
|
612 |
#: ../init.php:7
|
617 |
msgid "https://yithemes.com/"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../init.php:141
|
621 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../init.php:151
|
625 |
msgid "You can't activate the free version of"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../init.php:151
|
629 |
msgid "while you are using the premium one."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
633 |
+
#: ../plugin-options/settings-options.php:23
|
634 |
msgid "General Settings"
|
635 |
msgstr "Impostazioni generali"
|
636 |
|
637 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
638 |
+
#, fuzzy
|
639 |
+
#| msgid "When product is added to wishlist"
|
640 |
+
msgid "After product is added to wishlist"
|
641 |
msgstr "Quando il prodotto viene aggiunto alla lista"
|
642 |
|
643 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
644 |
+
msgid ""
|
645 |
+
"Choose the look of the Wishlist button when the product has already been "
|
646 |
+
"added to a wishlist"
|
647 |
+
msgstr ""
|
648 |
+
"Personalizza lo stile che deve avere il pulsante quando il prodotto è stato "
|
649 |
+
"già aggiunto alla lista"
|
650 |
|
651 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
652 |
msgid "Show \"Add to wishilist\" button"
|
665 |
msgstr "Impostazioni loop"
|
666 |
|
667 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
668 |
+
msgid ""
|
669 |
+
"Loop options will be visible on Shop page, category pages, product "
|
670 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
671 |
+
"products' loop is used"
|
672 |
+
msgstr ""
|
673 |
+
"Le opzioni loop saranno visibili nella pagina Negozio, nelle pagine "
|
674 |
+
"categoria, negli shortcode che mostrano i prodotti, slider di prodotti e "
|
675 |
+
"tutti gli altri casi in cui viene utilizzato il loop dei prodotti WooCommerce"
|
676 |
|
677 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
678 |
msgid "Show \"Add to wishlist\" in loop"
|
680 |
|
681 |
#: ../plugin-options/add_to_wishlist-options.php:54
|
682 |
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
|
683 |
+
msgstr ""
|
684 |
+
"Abilita la funzionalità 'Aggiungi alla lista' nel loop prodotti di "
|
685 |
+
"WooCommerce"
|
686 |
|
687 |
#: ../plugin-options/add_to_wishlist-options.php:62
|
688 |
msgid "Position of \"Add to wishlist\" in loop"
|
689 |
msgstr "Posizione di 'Aggiungi alla lista' nel loop"
|
690 |
|
691 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
692 |
+
msgid ""
|
693 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
694 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
695 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
696 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
697 |
+
msgstr ""
|
698 |
+
"Scegli dove mostrare il pulsante o link 'Aggiungi alla lista' nel loop "
|
699 |
+
"prodotti di WooCommerce. <span class=\"addon\">Copia questo shortcode <span "
|
700 |
+
"class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></span> e incollalo "
|
701 |
+
"dove vuoi tu per mostrare il link o il pulsante 'Aggiungi alla lista'</span>"
|
702 |
|
703 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
704 |
msgid "On top of the image"
|
712 |
msgid "After \"Add to cart\" button"
|
713 |
msgstr "Dopo il pulsante 'Aggiungi al carrello'"
|
714 |
|
715 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
716 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
717 |
msgid "Use shortcode"
|
718 |
msgstr "Utilizza lo shortcode"
|
719 |
|
720 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
721 |
msgid "Product page settings"
|
722 |
msgstr "Impostazioni pagina prodotto"
|
723 |
|
724 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
725 |
msgid "Position of \"Add to wishlist\" on product page"
|
726 |
msgstr "Posizione di 'Aggiungi alla lista' nella pagina prodotto"
|
727 |
|
728 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
729 |
+
msgid ""
|
730 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
731 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
732 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
733 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
734 |
+
msgstr ""
|
735 |
+
"Scegli dove mostrare il pulsante o link 'Aggiungi alla lista' nella pagina "
|
736 |
+
"prodotto. <span class=\"addon\">Copia questo shortcode <span class=\"code"
|
737 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> e incollalo dove vuoi tu "
|
738 |
+
"per mostrare il link o il pulsante 'Aggiungi alla lista'</span>"
|
739 |
|
740 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
741 |
msgid "After \"Add to cart\""
|
742 |
msgstr "Dopo \"Aggiungi al carrello\""
|
743 |
|
744 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
745 |
msgid "After thumbnails"
|
746 |
msgstr "Dopo le miniature"
|
747 |
|
748 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
749 |
msgid "After summary"
|
750 |
msgstr "Dopo il sommario"
|
751 |
|
752 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
753 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
754 |
msgid "Text customization"
|
755 |
msgstr "Personalizzazione testi"
|
756 |
|
757 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
758 |
msgid "\"Add to wishlist\" text"
|
759 |
msgstr "Testo 'Aggiungi alla lista'"
|
760 |
|
761 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
762 |
msgid "Enter a text for \"Add to wishlist\" button"
|
763 |
msgstr "Inserisci un testo per il pulsante 'Aggiungi alla lista'"
|
764 |
|
765 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
766 |
msgid "\"Product added\" text"
|
767 |
msgstr "Testo per \"Articolo aggiunto\""
|
768 |
|
769 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
770 |
+
msgid ""
|
771 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
772 |
+
"wishlist"
|
773 |
+
msgstr ""
|
774 |
+
"Inserisci il testo del messaggio mostrato quando l'utente aggiunge il "
|
775 |
+
"prodotto alla lista dei desideri"
|
776 |
|
777 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
778 |
msgid "Product added!"
|
779 |
msgstr "Articolo aggiunto!"
|
780 |
|
781 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
782 |
msgid "\"Browse wishlist\" text"
|
783 |
msgstr "Testo per \"Vedi la lista dei desideri\""
|
784 |
|
785 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
786 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
787 |
msgstr "Inserisci il testo del link 'Vedi la lista' nella pagina prodotto"
|
788 |
|
789 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
790 |
msgid "\"Product already in wishlist\" text"
|
791 |
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""
|
792 |
|
793 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
794 |
+
msgid ""
|
795 |
+
"Enter the text for the message displayed when the user views a product that "
|
796 |
+
"is already in the wishlist"
|
797 |
+
msgstr ""
|
798 |
+
"Inserisci il testo del messaggio mostrato quando l'utente visualizza un "
|
799 |
+
"prodotto che è già stato aggiunto alla lista"
|
800 |
|
801 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
802 |
msgid "The product is already in your wishlist!"
|
803 |
msgstr "Il prodotto è già nella tua lista!"
|
804 |
|
805 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
806 |
msgid "Style & Color customization"
|
807 |
msgstr "Personalizzazione stile e colori"
|
808 |
|
809 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
810 |
msgid "Style of \"Add to wishlist\""
|
811 |
msgstr "Stile di 'Aggiungi alla lista'"
|
812 |
|
813 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
814 |
+
msgid ""
|
815 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
816 |
+
msgstr ""
|
817 |
+
"Scegli se mostrare un link testuale 'Aggiungi alla lista' oppure un pulsante"
|
818 |
|
819 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
820 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
821 |
msgid "Textual (anchor)"
|
822 |
msgstr "Testuale (ancora)"
|
823 |
|
824 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
825 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
826 |
msgid "Button with theme style"
|
827 |
msgstr "Pulsante con lo stile del tema"
|
828 |
|
829 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
830 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
831 |
msgid "Button with custom style"
|
832 |
msgstr "Pulsante con uno stile personalizzato"
|
833 |
|
834 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
835 |
msgid "\"Add to wishlist\" button style"
|
836 |
msgstr "Stile pulsante 'Aggiungi alla lista'"
|
837 |
|
838 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
839 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
840 |
msgstr "Scegli i colori del pulsante 'Aggiungi alla lista'"
|
841 |
|
842 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
843 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
844 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
845 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
846 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
847 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
848 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
849 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
850 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
851 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
852 |
msgid "Background"
|
853 |
msgstr "Sfondo"
|
854 |
|
855 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
856 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
857 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
858 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
859 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
860 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
861 |
msgid "Text"
|
862 |
msgstr "Testo"
|
863 |
|
864 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
865 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
866 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
867 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
868 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
869 |
msgid "Border"
|
870 |
msgstr "Bordo"
|
871 |
|
872 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
873 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
874 |
+
msgstr ""
|
875 |
+
"Scegli i colori del pulsante 'Aggiungi alla lista' al passaggio del mouse "
|
876 |
+
"(hover)"
|
877 |
|
878 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
879 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
880 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
881 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
882 |
msgid "Background Hover"
|
883 |
msgstr "Colore - hover"
|
884 |
|
885 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
886 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
887 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
888 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
889 |
msgid "Text Hover"
|
890 |
msgstr "Testo - hover"
|
891 |
|
892 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
893 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
894 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
895 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
896 |
msgid "Border Hover"
|
897 |
msgstr "Bordo - hover"
|
898 |
|
899 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
900 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
901 |
msgid "Border radius"
|
902 |
msgstr "Border radius"
|
903 |
|
904 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
905 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
906 |
+
msgstr ""
|
907 |
+
"Imposta il raggio del bordo arrotondato del pulsante 'Aggiungi alla lista'"
|
908 |
|
909 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
910 |
msgid "\"Add to wishlist\" icon"
|
911 |
msgstr "Icona 'Aggiungi alla lista'"
|
912 |
|
913 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
914 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
915 |
msgstr "Seleziona un'icona per il pulsante 'Aggiungi alla lista' (opzionale)"
|
916 |
|
917 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
918 |
msgid "\"Add to wishlist\" custom icon"
|
919 |
msgstr "Icona personalizzata per 'Aggiungi alla lista'"
|
920 |
|
921 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
922 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
923 |
+
msgid ""
|
924 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
925 |
+
"32px x 32px)"
|
926 |
+
msgstr ""
|
927 |
+
"Carica un'icona da utilizzare per il pulsante 'Aggiungi alla "
|
928 |
+
"lista' (dimensione consigliata 32 x 32 px)"
|
929 |
|
930 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
931 |
msgid "\"Added to wishlist\" icon"
|
932 |
msgstr "Icona 'Aggiungi alla lista'"
|
933 |
|
934 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
935 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
936 |
+
msgstr ""
|
937 |
+
"Selezionare un'icona per il pulsante \"Aggiungi alla lista\" (opzionale)"
|
938 |
|
939 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
940 |
msgid "Same used for Add to wishlist"
|
941 |
msgstr "La stessa utilizzata per Aggiungi alla lista"
|
942 |
|
943 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
944 |
msgid "\"Added to wishlist\" custom icon"
|
945 |
msgstr "Icona personalizzata per 'Aggiungi alla lista'"
|
946 |
|
947 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
948 |
msgid "Custom CSS"
|
949 |
msgstr "CSS personalizzato"
|
950 |
|
951 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
952 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
953 |
+
msgstr ""
|
954 |
+
"Inserisci il tuo codice CSS da applicare agli elementi della lista "
|
955 |
+
"(opzionale)"
|
956 |
+
|
957 |
+
#: ../plugin-options/lists-options.php:32
|
958 |
+
#, fuzzy
|
959 |
+
#| msgid "Share wishlist"
|
960 |
+
msgid "Search list"
|
961 |
+
msgstr "Condividi la lista"
|
962 |
|
963 |
#: ../plugin-options/settings-options.php:17
|
964 |
+
msgid ""
|
965 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
966 |
+
"the %s."
|
967 |
msgstr "Se vuoi usufruire di questa funzionalità, acquista la %s."
|
968 |
|
969 |
#: ../plugin-options/settings-options.php:30
|
972 |
|
973 |
#: ../plugin-options/settings-options.php:31
|
974 |
msgid "Load any cacheable wishlist item via AJAX"
|
975 |
+
msgstr ""
|
976 |
+
"Carica in AJAX qualsiasi elemento di YITH Wishlist che possa essere messo in "
|
977 |
+
"cache"
|
978 |
|
979 |
#: ../plugin-options/settings-options.php:44
|
980 |
msgid "YITH WooCommerce Frequently Bought Together Integration"
|
981 |
msgstr "Integrazione con YITH WooCommerce Frequently Bought Together"
|
982 |
|
983 |
#: ../plugin-options/settings-options.php:46
|
984 |
+
msgid ""
|
985 |
+
"In order to use this integration you have to install and activate YITH "
|
986 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
987 |
+
msgstr ""
|
988 |
+
"Per utilizzare quest'integrazione devi aver installato e attivato YITH "
|
989 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Maggiori dettagli "
|
990 |
+
"qui</a>"
|
991 |
|
992 |
#: ../plugin-options/settings-options.php:51
|
993 |
msgid "Enable slider in wishlist"
|
994 |
msgstr "Abilita lo slider nella lista dei desideri"
|
995 |
|
996 |
#: ../plugin-options/settings-options.php:52
|
997 |
+
msgid ""
|
998 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
999 |
+
"class=\"thickbox\">Example</a>). %s"
|
1000 |
+
msgstr ""
|
1001 |
+
"Abilita lo slider con i prodotti correlati nella pagina Lista dei desideri "
|
1002 |
+
"(<a href=\"%s\" class=\"thickbox\">Esempio</a>). %s"
|
1003 |
|
1004 |
#: ../plugin-options/wishlist_page-options.php:17
|
1005 |
msgid "All your wishlists"
|
1010 |
msgstr "Pagina Lista dei desideri"
|
1011 |
|
1012 |
#: ../plugin-options/wishlist_page-options.php:25
|
1013 |
+
msgid ""
|
1014 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
1015 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
1016 |
+
"content"
|
1017 |
+
msgstr ""
|
1018 |
+
"Scegli una pagina da utilizzare per le Liste dei desideri; assicurati di "
|
1019 |
+
"aver aggiunto lo shortcode <span class=\"code\"><code>[yith_wcwl_wishlist]</"
|
1020 |
+
"code></span> nel contenuto della pagina"
|
1021 |
|
1022 |
#: ../plugin-options/wishlist_page-options.php:38
|
1023 |
msgid "Wishlist Detail Page"
|
1024 |
msgstr "Pagina dettaglio Lista dei desideri"
|
1025 |
|
1026 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
1027 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
1028 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
1029 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
1030 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
1031 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
1032 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
1033 |
msgid "In wishlist table show"
|
1034 |
msgstr "Nella tabella mostra"
|
1035 |
|
1036 |
#: ../plugin-options/wishlist_page-options.php:46
|
1037 |
msgid "Product variations selected by the user (example: size or color)"
|
1038 |
+
msgstr ""
|
1039 |
+
"Le variazioni di prodotto selezionate dall'utente (es. taglia o colore)"
|
1040 |
|
1041 |
#: ../plugin-options/wishlist_page-options.php:55
|
1042 |
msgid "Product price"
|
1055 |
msgstr "Opzione 'Aggiungi al carrello' per ogni prodotto"
|
1056 |
|
1057 |
#: ../plugin-options/wishlist_page-options.php:91
|
1058 |
+
msgid ""
|
1059 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
1060 |
+
msgstr ""
|
1061 |
+
"Icona per rimuovere il prodotto dalla lista dei desideri - a sinistra del "
|
1062 |
+
"prodotto"
|
1063 |
|
1064 |
#: ../plugin-options/wishlist_page-options.php:100
|
1065 |
+
msgid ""
|
1066 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
1067 |
+
msgstr ""
|
1068 |
+
"Pulsante per rimuovere il prodotto dalla Lista dei desideri - a destra del "
|
1069 |
+
"prodotto"
|
1070 |
|
1071 |
#: ../plugin-options/wishlist_page-options.php:108
|
1072 |
msgid "Redirect to cart"
|
1073 |
msgstr "Reindirizza al carrello"
|
1074 |
|
1075 |
#: ../plugin-options/wishlist_page-options.php:109
|
1076 |
+
msgid ""
|
1077 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
1078 |
+
"wishlist page"
|
1079 |
+
msgstr ""
|
1080 |
+
"Reindirizza gli utenti alla pagina Carrello quando aggiungono un prodotto "
|
1081 |
+
"della lista dei desideri al carrello"
|
1082 |
|
1083 |
#: ../plugin-options/wishlist_page-options.php:117
|
1084 |
msgid "Remove if added to the cart"
|
1085 |
msgstr "Rimuovi se aggiunto al carrello"
|
1086 |
|
1087 |
#: ../plugin-options/wishlist_page-options.php:118
|
1088 |
+
msgid ""
|
1089 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
1090 |
msgstr "Rimuovi il prodotto dalla lista dopo che è stato aggiunto al carrello"
|
1091 |
|
1092 |
#: ../plugin-options/wishlist_page-options.php:126
|
1095 |
|
1096 |
#: ../plugin-options/wishlist_page-options.php:127
|
1097 |
msgid "Enable this option to let users share their wishlist on social media"
|
1098 |
+
msgstr ""
|
1099 |
+
"Abilita quest'opzione per permettere agli utenti di condividere la lista dei "
|
1100 |
+
"desideri sui social"
|
1101 |
+
|
1102 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1103 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1104 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1105 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1106 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1107 |
msgid "Share on social media"
|
1108 |
msgstr "Condividi sui social"
|
1109 |
|
1125 |
|
1126 |
#: ../plugin-options/wishlist_page-options.php:190
|
1127 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1128 |
+
msgstr ""
|
1129 |
+
"Titolo della lista utilizzato specificatamente per la condivisione (solo su "
|
1130 |
+
"Twitter e Pinterest)"
|
1131 |
|
1132 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1133 |
msgid "My wishlist on %s"
|
1134 |
msgstr "La mia lista dei desideri su %s"
|
1135 |
|
1138 |
msgstr "Testo per i social"
|
1139 |
|
1140 |
#: ../plugin-options/wishlist_page-options.php:198
|
1141 |
+
msgid ""
|
1142 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1143 |
+
"and Pinterest"
|
1144 |
+
msgstr ""
|
1145 |
+
"Inserisci qui il messaggio da pubblicare quando condividi la tua lista su "
|
1146 |
+
"Twitter e Pinterest"
|
1147 |
|
1148 |
#: ../plugin-options/wishlist_page-options.php:206
|
1149 |
msgid "Social image URL"
|
1158 |
msgstr "Nome predefinito della lista"
|
1159 |
|
1160 |
#: ../plugin-options/wishlist_page-options.php:227
|
1161 |
+
msgid ""
|
1162 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1163 |
+
"automatically generated for all users if they do not create any custom one"
|
1164 |
+
msgstr ""
|
1165 |
+
"Inserisci un nome predefinito per la lista. Questa è la lista che viene "
|
1166 |
+
"generata in automatico per ogni utente quando non ne viene creata una "
|
1167 |
+
"personalizzata"
|
1168 |
+
|
1169 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1170 |
+
#, fuzzy
|
1171 |
+
#| msgid "My wishlist on "
|
1172 |
+
msgid "My wishlist"
|
1173 |
+
msgstr "La mia lista dei desideri su %s "
|
1174 |
|
1175 |
#: ../plugin-options/wishlist_page-options.php:234
|
1176 |
msgid "\"Add to cart\" text"
|
1180 |
msgid "Enter a text for the \"Add to cart\" button"
|
1181 |
msgstr "Personalizza il testo del pulsante 'Aggiungi al carrello'"
|
1182 |
|
|
|
|
|
|
|
|
|
1183 |
#: ../plugin-options/wishlist_page-options.php:247
|
1184 |
msgid "Style & color customization"
|
1185 |
msgstr "Personalizzazione stile e colori"
|
1190 |
|
1191 |
#: ../plugin-options/wishlist_page-options.php:255
|
1192 |
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
|
1193 |
+
msgstr ""
|
1194 |
+
"Scegli se mostrare un link testuale 'Aggiungi al carrello' oppure un pulsante"
|
1195 |
|
1196 |
#: ../plugin-options/wishlist_page-options.php:268
|
1197 |
msgid "\"Add to cart\" button style"
|
1203 |
|
1204 |
#: ../plugin-options/wishlist_page-options.php:292
|
1205 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1206 |
+
msgstr ""
|
1207 |
+
"Scegli i colori del pulsante 'Aggiungi al carrello' al passaggio del mouse "
|
1208 |
+
"(hover)"
|
1209 |
|
1210 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1211 |
msgid "Set the radius for the \"Add to cart\" button"
|
1212 |
+
msgstr ""
|
1213 |
+
"Imposta il raggio del bordo arrotondato del pulsante 'Aggiungi al carrello'"
|
1214 |
|
1215 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1216 |
msgid "\"Add to cart\" icon"
|
1217 |
msgstr "Icona 'Aggiungi al carrello'"
|
1218 |
|
1219 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1220 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1221 |
msgstr "Seleziona un'icona per il pulsante 'Aggiungi al carrello' (opzionale)"
|
1222 |
|
1223 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1224 |
msgid "\"Add to cart\" custom icon"
|
1225 |
msgstr "Icona personalizzata per 'Aggiungi al carrello'"
|
1226 |
|
1227 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1228 |
+
msgid ""
|
1229 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1230 |
+
"32px x 32px)"
|
1231 |
+
msgstr ""
|
1232 |
+
"Carica un'icona da utilizzare per il pulsante 'Aggiungi al "
|
1233 |
+
"carrello' (dimensione consigliata 32 x 32 px)"
|
1234 |
|
1235 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1236 |
msgid "Primary button style"
|
1237 |
msgstr "Stile pulsante principale"
|
1238 |
|
1239 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1240 |
+
msgid ""
|
1241 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1242 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1243 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1244 |
+
msgstr ""
|
1245 |
+
"Scegli i colori del pulsante principale<br/><small>Questo stile si "
|
1246 |
+
"applicherà al pulsante 'Modifica titolo' in modalità Lista dei desideri, al "
|
1247 |
+
"pulsante 'Applica modifiche' in modalità Gestisci liste e al pulsante 'Cerca "
|
1248 |
+
"lista' in modalità Cerca.</small>"
|
1249 |
|
1250 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1251 |
+
msgid ""
|
1252 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1253 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1254 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1255 |
+
"small>"
|
1256 |
+
msgstr ""
|
1257 |
+
"Scegli i colori del pulsante principale al passaggio del mouse (hover)<br/"
|
1258 |
+
"><small>Questo stile si applicherà al pulsante 'Modifica titolo' in modalità "
|
1259 |
+
"Lista dei desideri, al pulsante 'Applica modifiche' in modalità Gestisci "
|
1260 |
+
"liste e al pulsante 'Cerca lista' in modalità Cerca.</small>"
|
1261 |
|
1262 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1263 |
msgid "Secondary button style"
|
1264 |
msgstr "Stile pulsante secondario"
|
1265 |
|
1266 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1267 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1268 |
+
msgid ""
|
1269 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1270 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1271 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1275 |
msgid "Wishlist table style"
|
1276 |
msgstr "Stile tabella Lista dei desideri"
|
1277 |
|
1278 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1279 |
+
msgid ""
|
1280 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1281 |
+
msgstr ""
|
1282 |
+
"Scegli i colori della tabella Lista dei desideri (quando impostata sul "
|
1283 |
+
"layout 'Tradizionale')"
|
1284 |
|
1285 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1286 |
msgid "Highlight color"
|
1287 |
msgstr "Colore in evidenza"
|
1288 |
|
1289 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1290 |
+
msgid ""
|
1291 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1292 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1293 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1294 |
+
msgstr ""
|
1295 |
+
"Scegli il colore per tutte le sezioni con un colore di sfondo<br/"
|
1296 |
+
"><small>Questo colore sarà applicato allo sfondo dell'intestazione della "
|
1297 |
+
"tabella Lista dei desideri e al footer (quando impostata su layout "
|
1298 |
+
"'Tradizionale') e per i vari moduli nelle modalità di visualizzazione delle "
|
1299 |
+
"liste</small>"
|
1300 |
|
1301 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1302 |
msgid "Share button text color"
|
1303 |
msgstr "Colore testo pulsante condivisione"
|
1304 |
|
1305 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1306 |
msgid "Choose colors for share buttons text"
|
1307 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione"
|
1308 |
|
1309 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1310 |
msgid "Text hover"
|
1311 |
msgstr "Testo - hover"
|
1312 |
|
1313 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1314 |
msgid "Facebook share button icon"
|
1315 |
msgstr "Icona pulsante Condividi su Facebook"
|
1316 |
|
1317 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1318 |
msgid "Select an icon for the Facebook share button"
|
1319 |
msgstr "Seleziona un'icona per il pulsante di condivisione su Facebook"
|
1320 |
|
1321 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1322 |
msgid "Facebook share button custom icon"
|
1323 |
msgstr "Icona personalizzata pulsante Condividi su Facebook"
|
1324 |
|
1325 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1326 |
+
msgid ""
|
1327 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1328 |
+
"32px)"
|
1329 |
+
msgstr ""
|
1330 |
+
"Carica un'icona da utilizzare per il pulsante di condivisione su Facebook "
|
1331 |
+
"(dimensione consigliata 32 x 32 px)"
|
1332 |
|
1333 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1334 |
msgid "Facebook share button style"
|
1335 |
msgstr "Stile pulsante Condividi su Facebook"
|
1336 |
|
1337 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1338 |
msgid "Choose colors for Facebook share button"
|
1339 |
msgstr "Scegli i colori per il pulsante di condivisione su Facebook"
|
1340 |
|
1341 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1342 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1343 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1344 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1345 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1346 |
msgid "Background hover"
|
1347 |
msgstr "Colore - hover"
|
1348 |
|
1349 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1350 |
msgid "Twitter share button icon"
|
1351 |
msgstr "Icona pulsante Condividi su Twitter"
|
1352 |
|
1353 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1354 |
msgid "Select an icon for the Twitter share button"
|
1355 |
msgstr "Seleziona un'icona per il pulsante di condivisione su Twitter"
|
1356 |
|
1357 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1358 |
msgid "Twitter share button custom icon"
|
1359 |
msgstr "Icona personalizzata pulsante Condividi su Twitter"
|
1360 |
|
1361 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1362 |
+
msgid ""
|
1363 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1364 |
+
"32px)"
|
1365 |
+
msgstr ""
|
1366 |
+
"Carica un'icona da utilizzare per il pulsante di condivisione su Twitter "
|
1367 |
+
"(dimensione consigliata 32 x 32 px)"
|
1368 |
|
1369 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1370 |
msgid "Twitter share button style"
|
1371 |
msgstr "Stile pulsante Condividi su Twitter"
|
1372 |
|
1373 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1374 |
msgid "Choose colors for Twitter share button"
|
1375 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione su Twitter"
|
1376 |
|
1377 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1378 |
msgid "Pinterest share button icon"
|
1379 |
msgstr "Icona pulsante Condividi su Pinterest"
|
1380 |
|
1381 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1382 |
msgid "Select an icon for the Pinterest share button"
|
1383 |
msgstr "Seleziona un'icona per il pulsante di condivisione su Pinterest"
|
1384 |
|
1385 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1386 |
msgid "Pinterest share button custom icon"
|
1387 |
msgstr "Icona personalizzata pulsante Condividi su Pinterest"
|
1388 |
|
1389 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1390 |
+
msgid ""
|
1391 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1392 |
+
"x 32px)"
|
1393 |
+
msgstr ""
|
1394 |
+
"Carica un'icona da utilizzare per il pulsante di condivisione su Pinterest "
|
1395 |
+
"(dimensione consigliata 32 x 32 px)"
|
1396 |
|
1397 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1398 |
msgid "Pinterest share button style"
|
1399 |
msgstr "Stile pulsante Condividi su Pinterest"
|
1400 |
|
1401 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1402 |
msgid "Choose colors for Pinterest share button"
|
1403 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione su Pinterest"
|
1404 |
|
1405 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1406 |
msgid "Email share button icon"
|
1407 |
msgstr "Icona pulsante Condividi per email"
|
1408 |
|
1409 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1410 |
msgid "Select an icon for the Email share button"
|
1411 |
msgstr "Seleziona un'icona per il pulsante di condivisione per email"
|
1412 |
|
1413 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1414 |
msgid "Email share button custom icon"
|
1415 |
msgstr "Icona personalizzata pulsante Condividi per email"
|
1416 |
|
1417 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1418 |
+
msgid ""
|
1419 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1420 |
+
"x 32px)"
|
1421 |
+
msgstr ""
|
1422 |
+
"Carica un'icona da utilizzare per il pulsante di condivisione email "
|
1423 |
+
"(dimensione consigliata 32 x 32 px)"
|
1424 |
|
1425 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1426 |
msgid "Email share button style"
|
1427 |
msgstr "Stile pulsante Condividi per email"
|
1428 |
|
1429 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1430 |
msgid "Choose colors for the Email share button"
|
1431 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione email"
|
1432 |
|
1433 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1434 |
msgid "WhatsApp share button icon"
|
1435 |
msgstr "Icona pulsante Condividi su WhatsApp"
|
1436 |
|
1437 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1438 |
msgid "Select an icon for the WhatsApp share button"
|
1439 |
msgstr "Seleziona un'icona per il pulsante di condivisione su WhatsApp"
|
1440 |
|
1441 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1442 |
msgid "WhatsApp share button custom icon"
|
1443 |
msgstr "Icona personalizzata pulsante Condividi su WhatsApp"
|
1444 |
|
1445 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1446 |
+
msgid ""
|
1447 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1448 |
+
"32px)"
|
1449 |
+
msgstr ""
|
1450 |
+
"Carica un'icona da utilizzare per il pulsante di condivisione su WhatsApp "
|
1451 |
+
"(dimensione consigliata 32 x 32 px)"
|
1452 |
|
1453 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1454 |
msgid "WhatsApp share button style"
|
1455 |
msgstr "Stile pulsante Condividi su WhatsApp"
|
1456 |
|
1457 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1458 |
msgid "Choose colors for WhatsApp share button"
|
1459 |
msgstr "Scegli i colori del testo per i pulsanti di condivisione su WhatsApp"
|
1460 |
|
1461 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1462 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1463 |
+
msgid ""
|
1464 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1465 |
+
"%2$s to benefit from all features!"
|
|
|
|
|
|
|
|
|
|
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1469 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
1470 |
msgid "Upgrade"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1474 |
msgid "Premium Features"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1478 |
msgid "Allow your customers to create multiple wishlists"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1482 |
+
msgid ""
|
1483 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1484 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1485 |
+
"other parameters."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1489 |
msgid "Multiple Wishlist"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1493 |
msgid "Wishlist Private"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1497 |
msgid "A transparent privacy management"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1501 |
+
msgid ""
|
1502 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1503 |
+
"sharing the wishlist or making it private."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1507 |
+
msgid ""
|
1508 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1509 |
+
"page"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1513 |
+
msgid ""
|
1514 |
+
"And give only registered users the privilege to use the wishlist "
|
1515 |
+
"functionalities."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1519 |
msgid "Estimate Cost"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1523 |
msgid "Admin Panel"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1527 |
msgid "An advanced and more versatile management of the wishlist"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1531 |
+
msgid ""
|
1532 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1533 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1534 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1535 |
+
"social networks, and much more!"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1539 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1543 |
+
msgid ""
|
1544 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1545 |
+
"are more interested in and plan targeted marketing strategies."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1549 |
msgid "Search Wishlists"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1553 |
msgid "'ADD TO CART'"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1557 |
+
msgid ""
|
1558 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1562 |
+
msgid ""
|
1563 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1564 |
+
"customers who have added specific products to their wishlist and push them "
|
1565 |
+
"to buy."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1569 |
msgid "Let users buy the product right from the wishlist page"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1573 |
+
msgid ""
|
1574 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1575 |
+
"also the information about the size, colour or quantity selected when added "
|
1576 |
+
"to the wishlist."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1580 |
msgid "DISABLE WISHLIST"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1584 |
msgid "Choose a charming layout for your wishlist page"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1588 |
+
msgid ""
|
1589 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1590 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1591 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1592 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1593 |
+
"your website."
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1597 |
msgid "UNLOGGED USERS"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1601 |
msgid "Wishlist widgets for the header and sidebars"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1605 |
+
msgid ""
|
1606 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1607 |
+
"in the header, in the sidebars, wherever you want."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1611 |
msgid "POPULAR TABLE"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1615 |
msgid "FUNCTIONALITIES"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1619 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1623 |
+
msgid ""
|
1624 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1625 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1626 |
+
"product and how much they can save when there’s a promotion running or a "
|
1627 |
+
"discount on the product they’ve added to the wishlist."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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"
|
1704 |
|
1705 |
+
#: ../templates/wishlist-view-header.php:48
|
1706 |
msgid "Save"
|
1707 |
msgstr "Salva"
|
1708 |
|
1709 |
+
#: ../templates/wishlist-view-header.php:51
|
1710 |
msgid "Cancel"
|
1711 |
msgstr "Annulla"
|
1712 |
|
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 ›"
|
1747 |
msgstr "Sposta in un'altra lista ›"
|
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"
|
1758 |
|
1759 |
+
#: ../templates/wishlist-view.php:78
|
1760 |
msgid "Product name"
|
1761 |
msgstr "Nome prodotto"
|
1762 |
|
1763 |
+
#: ../templates/wishlist-view.php:86
|
1764 |
msgid "Unit price"
|
1765 |
msgstr "Prezzo unitario"
|
1766 |
|
1767 |
+
#: ../templates/wishlist-view.php:95
|
1768 |
msgid "Quantity"
|
1769 |
msgstr "Quantità"
|
1770 |
|
1771 |
+
#: ../templates/wishlist-view.php:104
|
1772 |
msgid "Stock status"
|
1773 |
msgstr "Disponibilità in magazzino"
|
1774 |
|
1775 |
+
#: ../templates/wishlist-view.php:122
|
1776 |
msgid "Arrange"
|
1777 |
msgstr "Riordina"
|
1778 |
|
1779 |
+
#. translators: date added label: 1 date added.
|
1780 |
+
#: ../templates/wishlist-view.php:238
|
1781 |
msgid "Added on: %s"
|
1782 |
msgstr "Aggiunto il: %s"
|
1783 |
|
1784 |
+
#: ../templates/wishlist-view.php:287
|
1785 |
msgid "Remove"
|
1786 |
msgstr "Rimuovi"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: YITH WooCommerce Wishlist\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/init\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
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"
|
@@ -13,90 +13,146 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr "프리미엄 버전 "
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "YITH WooCommerce Wishlist"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "위시리스"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "상품이 성공적으로 제거 되었습니다."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr ""
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
|
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
|
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "위시리스"
|
102 |
|
@@ -122,6 +178,11 @@ msgstr ""
|
|
122 |
msgid "Title"
|
123 |
msgstr ""
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr ""
|
@@ -130,94 +191,144 @@ msgstr ""
|
|
130 |
msgid "Items added"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
msgid "
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
msgid "
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "공유: "
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "페이스북에 공유"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "트위터에 트윗하기"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "핀레스트에 핀하기"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "나의 위시리스트 목록 @ %s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr "프리!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr ""
|
@@ -226,11 +337,12 @@ msgstr ""
|
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "에러, 위시리스트에서 상품제거 불가능 "
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr ""
|
236 |
|
@@ -238,58 +350,198 @@ msgstr ""
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr ""
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] ""
|
245 |
msgstr[1] ""
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] ""
|
251 |
msgstr[1] ""
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr ""
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] ""
|
265 |
msgstr[1] ""
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "공유됨 "
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr "개인 "
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr "공용 "
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgstr ""
|
294 |
|
295 |
#: ../init.php:4
|
@@ -297,7 +549,12 @@ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,28 +565,33 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
-
msgstr "
|
|
|
|
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "일반 설정 "
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
|
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
@@ -349,7 +611,10 @@ msgid "Loop settings"
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "
|
|
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
@@ -365,7 +630,11 @@ msgid "Position of \"Add to wishlist\" in loop"
|
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
368 |
-
msgid "
|
|
|
|
|
|
|
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
@@ -380,196 +649,241 @@ msgstr ""
|
|
380 |
msgid "After \"Add to cart\" button"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../plugin-options/add_to_wishlist-options.php:73,
|
|
|
384 |
msgid "Use shortcode"
|
385 |
msgstr "숏코드를 사용 "
|
386 |
|
387 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
388 |
msgid "Product page settings"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
392 |
msgid "Position of \"Add to wishlist\" on product page"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
396 |
-
msgid "
|
|
|
|
|
|
|
|
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
400 |
msgid "After \"Add to cart\""
|
401 |
msgstr "장바구니 담기 뒤에"
|
402 |
|
403 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
404 |
msgid "After thumbnails"
|
405 |
msgstr "썸네일 뒤에"
|
406 |
|
407 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
408 |
msgid "After summary"
|
409 |
msgstr "써머리 뒤에"
|
410 |
|
411 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
412 |
msgid "Text customization"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
416 |
msgid "\"Add to wishlist\" text"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
420 |
msgid "Enter a text for \"Add to wishlist\" button"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
424 |
-
msgid "Add to wishlist"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../plugin-options/add_to_wishlist-options.php:131
|
428 |
msgid "\"Product added\" text"
|
429 |
msgstr "\"상품 추가\" 텍스트 "
|
430 |
|
431 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
432 |
-
msgid "
|
|
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
436 |
msgid "Product added!"
|
437 |
msgstr "상품이 추가됨!"
|
438 |
|
439 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
440 |
msgid "\"Browse wishlist\" text"
|
441 |
msgstr "\"위시리스트 둘러보기\" 텍스트"
|
442 |
|
443 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
444 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
448 |
-
msgid "Browse wishlist"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../plugin-options/add_to_wishlist-options.php:147
|
452 |
msgid "\"Product already in wishlist\" text"
|
453 |
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"
|
454 |
|
455 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
456 |
-
msgid "
|
|
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
460 |
msgid "The product is already in your wishlist!"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
464 |
msgid "Style & Color customization"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
468 |
msgid "Style of \"Add to wishlist\""
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
472 |
-
msgid "
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
476 |
msgid "Textual (anchor)"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
480 |
msgid "Button with theme style"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
484 |
msgid "Button with custom style"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
488 |
msgid "\"Add to wishlist\" button style"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
492 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "Background"
|
497 |
msgstr "백그라운드 "
|
498 |
|
499 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Text"
|
501 |
msgstr "텍스트 "
|
502 |
|
503 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
|
|
504 |
msgid "Border"
|
505 |
msgstr "경계 "
|
506 |
|
507 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
508 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
512 |
msgid "Background Hover"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
516 |
msgid "Text Hover"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
|
|
|
|
520 |
msgid "Border Hover"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
|
|
524 |
msgid "Border radius"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
528 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
532 |
msgid "\"Add to wishlist\" icon"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
536 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
540 |
msgid "\"Add to wishlist\" custom icon"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
544 |
-
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
548 |
msgid "\"Added to wishlist\" icon"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
552 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
556 |
msgid "Same used for Add to wishlist"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
560 |
msgid "\"Added to wishlist\" custom icon"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
564 |
msgid "Custom CSS"
|
565 |
msgstr "커스텀 CSS"
|
566 |
|
567 |
-
#: ../plugin-options/add_to_wishlist-options.php:
|
568 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
569 |
msgstr ""
|
570 |
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
#: ../plugin-options/settings-options.php:17
|
572 |
-
msgid "
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
#: ../plugin-options/settings-options.php:30
|
@@ -585,7 +899,9 @@ msgid "YITH WooCommerce Frequently Bought Together Integration"
|
|
585 |
msgstr "YITH WooCommerce 와 함께 자주 구매되는 연결"
|
586 |
|
587 |
#: ../plugin-options/settings-options.php:46
|
588 |
-
msgid "
|
|
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/settings-options.php:51
|
@@ -593,7 +909,9 @@ msgid "Enable slider in wishlist"
|
|
593 |
msgstr "위시리스트내 슬라이더 사용 "
|
594 |
|
595 |
#: ../plugin-options/settings-options.php:52
|
596 |
-
msgid "
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
#: ../plugin-options/wishlist_page-options.php:17
|
@@ -605,14 +923,23 @@ msgid "Wishlist page"
|
|
605 |
msgstr ""
|
606 |
|
607 |
#: ../plugin-options/wishlist_page-options.php:25
|
608 |
-
msgid "
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../plugin-options/wishlist_page-options.php:38
|
612 |
msgid "Wishlist Detail Page"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../plugin-options/wishlist_page-options.php:45,
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
msgid "In wishlist table show"
|
617 |
msgstr ""
|
618 |
|
@@ -637,11 +964,13 @@ msgid "Add to cart option for each product"
|
|
637 |
msgstr ""
|
638 |
|
639 |
#: ../plugin-options/wishlist_page-options.php:91
|
640 |
-
msgid "
|
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: ../plugin-options/wishlist_page-options.php:100
|
644 |
-
msgid "
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
#: ../plugin-options/wishlist_page-options.php:108
|
@@ -649,7 +978,9 @@ msgid "Redirect to cart"
|
|
649 |
msgstr "장바구니로 다시돌리기"
|
650 |
|
651 |
#: ../plugin-options/wishlist_page-options.php:109
|
652 |
-
msgid "
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
#: ../plugin-options/wishlist_page-options.php:117
|
@@ -657,7 +988,8 @@ msgid "Remove if added to the cart"
|
|
657 |
msgstr "장바구니에 담고나면 제거"
|
658 |
|
659 |
#: ../plugin-options/wishlist_page-options.php:118
|
660 |
-
msgid "
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
#: ../plugin-options/wishlist_page-options.php:126
|
@@ -668,7 +1000,11 @@ msgstr ""
|
|
668 |
msgid "Enable this option to let users share their wishlist on social media"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../plugin-options/wishlist_page-options.php:135,
|
|
|
|
|
|
|
|
|
672 |
msgid "Share on social media"
|
673 |
msgstr ""
|
674 |
|
@@ -692,7 +1028,7 @@ msgstr ""
|
|
692 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../plugin-options/wishlist_page-options.php:192
|
696 |
msgid "My wishlist on %s"
|
697 |
msgstr "나의 위시리스트 목록 @ %s"
|
698 |
|
@@ -701,7 +1037,9 @@ msgid "Social text"
|
|
701 |
msgstr "소셜 텍스트 "
|
702 |
|
703 |
#: ../plugin-options/wishlist_page-options.php:198
|
704 |
-
msgid "
|
|
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
#: ../plugin-options/wishlist_page-options.php:206
|
@@ -717,9 +1055,17 @@ msgid "Default wishlist name"
|
|
717 |
msgstr ""
|
718 |
|
719 |
#: ../plugin-options/wishlist_page-options.php:227
|
720 |
-
msgid "
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
#: ../plugin-options/wishlist_page-options.php:234
|
724 |
msgid "\"Add to cart\" text"
|
725 |
msgstr ""
|
@@ -728,10 +1074,6 @@ msgstr ""
|
|
728 |
msgid "Enter a text for the \"Add to cart\" button"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../plugin-options/wishlist_page-options.php:237, ../templates/wishlist-view-footer-mobile.php:43, ../templates/wishlist-view-footer.php:43
|
732 |
-
msgid "Add to cart"
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
#: ../plugin-options/wishlist_page-options.php:247
|
736 |
msgid "Style & color customization"
|
737 |
msgstr ""
|
@@ -756,336 +1098,398 @@ msgstr ""
|
|
756 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../plugin-options/wishlist_page-options.php:
|
760 |
msgid "Set the radius for the \"Add to cart\" button"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../plugin-options/wishlist_page-options.php:
|
764 |
msgid "\"Add to cart\" icon"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../plugin-options/wishlist_page-options.php:
|
768 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../plugin-options/wishlist_page-options.php:
|
772 |
msgid "\"Add to cart\" custom icon"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../plugin-options/wishlist_page-options.php:
|
776 |
-
msgid "
|
|
|
|
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../plugin-options/wishlist_page-options.php:
|
780 |
msgid "Primary button style"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../plugin-options/wishlist_page-options.php:
|
784 |
-
msgid "
|
|
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../plugin-options/wishlist_page-options.php:
|
788 |
-
msgid "
|
|
|
|
|
|
|
|
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../plugin-options/wishlist_page-options.php:
|
792 |
msgid "Secondary button style"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../plugin-options/wishlist_page-options.php:
|
796 |
-
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../plugin-options/wishlist_page-options.php:
|
800 |
msgid "Wishlist table style"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../plugin-options/wishlist_page-options.php:
|
804 |
-
msgid "
|
|
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../plugin-options/wishlist_page-options.php:
|
808 |
msgid "Highlight color"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../plugin-options/wishlist_page-options.php:
|
812 |
-
msgid "
|
|
|
|
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../plugin-options/wishlist_page-options.php:
|
816 |
msgid "Share button text color"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../plugin-options/wishlist_page-options.php:
|
820 |
msgid "Choose colors for share buttons text"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../plugin-options/wishlist_page-options.php:
|
824 |
msgid "Text hover"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../plugin-options/wishlist_page-options.php:
|
828 |
msgid "Facebook share button icon"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../plugin-options/wishlist_page-options.php:
|
832 |
msgid "Select an icon for the Facebook share button"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../plugin-options/wishlist_page-options.php:
|
836 |
msgid "Facebook share button custom icon"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../plugin-options/wishlist_page-options.php:
|
840 |
-
msgid "
|
|
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../plugin-options/wishlist_page-options.php:
|
844 |
msgid "Facebook share button style"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: ../plugin-options/wishlist_page-options.php:
|
848 |
msgid "Choose colors for Facebook share button"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../plugin-options/wishlist_page-options.php:
|
|
|
|
|
|
|
|
|
852 |
msgid "Background hover"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../plugin-options/wishlist_page-options.php:
|
856 |
msgid "Twitter share button icon"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../plugin-options/wishlist_page-options.php:
|
860 |
msgid "Select an icon for the Twitter share button"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../plugin-options/wishlist_page-options.php:
|
864 |
msgid "Twitter share button custom icon"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../plugin-options/wishlist_page-options.php:
|
868 |
-
msgid "
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../plugin-options/wishlist_page-options.php:
|
872 |
msgid "Twitter share button style"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../plugin-options/wishlist_page-options.php:
|
876 |
msgid "Choose colors for Twitter share button"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../plugin-options/wishlist_page-options.php:
|
880 |
msgid "Pinterest share button icon"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../plugin-options/wishlist_page-options.php:
|
884 |
msgid "Select an icon for the Pinterest share button"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../plugin-options/wishlist_page-options.php:
|
888 |
msgid "Pinterest share button custom icon"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../plugin-options/wishlist_page-options.php:
|
892 |
-
msgid "
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../plugin-options/wishlist_page-options.php:
|
896 |
msgid "Pinterest share button style"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: ../plugin-options/wishlist_page-options.php:
|
900 |
msgid "Choose colors for Pinterest share button"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../plugin-options/wishlist_page-options.php:
|
904 |
msgid "Email share button icon"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../plugin-options/wishlist_page-options.php:
|
908 |
msgid "Select an icon for the Email share button"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../plugin-options/wishlist_page-options.php:
|
912 |
msgid "Email share button custom icon"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../plugin-options/wishlist_page-options.php:
|
916 |
-
msgid "
|
|
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../plugin-options/wishlist_page-options.php:
|
920 |
msgid "Email share button style"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../plugin-options/wishlist_page-options.php:
|
924 |
msgid "Choose colors for the Email share button"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../plugin-options/wishlist_page-options.php:
|
928 |
msgid "WhatsApp share button icon"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: ../plugin-options/wishlist_page-options.php:
|
932 |
msgid "Select an icon for the WhatsApp share button"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../plugin-options/wishlist_page-options.php:
|
936 |
msgid "WhatsApp share button custom icon"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../plugin-options/wishlist_page-options.php:
|
940 |
-
msgid "
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../plugin-options/wishlist_page-options.php:
|
944 |
msgid "WhatsApp share button style"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../plugin-options/wishlist_page-options.php:
|
948 |
msgid "Choose colors for WhatsApp share button"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: ../templates/
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
msgid "View ›"
|
957 |
msgstr ""
|
|
|
|
|
958 |
|
959 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
960 |
-
|
961 |
-
msgstr "%1$s프리미업 버전%2$s%3$s %1$sYITH WooCommerce Wishlist%2$s 모든 기능의 장점을 사용하기위해 업그레이드 하십시요!"
|
962 |
-
|
963 |
-
#: ../templates/admin/wishlist-panel-premium.php:169, ../templates/admin/wishlist-panel-premium.php:310
|
964 |
msgid "Upgrade"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
968 |
msgid "Premium Features"
|
969 |
msgstr "프리미엄 기능 "
|
970 |
|
971 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
972 |
msgid "Allow your customers to create multiple wishlists"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
980 |
msgid "Multiple Wishlist"
|
981 |
msgstr "다중 관심상품 "
|
982 |
|
983 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
984 |
msgid "Wishlist Private"
|
985 |
msgstr "개인 위시리스트 "
|
986 |
|
987 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
988 |
msgid "A transparent privacy management"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1000 |
-
msgid "
|
|
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1004 |
msgid "Estimate Cost"
|
1005 |
msgstr "견적 가격 "
|
1006 |
|
1007 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1008 |
msgid "Admin Panel"
|
1009 |
msgstr "관리자 패널 "
|
1010 |
|
1011 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1012 |
msgid "An advanced and more versatile management of the wishlist"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1016 |
-
msgid "
|
|
|
|
|
|
|
|
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1020 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1024 |
-
msgid "
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1028 |
msgid "Search Wishlists"
|
1029 |
msgstr "위시리스트 찾기 "
|
1030 |
|
1031 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1032 |
msgid "'ADD TO CART'"
|
1033 |
msgstr "'장바구니 담기'"
|
1034 |
|
1035 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1036 |
-
msgid "
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1040 |
-
msgid "
|
|
|
|
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1044 |
msgid "Let users buy the product right from the wishlist page"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1048 |
-
msgid "
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1052 |
msgid "DISABLE WISHLIST"
|
1053 |
msgstr "위시리스트 사용 불가능"
|
1054 |
|
1055 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1056 |
msgid "Choose a charming layout for your wishlist page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1060 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1064 |
msgid "UNLOGGED USERS"
|
1065 |
msgstr "비로그인 사용자 "
|
1066 |
|
1067 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1068 |
msgid "Wishlist widgets for the header and sidebars"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1072 |
-
msgid "
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1076 |
msgid "POPULAR TABLE"
|
1077 |
msgstr "인기상품 나타내기"
|
1078 |
|
1079 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1080 |
msgid "FUNCTIONALITIES"
|
1081 |
msgstr "기능들 "
|
1082 |
|
1083 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1084 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../templates/admin/wishlist-panel-premium.php:
|
1088 |
-
msgid "
|
|
|
|
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../templates/share.php:45, ../templates/share.php:46
|
@@ -1124,43 +1528,50 @@ msgstr ""
|
|
1124 |
msgid "this wishlist link and share it anywhere)"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../templates/wishlist-view-footer-mobile.php:41,
|
|
|
1128 |
msgid "Apply this action to all the selected items:"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: ../templates/wishlist-view-footer-mobile.php:46,
|
|
|
1132 |
msgid "Remove from wishlist"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
|
|
|
|
|
1136 |
msgid "Move to %s"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../templates/wishlist-view-footer-mobile.php:63,
|
|
|
1140 |
msgid "Apply"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../templates/wishlist-view-footer-mobile.php:71,
|
|
|
1144 |
msgid "Update"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../templates/wishlist-view-footer-mobile.php:77,
|
|
|
1148 |
msgid "Add all to cart"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../templates/wishlist-view-footer-mobile.php:87
|
1152 |
msgid "Ask for an estimate"
|
1153 |
msgstr "견적가 요청 "
|
1154 |
|
1155 |
-
#: ../templates/wishlist-view-header.php:
|
1156 |
msgid "Edit title"
|
1157 |
msgstr "타이틀 편집 "
|
1158 |
|
1159 |
-
#: ../templates/wishlist-view-header.php:
|
1160 |
msgid "Save"
|
1161 |
msgstr "저장 "
|
1162 |
|
1163 |
-
#: ../templates/wishlist-view-header.php:
|
1164 |
msgid "Cancel"
|
1165 |
msgstr "취소 "
|
1166 |
|
@@ -1180,94 +1591,61 @@ msgstr ""
|
|
1180 |
msgid "Stock:"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1184 |
msgid "Out of stock"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../templates/wishlist-view-mobile.php:178,
|
|
|
1188 |
msgid "In Stock"
|
1189 |
msgstr "재고 있음 "
|
1190 |
|
1191 |
-
#: ../templates/wishlist-view-mobile.php:197,
|
|
|
1192 |
msgid "Move"
|
1193 |
msgstr "이동 "
|
1194 |
|
1195 |
-
#: ../templates/wishlist-view-mobile.php:216,
|
|
|
1196 |
msgid "Move to another list ›"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../templates/wishlist-view-mobile.php:224,
|
|
|
1200 |
msgid "Remove this product"
|
1201 |
msgstr "이 상품 제거 "
|
1202 |
|
1203 |
-
#: ../templates/wishlist-view-mobile.php:234,
|
|
|
1204 |
msgid "No products added to the wishlist"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../templates/wishlist-view.php:
|
1208 |
msgid "Product name"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: ../templates/wishlist-view.php:
|
1212 |
msgid "Unit price"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../templates/wishlist-view.php:
|
1216 |
msgid "Quantity"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: ../templates/wishlist-view.php:
|
1220 |
msgid "Stock status"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: ../templates/wishlist-view.php:
|
1224 |
msgid "Arrange"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
|
|
|
1228 |
msgid "Added on: %s"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../templates/wishlist-view.php:
|
1232 |
msgid "Remove"
|
1233 |
msgstr "제거 "
|
1234 |
-
|
1235 |
-
#: ../includes/class.yith-wcwl-install.php:364
|
1236 |
-
msgctxt "page_slug"
|
1237 |
-
msgid "wishlist"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../includes/class.yith-wcwl-privacy.php:222
|
1241 |
-
msgctxt "date when wishlist was created"
|
1242 |
-
msgid "Created on"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: ../includes/class.yith-wcwl-shortcode.php:45
|
1246 |
-
msgctxt "[gutenberg]: block name"
|
1247 |
-
msgid "YITH Add to wishlist"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../includes/class.yith-wcwl-shortcode.php:94
|
1251 |
-
msgctxt "[gutenberg]: block name"
|
1252 |
-
msgid "YITH Wishlist"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/class.yith-wcwl-shortcode.php:46
|
1256 |
-
msgctxt "[gutenberg]: block description"
|
1257 |
-
msgid "Shows Add to wishlist button"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
#: ../includes/class.yith-wcwl-shortcode.php:95
|
1261 |
-
msgctxt "[gutenberg]: block description"
|
1262 |
-
msgid "Shows a list of products in wishlist"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:407
|
1266 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage"
|
1267 |
-
msgid "Price is %1$s%%"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:408
|
1271 |
-
msgctxt "Part of the template that shows price variation since addition to list; placeholder will be replaced with a price"
|
1272 |
-
msgid "(Was %2$s when added in list)"
|
1273 |
-
msgstr ""
|
4 |
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist Private"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "개인 위시리스트 "
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr "프리미엄 버전 "
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "YITH WooCommerce Wishlist"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "위시리스"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
63 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
64 |
+
msgid "View ›"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
68 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
69 |
+
msgid "or"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
73 |
+
msgid "Close"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
77 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
78 |
msgid "Product successfully removed."
|
79 |
msgstr "상품이 성공적으로 제거 되었습니다."
|
80 |
|
81 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
82 |
msgid "Please, make sure to enter a valid title"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
86 |
+
msgid ""
|
87 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
88 |
+
"are enabled."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
92 |
msgid "Product added to cart successfully"
|
93 |
msgstr ""
|
94 |
|
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 ""
|
102 |
+
|
103 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
104 |
+
msgctxt "page_slug"
|
105 |
+
msgid "wishlist"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
109 |
msgid "While you visit our site, we’ll track:"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
113 |
+
msgid ""
|
114 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
115 |
+
"users your favourite products, and to create targeted email campaigns."
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
119 |
+
msgid ""
|
120 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
121 |
+
"make them visible to the store staff"
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
125 |
+
msgid ""
|
126 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
127 |
+
"browsing our site."
|
128 |
msgstr ""
|
129 |
|
130 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
131 |
+
msgid ""
|
132 |
+
"Members of our team have access to the information you provide us with. For "
|
133 |
+
"example, both Administrators and Shop Managers can access:"
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
137 |
+
msgid ""
|
138 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
139 |
+
"settings of your wishlists"
|
140 |
msgstr ""
|
141 |
|
142 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
143 |
+
msgid ""
|
144 |
+
"Our team members have access to this information to offer you better deals "
|
145 |
+
"for the products you love."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
149 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
150 |
msgid "Customer wishlists"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
154 |
+
#: ../plugin-options/lists-options.php:23,
|
155 |
+
#: ../plugin-options/lists-options.php:30
|
156 |
msgid "Wishlists"
|
157 |
msgstr "위시리스"
|
158 |
|
178 |
msgid "Title"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
182 |
+
msgctxt "date when wishlist was created"
|
183 |
+
msgid "Created on"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
187 |
msgid "Visibility"
|
188 |
msgstr ""
|
191 |
msgid "Items added"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
195 |
+
msgctxt "[gutenberg]: block name"
|
196 |
+
msgid "YITH Add to wishlist"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
200 |
+
msgctxt "[gutenberg]: block description"
|
201 |
+
msgid "Shows Add to wishlist button"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
205 |
+
msgid ""
|
206 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
207 |
+
"product)"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
211 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
215 |
msgid "Button label (leave empty to use the default settings)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
219 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
223 |
+
msgid ""
|
224 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
225 |
+
"settings)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
229 |
+
msgid ""
|
230 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
234 |
+
msgid ""
|
235 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
236 |
+
"the default settings)"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
240 |
+
msgid ""
|
241 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
242 |
+
"settings)"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
246 |
+
msgctxt "[gutenberg]: block name"
|
247 |
+
msgid "YITH Wishlist"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
251 |
+
msgctxt "[gutenberg]: block description"
|
252 |
+
msgid "Shows a list of products in wishlist"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
256 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
260 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
261 |
msgid "Paginate"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
265 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
266 |
msgid "Do not paginate"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
270 |
msgid "Number of items to show per page"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
274 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
278 |
msgid "Share on:"
|
279 |
msgstr "공유: "
|
280 |
|
281 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
282 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
283 |
msgid "Share on Facebook"
|
284 |
msgstr "페이스북에 공유"
|
285 |
|
286 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
287 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
288 |
msgid "Tweet on Twitter"
|
289 |
msgstr "트위터에 트윗하기"
|
290 |
|
291 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
292 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
293 |
msgid "Pin on Pinterest"
|
294 |
msgstr "핀레스트에 핀하기"
|
295 |
|
296 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
297 |
msgid "Share via email"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
301 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
302 |
msgid "My wishlist on "
|
303 |
msgstr "나의 위시리스트 목록 @ %s"
|
304 |
|
305 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
306 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
307 |
msgid "Share on WhatsApp"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
311 |
msgid "Remove from list"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
315 |
msgid "Free!"
|
316 |
msgstr "프리!"
|
317 |
|
318 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
319 |
+
msgctxt ""
|
320 |
+
"Part of the template that shows price variation since addition to list; "
|
321 |
+
"placeholder will be replaced with a percentage"
|
322 |
+
msgid "Price is %1$s%%"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
326 |
+
msgctxt ""
|
327 |
+
"Part of the template that shows price variation since addition to list; "
|
328 |
+
"placeholder will be replaced with a price"
|
329 |
+
msgid "(Was %2$s when added in list)"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
#: ../includes/class.yith-wcwl.php:161
|
333 |
msgid "The item cannot be added to this wishlist"
|
334 |
msgstr ""
|
337 |
msgid "An error occurred while adding the products to the wishlist."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
341 |
msgid "Error. Unable to remove the product from the wishlist."
|
342 |
msgstr "에러, 위시리스트에서 상품제거 불가능 "
|
343 |
|
344 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
345 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
346 |
msgid "Invalid wishlist."
|
347 |
msgstr ""
|
348 |
|
350 |
msgid "Invalid wishlist item."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#. translators: 1. Number of users.
|
354 |
+
#: ../includes/functions.yith-wcwl.php:216
|
355 |
msgid "%d user"
|
356 |
msgid_plural "%d users"
|
357 |
msgstr[0] ""
|
358 |
msgstr[1] ""
|
359 |
|
360 |
+
#: ../includes/functions.yith-wcwl.php:217
|
361 |
msgid "has this item in wishlist"
|
362 |
msgid_plural "have this item in wishlist"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ../includes/functions.yith-wcwl.php:219
|
367 |
msgid "You're the first"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../includes/functions.yith-wcwl.php:220
|
371 |
msgid "to add this item in wishlist"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
375 |
+
#: ../includes/functions.yith-wcwl.php:224
|
376 |
msgid "You and %s user"
|
377 |
msgid_plural "You and %d users"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ../includes/functions.yith-wcwl.php:225
|
382 |
msgid "have this item in wishlist"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../includes/functions.yith-wcwl.php:460
|
386 |
+
msgid "None"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../includes/functions.yith-wcwl.php:461
|
390 |
+
#, fuzzy
|
391 |
+
#| msgid "Custom CSS"
|
392 |
+
msgid "Custom"
|
393 |
+
msgstr "커스텀 CSS"
|
394 |
+
|
395 |
+
#: ../includes/functions.yith-wcwl.php:553
|
396 |
msgid "Shared"
|
397 |
msgstr "공유됨 "
|
398 |
|
399 |
+
#: ../includes/functions.yith-wcwl.php:557
|
400 |
+
msgid "Only people with a link to this list can see it"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../includes/functions.yith-wcwl.php:563
|
404 |
msgid "Private"
|
405 |
msgstr "개인 "
|
406 |
|
407 |
+
#: ../includes/functions.yith-wcwl.php:567
|
408 |
+
msgid "Only you can see this list"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../includes/functions.yith-wcwl.php:573
|
412 |
msgid "Public"
|
413 |
msgstr "공용 "
|
414 |
|
415 |
+
#: ../includes/functions.yith-wcwl.php:577
|
416 |
+
msgid "Anyone can search for and see this list"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
420 |
+
msgctxt "Elementor widget name"
|
421 |
+
msgid "YITH Wishlist Add button"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
425 |
+
#, fuzzy
|
426 |
+
#| msgid "Product added!"
|
427 |
+
msgctxt "Elementor section title"
|
428 |
+
msgid "Product"
|
429 |
+
msgstr "상품이 추가됨!"
|
430 |
+
|
431 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
432 |
+
#, fuzzy
|
433 |
+
#| msgid "Product added!"
|
434 |
+
msgctxt "Elementor control label"
|
435 |
+
msgid "Product ID"
|
436 |
+
msgstr "상품이 추가됨!"
|
437 |
+
|
438 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
439 |
+
msgctxt "Elementor section title"
|
440 |
+
msgid "Labels"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
444 |
+
msgctxt "Elementor control label"
|
445 |
+
msgid "Button label"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
449 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
450 |
+
msgid "Add to wishlist"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
454 |
+
#, fuzzy
|
455 |
+
#| msgid "\"Browse wishlist\" text"
|
456 |
+
msgctxt "Elementor control label"
|
457 |
+
msgid "\"Browse wishlist\" label"
|
458 |
+
msgstr "\"위시리스트 둘러보기\" 텍스트"
|
459 |
+
|
460 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
461 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
462 |
+
msgid "Browse wishlist"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
466 |
+
#, fuzzy
|
467 |
+
#| msgid "\"Product already in wishlist\" text"
|
468 |
+
msgctxt "Elementor control label"
|
469 |
+
msgid "\"Product already in wishlist\" label"
|
470 |
+
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"
|
471 |
+
|
472 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
473 |
+
#, fuzzy
|
474 |
+
#| msgid "\"Product already in wishlist\" text"
|
475 |
+
msgid "Product already in wishlist"
|
476 |
+
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"
|
477 |
+
|
478 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
479 |
+
#, fuzzy
|
480 |
+
#| msgid "\"Product already in wishlist\" text"
|
481 |
+
msgctxt "Elementor control label"
|
482 |
+
msgid "\"Product added to wishlist\" label"
|
483 |
+
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"
|
484 |
+
|
485 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
486 |
+
#, fuzzy
|
487 |
+
#| msgid "\"Product already in wishlist\" text"
|
488 |
+
msgid "Product added to wishlist"
|
489 |
+
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"
|
490 |
+
|
491 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
492 |
+
msgctxt "Elementor section title"
|
493 |
+
msgid "Advanced"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
497 |
+
msgctxt "Elementor control label"
|
498 |
+
msgid "URL of the wishlist page"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
502 |
+
msgctxt "Elementor control label"
|
503 |
+
msgid "Icon for the button"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
507 |
+
msgctxt "Elementor control label"
|
508 |
+
msgid "Additional CSS classes for the button"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
512 |
+
#, fuzzy
|
513 |
+
#| msgid "Wishlist"
|
514 |
+
msgctxt "Elementor widget name"
|
515 |
+
msgid "YITH Wishlist"
|
516 |
+
msgstr "위시리스"
|
517 |
+
|
518 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
519 |
+
#, fuzzy
|
520 |
+
#| msgid "Wishlist"
|
521 |
+
msgctxt "Elementor section title"
|
522 |
+
msgid "Wishlist"
|
523 |
+
msgstr "위시리스"
|
524 |
+
|
525 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
526 |
+
#, fuzzy
|
527 |
+
#| msgid "Wishlist"
|
528 |
+
msgctxt "Elementor control label"
|
529 |
+
msgid "Wishlist ID"
|
530 |
+
msgstr "위시리스"
|
531 |
+
|
532 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
533 |
+
msgctxt "Elementor section title"
|
534 |
+
msgid "Pagination"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
538 |
+
msgctxt "Elementor control label"
|
539 |
+
msgid "Paginate items"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
543 |
+
msgctxt "yith-woocommerce-wishlist"
|
544 |
+
msgid "Items per page"
|
545 |
msgstr ""
|
546 |
|
547 |
#: ../init.php:4
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../init.php:5
|
552 |
+
msgid ""
|
553 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
554 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
555 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
556 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
557 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
558 |
msgstr ""
|
559 |
|
560 |
#: ../init.php:7
|
565 |
msgid "https://yithemes.com/"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../init.php:141
|
569 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
570 |
+
msgstr ""
|
571 |
+
"YITH WooCommerce Wishlist가 활성화 되었으나 사용 불가능. 사용하기 위해서는 우"
|
572 |
+
"커머스가 필요합니다."
|
573 |
|
574 |
+
#: ../init.php:151
|
575 |
msgid "You can't activate the free version of"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../init.php:151
|
579 |
msgid "while you are using the premium one."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
583 |
+
#: ../plugin-options/settings-options.php:23
|
584 |
msgid "General Settings"
|
585 |
msgstr "일반 설정 "
|
586 |
|
587 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
588 |
+
msgid "After product is added to wishlist"
|
589 |
msgstr ""
|
590 |
|
591 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
592 |
+
msgid ""
|
593 |
+
"Choose the look of the Wishlist button when the product has already been "
|
594 |
+
"added to a wishlist"
|
595 |
msgstr ""
|
596 |
|
597 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
611 |
msgstr ""
|
612 |
|
613 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
614 |
+
msgid ""
|
615 |
+
"Loop options will be visible on Shop page, category pages, product "
|
616 |
+
"shortcodes, products sliders, and all the other places where the WooCommerce "
|
617 |
+
"products' loop is used"
|
618 |
msgstr ""
|
619 |
|
620 |
#: ../plugin-options/add_to_wishlist-options.php:53
|
630 |
msgstr ""
|
631 |
|
632 |
#: ../plugin-options/add_to_wishlist-options.php:63
|
633 |
+
msgid ""
|
634 |
+
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
|
635 |
+
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
|
636 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
637 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
638 |
msgstr ""
|
639 |
|
640 |
#: ../plugin-options/add_to_wishlist-options.php:70
|
649 |
msgid "After \"Add to cart\" button"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../plugin-options/add_to_wishlist-options.php:73,
|
653 |
+
#: ../plugin-options/add_to_wishlist-options.php:105
|
654 |
msgid "Use shortcode"
|
655 |
msgstr "숏코드를 사용 "
|
656 |
|
657 |
+
#: ../plugin-options/add_to_wishlist-options.php:87
|
658 |
msgid "Product page settings"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../plugin-options/add_to_wishlist-options.php:94
|
662 |
msgid "Position of \"Add to wishlist\" on product page"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../plugin-options/add_to_wishlist-options.php:95
|
666 |
+
msgid ""
|
667 |
+
"Choose where to show \"Add to wishlist\" button or link on the product page. "
|
668 |
+
"<span class=\"addon\">Copy this shortcode <span class=\"code"
|
669 |
+
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
|
670 |
+
"want to show the \"Add to wishlist\" link or button</span>"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../plugin-options/add_to_wishlist-options.php:102
|
674 |
msgid "After \"Add to cart\""
|
675 |
msgstr "장바구니 담기 뒤에"
|
676 |
|
677 |
+
#: ../plugin-options/add_to_wishlist-options.php:103
|
678 |
msgid "After thumbnails"
|
679 |
msgstr "썸네일 뒤에"
|
680 |
|
681 |
+
#: ../plugin-options/add_to_wishlist-options.php:104
|
682 |
msgid "After summary"
|
683 |
msgstr "써머리 뒤에"
|
684 |
|
685 |
+
#: ../plugin-options/add_to_wishlist-options.php:115,
|
686 |
+
#: ../plugin-options/wishlist_page-options.php:219
|
687 |
msgid "Text customization"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../plugin-options/add_to_wishlist-options.php:122
|
691 |
msgid "\"Add to wishlist\" text"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../plugin-options/add_to_wishlist-options.php:123
|
695 |
msgid "Enter a text for \"Add to wishlist\" button"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../plugin-options/add_to_wishlist-options.php:130
|
|
|
|
|
|
|
|
|
699 |
msgid "\"Product added\" text"
|
700 |
msgstr "\"상품 추가\" 텍스트 "
|
701 |
|
702 |
+
#: ../plugin-options/add_to_wishlist-options.php:131
|
703 |
+
msgid ""
|
704 |
+
"Enter the text of the message displayed when the user adds a product to the "
|
705 |
+
"wishlist"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: ../plugin-options/add_to_wishlist-options.php:133
|
709 |
msgid "Product added!"
|
710 |
msgstr "상품이 추가됨!"
|
711 |
|
712 |
+
#: ../plugin-options/add_to_wishlist-options.php:138
|
713 |
msgid "\"Browse wishlist\" text"
|
714 |
msgstr "\"위시리스트 둘러보기\" 텍스트"
|
715 |
|
716 |
+
#: ../plugin-options/add_to_wishlist-options.php:139
|
717 |
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../plugin-options/add_to_wishlist-options.php:146
|
|
|
|
|
|
|
|
|
721 |
msgid "\"Product already in wishlist\" text"
|
722 |
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"
|
723 |
|
724 |
+
#: ../plugin-options/add_to_wishlist-options.php:147
|
725 |
+
msgid ""
|
726 |
+
"Enter the text for the message displayed when the user views a product that "
|
727 |
+
"is already in the wishlist"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../plugin-options/add_to_wishlist-options.php:149
|
731 |
msgid "The product is already in your wishlist!"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../plugin-options/add_to_wishlist-options.php:159
|
735 |
msgid "Style & Color customization"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../plugin-options/add_to_wishlist-options.php:166
|
739 |
msgid "Style of \"Add to wishlist\""
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: ../plugin-options/add_to_wishlist-options.php:167
|
743 |
+
msgid ""
|
744 |
+
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../plugin-options/add_to_wishlist-options.php:170,
|
748 |
+
#: ../plugin-options/wishlist_page-options.php:258
|
749 |
msgid "Textual (anchor)"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../plugin-options/add_to_wishlist-options.php:171,
|
753 |
+
#: ../plugin-options/wishlist_page-options.php:259
|
754 |
msgid "Button with theme style"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../plugin-options/add_to_wishlist-options.php:172,
|
758 |
+
#: ../plugin-options/wishlist_page-options.php:260
|
759 |
msgid "Button with custom style"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../plugin-options/add_to_wishlist-options.php:180
|
763 |
msgid "\"Add to wishlist\" button style"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../plugin-options/add_to_wishlist-options.php:186
|
767 |
msgid "Choose colors for the \"Add to wishlist\" button"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../plugin-options/add_to_wishlist-options.php:188,
|
771 |
+
#: ../plugin-options/wishlist_page-options.php:276,
|
772 |
+
#: ../plugin-options/wishlist_page-options.php:365,
|
773 |
+
#: ../plugin-options/wishlist_page-options.php:414,
|
774 |
+
#: ../plugin-options/wishlist_page-options.php:462,
|
775 |
+
#: ../plugin-options/wishlist_page-options.php:549,
|
776 |
+
#: ../plugin-options/wishlist_page-options.php:589,
|
777 |
+
#: ../plugin-options/wishlist_page-options.php:629,
|
778 |
+
#: ../plugin-options/wishlist_page-options.php:669,
|
779 |
+
#: ../plugin-options/wishlist_page-options.php:709
|
780 |
msgid "Background"
|
781 |
msgstr "백그라운드 "
|
782 |
|
783 |
+
#: ../plugin-options/add_to_wishlist-options.php:193,
|
784 |
+
#: ../plugin-options/wishlist_page-options.php:281,
|
785 |
+
#: ../plugin-options/wishlist_page-options.php:370,
|
786 |
+
#: ../plugin-options/wishlist_page-options.php:419,
|
787 |
+
#: ../plugin-options/wishlist_page-options.php:467,
|
788 |
+
#: ../plugin-options/wishlist_page-options.php:504
|
789 |
msgid "Text"
|
790 |
msgstr "텍스트 "
|
791 |
|
792 |
+
#: ../plugin-options/add_to_wishlist-options.php:198,
|
793 |
+
#: ../plugin-options/wishlist_page-options.php:286,
|
794 |
+
#: ../plugin-options/wishlist_page-options.php:375,
|
795 |
+
#: ../plugin-options/wishlist_page-options.php:424,
|
796 |
+
#: ../plugin-options/wishlist_page-options.php:472
|
797 |
msgid "Border"
|
798 |
msgstr "경계 "
|
799 |
|
800 |
+
#: ../plugin-options/add_to_wishlist-options.php:204
|
801 |
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../plugin-options/add_to_wishlist-options.php:206,
|
805 |
+
#: ../plugin-options/wishlist_page-options.php:294,
|
806 |
+
#: ../plugin-options/wishlist_page-options.php:383,
|
807 |
+
#: ../plugin-options/wishlist_page-options.php:432
|
808 |
msgid "Background Hover"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../plugin-options/add_to_wishlist-options.php:211,
|
812 |
+
#: ../plugin-options/wishlist_page-options.php:299,
|
813 |
+
#: ../plugin-options/wishlist_page-options.php:388,
|
814 |
+
#: ../plugin-options/wishlist_page-options.php:437
|
815 |
msgid "Text Hover"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../plugin-options/add_to_wishlist-options.php:216,
|
819 |
+
#: ../plugin-options/wishlist_page-options.php:304,
|
820 |
+
#: ../plugin-options/wishlist_page-options.php:393,
|
821 |
+
#: ../plugin-options/wishlist_page-options.php:442
|
822 |
msgid "Border Hover"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../plugin-options/add_to_wishlist-options.php:229,
|
826 |
+
#: ../plugin-options/wishlist_page-options.php:317
|
827 |
msgid "Border radius"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../plugin-options/add_to_wishlist-options.php:230
|
831 |
msgid "Choose radius for the \"Add to wishlist\" button"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../plugin-options/add_to_wishlist-options.php:244
|
835 |
msgid "\"Add to wishlist\" icon"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../plugin-options/add_to_wishlist-options.php:245
|
839 |
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../plugin-options/add_to_wishlist-options.php:255
|
843 |
msgid "\"Add to wishlist\" custom icon"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../plugin-options/add_to_wishlist-options.php:256,
|
847 |
+
#: ../plugin-options/add_to_wishlist-options.php:280
|
848 |
+
msgid ""
|
849 |
+
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
|
850 |
+
"32px x 32px)"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../plugin-options/add_to_wishlist-options.php:268
|
854 |
msgid "\"Added to wishlist\" icon"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../plugin-options/add_to_wishlist-options.php:269
|
858 |
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../plugin-options/add_to_wishlist-options.php:275
|
862 |
msgid "Same used for Add to wishlist"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../plugin-options/add_to_wishlist-options.php:279
|
866 |
msgid "\"Added to wishlist\" custom icon"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../plugin-options/add_to_wishlist-options.php:292
|
870 |
msgid "Custom CSS"
|
871 |
msgstr "커스텀 CSS"
|
872 |
|
873 |
+
#: ../plugin-options/add_to_wishlist-options.php:293
|
874 |
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: ../plugin-options/lists-options.php:32
|
878 |
+
#, fuzzy
|
879 |
+
#| msgid "Search Wishlists"
|
880 |
+
msgid "Search list"
|
881 |
+
msgstr "위시리스트 찾기 "
|
882 |
+
|
883 |
#: ../plugin-options/settings-options.php:17
|
884 |
+
msgid ""
|
885 |
+
"If you want to take advantage of this feature, you could consider purchasing "
|
886 |
+
"the %s."
|
887 |
msgstr ""
|
888 |
|
889 |
#: ../plugin-options/settings-options.php:30
|
899 |
msgstr "YITH WooCommerce 와 함께 자주 구매되는 연결"
|
900 |
|
901 |
#: ../plugin-options/settings-options.php:46
|
902 |
+
msgid ""
|
903 |
+
"In order to use this integration you have to install and activate YITH "
|
904 |
+
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
|
905 |
msgstr ""
|
906 |
|
907 |
#: ../plugin-options/settings-options.php:51
|
909 |
msgstr "위시리스트내 슬라이더 사용 "
|
910 |
|
911 |
#: ../plugin-options/settings-options.php:52
|
912 |
+
msgid ""
|
913 |
+
"Enable the slider with linked products on the Wishlist page (<a href=\"%s\" "
|
914 |
+
"class=\"thickbox\">Example</a>). %s"
|
915 |
msgstr ""
|
916 |
|
917 |
#: ../plugin-options/wishlist_page-options.php:17
|
923 |
msgstr ""
|
924 |
|
925 |
#: ../plugin-options/wishlist_page-options.php:25
|
926 |
+
msgid ""
|
927 |
+
"Pick a page as the main Wishlist page; make sure you add the <span class="
|
928 |
+
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
|
929 |
+
"content"
|
930 |
msgstr ""
|
931 |
|
932 |
#: ../plugin-options/wishlist_page-options.php:38
|
933 |
msgid "Wishlist Detail Page"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: ../plugin-options/wishlist_page-options.php:45,
|
937 |
+
#: ../plugin-options/wishlist_page-options.php:54,
|
938 |
+
#: ../plugin-options/wishlist_page-options.php:63,
|
939 |
+
#: ../plugin-options/wishlist_page-options.php:72,
|
940 |
+
#: ../plugin-options/wishlist_page-options.php:81,
|
941 |
+
#: ../plugin-options/wishlist_page-options.php:90,
|
942 |
+
#: ../plugin-options/wishlist_page-options.php:99
|
943 |
msgid "In wishlist table show"
|
944 |
msgstr ""
|
945 |
|
964 |
msgstr ""
|
965 |
|
966 |
#: ../plugin-options/wishlist_page-options.php:91
|
967 |
+
msgid ""
|
968 |
+
"Icon to remove the product from the wishlist - to the left of the product"
|
969 |
msgstr ""
|
970 |
|
971 |
#: ../plugin-options/wishlist_page-options.php:100
|
972 |
+
msgid ""
|
973 |
+
"Button to remove the product from the wishlist - to the right of the product"
|
974 |
msgstr ""
|
975 |
|
976 |
#: ../plugin-options/wishlist_page-options.php:108
|
978 |
msgstr "장바구니로 다시돌리기"
|
979 |
|
980 |
#: ../plugin-options/wishlist_page-options.php:109
|
981 |
+
msgid ""
|
982 |
+
"Redirect users to the cart page when they add a product to the cart from the "
|
983 |
+
"wishlist page"
|
984 |
msgstr ""
|
985 |
|
986 |
#: ../plugin-options/wishlist_page-options.php:117
|
988 |
msgstr "장바구니에 담고나면 제거"
|
989 |
|
990 |
#: ../plugin-options/wishlist_page-options.php:118
|
991 |
+
msgid ""
|
992 |
+
"Remove the product from the wishlist after it has been added to the cart"
|
993 |
msgstr ""
|
994 |
|
995 |
#: ../plugin-options/wishlist_page-options.php:126
|
1000 |
msgid "Enable this option to let users share their wishlist on social media"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: ../plugin-options/wishlist_page-options.php:135,
|
1004 |
+
#: ../plugin-options/wishlist_page-options.php:144,
|
1005 |
+
#: ../plugin-options/wishlist_page-options.php:153,
|
1006 |
+
#: ../plugin-options/wishlist_page-options.php:162,
|
1007 |
+
#: ../plugin-options/wishlist_page-options.php:171
|
1008 |
msgid "Share on social media"
|
1009 |
msgstr ""
|
1010 |
|
1028 |
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: ../plugin-options/wishlist_page-options.php:192
|
1032 |
msgid "My wishlist on %s"
|
1033 |
msgstr "나의 위시리스트 목록 @ %s"
|
1034 |
|
1037 |
msgstr "소셜 텍스트 "
|
1038 |
|
1039 |
#: ../plugin-options/wishlist_page-options.php:198
|
1040 |
+
msgid ""
|
1041 |
+
"Type the message you want to publish when you share your wishlist on Twitter "
|
1042 |
+
"and Pinterest"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
#: ../plugin-options/wishlist_page-options.php:206
|
1055 |
msgstr ""
|
1056 |
|
1057 |
#: ../plugin-options/wishlist_page-options.php:227
|
1058 |
+
msgid ""
|
1059 |
+
"Enter a name for the default wishlist. This is the wishlist that will be "
|
1060 |
+
"automatically generated for all users if they do not create any custom one"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: ../plugin-options/wishlist_page-options.php:229
|
1064 |
+
#, fuzzy
|
1065 |
+
#| msgid "My wishlist on "
|
1066 |
+
msgid "My wishlist"
|
1067 |
+
msgstr "나의 위시리스트 목록 @ %s"
|
1068 |
+
|
1069 |
#: ../plugin-options/wishlist_page-options.php:234
|
1070 |
msgid "\"Add to cart\" text"
|
1071 |
msgstr ""
|
1074 |
msgid "Enter a text for the \"Add to cart\" button"
|
1075 |
msgstr ""
|
1076 |
|
|
|
|
|
|
|
|
|
1077 |
#: ../plugin-options/wishlist_page-options.php:247
|
1078 |
msgid "Style & color customization"
|
1079 |
msgstr ""
|
1098 |
msgid "Choose colors for the \"Add to cart\" button on hover state"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: ../plugin-options/wishlist_page-options.php:318
|
1102 |
msgid "Set the radius for the \"Add to cart\" button"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../plugin-options/wishlist_page-options.php:332
|
1106 |
msgid "\"Add to cart\" icon"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: ../plugin-options/wishlist_page-options.php:333
|
1110 |
msgid "Select an icon for the \"Add to cart\" button (optional)"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: ../plugin-options/wishlist_page-options.php:348
|
1114 |
msgid "\"Add to cart\" custom icon"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: ../plugin-options/wishlist_page-options.php:349
|
1118 |
+
msgid ""
|
1119 |
+
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
|
1120 |
+
"32px x 32px)"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: ../plugin-options/wishlist_page-options.php:357
|
1124 |
msgid "Primary button style"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: ../plugin-options/wishlist_page-options.php:363
|
1128 |
+
msgid ""
|
1129 |
+
"Choose colors for the primary button<br/><small>This style will be applied "
|
1130 |
+
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
|
1131 |
+
"Manage view and \"Search wishlist\" button on Search view</small>"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: ../plugin-options/wishlist_page-options.php:381
|
1135 |
+
msgid ""
|
1136 |
+
"Choose colors for the primary button on hover state<br/><small>This style "
|
1137 |
+
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
|
1138 |
+
"\" button on Manage view and \"Search wishlist\" button on Search view</"
|
1139 |
+
"small>"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../plugin-options/wishlist_page-options.php:406
|
1143 |
msgid "Secondary button style"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../plugin-options/wishlist_page-options.php:412,
|
1147 |
+
#: ../plugin-options/wishlist_page-options.php:430
|
1148 |
+
msgid ""
|
1149 |
+
"Choose colors of the secondary button<br/><small>This style will be applied "
|
1150 |
+
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
|
1151 |
+
"view and \"Create new Wishlist\" button on Manage view</small>"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../plugin-options/wishlist_page-options.php:455
|
1155 |
msgid "Wishlist table style"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../plugin-options/wishlist_page-options.php:456
|
1159 |
+
msgid ""
|
1160 |
+
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../plugin-options/wishlist_page-options.php:484
|
1164 |
msgid "Highlight color"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: ../plugin-options/wishlist_page-options.php:485
|
1168 |
+
msgid ""
|
1169 |
+
"Choose the color for all sections with background<br/><small>This color will "
|
1170 |
+
"be used as background for the wishlist table heading and footer (when set to "
|
1171 |
+
"\"Traditional\" layout), and for various form across wishlist views</small>"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../plugin-options/wishlist_page-options.php:497
|
1175 |
msgid "Share button text color"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../plugin-options/wishlist_page-options.php:498
|
1179 |
msgid "Choose colors for share buttons text"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../plugin-options/wishlist_page-options.php:509
|
1183 |
msgid "Text hover"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../plugin-options/wishlist_page-options.php:522
|
1187 |
msgid "Facebook share button icon"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../plugin-options/wishlist_page-options.php:523
|
1191 |
msgid "Select an icon for the Facebook share button"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../plugin-options/wishlist_page-options.php:533
|
1195 |
msgid "Facebook share button custom icon"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../plugin-options/wishlist_page-options.php:534
|
1199 |
+
msgid ""
|
1200 |
+
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
|
1201 |
+
"32px)"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: ../plugin-options/wishlist_page-options.php:542
|
1205 |
msgid "Facebook share button style"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: ../plugin-options/wishlist_page-options.php:543
|
1209 |
msgid "Choose colors for Facebook share button"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: ../plugin-options/wishlist_page-options.php:554,
|
1213 |
+
#: ../plugin-options/wishlist_page-options.php:594,
|
1214 |
+
#: ../plugin-options/wishlist_page-options.php:634,
|
1215 |
+
#: ../plugin-options/wishlist_page-options.php:674,
|
1216 |
+
#: ../plugin-options/wishlist_page-options.php:714
|
1217 |
msgid "Background hover"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../plugin-options/wishlist_page-options.php:562
|
1221 |
msgid "Twitter share button icon"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: ../plugin-options/wishlist_page-options.php:563
|
1225 |
msgid "Select an icon for the Twitter share button"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: ../plugin-options/wishlist_page-options.php:573
|
1229 |
msgid "Twitter share button custom icon"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: ../plugin-options/wishlist_page-options.php:574
|
1233 |
+
msgid ""
|
1234 |
+
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
|
1235 |
+
"32px)"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../plugin-options/wishlist_page-options.php:582
|
1239 |
msgid "Twitter share button style"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../plugin-options/wishlist_page-options.php:583
|
1243 |
msgid "Choose colors for Twitter share button"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: ../plugin-options/wishlist_page-options.php:602
|
1247 |
msgid "Pinterest share button icon"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: ../plugin-options/wishlist_page-options.php:603
|
1251 |
msgid "Select an icon for the Pinterest share button"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../plugin-options/wishlist_page-options.php:613
|
1255 |
msgid "Pinterest share button custom icon"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../plugin-options/wishlist_page-options.php:614
|
1259 |
+
msgid ""
|
1260 |
+
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
|
1261 |
+
"x 32px)"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: ../plugin-options/wishlist_page-options.php:622
|
1265 |
msgid "Pinterest share button style"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: ../plugin-options/wishlist_page-options.php:623
|
1269 |
msgid "Choose colors for Pinterest share button"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: ../plugin-options/wishlist_page-options.php:642
|
1273 |
msgid "Email share button icon"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../plugin-options/wishlist_page-options.php:643
|
1277 |
msgid "Select an icon for the Email share button"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../plugin-options/wishlist_page-options.php:653
|
1281 |
msgid "Email share button custom icon"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: ../plugin-options/wishlist_page-options.php:654
|
1285 |
+
msgid ""
|
1286 |
+
"Upload an icon you'd like to use for the Email share button (suggested 32px "
|
1287 |
+
"x 32px)"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../plugin-options/wishlist_page-options.php:662
|
1291 |
msgid "Email share button style"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../plugin-options/wishlist_page-options.php:663
|
1295 |
msgid "Choose colors for the Email share button"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../plugin-options/wishlist_page-options.php:682
|
1299 |
msgid "WhatsApp share button icon"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: ../plugin-options/wishlist_page-options.php:683
|
1303 |
msgid "Select an icon for the WhatsApp share button"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../plugin-options/wishlist_page-options.php:693
|
1307 |
msgid "WhatsApp share button custom icon"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: ../plugin-options/wishlist_page-options.php:694
|
1311 |
+
msgid ""
|
1312 |
+
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
|
1313 |
+
"32px)"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: ../plugin-options/wishlist_page-options.php:702
|
1317 |
msgid "WhatsApp share button style"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../plugin-options/wishlist_page-options.php:703
|
1321 |
msgid "Choose colors for WhatsApp share button"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: ../templates/admin/wishlist-panel-premium.php:168,
|
1325 |
+
#: ../templates/admin/wishlist-panel-premium.php:309
|
1326 |
+
msgid ""
|
1327 |
+
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
|
1328 |
+
"%2$s to benefit from all features!"
|
|
|
1329 |
msgstr ""
|
1330 |
+
"%1$s프리미업 버전%2$s%3$s %1$sYITH WooCommerce Wishlist%2$s 모든 기능의 장점"
|
1331 |
+
"을 사용하기위해 업그레이드 하십시요!"
|
1332 |
|
1333 |
+
#: ../templates/admin/wishlist-panel-premium.php:170,
|
1334 |
+
#: ../templates/admin/wishlist-panel-premium.php:311
|
|
|
|
|
|
|
1335 |
msgid "Upgrade"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: ../templates/admin/wishlist-panel-premium.php:176
|
1339 |
msgid "Premium Features"
|
1340 |
msgstr "프리미엄 기능 "
|
1341 |
|
1342 |
+
#: ../templates/admin/wishlist-panel-premium.php:180
|
1343 |
msgid "Allow your customers to create multiple wishlists"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: ../templates/admin/wishlist-panel-premium.php:182
|
1347 |
+
msgid ""
|
1348 |
+
"Christmas, Birthday... users will be able to create and manage multiple "
|
1349 |
+
"wishlists, in case they prefer to keep the products sorted by category or "
|
1350 |
+
"other parameters."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: ../templates/admin/wishlist-panel-premium.php:185
|
1354 |
msgid "Multiple Wishlist"
|
1355 |
msgstr "다중 관심상품 "
|
1356 |
|
1357 |
+
#: ../templates/admin/wishlist-panel-premium.php:192
|
1358 |
msgid "Wishlist Private"
|
1359 |
msgstr "개인 위시리스트 "
|
1360 |
|
1361 |
+
#: ../templates/admin/wishlist-panel-premium.php:196
|
1362 |
msgid "A transparent privacy management"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: ../templates/admin/wishlist-panel-premium.php:198
|
1366 |
+
msgid ""
|
1367 |
+
"Your customers can set a privacy option for each wishlist and choose whether "
|
1368 |
+
"sharing the wishlist or making it private."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../templates/admin/wishlist-panel-premium.php:206
|
1372 |
+
msgid ""
|
1373 |
+
"Allow your customers to ask for an estimate, directly from their wishlist "
|
1374 |
+
"page"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../templates/admin/wishlist-panel-premium.php:208
|
1378 |
+
msgid ""
|
1379 |
+
"And give only registered users the privilege to use the wishlist "
|
1380 |
+
"functionalities."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: ../templates/admin/wishlist-panel-premium.php:211
|
1384 |
msgid "Estimate Cost"
|
1385 |
msgstr "견적 가격 "
|
1386 |
|
1387 |
+
#: ../templates/admin/wishlist-panel-premium.php:218
|
1388 |
msgid "Admin Panel"
|
1389 |
msgstr "관리자 패널 "
|
1390 |
|
1391 |
+
#: ../templates/admin/wishlist-panel-premium.php:222
|
1392 |
msgid "An advanced and more versatile management of the wishlist"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: ../templates/admin/wishlist-panel-premium.php:224
|
1396 |
+
msgid ""
|
1397 |
+
"Your customers can sort the products in the wishlist thanks to the drag&drop "
|
1398 |
+
"option, move products from one wishlist to another, manage product quantity, "
|
1399 |
+
"download the wishlist content to a .pdf file, share the wishlist on their "
|
1400 |
+
"social networks, and much more!"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: ../templates/admin/wishlist-panel-premium.php:232
|
1404 |
msgid "Monitor your customers’ wishlists and the popular products"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: ../templates/admin/wishlist-panel-premium.php:234
|
1408 |
+
msgid ""
|
1409 |
+
"You can see your customers’ wishlists, gain insight into the products they "
|
1410 |
+
"are more interested in and plan targeted marketing strategies."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: ../templates/admin/wishlist-panel-premium.php:237
|
1414 |
msgid "Search Wishlists"
|
1415 |
msgstr "위시리스트 찾기 "
|
1416 |
|
1417 |
+
#: ../templates/admin/wishlist-panel-premium.php:244
|
1418 |
msgid "'ADD TO CART'"
|
1419 |
msgstr "'장바구니 담기'"
|
1420 |
|
1421 |
+
#: ../templates/admin/wishlist-panel-premium.php:248
|
1422 |
+
msgid ""
|
1423 |
+
"Send promotional emails for products in wishlists to push customers to buy"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: ../templates/admin/wishlist-panel-premium.php:250
|
1427 |
+
msgid ""
|
1428 |
+
"Just three clicks to send promotional emails with discount coupons to "
|
1429 |
+
"customers who have added specific products to their wishlist and push them "
|
1430 |
+
"to buy."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: ../templates/admin/wishlist-panel-premium.php:258
|
1434 |
msgid "Let users buy the product right from the wishlist page"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: ../templates/admin/wishlist-panel-premium.php:260
|
1438 |
+
msgid ""
|
1439 |
+
"Let them move products from one wishlist to the cart in one click, keeping "
|
1440 |
+
"also the information about the size, colour or quantity selected when added "
|
1441 |
+
"to the wishlist."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: ../templates/admin/wishlist-panel-premium.php:263
|
1445 |
msgid "DISABLE WISHLIST"
|
1446 |
msgstr "위시리스트 사용 불가능"
|
1447 |
|
1448 |
+
#: ../templates/admin/wishlist-panel-premium.php:271
|
1449 |
msgid "Choose a charming layout for your wishlist page"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: ../templates/admin/wishlist-panel-premium.php:273
|
1453 |
+
msgid ""
|
1454 |
+
"The wishlist is one of the most used functionalities in an ecommerce store "
|
1455 |
+
"but often the page layout is not enhanced enough and looks unattractive to "
|
1456 |
+
"the user. With our plugin, you can choose among some alternative layouts and "
|
1457 |
+
"offer an even more interesting experience to users who creates a wishlist on "
|
1458 |
+
"your website."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: ../templates/admin/wishlist-panel-premium.php:276
|
1462 |
msgid "UNLOGGED USERS"
|
1463 |
msgstr "비로그인 사용자 "
|
1464 |
|
1465 |
+
#: ../templates/admin/wishlist-panel-premium.php:284
|
1466 |
msgid "Wishlist widgets for the header and sidebars"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: ../templates/admin/wishlist-panel-premium.php:286
|
1470 |
+
msgid ""
|
1471 |
+
"Increase the wishlist visibility through our modern widgets that you can use "
|
1472 |
+
"in the header, in the sidebars, wherever you want."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: ../templates/admin/wishlist-panel-premium.php:289
|
1476 |
msgid "POPULAR TABLE"
|
1477 |
msgstr "인기상품 나타내기"
|
1478 |
|
1479 |
+
#: ../templates/admin/wishlist-panel-premium.php:296
|
1480 |
msgid "FUNCTIONALITIES"
|
1481 |
msgstr "기능들 "
|
1482 |
|
1483 |
+
#: ../templates/admin/wishlist-panel-premium.php:300
|
1484 |
msgid "Allow users to monitor the price of the products in their wishlist"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: ../templates/admin/wishlist-panel-premium.php:302
|
1488 |
+
msgid ""
|
1489 |
+
"We took inspiration from one of the most interesting features of Amazon "
|
1490 |
+
"product pages: from now on, users can realise what’s the best time to buy a "
|
1491 |
+
"product and how much they can save when there’s a promotion running or a "
|
1492 |
+
"discount on the product they’ve added to the wishlist."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: ../templates/share.php:45, ../templates/share.php:46
|
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 "타이틀 편집 "
|
1569 |
|
1570 |
+
#: ../templates/wishlist-view-header.php:48
|
1571 |
msgid "Save"
|
1572 |
msgstr "저장 "
|
1573 |
|
1574 |
+
#: ../templates/wishlist-view-header.php:51
|
1575 |
msgid "Cancel"
|
1576 |
msgstr "취소 "
|
1577 |
|
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 ›"
|
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 ""
|
1623 |
|
1624 |
+
#: ../templates/wishlist-view.php:78
|
1625 |
msgid "Product name"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: ../templates/wishlist-view.php:86
|
1629 |
msgid "Unit price"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../templates/wishlist-view.php:95
|
1633 |
msgid "Quantity"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: ../templates/wishlist-view.php:104
|
1637 |
msgid "Stock status"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: ../templates/wishlist-view.php:122
|
1641 |
msgid "Arrange"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#. translators: date added label: 1 date added.
|
1645 |
+
#: ../templates/wishlist-view.php:238
|
1646 |
msgid "Added on: %s"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: ../templates/wishlist-view.php:287
|
1650 |
msgid "Remove"
|
1651 |
msgstr "제거 "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Binary file
|
@@ -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:
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
|
11 |
"Language: nl_NL\n"
|
@@ -13,90 +13,163 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;
|
|
|
|
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
22 |
|
23 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "General settings"
|
25 |
msgstr "Algemene instellingen"
|
26 |
|
27 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
28 |
msgid "Add to wishlist options"
|
29 |
msgstr "Toevoegen aan verlanglijst opties"
|
30 |
|
31 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
32 |
msgid "Wishlist page options"
|
33 |
msgstr "Verlanglijst pagina opties"
|
34 |
|
35 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
36 |
msgid "Premium Version"
|
37 |
msgstr "Premium versie"
|
38 |
|
39 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
40 |
msgid "YITH WooCommerce Wishlist"
|
41 |
msgstr "YITH WooCommerce Wishlist"
|
42 |
|
43 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
|
|
44 |
msgid "Wishlist"
|
45 |
msgstr "Verlanglijst"
|
46 |
|
47 |
-
#: ../includes/class.yith-wcwl-admin.php:
|
48 |
-
msgid "
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
-
#: ../includes/class.yith-wcwl-ajax-handler.php:
|
|
|
52 |
msgid "Product successfully removed."
|
53 |
msgstr "Product succesvol verwijderd."
|
54 |
|
55 |
-
#: ../includes/class.yith-wcwl-form-handler.php:
|
56 |
msgid "Please, make sure to enter a valid title"
|
57 |
msgstr "let op dat u een geldige titel invoert"
|
58 |
|
59 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
60 |
-
msgid "
|
61 |
-
|
|
|
|
|
|
|
|
|
62 |
|
63 |
-
#: ../includes/class.yith-wcwl-frontend.php:
|
64 |
msgid "Product added to cart successfully"
|
65 |
msgstr "Product succesvol toegevoegd aan winkelwagen"
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
68 |
msgid "While you visit our site, we’ll track:"
|
69 |
msgstr "Terwijl u onze site bezoekt, volgen wij:"
|
70 |
|
71 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
72 |
-
msgid "
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
76 |
-
msgid "
|
77 |
-
|
|
|
|
|
|
|
|
|
78 |
|
79 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
80 |
-
msgid "
|
81 |
-
|
|
|
|
|
|
|
|
|
82 |
|
83 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
84 |
-
msgid "
|
85 |
-
|
|
|
|
|
|
|
|
|
86 |
|
87 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
88 |
-
msgid "
|
89 |
-
|
|
|
|
|
|
|
|
|
90 |
|
91 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
92 |
-
msgid "
|
93 |
-
|
|
|
|
|
|
|
|
|
94 |
|
95 |
-
#: ../includes/class.yith-wcwl-privacy.php:82,
|
|
|
96 |
msgid "Customer wishlists"
|
97 |
msgstr "Verlanglijsten klant"
|
98 |
|
99 |
-
#: ../includes/class.yith-wcwl-privacy.php:133,
|
|
|
|
|
100 |
msgid "Wishlists"
|
101 |
msgstr "Verlanglijst"
|
102 |
|
@@ -122,6 +195,11 @@ msgstr "URL verlanglijst"
|
|
122 |
msgid "Title"
|
123 |
msgstr "Titel"
|
124 |
|
|
|
|
|
|
|
|
|
|
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
126 |
msgid "Visibility"
|
127 |
msgstr "Zichtbaarheid"
|
@@ -130,107 +208,176 @@ msgstr "Zichtbaarheid"
|
|
130 |
msgid "Items added"
|
131 |
msgstr "Items toegevoegd"
|
132 |
|
133 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
134 |
-
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
139 |
-
msgstr "
|
|
|
|
|
140 |
|
141 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
142 |
msgid "Button label (leave empty to use the default settings)"
|
143 |
msgstr "Knop label (laat leeg om de standaardinstellingen te gebruiken)"
|
144 |
|
145 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
146 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
147 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
150 |
-
msgid "
|
151 |
-
|
|
|
|
|
|
|
|
|
152 |
|
153 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
154 |
-
msgid "
|
155 |
-
|
|
|
|
|
|
|
|
|
156 |
|
157 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
158 |
-
|
159 |
-
|
|
|
160 |
|
161 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
162 |
-
|
163 |
-
|
|
|
164 |
|
165 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
166 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
167 |
-
msgstr "
|
|
|
|
|
168 |
|
169 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
170 |
msgid "Paginate"
|
171 |
msgstr "Paginering"
|
172 |
|
173 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
174 |
msgid "Do not paginate"
|
175 |
msgstr "Items niet pagineren"
|
176 |
|
177 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
178 |
msgid "Number of items to show per page"
|
179 |
msgstr "Aantal items om weer te geven per pagina"
|
180 |
|
181 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
182 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
183 |
msgstr "Verlanglijst ID om weer te geven (vb. K6EOWXB888ZD)"
|
184 |
|
185 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
186 |
msgid "Share on:"
|
187 |
msgstr "Delen op:"
|
188 |
|
189 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
190 |
msgid "Share on Facebook"
|
191 |
msgstr "Delen op Facebook"
|
192 |
|
193 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
194 |
msgid "Tweet on Twitter"
|
195 |
msgstr "Tweet op Twitter"
|
196 |
|
197 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
198 |
msgid "Pin on Pinterest"
|
199 |
msgstr "Pin op Pinterest"
|
200 |
|
201 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
202 |
msgid "Share via email"
|
203 |
msgstr "Delen via e-mail"
|
204 |
|
205 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
206 |
msgid "My wishlist on "
|
207 |
msgstr "Mijn verlanglijst op %s"
|
208 |
|
209 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
|
|
210 |
msgid "Share on WhatsApp"
|
211 |
msgstr "Delen via WhatsApp"
|
212 |
|
213 |
-
#: ../includes/class.yith-wcwl-shortcode.php:
|
214 |
msgid "Remove from list"
|
215 |
msgstr "Verwijderen van lijst"
|
216 |
|
217 |
-
#: ../includes/class.yith-wcwl-wishlist-item.php:
|
218 |
msgid "Free!"
|
219 |
msgstr "Gratis!"
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
#: ../includes/class.yith-wcwl.php:161
|
222 |
msgid "The item cannot be added to this wishlist"
|
223 |
msgstr "Het item kan niet worden toegevoegd aan deze verlanglijst"
|
224 |
|
225 |
#: ../includes/class.yith-wcwl.php:165, ../includes/class.yith-wcwl.php:171
|
226 |
msgid "An error occurred while adding the products to the wishlist."
|
227 |
-
msgstr "
|
|
|
|
|
228 |
|
229 |
-
#: ../includes/class.yith-wcwl.php:
|
230 |
msgid "Error. Unable to remove the product from the wishlist."
|
231 |
msgstr "Fout. Het product kon niet van de verlanglijst worden verwijderd."
|
232 |
|
233 |
-
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
|
|
234 |
msgid "Invalid wishlist."
|
235 |
msgstr "Ongeldige verlanglijst."
|
236 |
|
@@ -238,66 +385,227 @@ msgstr "Ongeldige verlanglijst."
|
|
238 |
msgid "Invalid wishlist item."
|
239 |
msgstr "Ongeldig verlanglijst item."
|
240 |
|
241 |
-
|
|
|
242 |
msgid "%d user"
|
243 |
msgid_plural "%d users"
|
244 |
msgstr[0] "%d gebruiker"
|
245 |
msgstr[1] "%d gebruikers"
|
246 |
|
247 |
-
#: ../includes/functions.yith-wcwl.php:
|
248 |
msgid "has this item in wishlist"
|
249 |
msgid_plural "have this item in wishlist"
|
250 |
msgstr[0] "heeft dit item in de verlanglijst"
|
251 |
msgstr[1] "hebben dit item in de verlanglijst"
|
252 |
|
253 |
-
#: ../includes/functions.yith-wcwl.php:
|
254 |
msgid "You're the first"
|
255 |
msgstr "U bent de eerste"
|
256 |
|
257 |
-
#: ../includes/functions.yith-wcwl.php:
|
258 |
msgid "to add this item in wishlist"
|
259 |
msgstr "dit item toevoegen aan verlanglijst"
|
260 |
|
261 |
-
|
|
|
262 |
msgid "You and %s user"
|
263 |
msgid_plural "You and %d users"
|
264 |
msgstr[0] "U en %s gebruiker"
|
265 |
msgstr[1] "U en %s gebruikers"
|
266 |
|
267 |
-
#: ../includes/functions.yith-wcwl.php:
|
268 |
msgid "have this item in wishlist"
|
269 |
msgstr "hebben dit item in de verlanglijst"
|
270 |
|
271 |
-
#: ../includes/functions.yith-wcwl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Shared"
|
273 |
msgstr "Gedeeld"
|
274 |
|
275 |
-
#: ../includes/functions.yith-wcwl.php:
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
|
279 |
-
#: ../includes/functions.yith-wcwl.php:
|
280 |
msgid "Private"
|
281 |
msgstr "Prive"
|
282 |
|
283 |
-
#: ../includes/functions.yith-wcwl.php:
|
284 |
-
msgid "Only
|
285 |
-
msgstr "Alleen
|
286 |
|
287 |
-
#: ../includes/functions.yith-wcwl.php:
|
288 |
msgid "Public"
|
289 |
msgstr "Openbaar"
|
290 |
|
291 |
-
#: ../includes/functions.yith-wcwl.php:
|
292 |
-
msgid "
|
293 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
#: ../init.php:4
|
296 |
msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
297 |
msgstr ""
|
298 |
|
299 |
#: ../init.php:5
|
300 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: ../init.php:7
|
@@ -308,29 +616,36 @@ msgstr ""
|
|
308 |
msgid "https://yithemes.com/"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../init.php:
|
312 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../init.php:
|
316 |
msgid "You can't activate the free version of"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../init.php:
|
320 |
msgid "while you are using the premium one."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../plugin-options/add_to_wishlist-options.php:18,
|
|
|
324 |
msgid "General Settings"
|
325 |
msgstr "Algemene Instellingen"
|
326 |
|
327 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
328 |
-
|
|
|
|
|
329 |
msgstr "Wanneer een product is toegevoegd aan de verlanglijst"
|
330 |
|
331 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
332 |
-
msgid "
|
333 |
-
|
|
|
|
|
|
|
|
|
334 |
|
335 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
336 |
msgid "Show \"Add to wishilist\" button"
|
@@ -349,8 +664,14 @@ msgid "Loop settings"
|
|
349 |
msgstr "Loop instellingen"
|
350 |
|
351 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
352 |
-
msgid "Loop options will be visible on Shop page, category pages, product shortcodes, products sliders, and all the other places where the WooCommerce products' loop is
|
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"
|
13 |
"Content-Type: text/plain; charset=utf-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Poedit 2.2\n"
|
16 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
|
17 |
+
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
|
18 |
+
"_nx_noop:4c,1,2\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"
|
24 |
|
25 |
+
#: ../includes/class.yith-wcwl-admin.php:126
|
26 |
+
#, fuzzy
|
27 |
+
#| msgid "Wishlist page"
|
28 |
+
msgid "Wishlist Page"
|
29 |
+
msgstr "Verlanglijst pagina"
|
30 |
+
|
31 |
+
#: ../includes/class.yith-wcwl-admin.php:146
|
32 |
msgid "General settings"
|
33 |
msgstr "Algemene instellingen"
|
34 |
|
35 |
+
#: ../includes/class.yith-wcwl-admin.php:147
|
36 |
msgid "Add to wishlist options"
|
37 |
msgstr "Toevoegen aan verlanglijst opties"
|
38 |
|
39 |
+
#: ../includes/class.yith-wcwl-admin.php:148
|
40 |
msgid "Wishlist page options"
|
41 |
msgstr "Verlanglijst pagina opties"
|
42 |
|
43 |
+
#: ../includes/class.yith-wcwl-admin.php:149
|
44 |
msgid "Premium Version"
|
45 |
msgstr "Premium versie"
|
46 |
|
47 |
+
#: ../includes/class.yith-wcwl-admin.php:235, ../init.php:3
|
48 |
msgid "YITH WooCommerce Wishlist"
|
49 |
msgstr "YITH WooCommerce Wishlist"
|
50 |
|
51 |
+
#: ../includes/class.yith-wcwl-admin.php:236,
|
52 |
+
#: ../includes/class.yith-wcwl-install.php:348
|
53 |
msgid "Wishlist"
|
54 |
msgstr "Verlanglijst"
|
55 |
|
56 |
+
#: ../includes/class.yith-wcwl-admin.php:238
|
57 |
+
msgid ""
|
58 |
+
"Allows your customers to create and share lists of products that they want "
|
59 |
+
"to purchase on your e-commerce."
|
60 |
+
msgstr ""
|
61 |
+
"Laat uw klanten een lijst met producten die zij willen kopen in uw e-"
|
62 |
+
"commerce, maken en delen."
|
63 |
+
|
64 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:67,
|
65 |
+
#: ../templates/add-to-wishlist-remove.php:50
|
66 |
+
msgid "View ›"
|
67 |
+
msgstr "Bekijk ›"
|
68 |
+
|
69 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:68,
|
70 |
+
#: ../templates/add-to-wishlist-remove.php:49
|
71 |
+
msgid "or"
|
72 |
+
msgstr "of"
|
73 |
+
|
74 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:69
|
75 |
+
msgid "Close"
|
76 |
+
msgstr ""
|
77 |
|
78 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:133,
|
79 |
+
#: ../includes/class.yith-wcwl-ajax-handler.php:166
|
80 |
msgid "Product successfully removed."
|
81 |
msgstr "Product succesvol verwijderd."
|
82 |
|
83 |
+
#: ../includes/class.yith-wcwl-form-handler.php:154
|
84 |
msgid "Please, make sure to enter a valid title"
|
85 |
msgstr "let op dat u een geldige titel invoert"
|
86 |
|
87 |
+
#: ../includes/class.yith-wcwl-frontend.php:398
|
88 |
+
msgid ""
|
89 |
+
"We are sorry, but this feature is available only if cookies on your browser "
|
90 |
+
"are enabled."
|
91 |
+
msgstr ""
|
92 |
+
"Sorry, deze optie is alleen beschikbaar als cookies in uw browser zijn "
|
93 |
+
"ingeschakeld."
|
94 |
|
95 |
+
#: ../includes/class.yith-wcwl-frontend.php:399
|
96 |
msgid "Product added to cart successfully"
|
97 |
msgstr "Product succesvol toegevoegd aan winkelwagen"
|
98 |
|
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"
|
106 |
+
|
107 |
+
#: ../includes/class.yith-wcwl-install.php:346
|
108 |
+
msgctxt "page_slug"
|
109 |
+
msgid "wishlist"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
#: ../includes/class.yith-wcwl-privacy.php:50
|
113 |
msgid "While you visit our site, we’ll track:"
|
114 |
msgstr "Terwijl u onze site bezoekt, volgen wij:"
|
115 |
|
116 |
#: ../includes/class.yith-wcwl-privacy.php:52
|
117 |
+
msgid ""
|
118 |
+
"Products you’ve added to the wishlist: we’ll use this to show you and other "
|
119 |
+
"users your favourite products, and to create targeted email campaigns."
|
120 |
+
msgstr ""
|
121 |
+
"Producten die u aan de verlanglijst hebt toegevoegd: we gebruiken dit om u "
|
122 |
+
"en andere gebruikers onze favoriete producten te laten zien en om gerichte e-"
|
123 |
+
"mailcampagnes te maken."
|
124 |
|
125 |
#: ../includes/class.yith-wcwl-privacy.php:53
|
126 |
+
msgid ""
|
127 |
+
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
|
128 |
+
"make them visible to the store staff"
|
129 |
+
msgstr ""
|
130 |
+
"Verlanglijst die u heeft gemaakt: we houden de verlanglijst bij die u heeft "
|
131 |
+
"gemaakt, en maken deze zichtbaar voor het winkelpersoneel"
|
132 |
|
133 |
#: ../includes/class.yith-wcwl-privacy.php:55
|
134 |
+
msgid ""
|
135 |
+
"We’ll also use cookies to keep track of wishlist contents while you’re "
|
136 |
+
"browsing our site."
|
137 |
+
msgstr ""
|
138 |
+
"We zullen ook cookies gebruiken om de inhoud van uw verlanglijst bij te "
|
139 |
+
"houden terwijl u onze site bezoekt."
|
140 |
|
141 |
#: ../includes/class.yith-wcwl-privacy.php:58
|
142 |
+
msgid ""
|
143 |
+
"Members of our team have access to the information you provide us with. For "
|
144 |
+
"example, both Administrators and Shop Managers can access:"
|
145 |
+
msgstr ""
|
146 |
+
"Onze teamleden hebben toegang tot de informatie die u met ons deelt. "
|
147 |
+
"Bijvoorbeeld. zowel administrateurs en winkel managers hebben toegang tot:"
|
148 |
|
149 |
#: ../includes/class.yith-wcwl-privacy.php:60
|
150 |
+
msgid ""
|
151 |
+
"Wishlist details, such as products added, date of addition, name and privacy "
|
152 |
+
"settings of your wishlists"
|
153 |
+
msgstr ""
|
154 |
+
"Verlanglijstdetails, zoals toegevoegde producten, datum van toevoeging, naam "
|
155 |
+
"en privacy-instellingen van uw verlanglijst"
|
156 |
|
157 |
#: ../includes/class.yith-wcwl-privacy.php:62
|
158 |
+
msgid ""
|
159 |
+
"Our team members have access to this information to offer you better deals "
|
160 |
+
"for the products you love."
|
161 |
+
msgstr ""
|
162 |
+
"Onze teamleden hebben toegang tot deze informatie om u betere deals te "
|
163 |
+
"bieden voor de producten waar u van houdt."
|
164 |
|
165 |
+
#: ../includes/class.yith-wcwl-privacy.php:82,
|
166 |
+
#: ../includes/class.yith-wcwl-privacy.php:98
|
167 |
msgid "Customer wishlists"
|
168 |
msgstr "Verlanglijsten klant"
|
169 |
|
170 |
+
#: ../includes/class.yith-wcwl-privacy.php:133,
|
171 |
+
#: ../plugin-options/lists-options.php:23,
|
172 |
+
#: ../plugin-options/lists-options.php:30
|
173 |
msgid "Wishlists"
|
174 |
msgstr "Verlanglijst"
|
175 |
|
195 |
msgid "Title"
|
196 |
msgstr "Titel"
|
197 |
|
198 |
+
#: ../includes/class.yith-wcwl-privacy.php:222
|
199 |
+
msgctxt "date when wishlist was created"
|
200 |
+
msgid "Created on"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
#: ../includes/class.yith-wcwl-privacy.php:223
|
204 |
msgid "Visibility"
|
205 |
msgstr "Zichtbaarheid"
|
208 |
msgid "Items added"
|
209 |
msgstr "Items toegevoegd"
|
210 |
|
211 |
+
#: ../includes/class.yith-wcwl-shortcode.php:52
|
212 |
+
msgctxt "[gutenberg]: block name"
|
213 |
+
msgid "YITH Add to wishlist"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: ../includes/class.yith-wcwl-shortcode.php:53
|
217 |
+
msgctxt "[gutenberg]: block description"
|
218 |
+
msgid "Shows Add to wishlist button"
|
219 |
+
msgstr ""
|
220 |
|
221 |
+
#: ../includes/class.yith-wcwl-shortcode.php:58
|
222 |
+
msgid ""
|
223 |
+
"ID of the product to add to the wishlist (leave empty to use the global "
|
224 |
+
"product)"
|
225 |
+
msgstr ""
|
226 |
+
"ID van het product om toe te voegen aan verlanglijst (laat leeg om een "
|
227 |
+
"algemeen product te gebruiken)"
|
228 |
+
|
229 |
+
#: ../includes/class.yith-wcwl-shortcode.php:63
|
230 |
msgid "URL of the wishlist page (leave empty to use the default settings)"
|
231 |
+
msgstr ""
|
232 |
+
"URL van de verlanglijst pagina (laat leeg om de standaardinstellingen te "
|
233 |
+
"gebruiken)"
|
234 |
|
235 |
+
#: ../includes/class.yith-wcwl-shortcode.php:68
|
236 |
msgid "Button label (leave empty to use the default settings)"
|
237 |
msgstr "Knop label (laat leeg om de standaardinstellingen te gebruiken)"
|
238 |
|
239 |
+
#: ../includes/class.yith-wcwl-shortcode.php:73
|
240 |
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
|
241 |
+
msgstr ""
|
242 |
+
"\"Browse verlanglijst\" label (laat leeg om de standaardinstellingen te "
|
243 |
+
"gebruiken)"
|
244 |
+
|
245 |
+
#: ../includes/class.yith-wcwl-shortcode.php:78
|
246 |
+
msgid ""
|
247 |
+
"\"Product already in wishlist\" label (leave empty to use the default "
|
248 |
+
"settings)"
|
249 |
+
msgstr ""
|
250 |
+
"\"Product al toegevoegd aan verlanglijst\" label (laat leeg om "
|
251 |
+
"standaardinstellingen te gebruiken)"
|
252 |
+
|
253 |
+
#: ../includes/class.yith-wcwl-shortcode.php:83
|
254 |
+
msgid ""
|
255 |
+
"\"Product added to wishlist\" label (leave empty to use the default settings)"
|
256 |
+
msgstr ""
|
257 |
+
"\"Product toegevoegd aan verlanglijst\" label (laat leeg om de "
|
258 |
+
"standaardinstellingen te gebruiken)"
|
259 |
|
260 |
+
#: ../includes/class.yith-wcwl-shortcode.php:88
|
261 |
+
msgid ""
|
262 |
+
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
|
263 |
+
"the default settings)"
|
264 |
+
msgstr ""
|
265 |
+
"Icoon voor de knop (Gebruik een FontAwesome valid class, of laat het leeg om "
|
266 |
+
"de standaardinstellingen te gebruiken)"
|
267 |
|
268 |
+
#: ../includes/class.yith-wcwl-shortcode.php:93
|
269 |
+
msgid ""
|
270 |
+
"Additional CSS classes for the button (leave empty to use the default "
|
271 |
+
"settings)"
|
272 |
+
msgstr ""
|
273 |
+
"Aanvullende CSS klassen voor de knop (laat leeg om de standaardinstellingen "
|
274 |
+
"te gebruiken)"
|
275 |
|
276 |
+
#: ../includes/class.yith-wcwl-shortcode.php:101
|
277 |
+
msgctxt "[gutenberg]: block name"
|
278 |
+
msgid "YITH Wishlist"
|
279 |
+
msgstr ""
|
280 |
|
281 |
+
#: ../includes/class.yith-wcwl-shortcode.php:102
|
282 |
+
msgctxt "[gutenberg]: block description"
|
283 |
+
msgid "Shows a list of products in wishlist"
|
284 |
+
msgstr ""
|
285 |
|
286 |
+
#: ../includes/class.yith-wcwl-shortcode.php:107
|
287 |
msgid "Choose whether to paginate items in the wishlist or show them all"
|
288 |
+
msgstr ""
|
289 |
+
"Kies of items in de verlanglijst moeten worden gepagineerd of laat ze "
|
290 |
+
"allemaal zien"
|
291 |
|
292 |
+
#: ../includes/class.yith-wcwl-shortcode.php:110,
|
293 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:113
|
294 |
msgid "Paginate"
|
295 |
msgstr "Paginering"
|
296 |
|
297 |
+
#: ../includes/class.yith-wcwl-shortcode.php:111,
|
298 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:114
|
299 |
msgid "Do not paginate"
|
300 |
msgstr "Items niet pagineren"
|
301 |
|
302 |
+
#: ../includes/class.yith-wcwl-shortcode.php:116
|
303 |
msgid "Number of items to show per page"
|
304 |
msgstr "Aantal items om weer te geven per pagina"
|
305 |
|
306 |
+
#: ../includes/class.yith-wcwl-shortcode.php:121
|
307 |
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
|
308 |
msgstr "Verlanglijst ID om weer te geven (vb. K6EOWXB888ZD)"
|
309 |
|
310 |
+
#: ../includes/class.yith-wcwl-shortcode.php:407
|
311 |
msgid "Share on:"
|
312 |
msgstr "Delen op:"
|
313 |
|
314 |
+
#: ../includes/class.yith-wcwl-shortcode.php:431,
|
315 |
+
#: ../plugin-options/wishlist_page-options.php:136
|
316 |
msgid "Share on Facebook"
|
317 |
msgstr "Delen op Facebook"
|
318 |
|
319 |
+
#: ../includes/class.yith-wcwl-shortcode.php:448,
|
320 |
+
#: ../plugin-options/wishlist_page-options.php:145
|
321 |
msgid "Tweet on Twitter"
|
322 |
msgstr "Tweet op Twitter"
|
323 |
|
324 |
+
#: ../includes/class.yith-wcwl-shortcode.php:466,
|
325 |
+
#: ../plugin-options/wishlist_page-options.php:154
|
326 |
msgid "Pin on Pinterest"
|
327 |
msgstr "Pin op Pinterest"
|
328 |
|
329 |
+
#: ../includes/class.yith-wcwl-shortcode.php:480
|
330 |
msgid "Share via email"
|
331 |
msgstr "Delen via e-mail"
|
332 |
|
333 |
+
#: ../includes/class.yith-wcwl-shortcode.php:493,
|
334 |
+
#: ../includes/class.yith-wcwl-shortcode.php:495
|
335 |
msgid "My wishlist on "
|
336 |
msgstr "Mijn verlanglijst op %s"
|
337 |
|
338 |
+
#: ../includes/class.yith-wcwl-shortcode.php:503,
|
339 |
+
#: ../plugin-options/wishlist_page-options.php:172
|
340 |
msgid "Share on WhatsApp"
|
341 |
msgstr "Delen via WhatsApp"
|
342 |
|
343 |
+
#: ../includes/class.yith-wcwl-shortcode.php:606
|
344 |
msgid "Remove from list"
|
345 |
msgstr "Verwijderen van lijst"
|
346 |
|
347 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:185
|
348 |
msgid "Free!"
|
349 |
msgstr "Gratis!"
|
350 |
|
351 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:416
|
352 |
+
msgctxt ""
|
353 |
+
"Part of the template that shows price variation since addition to list; "
|
354 |
+
"placeholder will be replaced with a percentage"
|
355 |
+
msgid "Price is %1$s%%"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: ../includes/class.yith-wcwl-wishlist-item.php:417
|
359 |
+
msgctxt ""
|
360 |
+
"Part of the template that shows price variation since addition to list; "
|
361 |
+
"placeholder will be replaced with a price"
|
362 |
+
msgid "(Was %2$s when added in list)"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
#: ../includes/class.yith-wcwl.php:161
|
366 |
msgid "The item cannot be added to this wishlist"
|
367 |
msgstr "Het item kan niet worden toegevoegd aan deze verlanglijst"
|
368 |
|
369 |
#: ../includes/class.yith-wcwl.php:165, ../includes/class.yith-wcwl.php:171
|
370 |
msgid "An error occurred while adding the products to the wishlist."
|
371 |
+
msgstr ""
|
372 |
+
"Er is een fout opgetreden tijdens het toevoegen van het product aan de "
|
373 |
+
"verlanglijst."
|
374 |
|
375 |
+
#: ../includes/class.yith-wcwl.php:230, ../includes/class.yith-wcwl.php:236
|
376 |
msgid "Error. Unable to remove the product from the wishlist."
|
377 |
msgstr "Fout. Het product kon niet van de verlanglijst worden verwijderd."
|
378 |
|
379 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:136,
|
380 |
+
#: ../includes/data-stores/class.yith-wcwl-wishlist-data-store.php:158
|
381 |
msgid "Invalid wishlist."
|
382 |
msgstr "Ongeldige verlanglijst."
|
383 |
|
385 |
msgid "Invalid wishlist item."
|
386 |
msgstr "Ongeldig verlanglijst item."
|
387 |
|
388 |
+
#. translators: 1. Number of users.
|
389 |
+
#: ../includes/functions.yith-wcwl.php:216
|
390 |
msgid "%d user"
|
391 |
msgid_plural "%d users"
|
392 |
msgstr[0] "%d gebruiker"
|
393 |
msgstr[1] "%d gebruikers"
|
394 |
|
395 |
+
#: ../includes/functions.yith-wcwl.php:217
|
396 |
msgid "has this item in wishlist"
|
397 |
msgid_plural "have this item in wishlist"
|
398 |
msgstr[0] "heeft dit item in de verlanglijst"
|
399 |
msgstr[1] "hebben dit item in de verlanglijst"
|
400 |
|
401 |
+
#: ../includes/functions.yith-wcwl.php:219
|
402 |
msgid "You're the first"
|
403 |
msgstr "U bent de eerste"
|
404 |
|
405 |
+
#: ../includes/functions.yith-wcwl.php:220
|
406 |
msgid "to add this item in wishlist"
|
407 |
msgstr "dit item toevoegen aan verlanglijst"
|
408 |
|
409 |
+
#. translators: 1. Count of users when many, or "another" when only one.
|
410 |
+
#: ../includes/functions.yith-wcwl.php:224
|
411 |
msgid "You and %s user"
|
412 |
msgid_plural "You and %d users"
|
413 |
msgstr[0] "U en %s gebruiker"
|
414 |
msgstr[1] "U en %s gebruikers"
|
415 |
|
416 |
+
#: ../includes/functions.yith-wcwl.php:225
|
417 |
msgid "have this item in wishlist"
|
418 |
msgstr "hebben dit item in de verlanglijst"
|
419 |
|
420 |
+
#: ../includes/functions.yith-wcwl.php:460
|
421 |
+
msgid "None"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../includes/functions.yith-wcwl.php:461
|
425 |
+
#, fuzzy
|
426 |
+
#| msgid "Custom CSS"
|
427 |
+
msgid "Custom"
|
428 |
+
msgstr "Custom CSS"
|
429 |
+
|
430 |
+
#: ../includes/functions.yith-wcwl.php:553
|
431 |
msgid "Shared"
|
432 |
msgstr "Gedeeld"
|
433 |
|
434 |
+
#: ../includes/functions.yith-wcwl.php:557
|
435 |
+
msgid "Only people with a link to this list can see it"
|
436 |
+
msgstr "Alleen mensen met een link naar deze lijst kunnen hem zien"
|
437 |
|
438 |
+
#: ../includes/functions.yith-wcwl.php:563
|
439 |
msgid "Private"
|
440 |
msgstr "Prive"
|
441 |
|
442 |
+
#: ../includes/functions.yith-wcwl.php:567
|
443 |
+
msgid "Only you can see this list"
|
444 |
+
msgstr "Alleen u kunt deze lijst zien"
|
445 |
|
446 |
+
#: ../includes/functions.yith-wcwl.php:573
|
447 |
msgid "Public"
|
448 |
msgstr "Openbaar"
|
449 |
|
450 |
+
#: ../includes/functions.yith-wcwl.php:577
|
451 |
+
msgid "Anyone can search for and see this list"
|
452 |
+
msgstr "Iedereen kan zoeken naar deze verlanglijst en deze lijst zien"
|
453 |
+
|
454 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:40
|
455 |
+
msgctxt "Elementor widget name"
|
456 |
+
msgid "YITH Wishlist Add button"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:83
|
460 |
+
#, fuzzy
|
461 |
+
#| msgid "Product name"
|
462 |
+
msgctxt "Elementor section title"
|
463 |
+
msgid "Product"
|
464 |
+
msgstr "Productnaam"
|
465 |
+
|
466 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:91
|
467 |
+
#, fuzzy
|
468 |
+
#| msgid "Product name"
|
469 |
+
msgctxt "Elementor control label"
|
470 |
+
msgid "Product ID"
|
471 |
+
msgstr "Productnaam"
|
472 |
+
|
473 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:103
|
474 |
+
msgctxt "Elementor section title"
|
475 |
+
msgid "Labels"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:111
|
479 |
+
msgctxt "Elementor control label"
|
480 |
+
msgid "Button label"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:114,
|
484 |
+
#: ../plugin-options/add_to_wishlist-options.php:125
|
485 |
+
msgid "Add to wishlist"
|
486 |
+
msgstr "Toevoegen aan verlanglijst"
|
487 |
+
|
488 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:121
|
489 |
+
#, fuzzy
|
490 |
+
#| msgid "\"Browse wishlist\" text"
|
491 |
+
msgctxt "Elementor control label"
|
492 |
+
msgid "\"Browse wishlist\" label"
|
493 |
+
msgstr "\"Browse wishlist\" tekst"
|
494 |
+
|
495 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:124,
|
496 |
+
#: ../plugin-options/add_to_wishlist-options.php:141
|
497 |
+
msgid "Browse wishlist"
|
498 |
+
msgstr "Browse verlanglijst"
|
499 |
+
|
500 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:131
|
501 |
+
#, fuzzy
|
502 |
+
#| msgid "\"Product already in wishlist\" text"
|
503 |
+
msgctxt "Elementor control label"
|
504 |
+
msgid "\"Product already in wishlist\" label"
|
505 |
+
msgstr "\"Product is al toegevoegd aan verlanglijst\" tekst"
|
506 |
+
|
507 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:134
|
508 |
+
#, fuzzy
|
509 |
+
#| msgid "\"Product already in wishlist\" text"
|
510 |
+
msgid "Product already in wishlist"
|
511 |
+
msgstr "\"Product is al toegevoegd aan verlanglijst\" tekst"
|
512 |
+
|
513 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:141
|
514 |
+
#, fuzzy
|
515 |
+
#| msgid "\"Product already in wishlist\" text"
|
516 |
+
msgctxt "Elementor control label"
|
517 |
+
msgid "\"Product added to wishlist\" label"
|
518 |
+
msgstr "\"Product is al toegevoegd aan verlanglijst\" tekst"
|
519 |
+
|
520 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:144
|
521 |
+
#, fuzzy
|
522 |
+
#| msgid "When product is added to wishlist"
|
523 |
+
msgid "Product added to wishlist"
|
524 |
+
msgstr "Wanneer een product is toegevoegd aan de verlanglijst"
|
525 |
+
|
526 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:153
|
527 |
+
msgctxt "Elementor section title"
|
528 |
+
msgid "Advanced"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:161
|
532 |
+
#, fuzzy
|
533 |
+
#| msgid "Wishlist page"
|
534 |
+
msgctxt "Elementor control label"
|
535 |
+
msgid "URL of the wishlist page"
|
536 |
+
msgstr "Verlanglijst pagina"
|
537 |
+
|
538 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:171
|
539 |
+
#, fuzzy
|
540 |
+
#| msgid "Select an icon for the Email share button"
|
541 |
+
msgctxt "Elementor control label"
|
542 |
+
msgid "Icon for the button"
|
543 |
+
msgstr "Selecteer een icoon voor de e-mail delen knop"
|
544 |
+
|
545 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-add-to-wishlist.php:181
|
546 |
+
#, fuzzy
|
547 |
+
#| msgid ""
|
548 |
+
#| "Additional CSS classes for the button (leave empty to use the default "
|
549 |
+
#| "settings)"
|
550 |
+
msgctxt "Elementor control label"
|
551 |
+
msgid "Additional CSS classes for the button"
|
552 |
+
msgstr ""
|
553 |
+
"Aanvullende CSS klassen voor de knop (laat leeg om de standaardinstellingen "
|
554 |
+
"te gebruiken)"
|
555 |
+
|
556 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:40
|
557 |
+
#, fuzzy
|
558 |
+
#| msgid "Wishlist"
|
559 |
+
msgctxt "Elementor widget name"
|
560 |
+
msgid "YITH Wishlist"
|
561 |
+
msgstr "Verlanglijst"
|
562 |
+
|
563 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:82
|
564 |
+
#, fuzzy
|
565 |
+
#| msgid "Wishlist"
|
566 |
+
msgctxt "Elementor section title"
|
567 |
+
msgid "Wishlist"
|
568 |
+
msgstr "Verlanglijst"
|
569 |
+
|
570 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:90
|
571 |
+
#, fuzzy
|
572 |
+
#| msgid "Wishlist"
|
573 |
+
msgctxt "Elementor control label"
|
574 |
+
msgid "Wishlist ID"
|
575 |
+
msgstr "Verlanglijst"
|
576 |
+
|
577 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:102
|
578 |
+
#, fuzzy
|
579 |
+
#| msgid "Paginate"
|
580 |
+
msgctxt "Elementor section title"
|
581 |
+
msgid "Pagination"
|
582 |
+
msgstr "Paginering"
|
583 |
+
|
584 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:110
|
585 |
+
#, fuzzy
|
586 |
+
#| msgid "Paginate"
|
587 |
+
msgctxt "Elementor control label"
|
588 |
+
msgid "Paginate items"
|
589 |
+
msgstr "Paginering"
|
590 |
+
|
591 |
+
#: ../includes/widgets/elementor/class.yith-wcwl-elementor-wishlist.php:123
|
592 |
+
#, fuzzy
|
593 |
+
#| msgid "Items added"
|
594 |
+
msgctxt "yith-woocommerce-wishlist"
|
595 |
+
msgid "Items per page"
|
596 |
+
msgstr "Items toegevoegd"
|
597 |
|
598 |
#: ../init.php:4
|
599 |
msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
|
600 |
msgstr ""
|
601 |
|
602 |
#: ../init.php:5
|
603 |
+
msgid ""
|
604 |
+
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
|
605 |
+
"possibility to create, fill, manage and share their wishlists allowing you "
|
606 |
+
"to analyze their interests and needs to improve your marketing strategies. "
|
607 |
+
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
|
608 |
+
"your e-commerce on <strong>YITH</strong></a>"
|
609 |
msgstr ""
|
610 |
|
611 |
#: ../init.php:7
|
616 |
msgid "https://yithemes.com/"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: ../init.php:141
|
620 |
msgid "is enabled but not effective. It requires WooCommerce in order to work."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: ../init.php:151
|
624 |
msgid "You can't activate the free version of"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../init.php:151
|
628 |
msgid "while you are using the premium one."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: ../plugin-options/add_to_wishlist-options.php:18,
|
632 |
+
#: ../plugin-options/settings-options.php:23
|
633 |
msgid "General Settings"
|
634 |
msgstr "Algemene Instellingen"
|
635 |
|
636 |
#: ../plugin-options/add_to_wishlist-options.php:25
|
637 |
+
#, fuzzy
|
638 |
+
#| msgid "When product is added to wishlist"
|
639 |
+
msgid "After product is added to wishlist"
|
640 |
msgstr "Wanneer een product is toegevoegd aan de verlanglijst"
|
641 |
|
642 |
#: ../plugin-options/add_to_wishlist-options.php:26
|
643 |
+
msgid ""
|
644 |
+
"Choose the look of the Wishlist button when the product has already been "
|
645 |
+
"added to a wishlist"
|
646 |
+
msgstr ""
|
647 |
+
"Kies de look van de verlanglijst knop, wanneer het product al is toegevoegd "
|
648 |
+
"aan de verlanglijst"
|
649 |
|
650 |
#: ../plugin-options/add_to_wishlist-options.php:30
|
651 |
msgid "Show \"Add to wishilist\" button"
|
664 |
msgstr "Loop instellingen"
|
665 |
|
666 |
#: ../plugin-options/add_to_wishlist-options.php:48
|
|