Version Description
- Fixed: Inability to unistall plugin
- Fixed: Redirect to cart page from wishlist page
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Wishlist |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- README.txt +6 -1
- add-to-cart.php +12 -5
- assets/css/admin.css +1 -1
- assets/css/style.css +1 -1
- class.yith-wcwl-init.php +2 -2
- class.yith-wcwl-install.php +1 -1
- class.yith-wcwl-shortcode.php +1 -1
- class.yith-wcwl-ui.php +1 -1
- class.yith-wcwl.php +1 -1
- functions.yith-wcwl.php +1 -1
- init.php +2 -2
- languages/default.po +81 -77
- languages/yit-de_DE.mo +0 -0
- languages/yit-de_DE.po +174 -97
- languages/yit-es_AR.mo +0 -0
- languages/yit-es_AR.po +81 -77
- languages/yit-es_MX.mo +0 -0
- languages/yit-es_MX.po +79 -79
- languages/yit-fr_FR.mo +0 -0
- languages/yit-fr_FR.po +130 -113
- languages/yit-he_IL.mo +0 -0
- languages/yit-he_IL.po +81 -77
- languages/yit-it_IT.mo +0 -0
- languages/yit-it_IT.po +81 -77
- languages/yit-pt_BR.mo +0 -0
- languages/yit-pt_BR.po +159 -82
- languages/yit-uk_UA.mo +0 -0
- languages/yit-uk_UA.po +81 -77
- languages/yit.pot +81 -77
- templates/share.php +1 -1
- templates/wishlist.php +1 -1
- uninstall.php +1 -3
- yith-wcwl-ajax.php +1 -1
README.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: yithemes
|
|
4 |
Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 3.8.1
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -75,6 +75,11 @@ Yes, you can change the colors of background, text and border or apply a custom
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
|
|
|
|
|
|
|
|
|
|
78 |
= 1.1.0 =
|
79 |
|
80 |
* Added: Support to WooCommerce 2.1.x
|
4 |
Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 3.8.1
|
7 |
+
Stable tag: 1.1.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= 1.1.1 =
|
79 |
+
|
80 |
+
* Fixed: Inability to unistall plugin
|
81 |
+
* Fixed: Redirect to cart page from wishlist page
|
82 |
+
|
83 |
= 1.1.0 =
|
84 |
|
85 |
* Added: Support to WooCommerce 2.1.x
|
add-to-cart.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
// Handles all ajax requests pertaining to this plugin
|
@@ -18,10 +18,17 @@ $error_link_url = $yith_wcwl->get_wishlist_url();
|
|
18 |
|
19 |
//determine to success link redirect url
|
20 |
//handle redirect option chosen by admin
|
21 |
-
if( isset( $_GET['redirect_to_cart'] ) && $_GET['redirect_to_cart'] == 'true' )
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
//get the details of the product
|
27 |
$details = $yith_wcwl->get_product_details( $_GET['wishlist_item_id'] );
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
// Handles all ajax requests pertaining to this plugin
|
18 |
|
19 |
//determine to success link redirect url
|
20 |
//handle redirect option chosen by admin
|
21 |
+
if ( isset( $_GET['redirect_to_cart'] ) && $_GET['redirect_to_cart'] == 'true' ) {
|
22 |
+
if ( function_exists( 'icl_object_id' ) ) {
|
23 |
+
$redirect_url = get_permalink( icl_object_id( function_exists( 'wc_get_page_id' ) ? wc_get_page_id( 'cart' ) : woocommerce_get_page_id( 'cart' ) ), 'page', true );
|
24 |
+
}
|
25 |
+
else {
|
26 |
+
$redirect_url = get_permalink( function_exists( 'wc_get_page_id' ) ? wc_get_page_id( 'cart' ) : woocommerce_get_page_id( 'cart' ) );
|
27 |
+
}
|
28 |
+
}
|
29 |
+
else {
|
30 |
+
$redirect_url = $yith_wcwl->get_wishlist_url();
|
31 |
+
}
|
32 |
|
33 |
//get the details of the product
|
34 |
$details = $yith_wcwl->get_product_details( $_GET['wishlist_item_id'] );
|
assets/css/admin.css
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
*
|
4 |
* @author Your Inspiration Themes
|
5 |
* @package YITH WooCommerce Wishlist
|
6 |
-
* @version 1.1.
|
7 |
*/
|
8 |
|
9 |
#yith_wcwl_styles .color_box {
|
3 |
*
|
4 |
* @author Your Inspiration Themes
|
5 |
* @package YITH WooCommerce Wishlist
|
6 |
+
* @version 1.1.1
|
7 |
*/
|
8 |
|
9 |
#yith_wcwl_styles .color_box {
|
assets/css/style.css
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
*
|
4 |
* @author Your Inspiration Themes
|
5 |
* @package YITH WooCommerce Wishlist
|
6 |
-
* @version 1.1.
|
7 |
*/
|
8 |
|
9 |
|
3 |
*
|
4 |
* @author Your Inspiration Themes
|
5 |
* @package YITH WooCommerce Wishlist
|
6 |
+
* @version 1.1.1
|
7 |
*/
|
8 |
|
9 |
|
class.yith-wcwl-init.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
if ( ! defined( 'YITH_WCWL' ) ) {
|
@@ -24,7 +24,7 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
|
|
24 |
* @var string
|
25 |
* @since 1.0.0
|
26 |
*/
|
27 |
-
public $version = '1.1.
|
28 |
|
29 |
/**
|
30 |
* Plugin database version
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
if ( ! defined( 'YITH_WCWL' ) ) {
|
24 |
* @var string
|
25 |
* @since 1.0.0
|
26 |
*/
|
27 |
+
public $version = '1.1.1';
|
28 |
|
29 |
/**
|
30 |
* Plugin database version
|
class.yith-wcwl-install.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
class.yith-wcwl-shortcode.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
class.yith-wcwl-ui.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
class.yith-wcwl.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
functions.yith-wcwl.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
|
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: YITH WooCommerce Wishlist
|
4 |
* Plugin URI: http://yithemes.com/
|
5 |
* Description: YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
@@ -11,7 +11,7 @@
|
|
11 |
*
|
12 |
* @author Your Inspiration Themes
|
13 |
* @package YITH WooCommerce Wishlist
|
14 |
-
* @version 1.1.
|
15 |
*/
|
16 |
/* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
|
17 |
|
3 |
* Plugin Name: YITH WooCommerce Wishlist
|
4 |
* Plugin URI: http://yithemes.com/
|
5 |
* Description: YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce.
|
6 |
+
* Version: 1.1.1
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
11 |
*
|
12 |
* @author Your Inspiration Themes
|
13 |
* @package YITH WooCommerce Wishlist
|
14 |
+
* @version 1.1.1
|
15 |
*/
|
16 |
/* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
|
17 |
|
languages/default.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,111 +14,111 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../class.yith-wcwl-init.php:
|
18 |
msgid "Wishlist"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: ../class.yith-wcwl-init.php:
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ../class.yith-wcwl-init.php:
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-wcwl-init.php:
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../class.yith-wcwl-init.php:
|
34 |
msgid "General Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../class.yith-wcwl-init.php:
|
38 |
msgid "Styles"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../class.yith-wcwl-init.php:
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../class.yith-wcwl-init.php:
|
46 |
msgid "Colors"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../class.yith-wcwl-init.php:
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../class.yith-wcwl-init.php:
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../class.yith-wcwl-init.php:
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../class.yith-wcwl-init.php:
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../class.yith-wcwl-init.php:
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../class.yith-wcwl-init.php:
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../class.yith-wcwl-init.php:
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../class.yith-wcwl-init.php:
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../class.yith-wcwl-init.php:
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../class.yith-wcwl-init.php:
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../class.yith-wcwl-init.php:
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../class.yith-wcwl-init.php:
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ../class.yith-wcwl-init.php:
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../class.yith-wcwl-init.php:
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../class.yith-wcwl-init.php:
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../class.yith-wcwl-init.php:
|
110 |
msgid "Settings"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../class.yith-wcwl-init.php:
|
114 |
msgid "Docs"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ../class.yith-wcwl-init.php:
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../class.yith-wcwl-init.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -126,11 +126,11 @@ msgid ""
|
|
126 |
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ../class.yith-wcwl-init.php:
|
130 |
msgid "Use cookies"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../class.yith-wcwl-init.php:
|
134 |
msgid ""
|
135 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
136 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -138,163 +138,163 @@ msgid ""
|
|
138 |
"timestamp )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../class.yith-wcwl-init.php:
|
142 |
msgid "Wishlist title"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../class.yith-wcwl-init.php:
|
146 |
-
#: ../class.yith-wcwl-init.php:
|
147 |
#, php-format
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../class.yith-wcwl-init.php:
|
152 |
msgid "Position"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../class.yith-wcwl-init.php:
|
156 |
msgid ""
|
157 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
158 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../class.yith-wcwl-init.php:
|
162 |
msgid "After \"Add to cart\""
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../class.yith-wcwl-init.php:
|
166 |
msgid "After thumbnails"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../class.yith-wcwl-init.php:
|
170 |
msgid "After summary"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../class.yith-wcwl-init.php:
|
174 |
msgid "Use shortcode"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../class.yith-wcwl-init.php:
|
178 |
msgid "Redirect to cart"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../class.yith-wcwl-init.php:
|
182 |
msgid ""
|
183 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
184 |
"page."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../class.yith-wcwl-init.php:
|
188 |
msgid "Remove if added to the cart"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../class.yith-wcwl-init.php:
|
192 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../class.yith-wcwl-init.php:
|
196 |
msgid "\"Add to Wishlist\" text"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../class.yith-wcwl-init.php:
|
200 |
msgid "Add to Wishlist"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../class.yith-wcwl-init.php:
|
204 |
msgid "\"Add to Cart\" text"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: ../class.yith-wcwl-init.php:
|
208 |
msgid "Add to Cart"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: ../class.yith-wcwl-init.php:
|
212 |
msgid "Show Unit price"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../class.yith-wcwl-init.php:
|
216 |
msgid "Show \"Add to Cart\" button"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../class.yith-wcwl-init.php:
|
220 |
msgid "Show Stock status"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../class.yith-wcwl-init.php:
|
224 |
msgid "Use buttons"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../class.yith-wcwl-init.php:
|
228 |
msgid "Use buttons instead of a simple anchors."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../class.yith-wcwl-init.php:
|
232 |
msgid "Custom CSS"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../class.yith-wcwl-init.php:
|
236 |
msgid "Use theme style"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../class.yith-wcwl-init.php:
|
240 |
msgid "Use the theme style."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../class.yith-wcwl-init.php:
|
244 |
msgid "Buttons rounded corners"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../class.yith-wcwl-init.php:
|
248 |
msgid "Make buttons corner rounded"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../class.yith-wcwl-init.php:
|
252 |
msgid "\"Add to Wishlist\" icon"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../class.yith-wcwl-init.php:
|
256 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../class.yith-wcwl-init.php:
|
260 |
msgid "\"Add to Cart\" icon"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../class.yith-wcwl-init.php:
|
264 |
msgid "Add an icon to the \"Add to Cart\" button"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../class.yith-wcwl-init.php:
|
268 |
msgid "Share on Facebook"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../class.yith-wcwl-init.php:
|
272 |
msgid "Tweet on Twitter"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../class.yith-wcwl-init.php:
|
276 |
msgid "Pin on Pinterest"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../class.yith-wcwl-init.php:
|
280 |
msgid "Share on Google+"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../class.yith-wcwl-init.php:
|
284 |
msgid "Socials title"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../class.yith-wcwl-init.php:
|
288 |
msgid "Socials text"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../class.yith-wcwl-init.php:
|
292 |
msgid ""
|
293 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
294 |
"strong> where you want the URL of your wishlist to appear."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../class.yith-wcwl-init.php:
|
298 |
msgid "Socials image URL"
|
299 |
msgstr ""
|
300 |
|
@@ -352,31 +352,35 @@ msgid "Error. Unable to remove the product from the wishlist."
|
|
352 |
msgstr ""
|
353 |
|
354 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
355 |
-
#: ../templates/wishlist.php:
|
356 |
msgid "No products were added to the wishlist"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../templates/wishlist.php:
|
360 |
msgid "Product Name"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../templates/wishlist.php:
|
364 |
msgid "Unit Price"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../templates/wishlist.php:
|
368 |
msgid "Stock Status"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../templates/wishlist.php:
|
372 |
msgid "Remove this product"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../templates/wishlist.php:
|
|
|
|
|
|
|
|
|
376 |
msgid "Out of Stock"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../templates/wishlist.php:
|
380 |
msgid "In Stock"
|
381 |
msgstr ""
|
382 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2014-02-26 15:55+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-26 15:56+0100\n"
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
+
#: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
|
18 |
msgid "Wishlist"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: ../class.yith-wcwl-init.php:353
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ../class.yith-wcwl-init.php:384
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../class.yith-wcwl-init.php:385
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
|
34 |
msgid "General Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
|
38 |
msgid "Styles"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../class.yith-wcwl-init.php:450
|
46 |
msgid "Colors"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../class.yith-wcwl-init.php:480
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../class.yith-wcwl-init.php:481
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../class.yith-wcwl-init.php:482
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../class.yith-wcwl-init.php:488
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../class.yith-wcwl-init.php:489
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../class.yith-wcwl-init.php:490
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../class.yith-wcwl-init.php:495
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../class.yith-wcwl-init.php:496
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../class.yith-wcwl-init.php:497
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../class.yith-wcwl-init.php:503
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../class.yith-wcwl-init.php:504
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../class.yith-wcwl-init.php:505
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../class.yith-wcwl-init.php:510
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../class.yith-wcwl-init.php:511
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../class.yith-wcwl-init.php:512
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: ../class.yith-wcwl-init.php:572
|
110 |
msgid "Settings"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../class.yith-wcwl-init.php:573
|
114 |
msgid "Docs"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../class.yith-wcwl-init.php:823
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../class.yith-wcwl-init.php:824
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
126 |
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../class.yith-wcwl-init.php:831
|
130 |
msgid "Use cookies"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../class.yith-wcwl-init.php:832
|
134 |
msgid ""
|
135 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
136 |
"available for each not logged user for 30 days. Use the filter "
|
138 |
"timestamp )."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../class.yith-wcwl-init.php:839
|
142 |
msgid "Wishlist title"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
|
146 |
+
#: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
|
147 |
#, php-format
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../class.yith-wcwl-init.php:847
|
152 |
msgid "Position"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../class.yith-wcwl-init.php:848
|
156 |
msgid ""
|
157 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
158 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../class.yith-wcwl-init.php:854
|
162 |
msgid "After \"Add to cart\""
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ../class.yith-wcwl-init.php:855
|
166 |
msgid "After thumbnails"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../class.yith-wcwl-init.php:856
|
170 |
msgid "After summary"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../class.yith-wcwl-init.php:857
|
174 |
msgid "Use shortcode"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../class.yith-wcwl-init.php:862
|
178 |
msgid "Redirect to cart"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../class.yith-wcwl-init.php:863
|
182 |
msgid ""
|
183 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
184 |
"page."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../class.yith-wcwl-init.php:870
|
188 |
msgid "Remove if added to the cart"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../class.yith-wcwl-init.php:871
|
192 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../class.yith-wcwl-init.php:878
|
196 |
msgid "\"Add to Wishlist\" text"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
|
200 |
msgid "Add to Wishlist"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../class.yith-wcwl-init.php:886
|
204 |
msgid "\"Add to Cart\" text"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
|
208 |
msgid "Add to Cart"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../class.yith-wcwl-init.php:894
|
212 |
msgid "Show Unit price"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../class.yith-wcwl-init.php:902
|
216 |
msgid "Show \"Add to Cart\" button"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../class.yith-wcwl-init.php:910
|
220 |
msgid "Show Stock status"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../class.yith-wcwl-init.php:925
|
224 |
msgid "Use buttons"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../class.yith-wcwl-init.php:926
|
228 |
msgid "Use buttons instead of a simple anchors."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../class.yith-wcwl-init.php:933
|
232 |
msgid "Custom CSS"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../class.yith-wcwl-init.php:941
|
236 |
msgid "Use theme style"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../class.yith-wcwl-init.php:942
|
240 |
msgid "Use the theme style."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../class.yith-wcwl-init.php:949
|
244 |
msgid "Buttons rounded corners"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../class.yith-wcwl-init.php:950
|
248 |
msgid "Make buttons corner rounded"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../class.yith-wcwl-init.php:957
|
252 |
msgid "\"Add to Wishlist\" icon"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../class.yith-wcwl-init.php:958
|
256 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../class.yith-wcwl-init.php:969
|
260 |
msgid "\"Add to Cart\" icon"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../class.yith-wcwl-init.php:970
|
264 |
msgid "Add an icon to the \"Add to Cart\" button"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../class.yith-wcwl-init.php:988
|
268 |
msgid "Share on Facebook"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../class.yith-wcwl-init.php:995
|
272 |
msgid "Tweet on Twitter"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../class.yith-wcwl-init.php:1002
|
276 |
msgid "Pin on Pinterest"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../class.yith-wcwl-init.php:1009
|
280 |
msgid "Share on Google+"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../class.yith-wcwl-init.php:1016
|
284 |
msgid "Socials title"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../class.yith-wcwl-init.php:1024
|
288 |
msgid "Socials text"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../class.yith-wcwl-init.php:1025
|
292 |
msgid ""
|
293 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
294 |
"strong> where you want the URL of your wishlist to appear."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../class.yith-wcwl-init.php:1033
|
298 |
msgid "Socials image URL"
|
299 |
msgstr ""
|
300 |
|
352 |
msgstr ""
|
353 |
|
354 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
355 |
+
#: ../templates/wishlist.php:158
|
356 |
msgid "No products were added to the wishlist"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../templates/wishlist.php:80
|
360 |
msgid "Product Name"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../templates/wishlist.php:81
|
364 |
msgid "Unit Price"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../templates/wishlist.php:82
|
368 |
msgid "Stock Status"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../templates/wishlist.php:104
|
372 |
msgid "Remove this product"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../templates/wishlist.php:124
|
376 |
+
msgid "Free!"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: ../templates/wishlist.php:137
|
380 |
msgid "Out of Stock"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../templates/wishlist.php:140
|
384 |
msgid "In Stock"
|
385 |
msgstr ""
|
386 |
|
languages/yit-de_DE.mo
CHANGED
Binary file
|
languages/yit-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -18,121 +18,113 @@ msgstr ""
|
|
18 |
"X-Generator: Poedit 1.5.5\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#:
|
22 |
-
msgid "View Cart →"
|
23 |
-
msgstr "Warenkorb ansehen"
|
24 |
-
|
25 |
-
#: ../add-to-cart.php:31
|
26 |
-
msgid "Product successfully added to the cart."
|
27 |
-
msgstr "Produkt erfolgreich im Warenkorb eingefügt "
|
28 |
-
|
29 |
-
#: ../class.yith-wcwl-init.php:105 ../class.yith-wcwl-install.php:137
|
30 |
msgid "Wishlist"
|
31 |
msgstr "Wunschliste"
|
32 |
|
33 |
-
#:
|
34 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
35 |
msgstr ""
|
36 |
"Gewähltes Produkt ist nicht mehr im Sortiment und kann daher nicht im "
|
37 |
"Warenkorb eingefügt werden. "
|
38 |
|
39 |
-
#:
|
40 |
msgid "Wishlist Page"
|
41 |
msgstr "Wunschlistenseite"
|
42 |
|
43 |
-
#:
|
44 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
45 |
msgstr "Seiteninhalt: [yith_wcwl_wishlist]"
|
46 |
|
47 |
-
#:
|
48 |
msgid "General Settings"
|
49 |
msgstr "Allgemeine Einstellungen"
|
50 |
|
51 |
-
#:
|
52 |
msgid "Styles"
|
53 |
msgstr "Style"
|
54 |
|
55 |
-
#:
|
56 |
msgid "Socials & Share"
|
57 |
msgstr "Soziale Netzwerke; Teilen"
|
58 |
|
59 |
-
#:
|
60 |
msgid "Colors"
|
61 |
msgstr "Farben"
|
62 |
|
63 |
-
#:
|
64 |
msgid "\"Add to Wishlist\" button background"
|
65 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund"
|
66 |
|
67 |
-
#:
|
68 |
msgid "\"Add to Wishlist\" button text"
|
69 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Text"
|
70 |
|
71 |
-
#:
|
72 |
msgid "\"Add to Wishlist\" button border"
|
73 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen"
|
74 |
|
75 |
-
#:
|
76 |
msgid "\"Add to Wishlist\" button background (hover)"
|
77 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund (hover)"
|
78 |
|
79 |
-
#:
|
80 |
msgid "\"Add to Wishlist\" button text (hover)"
|
81 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Text (hover)"
|
82 |
|
83 |
-
#:
|
84 |
msgid "\"Add to Wishlist\" button border (hover)"
|
85 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen (hover)"
|
86 |
|
87 |
-
#:
|
88 |
msgid "\"Add to Cart\" button background"
|
89 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund"
|
90 |
|
91 |
-
#:
|
92 |
msgid "\"Add to Cart\" button text"
|
93 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
|
94 |
|
95 |
-
#:
|
96 |
msgid "\"Add to Cart\" button border"
|
97 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen"
|
98 |
|
99 |
-
#:
|
100 |
msgid "\"Add to Cart\" button background (hover)"
|
101 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund (hover)"
|
102 |
|
103 |
-
#:
|
104 |
msgid "\"Add to Cart\" button text (hover)"
|
105 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Text (hover)"
|
106 |
|
107 |
-
#:
|
108 |
msgid "\"Add to Cart\" button border (hover)"
|
109 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen (hover)"
|
110 |
|
111 |
-
#:
|
112 |
msgid "Wishlist table background"
|
113 |
msgstr "Wunschliste Tabellenhintergrund"
|
114 |
|
115 |
-
#:
|
116 |
msgid "Wishlist table text"
|
117 |
msgstr "Wunschliste Tabellentext"
|
118 |
|
119 |
-
#:
|
120 |
msgid "Wishlist table border"
|
121 |
msgstr "Wunschliste Tabellenrahmen"
|
122 |
|
123 |
-
#:
|
124 |
msgid "Settings"
|
125 |
msgstr "Einstellungen"
|
126 |
|
127 |
-
#:
|
128 |
msgid "Docs"
|
129 |
msgstr "Dokumentation"
|
130 |
|
131 |
-
#:
|
132 |
msgid "Enable YITH Wishlist"
|
133 |
msgstr "Aktiviere YITH Wunschliste"
|
134 |
|
135 |
-
#:
|
136 |
#, php-format
|
137 |
msgid ""
|
138 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -144,11 +136,11 @@ msgstr ""
|
|
144 |
"markiert ist.</strong> Bitte lesen Sie die Plugin- <a href=\"%s\" target="
|
145 |
"\"_blank\">Hinweise</a>."
|
146 |
|
147 |
-
#:
|
148 |
msgid "Use cookies"
|
149 |
msgstr "Cookies verwenden"
|
150 |
|
151 |
-
#:
|
152 |
msgid ""
|
153 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
154 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -160,21 +152,21 @@ msgstr ""
|
|
160 |
"Verwenden Sie den Filter yith_wcwl_cookie_expiration_time um die "
|
161 |
"Einstellungen für die Laufzeit zu bestimmen (Zeitangabe erforderlich)"
|
162 |
|
163 |
-
#:
|
164 |
msgid "Wishlist title"
|
165 |
msgstr "Wunschlistentitel"
|
166 |
|
167 |
-
#:
|
168 |
-
#:
|
169 |
#, php-format
|
170 |
msgid "My wishlist on %s"
|
171 |
msgstr "Meine Wunschliste von %s"
|
172 |
|
173 |
-
#:
|
174 |
msgid "Position"
|
175 |
msgstr "Position"
|
176 |
|
177 |
-
#:
|
178 |
msgid ""
|
179 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
180 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
@@ -182,27 +174,27 @@ msgstr ""
|
|
182 |
"Bei Variablen Produkten kann nur nach \"Add to Cart\" eingetragen werden "
|
183 |
"oder der Shortcode[yith_wcwl_add_to_wishlist] verwendet werden."
|
184 |
|
185 |
-
#:
|
186 |
msgid "After \"Add to cart\""
|
187 |
msgstr "Nach \"Add to cart\""
|
188 |
|
189 |
-
#:
|
190 |
msgid "After thumbnails"
|
191 |
msgstr "Nach Thumbnails (Miniaturbilder)"
|
192 |
|
193 |
-
#:
|
194 |
msgid "After summary"
|
195 |
msgstr "Nach Zusammenfassung"
|
196 |
|
197 |
-
#:
|
198 |
msgid "Use shortcode"
|
199 |
msgstr "Shortcode verwenden"
|
200 |
|
201 |
-
#:
|
202 |
msgid "Redirect to cart"
|
203 |
msgstr "Weiterleiten zum Warenkorb"
|
204 |
|
205 |
-
#:
|
206 |
msgid ""
|
207 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
208 |
"page."
|
@@ -210,100 +202,115 @@ msgstr ""
|
|
210 |
"Zum Warenkorb weiterleiten, wenn \"Add to cart\" Button auf der "
|
211 |
"Wunschlistenseite angeklickt wurde"
|
212 |
|
213 |
-
#:
|
214 |
msgid "Remove if added to the cart"
|
215 |
msgstr "Entfernen, wenn Produkt zum Warenkorb hinzugefügt wurde"
|
216 |
|
217 |
-
#:
|
218 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
219 |
msgstr ""
|
220 |
"Produkt von der Wunschliste enfernen, wenn es zum Warenkorb hinzugefügt wurde"
|
221 |
|
222 |
-
#:
|
223 |
msgid "\"Add to Wishlist\" text"
|
224 |
msgstr "\"Zu Wunschliste hinzufügen\" Text"
|
225 |
|
226 |
-
#:
|
227 |
msgid "Add to Wishlist"
|
228 |
msgstr "Zu Wunschliste hinzufügen"
|
229 |
|
230 |
-
#:
|
231 |
msgid "\"Add to Cart\" text"
|
232 |
msgstr "\"Auf die Wunschliste setzen\" Text"
|
233 |
|
234 |
-
#:
|
235 |
msgid "Add to Cart"
|
236 |
msgstr "Zum Warenkorb hinzufügen"
|
237 |
|
238 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgid "Use buttons"
|
240 |
msgstr "Buttons verwenden"
|
241 |
|
242 |
-
#:
|
243 |
msgid "Use buttons instead of a simple anchors."
|
244 |
msgstr "Buttons anstatt von einfachen Anchors verwenden"
|
245 |
|
246 |
-
#:
|
247 |
msgid "Custom CSS"
|
248 |
msgstr "Benutzerdefiniertes CSS"
|
249 |
|
250 |
-
#:
|
251 |
msgid "Use theme style"
|
252 |
msgstr "Theme Design verwenden"
|
253 |
|
254 |
-
#:
|
255 |
msgid "Use the theme style."
|
256 |
msgstr "Theme Design verwenden"
|
257 |
|
258 |
-
#:
|
259 |
msgid "Buttons rounded corners"
|
260 |
msgstr "Button mit abgerundeten Ecken"
|
261 |
|
262 |
-
#:
|
263 |
msgid "Make buttons corner rounded"
|
264 |
msgstr "Button mit abgerundeten Ecken nutzen"
|
265 |
|
266 |
-
#:
|
267 |
msgid "\"Add to Wishlist\" icon"
|
268 |
msgstr "\"Zur Wunschliste hinzufügen\" Icon"
|
269 |
|
270 |
-
#:
|
271 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
272 |
msgstr "Ein Icon zu \"Auf die Wunschliste setzen\" Button verwenden"
|
273 |
|
274 |
-
#:
|
275 |
msgid "\"Add to Cart\" icon"
|
276 |
msgstr "\"In den Warenkoeb\" Icon"
|
277 |
|
278 |
-
#:
|
279 |
msgid "Add an icon to the \"Add to Cart\" button"
|
280 |
msgstr "Ein \"In den Warenkorb\"- Icon hinzufügen"
|
281 |
|
282 |
-
#:
|
283 |
msgid "Share on Facebook"
|
284 |
msgstr "Auf Facebook teilen"
|
285 |
|
286 |
-
#:
|
287 |
msgid "Tweet on Twitter"
|
288 |
msgstr "Auf Twitter tweeten"
|
289 |
|
290 |
-
#:
|
291 |
msgid "Pin on Pinterest"
|
292 |
msgstr "Auf Pinterest pinnen"
|
293 |
|
294 |
-
#:
|
295 |
msgid "Share on Google+"
|
296 |
msgstr "Bei Google+ teilen"
|
297 |
|
298 |
-
#:
|
299 |
msgid "Socials title"
|
300 |
msgstr "Soziale Netzwerke-Titel"
|
301 |
|
302 |
-
#:
|
303 |
msgid "Socials text"
|
304 |
msgstr "Soziale Netzwerke Text"
|
305 |
|
306 |
-
#:
|
307 |
msgid ""
|
308 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
309 |
"strong> where you want the URL of your wishlist to appear."
|
@@ -311,93 +318,163 @@ msgstr ""
|
|
311 |
"Wird bei Facebook, Twitter und Pinterest genutzt. Benutzen Sie <strong>"
|
312 |
"%wishlist_url%</strong> wenn die URL der Wunschliste angezeigt werden soll. "
|
313 |
|
314 |
-
#:
|
315 |
msgid "Socials image URL"
|
316 |
msgstr "Soziale Netzwerke Bild URL"
|
317 |
|
318 |
-
#:
|
|
|
|
|
319 |
msgid "wishlist"
|
320 |
msgstr "Wunschliste"
|
321 |
|
322 |
-
#:
|
323 |
-
#: ../yith-wcwl-ajax.php:47
|
324 |
msgid "Product added!"
|
325 |
msgstr "Produkt hinzugefügt!"
|
326 |
|
327 |
-
#:
|
328 |
msgid "Browse Wishlist"
|
329 |
msgstr "Wunschliste durchsuchen"
|
330 |
|
331 |
-
#:
|
332 |
msgid "The product is already in the wishlist!"
|
333 |
msgstr "Dieses Produkt ist bereits in der Wunschliste vorhanden."
|
334 |
|
335 |
-
#:
|
336 |
msgid "Select options"
|
337 |
msgstr "Optionen wählen"
|
338 |
|
339 |
-
#:
|
340 |
msgid "Share on:"
|
341 |
msgstr "Teilen auf:"
|
342 |
|
343 |
-
#:
|
344 |
msgid "Facebook"
|
345 |
msgstr "Facebook"
|
346 |
|
347 |
-
#:
|
348 |
msgid "Twitter"
|
349 |
msgstr "Twitter"
|
350 |
|
351 |
-
#:
|
352 |
msgid "Error occurred while adding product to wishlist."
|
353 |
msgstr ""
|
354 |
"Es ist ein Fehler aufgetreten. Produkt konnte nicht auf die Wunschliste "
|
355 |
"gesetzt werden."
|
356 |
|
357 |
-
#:
|
358 |
msgid "Error occurred while removing product from wishlist"
|
359 |
msgstr ""
|
360 |
"Es ist ein Fehler aufgetreten. Das Produkt konnte nicht von der Wunschliste "
|
361 |
"entfernt werden. "
|
362 |
|
363 |
-
#:
|
364 |
msgid "Product already in the wishlist."
|
365 |
msgstr "Produkt ist bereits auf der Wunschliste"
|
366 |
|
367 |
-
#:
|
368 |
msgid "Product successfully removed."
|
369 |
msgstr "Produkt wurde von der Wunschliste entfernt. "
|
370 |
|
371 |
-
#:
|
372 |
msgid "Error. Unable to remove the product from the wishlist."
|
373 |
msgstr ""
|
374 |
"Fehlermeldung: Entfernen des Produkts von der Wunschliste nicht möglich. "
|
375 |
|
376 |
-
#:
|
377 |
-
#: ../templates/wishlist.php:139
|
378 |
msgid "No products were added to the wishlist"
|
379 |
msgstr "Es wurden keine Produkte auf die Wunschliste gesetzt"
|
380 |
|
381 |
-
#:
|
382 |
msgid "Product Name"
|
383 |
msgstr "Produktname"
|
384 |
|
385 |
-
#:
|
386 |
msgid "Unit Price"
|
387 |
msgstr "Preis"
|
388 |
|
389 |
-
#:
|
390 |
msgid "Stock Status"
|
391 |
msgstr "Lagerstatus"
|
392 |
|
393 |
-
#:
|
394 |
msgid "Remove this product"
|
395 |
msgstr "Dieses Produkt entfernen"
|
396 |
|
397 |
-
#:
|
|
|
|
|
|
|
|
|
398 |
msgid "Out of Stock"
|
399 |
msgstr "Nicht auf Lager"
|
400 |
|
401 |
-
#:
|
402 |
msgid "In Stock"
|
403 |
msgstr "Auf Lager"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-02-26 15:56+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-02-26 15:56+0100\n"
|
7 |
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
18 |
"X-Generator: Poedit 1.5.5\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: class.yith-wcwl-init.php:107 class.yith-wcwl-install.php:137
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "Wishlist"
|
23 |
msgstr "Wunschliste"
|
24 |
|
25 |
+
#: class.yith-wcwl-init.php:353
|
26 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
27 |
msgstr ""
|
28 |
"Gewähltes Produkt ist nicht mehr im Sortiment und kann daher nicht im "
|
29 |
"Warenkorb eingefügt werden. "
|
30 |
|
31 |
+
#: class.yith-wcwl-init.php:384
|
32 |
msgid "Wishlist Page"
|
33 |
msgstr "Wunschlistenseite"
|
34 |
|
35 |
+
#: class.yith-wcwl-init.php:385
|
36 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
37 |
msgstr "Seiteninhalt: [yith_wcwl_wishlist]"
|
38 |
|
39 |
+
#: class.yith-wcwl-init.php:428 class.yith-wcwl-init.php:820
|
40 |
msgid "General Settings"
|
41 |
msgstr "Allgemeine Einstellungen"
|
42 |
|
43 |
+
#: class.yith-wcwl-init.php:429 class.yith-wcwl-init.php:922
|
44 |
msgid "Styles"
|
45 |
msgstr "Style"
|
46 |
|
47 |
+
#: class.yith-wcwl-init.php:430 class.yith-wcwl-init.php:985
|
48 |
msgid "Socials & Share"
|
49 |
msgstr "Soziale Netzwerke; Teilen"
|
50 |
|
51 |
+
#: class.yith-wcwl-init.php:450
|
52 |
msgid "Colors"
|
53 |
msgstr "Farben"
|
54 |
|
55 |
+
#: class.yith-wcwl-init.php:480
|
56 |
msgid "\"Add to Wishlist\" button background"
|
57 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund"
|
58 |
|
59 |
+
#: class.yith-wcwl-init.php:481
|
60 |
msgid "\"Add to Wishlist\" button text"
|
61 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Text"
|
62 |
|
63 |
+
#: class.yith-wcwl-init.php:482
|
64 |
msgid "\"Add to Wishlist\" button border"
|
65 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen"
|
66 |
|
67 |
+
#: class.yith-wcwl-init.php:488
|
68 |
msgid "\"Add to Wishlist\" button background (hover)"
|
69 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund (hover)"
|
70 |
|
71 |
+
#: class.yith-wcwl-init.php:489
|
72 |
msgid "\"Add to Wishlist\" button text (hover)"
|
73 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Text (hover)"
|
74 |
|
75 |
+
#: class.yith-wcwl-init.php:490
|
76 |
msgid "\"Add to Wishlist\" button border (hover)"
|
77 |
msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen (hover)"
|
78 |
|
79 |
+
#: class.yith-wcwl-init.php:495
|
80 |
msgid "\"Add to Cart\" button background"
|
81 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund"
|
82 |
|
83 |
+
#: class.yith-wcwl-init.php:496
|
84 |
msgid "\"Add to Cart\" button text"
|
85 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
|
86 |
|
87 |
+
#: class.yith-wcwl-init.php:497
|
88 |
msgid "\"Add to Cart\" button border"
|
89 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen"
|
90 |
|
91 |
+
#: class.yith-wcwl-init.php:503
|
92 |
msgid "\"Add to Cart\" button background (hover)"
|
93 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund (hover)"
|
94 |
|
95 |
+
#: class.yith-wcwl-init.php:504
|
96 |
msgid "\"Add to Cart\" button text (hover)"
|
97 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Text (hover)"
|
98 |
|
99 |
+
#: class.yith-wcwl-init.php:505
|
100 |
msgid "\"Add to Cart\" button border (hover)"
|
101 |
msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen (hover)"
|
102 |
|
103 |
+
#: class.yith-wcwl-init.php:510
|
104 |
msgid "Wishlist table background"
|
105 |
msgstr "Wunschliste Tabellenhintergrund"
|
106 |
|
107 |
+
#: class.yith-wcwl-init.php:511
|
108 |
msgid "Wishlist table text"
|
109 |
msgstr "Wunschliste Tabellentext"
|
110 |
|
111 |
+
#: class.yith-wcwl-init.php:512
|
112 |
msgid "Wishlist table border"
|
113 |
msgstr "Wunschliste Tabellenrahmen"
|
114 |
|
115 |
+
#: class.yith-wcwl-init.php:572
|
116 |
msgid "Settings"
|
117 |
msgstr "Einstellungen"
|
118 |
|
119 |
+
#: class.yith-wcwl-init.php:573
|
120 |
msgid "Docs"
|
121 |
msgstr "Dokumentation"
|
122 |
|
123 |
+
#: class.yith-wcwl-init.php:823
|
124 |
msgid "Enable YITH Wishlist"
|
125 |
msgstr "Aktiviere YITH Wunschliste"
|
126 |
|
127 |
+
#: class.yith-wcwl-init.php:824
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
136 |
"markiert ist.</strong> Bitte lesen Sie die Plugin- <a href=\"%s\" target="
|
137 |
"\"_blank\">Hinweise</a>."
|
138 |
|
139 |
+
#: class.yith-wcwl-init.php:831
|
140 |
msgid "Use cookies"
|
141 |
msgstr "Cookies verwenden"
|
142 |
|
143 |
+
#: class.yith-wcwl-init.php:832
|
144 |
msgid ""
|
145 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
146 |
"available for each not logged user for 30 days. Use the filter "
|
152 |
"Verwenden Sie den Filter yith_wcwl_cookie_expiration_time um die "
|
153 |
"Einstellungen für die Laufzeit zu bestimmen (Zeitangabe erforderlich)"
|
154 |
|
155 |
+
#: class.yith-wcwl-init.php:839
|
156 |
msgid "Wishlist title"
|
157 |
msgstr "Wunschlistentitel"
|
158 |
|
159 |
+
#: class.yith-wcwl-init.php:841 class.yith-wcwl-init.php:842
|
160 |
+
#: class.yith-wcwl-init.php:1018 class.yith-wcwl-init.php:1019
|
161 |
#, php-format
|
162 |
msgid "My wishlist on %s"
|
163 |
msgstr "Meine Wunschliste von %s"
|
164 |
|
165 |
+
#: class.yith-wcwl-init.php:847
|
166 |
msgid "Position"
|
167 |
msgstr "Position"
|
168 |
|
169 |
+
#: class.yith-wcwl-init.php:848
|
170 |
msgid ""
|
171 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
172 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
174 |
"Bei Variablen Produkten kann nur nach \"Add to Cart\" eingetragen werden "
|
175 |
"oder der Shortcode[yith_wcwl_add_to_wishlist] verwendet werden."
|
176 |
|
177 |
+
#: class.yith-wcwl-init.php:854
|
178 |
msgid "After \"Add to cart\""
|
179 |
msgstr "Nach \"Add to cart\""
|
180 |
|
181 |
+
#: class.yith-wcwl-init.php:855
|
182 |
msgid "After thumbnails"
|
183 |
msgstr "Nach Thumbnails (Miniaturbilder)"
|
184 |
|
185 |
+
#: class.yith-wcwl-init.php:856
|
186 |
msgid "After summary"
|
187 |
msgstr "Nach Zusammenfassung"
|
188 |
|
189 |
+
#: class.yith-wcwl-init.php:857
|
190 |
msgid "Use shortcode"
|
191 |
msgstr "Shortcode verwenden"
|
192 |
|
193 |
+
#: class.yith-wcwl-init.php:862
|
194 |
msgid "Redirect to cart"
|
195 |
msgstr "Weiterleiten zum Warenkorb"
|
196 |
|
197 |
+
#: class.yith-wcwl-init.php:863
|
198 |
msgid ""
|
199 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
200 |
"page."
|
202 |
"Zum Warenkorb weiterleiten, wenn \"Add to cart\" Button auf der "
|
203 |
"Wunschlistenseite angeklickt wurde"
|
204 |
|
205 |
+
#: class.yith-wcwl-init.php:870
|
206 |
msgid "Remove if added to the cart"
|
207 |
msgstr "Entfernen, wenn Produkt zum Warenkorb hinzugefügt wurde"
|
208 |
|
209 |
+
#: class.yith-wcwl-init.php:871
|
210 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
211 |
msgstr ""
|
212 |
"Produkt von der Wunschliste enfernen, wenn es zum Warenkorb hinzugefügt wurde"
|
213 |
|
214 |
+
#: class.yith-wcwl-init.php:878
|
215 |
msgid "\"Add to Wishlist\" text"
|
216 |
msgstr "\"Zu Wunschliste hinzufügen\" Text"
|
217 |
|
218 |
+
#: class.yith-wcwl-init.php:880 class.yith-wcwl-init.php:881
|
219 |
msgid "Add to Wishlist"
|
220 |
msgstr "Zu Wunschliste hinzufügen"
|
221 |
|
222 |
+
#: class.yith-wcwl-init.php:886
|
223 |
msgid "\"Add to Cart\" text"
|
224 |
msgstr "\"Auf die Wunschliste setzen\" Text"
|
225 |
|
226 |
+
#: class.yith-wcwl-init.php:888 class.yith-wcwl-init.php:889
|
227 |
msgid "Add to Cart"
|
228 |
msgstr "Zum Warenkorb hinzufügen"
|
229 |
|
230 |
+
#: class.yith-wcwl-init.php:894
|
231 |
+
#, fuzzy
|
232 |
+
msgid "Show Unit price"
|
233 |
+
msgstr "Preis"
|
234 |
+
|
235 |
+
#: class.yith-wcwl-init.php:902
|
236 |
+
#, fuzzy
|
237 |
+
msgid "Show \"Add to Cart\" button"
|
238 |
+
msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
|
239 |
+
|
240 |
+
#: class.yith-wcwl-init.php:910
|
241 |
+
#, fuzzy
|
242 |
+
msgid "Show Stock status"
|
243 |
+
msgstr "Lagerstatus"
|
244 |
+
|
245 |
+
#: class.yith-wcwl-init.php:925
|
246 |
msgid "Use buttons"
|
247 |
msgstr "Buttons verwenden"
|
248 |
|
249 |
+
#: class.yith-wcwl-init.php:926
|
250 |
msgid "Use buttons instead of a simple anchors."
|
251 |
msgstr "Buttons anstatt von einfachen Anchors verwenden"
|
252 |
|
253 |
+
#: class.yith-wcwl-init.php:933
|
254 |
msgid "Custom CSS"
|
255 |
msgstr "Benutzerdefiniertes CSS"
|
256 |
|
257 |
+
#: class.yith-wcwl-init.php:941
|
258 |
msgid "Use theme style"
|
259 |
msgstr "Theme Design verwenden"
|
260 |
|
261 |
+
#: class.yith-wcwl-init.php:942
|
262 |
msgid "Use the theme style."
|
263 |
msgstr "Theme Design verwenden"
|
264 |
|
265 |
+
#: class.yith-wcwl-init.php:949
|
266 |
msgid "Buttons rounded corners"
|
267 |
msgstr "Button mit abgerundeten Ecken"
|
268 |
|
269 |
+
#: class.yith-wcwl-init.php:950
|
270 |
msgid "Make buttons corner rounded"
|
271 |
msgstr "Button mit abgerundeten Ecken nutzen"
|
272 |
|
273 |
+
#: class.yith-wcwl-init.php:957
|
274 |
msgid "\"Add to Wishlist\" icon"
|
275 |
msgstr "\"Zur Wunschliste hinzufügen\" Icon"
|
276 |
|
277 |
+
#: class.yith-wcwl-init.php:958
|
278 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
279 |
msgstr "Ein Icon zu \"Auf die Wunschliste setzen\" Button verwenden"
|
280 |
|
281 |
+
#: class.yith-wcwl-init.php:969
|
282 |
msgid "\"Add to Cart\" icon"
|
283 |
msgstr "\"In den Warenkoeb\" Icon"
|
284 |
|
285 |
+
#: class.yith-wcwl-init.php:970
|
286 |
msgid "Add an icon to the \"Add to Cart\" button"
|
287 |
msgstr "Ein \"In den Warenkorb\"- Icon hinzufügen"
|
288 |
|
289 |
+
#: class.yith-wcwl-init.php:988
|
290 |
msgid "Share on Facebook"
|
291 |
msgstr "Auf Facebook teilen"
|
292 |
|
293 |
+
#: class.yith-wcwl-init.php:995
|
294 |
msgid "Tweet on Twitter"
|
295 |
msgstr "Auf Twitter tweeten"
|
296 |
|
297 |
+
#: class.yith-wcwl-init.php:1002
|
298 |
msgid "Pin on Pinterest"
|
299 |
msgstr "Auf Pinterest pinnen"
|
300 |
|
301 |
+
#: class.yith-wcwl-init.php:1009
|
302 |
msgid "Share on Google+"
|
303 |
msgstr "Bei Google+ teilen"
|
304 |
|
305 |
+
#: class.yith-wcwl-init.php:1016
|
306 |
msgid "Socials title"
|
307 |
msgstr "Soziale Netzwerke-Titel"
|
308 |
|
309 |
+
#: class.yith-wcwl-init.php:1024
|
310 |
msgid "Socials text"
|
311 |
msgstr "Soziale Netzwerke Text"
|
312 |
|
313 |
+
#: class.yith-wcwl-init.php:1025
|
314 |
msgid ""
|
315 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
316 |
"strong> where you want the URL of your wishlist to appear."
|
318 |
"Wird bei Facebook, Twitter und Pinterest genutzt. Benutzen Sie <strong>"
|
319 |
"%wishlist_url%</strong> wenn die URL der Wunschliste angezeigt werden soll. "
|
320 |
|
321 |
+
#: class.yith-wcwl-init.php:1033
|
322 |
msgid "Socials image URL"
|
323 |
msgstr "Soziale Netzwerke Bild URL"
|
324 |
|
325 |
+
#: class.yith-wcwl-install.php:136
|
326 |
+
#, fuzzy
|
327 |
+
msgctxt "page_slug"
|
328 |
msgid "wishlist"
|
329 |
msgstr "Wunschliste"
|
330 |
|
331 |
+
#: class.yith-wcwl-ui.php:64 class.yith-wcwl.php:351 yith-wcwl-ajax.php:47
|
|
|
332 |
msgid "Product added!"
|
333 |
msgstr "Produkt hinzugefügt!"
|
334 |
|
335 |
+
#: class.yith-wcwl-ui.php:64 class.yith-wcwl-ui.php:65
|
336 |
msgid "Browse Wishlist"
|
337 |
msgstr "Wunschliste durchsuchen"
|
338 |
|
339 |
+
#: class.yith-wcwl-ui.php:65
|
340 |
msgid "The product is already in the wishlist!"
|
341 |
msgstr "Dieses Produkt ist bereits in der Wunschliste vorhanden."
|
342 |
|
343 |
+
#: class.yith-wcwl-ui.php:93
|
344 |
msgid "Select options"
|
345 |
msgstr "Optionen wählen"
|
346 |
|
347 |
+
#: class.yith-wcwl-ui.php:136
|
348 |
msgid "Share on:"
|
349 |
msgstr "Teilen auf:"
|
350 |
|
351 |
+
#: class.yith-wcwl-ui.php:140
|
352 |
msgid "Facebook"
|
353 |
msgstr "Facebook"
|
354 |
|
355 |
+
#: class.yith-wcwl-ui.php:143
|
356 |
msgid "Twitter"
|
357 |
msgstr "Twitter"
|
358 |
|
359 |
+
#: class.yith-wcwl.php:140
|
360 |
msgid "Error occurred while adding product to wishlist."
|
361 |
msgstr ""
|
362 |
"Es ist ein Fehler aufgetreten. Produkt konnte nicht auf die Wunschliste "
|
363 |
"gesetzt werden."
|
364 |
|
365 |
+
#: class.yith-wcwl.php:162
|
366 |
msgid "Error occurred while removing product from wishlist"
|
367 |
msgstr ""
|
368 |
"Es ist ein Fehler aufgetreten. Das Produkt konnte nicht von der Wunschliste "
|
369 |
"entfernt werden. "
|
370 |
|
371 |
+
#: class.yith-wcwl.php:353 yith-wcwl-ajax.php:49
|
372 |
msgid "Product already in the wishlist."
|
373 |
msgstr "Produkt ist bereits auf der Wunschliste"
|
374 |
|
375 |
+
#: class.yith-wcwl.php:370 yith-wcwl-ajax.php:30
|
376 |
msgid "Product successfully removed."
|
377 |
msgstr "Produkt wurde von der Wunschliste entfernt. "
|
378 |
|
379 |
+
#: class.yith-wcwl.php:373 yith-wcwl-ajax.php:33
|
380 |
msgid "Error. Unable to remove the product from the wishlist."
|
381 |
msgstr ""
|
382 |
"Fehlermeldung: Entfernen des Produkts von der Wunschliste nicht möglich. "
|
383 |
|
384 |
+
#: class.yith-wcwl.php:377 yith-wcwl-ajax.php:37 templates/wishlist.php:158
|
|
|
385 |
msgid "No products were added to the wishlist"
|
386 |
msgstr "Es wurden keine Produkte auf die Wunschliste gesetzt"
|
387 |
|
388 |
+
#: templates/wishlist.php:80
|
389 |
msgid "Product Name"
|
390 |
msgstr "Produktname"
|
391 |
|
392 |
+
#: templates/wishlist.php:81
|
393 |
msgid "Unit Price"
|
394 |
msgstr "Preis"
|
395 |
|
396 |
+
#: templates/wishlist.php:82
|
397 |
msgid "Stock Status"
|
398 |
msgstr "Lagerstatus"
|
399 |
|
400 |
+
#: templates/wishlist.php:104
|
401 |
msgid "Remove this product"
|
402 |
msgstr "Dieses Produkt entfernen"
|
403 |
|
404 |
+
#: templates/wishlist.php:124
|
405 |
+
msgid "Free!"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: templates/wishlist.php:137
|
409 |
msgid "Out of Stock"
|
410 |
msgstr "Nicht auf Lager"
|
411 |
|
412 |
+
#: templates/wishlist.php:140
|
413 |
msgid "In Stock"
|
414 |
msgstr "Auf Lager"
|
415 |
+
|
416 |
+
#: yit-common/yith-panel.php:406
|
417 |
+
msgid "Select a date"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: yit-common/yith-panel.php:407
|
421 |
+
msgid "Hours"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: yit-common/yith-panel.php:408 yit-common/yith-panel.php:409
|
425 |
+
msgid "Minutes"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: yit-common/yith-panel.php:417
|
429 |
+
msgid "Upload"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: yit-common/yith-panel.php:444
|
433 |
+
msgid "px"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: yit-common/yith-panel.php:445
|
437 |
+
msgid "em"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: yit-common/yith-panel.php:446
|
441 |
+
msgid "pt"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: yit-common/yith-panel.php:447
|
445 |
+
msgid "rem"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: yit-common/yith-panel.php:457
|
449 |
+
msgid "Select a font family"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: yit-common/yith-panel.php:465
|
453 |
+
msgid "Regular"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: yit-common/yith-panel.php:466
|
457 |
+
msgid "Bold"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: yit-common/yith-panel.php:467
|
461 |
+
msgid "Extra bold"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: yit-common/yith-panel.php:468
|
465 |
+
msgid "Italic"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: yit-common/yith-panel.php:469
|
469 |
+
msgid "Italic bold"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: yit-common/yith-panel.php:481
|
473 |
+
msgid "Click to preview"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#~ msgid "View Cart →"
|
477 |
+
#~ msgstr "Warenkorb ansehen"
|
478 |
+
|
479 |
+
#~ msgid "Product successfully added to the cart."
|
480 |
+
#~ msgstr "Produkt erfolgreich im Warenkorb eingefügt "
|
languages/yit-es_AR.mo
CHANGED
Binary file
|
languages/yit-es_AR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: Español\n"
|
@@ -14,113 +14,113 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../class.yith-wcwl-init.php:
|
18 |
msgid "Wishlist"
|
19 |
msgstr "Lista de deseos"
|
20 |
|
21 |
-
#: ../class.yith-wcwl-init.php:
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr ""
|
24 |
"Perdón, pero no podemos agregarlo al carrito porque actualmente no tenemos "
|
25 |
"en stock."
|
26 |
|
27 |
-
#: ../class.yith-wcwl-init.php:
|
28 |
msgid "Wishlist Page"
|
29 |
msgstr "Lista de deseos"
|
30 |
|
31 |
-
#: ../class.yith-wcwl-init.php:
|
32 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
33 |
msgstr "Contenidos: [yith_wcwl_wishlist]"
|
34 |
|
35 |
-
#: ../class.yith-wcwl-init.php:
|
36 |
msgid "General Settings"
|
37 |
msgstr "Configuraciones generales"
|
38 |
|
39 |
-
#: ../class.yith-wcwl-init.php:
|
40 |
msgid "Styles"
|
41 |
msgstr "Estilos"
|
42 |
|
43 |
-
#: ../class.yith-wcwl-init.php:
|
44 |
msgid "Socials & Share"
|
45 |
msgstr "Sociales & Compartir"
|
46 |
|
47 |
-
#: ../class.yith-wcwl-init.php:
|
48 |
msgid "Colors"
|
49 |
msgstr "Colores"
|
50 |
|
51 |
-
#: ../class.yith-wcwl-init.php:
|
52 |
msgid "\"Add to Wishlist\" button background"
|
53 |
msgstr "Fondo del botón \"Agregar a la lista de deseos\""
|
54 |
|
55 |
-
#: ../class.yith-wcwl-init.php:
|
56 |
msgid "\"Add to Wishlist\" button text"
|
57 |
msgstr "Texto del botón \"Agregar a la lista de deseos\""
|
58 |
|
59 |
-
#: ../class.yith-wcwl-init.php:
|
60 |
msgid "\"Add to Wishlist\" button border"
|
61 |
msgstr "Borde del botón \"Agregar a la lista de deseos\""
|
62 |
|
63 |
-
#: ../class.yith-wcwl-init.php:
|
64 |
msgid "\"Add to Wishlist\" button background (hover)"
|
65 |
msgstr "Fondo del botón \"Agregar a la lista de deseos\" (hover)"
|
66 |
|
67 |
-
#: ../class.yith-wcwl-init.php:
|
68 |
msgid "\"Add to Wishlist\" button text (hover)"
|
69 |
msgstr "Texto del botón \"Agregar a la lista de deseos\" (hover)"
|
70 |
|
71 |
-
#: ../class.yith-wcwl-init.php:
|
72 |
msgid "\"Add to Wishlist\" button border (hover)"
|
73 |
msgstr "Borde del botón \"Agregar a la lista de deseos\" (hover)"
|
74 |
|
75 |
-
#: ../class.yith-wcwl-init.php:
|
76 |
msgid "\"Add to Cart\" button background"
|
77 |
msgstr "Fondo del botón \"Agregar al carrito\""
|
78 |
|
79 |
-
#: ../class.yith-wcwl-init.php:
|
80 |
msgid "\"Add to Cart\" button text"
|
81 |
msgstr "Texto del botón \"Agregar al carrito\""
|
82 |
|
83 |
-
#: ../class.yith-wcwl-init.php:
|
84 |
msgid "\"Add to Cart\" button border"
|
85 |
msgstr "Borde del botón \"Agregar al carrito\""
|
86 |
|
87 |
-
#: ../class.yith-wcwl-init.php:
|
88 |
msgid "\"Add to Cart\" button background (hover)"
|
89 |
msgstr "Fondo del botón \"Agregar al carrito\" (hover)"
|
90 |
|
91 |
-
#: ../class.yith-wcwl-init.php:
|
92 |
msgid "\"Add to Cart\" button text (hover)"
|
93 |
msgstr "Texto del botón \"Agregar al carrito\" (hover)"
|
94 |
|
95 |
-
#: ../class.yith-wcwl-init.php:
|
96 |
msgid "\"Add to Cart\" button border (hover)"
|
97 |
msgstr "Borde del botón \"Agregar al carrito\" (hover)"
|
98 |
|
99 |
-
#: ../class.yith-wcwl-init.php:
|
100 |
msgid "Wishlist table background"
|
101 |
msgstr "Fondo de la tabla de la Lista de Deseos"
|
102 |
|
103 |
-
#: ../class.yith-wcwl-init.php:
|
104 |
msgid "Wishlist table text"
|
105 |
msgstr "Texto de la tabla de la Lista de Deseos"
|
106 |
|
107 |
-
#: ../class.yith-wcwl-init.php:
|
108 |
msgid "Wishlist table border"
|
109 |
msgstr "Borde de la tabla de la Lista de Deseos"
|
110 |
|
111 |
-
#: ../class.yith-wcwl-init.php:
|
112 |
msgid "Settings"
|
113 |
msgstr "Configuraciones"
|
114 |
|
115 |
-
#: ../class.yith-wcwl-init.php:
|
116 |
msgid "Docs"
|
117 |
msgstr "Documentación"
|
118 |
|
119 |
-
#: ../class.yith-wcwl-init.php:
|
120 |
msgid "Enable YITH Wishlist"
|
121 |
msgstr "Habilitar YITH Wishlist"
|
122 |
|
123 |
-
#: ../class.yith-wcwl-init.php:
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -132,11 +132,11 @@ msgstr ""
|
|
132 |
"Páginas.</strong> También, por favor lee la <a href=\"%s\" target=\"_blank"
|
133 |
"\">documentación</a> del plugin."
|
134 |
|
135 |
-
#: ../class.yith-wcwl-init.php:
|
136 |
msgid "Use cookies"
|
137 |
msgstr "Usar cookies"
|
138 |
|
139 |
-
#: ../class.yith-wcwl-init.php:
|
140 |
msgid ""
|
141 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
142 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -148,21 +148,21 @@ msgstr ""
|
|
148 |
"Usa el filtro yith_wcwl_cookie_expiration_time para cambiar el tiempo de "
|
149 |
"expiración de la cookie (necesita marca de tiempo)."
|
150 |
|
151 |
-
#: ../class.yith-wcwl-init.php:
|
152 |
msgid "Wishlist title"
|
153 |
msgstr "Título de la Lista de deseos"
|
154 |
|
155 |
-
#: ../class.yith-wcwl-init.php:
|
156 |
-
#: ../class.yith-wcwl-init.php:
|
157 |
#, php-format
|
158 |
msgid "My wishlist on %s"
|
159 |
msgstr "Mi lista de deseos en %s"
|
160 |
|
161 |
-
#: ../class.yith-wcwl-init.php:
|
162 |
msgid "Position"
|
163 |
msgstr "Posición"
|
164 |
|
165 |
-
#: ../class.yith-wcwl-init.php:
|
166 |
msgid ""
|
167 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
168 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
@@ -170,27 +170,27 @@ msgstr ""
|
|
170 |
"En productos variables puedes agregarlo sólo Después de \"Agregar al carrito"
|
171 |
"\" o usar el shortcode [yith_wcwl_add_to_wishlist]. "
|
172 |
|
173 |
-
#: ../class.yith-wcwl-init.php:
|
174 |
msgid "After \"Add to cart\""
|
175 |
msgstr "Después de \"Agregar al carrito\""
|
176 |
|
177 |
-
#: ../class.yith-wcwl-init.php:
|
178 |
msgid "After thumbnails"
|
179 |
msgstr "Después de las miniaturas"
|
180 |
|
181 |
-
#: ../class.yith-wcwl-init.php:
|
182 |
msgid "After summary"
|
183 |
msgstr "Después del resúmen"
|
184 |
|
185 |
-
#: ../class.yith-wcwl-init.php:
|
186 |
msgid "Use shortcode"
|
187 |
msgstr "Usar shortcode"
|
188 |
|
189 |
-
#: ../class.yith-wcwl-init.php:
|
190 |
msgid "Redirect to cart"
|
191 |
msgstr "Redireccionar al carrito"
|
192 |
|
193 |
-
#: ../class.yith-wcwl-init.php:
|
194 |
msgid ""
|
195 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
196 |
"page."
|
@@ -198,111 +198,111 @@ msgstr ""
|
|
198 |
"Redireccionar a la página del carrito si se presiona el botón \"Agregar al "
|
199 |
"carrito\" en la página de la lista de deseos."
|
200 |
|
201 |
-
#: ../class.yith-wcwl-init.php:
|
202 |
msgid "Remove if added to the cart"
|
203 |
msgstr "Eliminar después de agregar al carrito"
|
204 |
|
205 |
-
#: ../class.yith-wcwl-init.php:
|
206 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
207 |
msgstr "Eliminar el producto de la lista de deseos si fue agregado al carrito."
|
208 |
|
209 |
-
#: ../class.yith-wcwl-init.php:
|
210 |
msgid "\"Add to Wishlist\" text"
|
211 |
msgstr "Texto de \"Agregar a la Lista de deseos\""
|
212 |
|
213 |
-
#: ../class.yith-wcwl-init.php:
|
214 |
msgid "Add to Wishlist"
|
215 |
msgstr "Agregar a la Lista de deseos"
|
216 |
|
217 |
-
#: ../class.yith-wcwl-init.php:
|
218 |
msgid "\"Add to Cart\" text"
|
219 |
msgstr "Texto de \"Agregar al carrito\""
|
220 |
|
221 |
-
#: ../class.yith-wcwl-init.php:
|
222 |
msgid "Add to Cart"
|
223 |
msgstr "Agregar al carrito"
|
224 |
|
225 |
-
#: ../class.yith-wcwl-init.php:
|
226 |
msgid "Show Unit price"
|
227 |
msgstr "Mostrar precio por unidad"
|
228 |
|
229 |
-
#: ../class.yith-wcwl-init.php:
|
230 |
msgid "Show \"Add to Cart\" button"
|
231 |
msgstr "Mostrar el botón \"Agregar al carrito\""
|
232 |
|
233 |
-
#: ../class.yith-wcwl-init.php:
|
234 |
msgid "Show Stock status"
|
235 |
msgstr "Mostrar estado del stock"
|
236 |
|
237 |
-
#: ../class.yith-wcwl-init.php:
|
238 |
msgid "Use buttons"
|
239 |
msgstr "Usar botones"
|
240 |
|
241 |
-
#: ../class.yith-wcwl-init.php:
|
242 |
msgid "Use buttons instead of a simple anchors."
|
243 |
msgstr "Usar botones en lugar de anclas simples."
|
244 |
|
245 |
-
#: ../class.yith-wcwl-init.php:
|
246 |
msgid "Custom CSS"
|
247 |
msgstr "CSS personalizado"
|
248 |
|
249 |
-
#: ../class.yith-wcwl-init.php:
|
250 |
msgid "Use theme style"
|
251 |
msgstr "Usar el estilo del tema"
|
252 |
|
253 |
-
#: ../class.yith-wcwl-init.php:
|
254 |
msgid "Use the theme style."
|
255 |
msgstr "Usar el estilo del tema."
|
256 |
|
257 |
-
#: ../class.yith-wcwl-init.php:
|
258 |
msgid "Buttons rounded corners"
|
259 |
msgstr "Botones con ángulos redondeados"
|
260 |
|
261 |
-
#: ../class.yith-wcwl-init.php:
|
262 |
msgid "Make buttons corner rounded"
|
263 |
msgstr "Redondear los ángulos de los botones"
|
264 |
|
265 |
-
#: ../class.yith-wcwl-init.php:
|
266 |
msgid "\"Add to Wishlist\" icon"
|
267 |
msgstr "Ícono de \"Agregar a la Lista de deseos\""
|
268 |
|
269 |
-
#: ../class.yith-wcwl-init.php:
|
270 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
271 |
msgstr "Agregar un ícono al botón de \"Agregar a la Lista de deseos\""
|
272 |
|
273 |
-
#: ../class.yith-wcwl-init.php:
|
274 |
msgid "\"Add to Cart\" icon"
|
275 |
msgstr "Ícono de \"Agregar al carrito\""
|
276 |
|
277 |
-
#: ../class.yith-wcwl-init.php:
|
278 |
msgid "Add an icon to the \"Add to Cart\" button"
|
279 |
msgstr "Agregar un ícono para el botón de \"Agregar al carrito\""
|
280 |
|
281 |
-
#: ../class.yith-wcwl-init.php:
|
282 |
msgid "Share on Facebook"
|
283 |
msgstr "Compartir en Facebook"
|
284 |
|
285 |
-
#: ../class.yith-wcwl-init.php:
|
286 |
msgid "Tweet on Twitter"
|
287 |
msgstr "Tuitear en Twitter"
|
288 |
|
289 |
-
#: ../class.yith-wcwl-init.php:
|
290 |
msgid "Pin on Pinterest"
|
291 |
msgstr "Compartir en Pinterest"
|
292 |
|
293 |
-
#: ../class.yith-wcwl-init.php:
|
294 |
msgid "Share on Google+"
|
295 |
msgstr "Compartir en Google+"
|
296 |
|
297 |
-
#: ../class.yith-wcwl-init.php:
|
298 |
msgid "Socials title"
|
299 |
msgstr "Título de sociales"
|
300 |
|
301 |
-
#: ../class.yith-wcwl-init.php:
|
302 |
msgid "Socials text"
|
303 |
msgstr "Texto de sociales"
|
304 |
|
305 |
-
#: ../class.yith-wcwl-init.php:
|
306 |
msgid ""
|
307 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
308 |
"strong> where you want the URL of your wishlist to appear."
|
@@ -310,7 +310,7 @@ msgstr ""
|
|
310 |
"Será usado por Facebook, Twitter y Pinterest. Usar <strong>%wishlist_url%</"
|
311 |
"strong> donde quieras que aparezca la URL de tu lista de deseos."
|
312 |
|
313 |
-
#: ../class.yith-wcwl-init.php:
|
314 |
msgid "Socials image URL"
|
315 |
msgstr "URL de las imágenes sociales"
|
316 |
|
@@ -374,32 +374,36 @@ msgstr ""
|
|
374 |
"nuevamente, por favor."
|
375 |
|
376 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
377 |
-
#: ../templates/wishlist.php:
|
378 |
msgid "No products were added to the wishlist"
|
379 |
msgstr "Tu lista de deseos está vacía por el momento..."
|
380 |
|
381 |
-
#: ../templates/wishlist.php:
|
382 |
msgid "Product Name"
|
383 |
msgstr "Producto"
|
384 |
|
385 |
-
#: ../templates/wishlist.php:
|
386 |
msgid "Unit Price"
|
387 |
msgstr "Precio por unidad"
|
388 |
|
389 |
-
#: ../templates/wishlist.php:
|
390 |
msgid "Stock Status"
|
391 |
msgstr "Estado de stock"
|
392 |
|
393 |
# Not literal but more friendly.
|
394 |
-
#: ../templates/wishlist.php:
|
395 |
msgid "Remove this product"
|
396 |
msgstr "Ya no lo quiero"
|
397 |
|
398 |
-
#: ../templates/wishlist.php:
|
|
|
|
|
|
|
|
|
399 |
msgid "Out of Stock"
|
400 |
msgstr "No disponible por el momento"
|
401 |
|
402 |
-
#: ../templates/wishlist.php:
|
403 |
msgid "In Stock"
|
404 |
msgstr "¡Disponible!"
|
405 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2014-02-26 15:56+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-26 15:56+0100\n"
|
6 |
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: Español\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
+
#: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
|
18 |
msgid "Wishlist"
|
19 |
msgstr "Lista de deseos"
|
20 |
|
21 |
+
#: ../class.yith-wcwl-init.php:353
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr ""
|
24 |
"Perdón, pero no podemos agregarlo al carrito porque actualmente no tenemos "
|
25 |
"en stock."
|
26 |
|
27 |
+
#: ../class.yith-wcwl-init.php:384
|
28 |
msgid "Wishlist Page"
|
29 |
msgstr "Lista de deseos"
|
30 |
|
31 |
+
#: ../class.yith-wcwl-init.php:385
|
32 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
33 |
msgstr "Contenidos: [yith_wcwl_wishlist]"
|
34 |
|
35 |
+
#: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
|
36 |
msgid "General Settings"
|
37 |
msgstr "Configuraciones generales"
|
38 |
|
39 |
+
#: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
|
40 |
msgid "Styles"
|
41 |
msgstr "Estilos"
|
42 |
|
43 |
+
#: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
|
44 |
msgid "Socials & Share"
|
45 |
msgstr "Sociales & Compartir"
|
46 |
|
47 |
+
#: ../class.yith-wcwl-init.php:450
|
48 |
msgid "Colors"
|
49 |
msgstr "Colores"
|
50 |
|
51 |
+
#: ../class.yith-wcwl-init.php:480
|
52 |
msgid "\"Add to Wishlist\" button background"
|
53 |
msgstr "Fondo del botón \"Agregar a la lista de deseos\""
|
54 |
|
55 |
+
#: ../class.yith-wcwl-init.php:481
|
56 |
msgid "\"Add to Wishlist\" button text"
|
57 |
msgstr "Texto del botón \"Agregar a la lista de deseos\""
|
58 |
|
59 |
+
#: ../class.yith-wcwl-init.php:482
|
60 |
msgid "\"Add to Wishlist\" button border"
|
61 |
msgstr "Borde del botón \"Agregar a la lista de deseos\""
|
62 |
|
63 |
+
#: ../class.yith-wcwl-init.php:488
|
64 |
msgid "\"Add to Wishlist\" button background (hover)"
|
65 |
msgstr "Fondo del botón \"Agregar a la lista de deseos\" (hover)"
|
66 |
|
67 |
+
#: ../class.yith-wcwl-init.php:489
|
68 |
msgid "\"Add to Wishlist\" button text (hover)"
|
69 |
msgstr "Texto del botón \"Agregar a la lista de deseos\" (hover)"
|
70 |
|
71 |
+
#: ../class.yith-wcwl-init.php:490
|
72 |
msgid "\"Add to Wishlist\" button border (hover)"
|
73 |
msgstr "Borde del botón \"Agregar a la lista de deseos\" (hover)"
|
74 |
|
75 |
+
#: ../class.yith-wcwl-init.php:495
|
76 |
msgid "\"Add to Cart\" button background"
|
77 |
msgstr "Fondo del botón \"Agregar al carrito\""
|
78 |
|
79 |
+
#: ../class.yith-wcwl-init.php:496
|
80 |
msgid "\"Add to Cart\" button text"
|
81 |
msgstr "Texto del botón \"Agregar al carrito\""
|
82 |
|
83 |
+
#: ../class.yith-wcwl-init.php:497
|
84 |
msgid "\"Add to Cart\" button border"
|
85 |
msgstr "Borde del botón \"Agregar al carrito\""
|
86 |
|
87 |
+
#: ../class.yith-wcwl-init.php:503
|
88 |
msgid "\"Add to Cart\" button background (hover)"
|
89 |
msgstr "Fondo del botón \"Agregar al carrito\" (hover)"
|
90 |
|
91 |
+
#: ../class.yith-wcwl-init.php:504
|
92 |
msgid "\"Add to Cart\" button text (hover)"
|
93 |
msgstr "Texto del botón \"Agregar al carrito\" (hover)"
|
94 |
|
95 |
+
#: ../class.yith-wcwl-init.php:505
|
96 |
msgid "\"Add to Cart\" button border (hover)"
|
97 |
msgstr "Borde del botón \"Agregar al carrito\" (hover)"
|
98 |
|
99 |
+
#: ../class.yith-wcwl-init.php:510
|
100 |
msgid "Wishlist table background"
|
101 |
msgstr "Fondo de la tabla de la Lista de Deseos"
|
102 |
|
103 |
+
#: ../class.yith-wcwl-init.php:511
|
104 |
msgid "Wishlist table text"
|
105 |
msgstr "Texto de la tabla de la Lista de Deseos"
|
106 |
|
107 |
+
#: ../class.yith-wcwl-init.php:512
|
108 |
msgid "Wishlist table border"
|
109 |
msgstr "Borde de la tabla de la Lista de Deseos"
|
110 |
|
111 |
+
#: ../class.yith-wcwl-init.php:572
|
112 |
msgid "Settings"
|
113 |
msgstr "Configuraciones"
|
114 |
|
115 |
+
#: ../class.yith-wcwl-init.php:573
|
116 |
msgid "Docs"
|
117 |
msgstr "Documentación"
|
118 |
|
119 |
+
#: ../class.yith-wcwl-init.php:823
|
120 |
msgid "Enable YITH Wishlist"
|
121 |
msgstr "Habilitar YITH Wishlist"
|
122 |
|
123 |
+
#: ../class.yith-wcwl-init.php:824
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
132 |
"Páginas.</strong> También, por favor lee la <a href=\"%s\" target=\"_blank"
|
133 |
"\">documentación</a> del plugin."
|
134 |
|
135 |
+
#: ../class.yith-wcwl-init.php:831
|
136 |
msgid "Use cookies"
|
137 |
msgstr "Usar cookies"
|
138 |
|
139 |
+
#: ../class.yith-wcwl-init.php:832
|
140 |
msgid ""
|
141 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
142 |
"available for each not logged user for 30 days. Use the filter "
|
148 |
"Usa el filtro yith_wcwl_cookie_expiration_time para cambiar el tiempo de "
|
149 |
"expiración de la cookie (necesita marca de tiempo)."
|
150 |
|
151 |
+
#: ../class.yith-wcwl-init.php:839
|
152 |
msgid "Wishlist title"
|
153 |
msgstr "Título de la Lista de deseos"
|
154 |
|
155 |
+
#: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
|
156 |
+
#: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
|
157 |
#, php-format
|
158 |
msgid "My wishlist on %s"
|
159 |
msgstr "Mi lista de deseos en %s"
|
160 |
|
161 |
+
#: ../class.yith-wcwl-init.php:847
|
162 |
msgid "Position"
|
163 |
msgstr "Posición"
|
164 |
|
165 |
+
#: ../class.yith-wcwl-init.php:848
|
166 |
msgid ""
|
167 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
168 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
170 |
"En productos variables puedes agregarlo sólo Después de \"Agregar al carrito"
|
171 |
"\" o usar el shortcode [yith_wcwl_add_to_wishlist]. "
|
172 |
|
173 |
+
#: ../class.yith-wcwl-init.php:854
|
174 |
msgid "After \"Add to cart\""
|
175 |
msgstr "Después de \"Agregar al carrito\""
|
176 |
|
177 |
+
#: ../class.yith-wcwl-init.php:855
|
178 |
msgid "After thumbnails"
|
179 |
msgstr "Después de las miniaturas"
|
180 |
|
181 |
+
#: ../class.yith-wcwl-init.php:856
|
182 |
msgid "After summary"
|
183 |
msgstr "Después del resúmen"
|
184 |
|
185 |
+
#: ../class.yith-wcwl-init.php:857
|
186 |
msgid "Use shortcode"
|
187 |
msgstr "Usar shortcode"
|
188 |
|
189 |
+
#: ../class.yith-wcwl-init.php:862
|
190 |
msgid "Redirect to cart"
|
191 |
msgstr "Redireccionar al carrito"
|
192 |
|
193 |
+
#: ../class.yith-wcwl-init.php:863
|
194 |
msgid ""
|
195 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
196 |
"page."
|
198 |
"Redireccionar a la página del carrito si se presiona el botón \"Agregar al "
|
199 |
"carrito\" en la página de la lista de deseos."
|
200 |
|
201 |
+
#: ../class.yith-wcwl-init.php:870
|
202 |
msgid "Remove if added to the cart"
|
203 |
msgstr "Eliminar después de agregar al carrito"
|
204 |
|
205 |
+
#: ../class.yith-wcwl-init.php:871
|
206 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
207 |
msgstr "Eliminar el producto de la lista de deseos si fue agregado al carrito."
|
208 |
|
209 |
+
#: ../class.yith-wcwl-init.php:878
|
210 |
msgid "\"Add to Wishlist\" text"
|
211 |
msgstr "Texto de \"Agregar a la Lista de deseos\""
|
212 |
|
213 |
+
#: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
|
214 |
msgid "Add to Wishlist"
|
215 |
msgstr "Agregar a la Lista de deseos"
|
216 |
|
217 |
+
#: ../class.yith-wcwl-init.php:886
|
218 |
msgid "\"Add to Cart\" text"
|
219 |
msgstr "Texto de \"Agregar al carrito\""
|
220 |
|
221 |
+
#: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
|
222 |
msgid "Add to Cart"
|
223 |
msgstr "Agregar al carrito"
|
224 |
|
225 |
+
#: ../class.yith-wcwl-init.php:894
|
226 |
msgid "Show Unit price"
|
227 |
msgstr "Mostrar precio por unidad"
|
228 |
|
229 |
+
#: ../class.yith-wcwl-init.php:902
|
230 |
msgid "Show \"Add to Cart\" button"
|
231 |
msgstr "Mostrar el botón \"Agregar al carrito\""
|
232 |
|
233 |
+
#: ../class.yith-wcwl-init.php:910
|
234 |
msgid "Show Stock status"
|
235 |
msgstr "Mostrar estado del stock"
|
236 |
|
237 |
+
#: ../class.yith-wcwl-init.php:925
|
238 |
msgid "Use buttons"
|
239 |
msgstr "Usar botones"
|
240 |
|
241 |
+
#: ../class.yith-wcwl-init.php:926
|
242 |
msgid "Use buttons instead of a simple anchors."
|
243 |
msgstr "Usar botones en lugar de anclas simples."
|
244 |
|
245 |
+
#: ../class.yith-wcwl-init.php:933
|
246 |
msgid "Custom CSS"
|
247 |
msgstr "CSS personalizado"
|
248 |
|
249 |
+
#: ../class.yith-wcwl-init.php:941
|
250 |
msgid "Use theme style"
|
251 |
msgstr "Usar el estilo del tema"
|
252 |
|
253 |
+
#: ../class.yith-wcwl-init.php:942
|
254 |
msgid "Use the theme style."
|
255 |
msgstr "Usar el estilo del tema."
|
256 |
|
257 |
+
#: ../class.yith-wcwl-init.php:949
|
258 |
msgid "Buttons rounded corners"
|
259 |
msgstr "Botones con ángulos redondeados"
|
260 |
|
261 |
+
#: ../class.yith-wcwl-init.php:950
|
262 |
msgid "Make buttons corner rounded"
|
263 |
msgstr "Redondear los ángulos de los botones"
|
264 |
|
265 |
+
#: ../class.yith-wcwl-init.php:957
|
266 |
msgid "\"Add to Wishlist\" icon"
|
267 |
msgstr "Ícono de \"Agregar a la Lista de deseos\""
|
268 |
|
269 |
+
#: ../class.yith-wcwl-init.php:958
|
270 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
271 |
msgstr "Agregar un ícono al botón de \"Agregar a la Lista de deseos\""
|
272 |
|
273 |
+
#: ../class.yith-wcwl-init.php:969
|
274 |
msgid "\"Add to Cart\" icon"
|
275 |
msgstr "Ícono de \"Agregar al carrito\""
|
276 |
|
277 |
+
#: ../class.yith-wcwl-init.php:970
|
278 |
msgid "Add an icon to the \"Add to Cart\" button"
|
279 |
msgstr "Agregar un ícono para el botón de \"Agregar al carrito\""
|
280 |
|
281 |
+
#: ../class.yith-wcwl-init.php:988
|
282 |
msgid "Share on Facebook"
|
283 |
msgstr "Compartir en Facebook"
|
284 |
|
285 |
+
#: ../class.yith-wcwl-init.php:995
|
286 |
msgid "Tweet on Twitter"
|
287 |
msgstr "Tuitear en Twitter"
|
288 |
|
289 |
+
#: ../class.yith-wcwl-init.php:1002
|
290 |
msgid "Pin on Pinterest"
|
291 |
msgstr "Compartir en Pinterest"
|
292 |
|
293 |
+
#: ../class.yith-wcwl-init.php:1009
|
294 |
msgid "Share on Google+"
|
295 |
msgstr "Compartir en Google+"
|
296 |
|
297 |
+
#: ../class.yith-wcwl-init.php:1016
|
298 |
msgid "Socials title"
|
299 |
msgstr "Título de sociales"
|
300 |
|
301 |
+
#: ../class.yith-wcwl-init.php:1024
|
302 |
msgid "Socials text"
|
303 |
msgstr "Texto de sociales"
|
304 |
|
305 |
+
#: ../class.yith-wcwl-init.php:1025
|
306 |
msgid ""
|
307 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
308 |
"strong> where you want the URL of your wishlist to appear."
|
310 |
"Será usado por Facebook, Twitter y Pinterest. Usar <strong>%wishlist_url%</"
|
311 |
"strong> donde quieras que aparezca la URL de tu lista de deseos."
|
312 |
|
313 |
+
#: ../class.yith-wcwl-init.php:1033
|
314 |
msgid "Socials image URL"
|
315 |
msgstr "URL de las imágenes sociales"
|
316 |
|
374 |
"nuevamente, por favor."
|
375 |
|
376 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
377 |
+
#: ../templates/wishlist.php:158
|
378 |
msgid "No products were added to the wishlist"
|
379 |
msgstr "Tu lista de deseos está vacía por el momento..."
|
380 |
|
381 |
+
#: ../templates/wishlist.php:80
|
382 |
msgid "Product Name"
|
383 |
msgstr "Producto"
|
384 |
|
385 |
+
#: ../templates/wishlist.php:81
|
386 |
msgid "Unit Price"
|
387 |
msgstr "Precio por unidad"
|
388 |
|
389 |
+
#: ../templates/wishlist.php:82
|
390 |
msgid "Stock Status"
|
391 |
msgstr "Estado de stock"
|
392 |
|
393 |
# Not literal but more friendly.
|
394 |
+
#: ../templates/wishlist.php:104
|
395 |
msgid "Remove this product"
|
396 |
msgstr "Ya no lo quiero"
|
397 |
|
398 |
+
#: ../templates/wishlist.php:124
|
399 |
+
msgid "Free!"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: ../templates/wishlist.php:137
|
403 |
msgid "Out of Stock"
|
404 |
msgstr "No disponible por el momento"
|
405 |
|
406 |
+
#: ../templates/wishlist.php:140
|
407 |
msgid "In Stock"
|
408 |
msgstr "¡Disponible!"
|
409 |
|
languages/yit-es_MX.mo
CHANGED
Binary file
|
languages/yit-es_MX.po
CHANGED
@@ -1,124 +1,124 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../class.yith-wcwl-init.php:
|
18 |
msgid "Wishlist"
|
19 |
msgstr "Lista de deseos"
|
20 |
|
21 |
-
#: ../class.yith-wcwl-init.php:
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr "No se ha podido agregar, el producto no cuenta con existencias."
|
24 |
|
25 |
-
#: ../class.yith-wcwl-init.php:
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr "Página de la Lista de Deseos"
|
28 |
|
29 |
-
#: ../class.yith-wcwl-init.php:
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../class.yith-wcwl-init.php:
|
34 |
msgid "General Settings"
|
35 |
msgstr "Ajustes Generales"
|
36 |
|
37 |
-
#: ../class.yith-wcwl-init.php:
|
38 |
msgid "Styles"
|
39 |
msgstr "Estilos"
|
40 |
|
41 |
-
#: ../class.yith-wcwl-init.php:
|
42 |
msgid "Socials & Share"
|
43 |
msgstr "Compartir"
|
44 |
|
45 |
-
#: ../class.yith-wcwl-init.php:
|
46 |
msgid "Colors"
|
47 |
msgstr "Colores"
|
48 |
|
49 |
-
#: ../class.yith-wcwl-init.php:
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr "\"Agregar a Lista de deseos\" Color de fondo del boton"
|
52 |
|
53 |
-
#: ../class.yith-wcwl-init.php:
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr "\"Agregar a Lista de deseos\" texto del boton"
|
56 |
|
57 |
-
#: ../class.yith-wcwl-init.php:
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr "\"Agregar a Lista de deseos\" borde del boton"
|
60 |
|
61 |
-
#: ../class.yith-wcwl-init.php:
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr "\"Agregar a Lista de deseos\" fondo del boton (hover)"
|
64 |
|
65 |
-
#: ../class.yith-wcwl-init.php:
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr "\"Agregar a Lista de deseos\" texto del boton (hover)"
|
68 |
|
69 |
-
#: ../class.yith-wcwl-init.php:
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr "\"Agregar a Lista de deseos\" borde del boton (hover)"
|
72 |
|
73 |
-
#: ../class.yith-wcwl-init.php:
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr "\"Agregar al Carrito\" fondo del boton"
|
76 |
|
77 |
-
#: ../class.yith-wcwl-init.php:
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr "\"Agregar al Carrito\" texto del boton"
|
80 |
|
81 |
-
#: ../class.yith-wcwl-init.php:
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr "\"Agregar al Carrito\" borde del boton"
|
84 |
|
85 |
-
#: ../class.yith-wcwl-init.php:
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr "\"Agregar al Carrito\" fondo del boton"
|
88 |
|
89 |
-
#: ../class.yith-wcwl-init.php:
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr "\"Agregar al Carrito\" texto del boton (hover)"
|
92 |
|
93 |
-
#: ../class.yith-wcwl-init.php:
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr "\"Agregar al Carrito\" borde del boton(hover)"
|
96 |
|
97 |
-
#: ../class.yith-wcwl-init.php:
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr "\"Agregar al Carrito\" texto del boton"
|
100 |
|
101 |
-
#: ../class.yith-wcwl-init.php:
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr "Texto de la tabla de la Lista de deseos"
|
104 |
|
105 |
-
#: ../class.yith-wcwl-init.php:
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr "Borde de la tabla de la Lista de deseos"
|
108 |
|
109 |
-
#: ../class.yith-wcwl-init.php:
|
110 |
msgid "Settings"
|
111 |
msgstr "Ajustes"
|
112 |
|
113 |
-
#: ../class.yith-wcwl-init.php:
|
114 |
msgid "Docs"
|
115 |
msgstr "Documentación"
|
116 |
|
117 |
-
#: ../class.yith-wcwl-init.php:
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr "Activar la Lista de deseos de YITH"
|
120 |
|
121 |
-
#: ../class.yith-wcwl-init.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -130,11 +130,11 @@ msgstr ""
|
|
130 |
"Páginas.</strong>Por favor lea la <a href=\"%s\" target=\"_blank"
|
131 |
"\">documentación</a>. del plugin"
|
132 |
|
133 |
-
#: ../class.yith-wcwl-init.php:
|
134 |
msgid "Use cookies"
|
135 |
msgstr "Usar cookies"
|
136 |
|
137 |
-
#: ../class.yith-wcwl-init.php:
|
138 |
msgid ""
|
139 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
140 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -146,21 +146,21 @@ msgstr ""
|
|
146 |
"el filtro yith_wcwl_cookie_expiration_time para cambiar el tiempo de "
|
147 |
"expiración (se necesita usar timestamp)."
|
148 |
|
149 |
-
#: ../class.yith-wcwl-init.php:
|
150 |
msgid "Wishlist title"
|
151 |
msgstr "Título de la Lista de deseos"
|
152 |
|
153 |
-
#: ../class.yith-wcwl-init.php:
|
154 |
-
#: ../class.yith-wcwl-init.php:
|
155 |
#, php-format
|
156 |
msgid "My wishlist on %s"
|
157 |
msgstr "My Lista de deseos en %s"
|
158 |
|
159 |
-
#: ../class.yith-wcwl-init.php:
|
160 |
msgid "Position"
|
161 |
msgstr "Posición"
|
162 |
|
163 |
-
#: ../class.yith-wcwl-init.php:
|
164 |
msgid ""
|
165 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
166 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
@@ -168,27 +168,27 @@ msgstr ""
|
|
168 |
"En productos variables puedes agregarlos solo despues de \"Agregar al "
|
169 |
"Carrito\" o usar el shortcode [yith_wcwl_add_to_wishlist]."
|
170 |
|
171 |
-
#: ../class.yith-wcwl-init.php:
|
172 |
msgid "After \"Add to cart\""
|
173 |
msgstr "Despued de \"Agregar al Carrito\""
|
174 |
|
175 |
-
#: ../class.yith-wcwl-init.php:
|
176 |
msgid "After thumbnails"
|
177 |
msgstr "Despues de las miniaturas"
|
178 |
|
179 |
-
#: ../class.yith-wcwl-init.php:
|
180 |
msgid "After summary"
|
181 |
msgstr "Despues del Resumen"
|
182 |
|
183 |
-
#: ../class.yith-wcwl-init.php:
|
184 |
msgid "Use shortcode"
|
185 |
msgstr "Usar shortcode"
|
186 |
|
187 |
-
#: ../class.yith-wcwl-init.php:
|
188 |
msgid "Redirect to cart"
|
189 |
msgstr "Redirreccionar al Carrito"
|
190 |
|
191 |
-
#: ../class.yith-wcwl-init.php:
|
192 |
msgid ""
|
193 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
194 |
"page."
|
@@ -196,112 +196,112 @@ msgstr ""
|
|
196 |
"Redireccionar a la página del Carrito si el boton de \"Agregar al Carrito\" "
|
197 |
"es presionado en la página de la Lista de deseos."
|
198 |
|
199 |
-
#: ../class.yith-wcwl-init.php:
|
200 |
msgid "Remove if added to the cart"
|
201 |
msgstr "Remover si es agregado al Carrito."
|
202 |
|
203 |
-
#: ../class.yith-wcwl-init.php:
|
204 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
205 |
msgstr ""
|
206 |
"Remover el producto de la Lista de deseos si ha sido agregado al Carrito."
|
207 |
|
208 |
-
#: ../class.yith-wcwl-init.php:
|
209 |
msgid "\"Add to Wishlist\" text"
|
210 |
msgstr "Testo de \"Agregar al Carrito\""
|
211 |
|
212 |
-
#: ../class.yith-wcwl-init.php:
|
213 |
msgid "Add to Wishlist"
|
214 |
msgstr "Agregar a la Lista de deseos"
|
215 |
|
216 |
-
#: ../class.yith-wcwl-init.php:
|
217 |
msgid "\"Add to Cart\" text"
|
218 |
msgstr "Texto de \"Agregar del Carrito\""
|
219 |
|
220 |
-
#: ../class.yith-wcwl-init.php:
|
221 |
msgid "Add to Cart"
|
222 |
msgstr "Agregar al Carrito"
|
223 |
|
224 |
-
#: ../class.yith-wcwl-init.php:
|
225 |
msgid "Show Unit price"
|
226 |
msgstr "Mostrar Precio unitario"
|
227 |
|
228 |
-
#: ../class.yith-wcwl-init.php:
|
229 |
msgid "Show \"Add to Cart\" button"
|
230 |
msgstr "Mostar el boton de \"Agregar al Carrito\" "
|
231 |
|
232 |
-
#: ../class.yith-wcwl-init.php:
|
233 |
msgid "Show Stock status"
|
234 |
msgstr "Mostar el estado del inventario"
|
235 |
|
236 |
-
#: ../class.yith-wcwl-init.php:
|
237 |
msgid "Use buttons"
|
238 |
msgstr "Usar botones"
|
239 |
|
240 |
-
#: ../class.yith-wcwl-init.php:
|
241 |
msgid "Use buttons instead of a simple anchors."
|
242 |
msgstr "Usar botones en lugar de un simple elnaces"
|
243 |
|
244 |
-
#: ../class.yith-wcwl-init.php:
|
245 |
msgid "Custom CSS"
|
246 |
msgstr "Css personalizado"
|
247 |
|
248 |
-
#: ../class.yith-wcwl-init.php:
|
249 |
msgid "Use theme style"
|
250 |
msgstr "Usar estilo del tema"
|
251 |
|
252 |
-
#: ../class.yith-wcwl-init.php:
|
253 |
msgid "Use the theme style."
|
254 |
msgstr "Usar el estilo del tema"
|
255 |
|
256 |
-
#: ../class.yith-wcwl-init.php:
|
257 |
msgid "Buttons rounded corners"
|
258 |
msgstr "Bordes redondeados para los botones"
|
259 |
|
260 |
-
#: ../class.yith-wcwl-init.php:
|
261 |
msgid "Make buttons corner rounded"
|
262 |
msgstr "Redondear los bordes de los botones"
|
263 |
|
264 |
-
#: ../class.yith-wcwl-init.php:
|
265 |
msgid "\"Add to Wishlist\" icon"
|
266 |
msgstr "Icono de \"Agregar a la Lista de deseos\""
|
267 |
|
268 |
-
#: ../class.yith-wcwl-init.php:
|
269 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
270 |
msgstr "Agregar un icono para el boton de \"Agregar a la Lista de deseos\""
|
271 |
|
272 |
-
#: ../class.yith-wcwl-init.php:
|
273 |
msgid "\"Add to Cart\" icon"
|
274 |
msgstr "Icono de \"Agregar al carrito\""
|
275 |
|
276 |
-
#: ../class.yith-wcwl-init.php:
|
277 |
msgid "Add an icon to the \"Add to Cart\" button"
|
278 |
msgstr "Agregar un icono para el boton de \"Agregar al Carrito\""
|
279 |
|
280 |
-
#: ../class.yith-wcwl-init.php:
|
281 |
msgid "Share on Facebook"
|
282 |
msgstr "Compartir en Facebook"
|
283 |
|
284 |
-
#: ../class.yith-wcwl-init.php:
|
285 |
msgid "Tweet on Twitter"
|
286 |
msgstr "Tweet en Twitter"
|
287 |
|
288 |
-
#: ../class.yith-wcwl-init.php:
|
289 |
msgid "Pin on Pinterest"
|
290 |
msgstr "Pin en Pinterest"
|
291 |
|
292 |
-
#: ../class.yith-wcwl-init.php:
|
293 |
msgid "Share on Google+"
|
294 |
msgstr "Compartir en Google+"
|
295 |
|
296 |
-
#: ../class.yith-wcwl-init.php:
|
297 |
msgid "Socials title"
|
298 |
msgstr "Tiítulo de Redes sociales"
|
299 |
|
300 |
-
#: ../class.yith-wcwl-init.php:
|
301 |
msgid "Socials text"
|
302 |
msgstr "Texto de redes sociales"
|
303 |
|
304 |
-
#: ../class.yith-wcwl-init.php:
|
305 |
msgid ""
|
306 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
307 |
"strong> where you want the URL of your wishlist to appear."
|
@@ -309,7 +309,7 @@ msgstr ""
|
|
309 |
"Será usado por Facebook, Twitter y Pinterest. Usa <strong>%wishlist_url%</"
|
310 |
"strong> donde quieras que la URL de tu Lista de deseos aparesca."
|
311 |
|
312 |
-
#: ../class.yith-wcwl-init.php:
|
313 |
msgid "Socials image URL"
|
314 |
msgstr "URL de la imágen de las redes Sociales."
|
315 |
|
@@ -367,35 +367,35 @@ msgid "Error. Unable to remove the product from the wishlist."
|
|
367 |
msgstr "Error. No fue posible eliminar el producto de la Lista."
|
368 |
|
369 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
370 |
-
#: ../templates/wishlist.php:
|
371 |
msgid "No products were added to the wishlist"
|
372 |
msgstr "Aun no has agregado nada."
|
373 |
|
374 |
-
#: ../templates/wishlist.php:
|
375 |
msgid "Product Name"
|
376 |
msgstr "Nombre del producto"
|
377 |
|
378 |
-
#: ../templates/wishlist.php:
|
379 |
msgid "Unit Price"
|
380 |
msgstr "Precio unitario"
|
381 |
|
382 |
-
#: ../templates/wishlist.php:
|
383 |
msgid "Stock Status"
|
384 |
msgstr "Estado del inventario"
|
385 |
|
386 |
-
#: ../templates/wishlist.php:
|
387 |
msgid "Remove this product"
|
388 |
msgstr "Remover este producto"
|
389 |
|
390 |
-
#: ../templates/wishlist.php:
|
391 |
msgid "Free!"
|
392 |
msgstr "Gratis!"
|
393 |
|
394 |
-
#: ../templates/wishlist.php:
|
395 |
msgid "Out of Stock"
|
396 |
msgstr "Agotado"
|
397 |
|
398 |
-
#: ../templates/wishlist.php:
|
399 |
msgid "In Stock"
|
400 |
msgstr "Disponilbe."
|
401 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2014-02-26 15:56+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-26 15:56+0100\n"
|
6 |
"Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.5\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
+
#: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
|
18 |
msgid "Wishlist"
|
19 |
msgstr "Lista de deseos"
|
20 |
|
21 |
+
#: ../class.yith-wcwl-init.php:353
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr "No se ha podido agregar, el producto no cuenta con existencias."
|
24 |
|
25 |
+
#: ../class.yith-wcwl-init.php:384
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr "Página de la Lista de Deseos"
|
28 |
|
29 |
+
#: ../class.yith-wcwl-init.php:385
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
|
34 |
msgid "General Settings"
|
35 |
msgstr "Ajustes Generales"
|
36 |
|
37 |
+
#: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
|
38 |
msgid "Styles"
|
39 |
msgstr "Estilos"
|
40 |
|
41 |
+
#: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
|
42 |
msgid "Socials & Share"
|
43 |
msgstr "Compartir"
|
44 |
|
45 |
+
#: ../class.yith-wcwl-init.php:450
|
46 |
msgid "Colors"
|
47 |
msgstr "Colores"
|
48 |
|
49 |
+
#: ../class.yith-wcwl-init.php:480
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr "\"Agregar a Lista de deseos\" Color de fondo del boton"
|
52 |
|
53 |
+
#: ../class.yith-wcwl-init.php:481
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr "\"Agregar a Lista de deseos\" texto del boton"
|
56 |
|
57 |
+
#: ../class.yith-wcwl-init.php:482
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr "\"Agregar a Lista de deseos\" borde del boton"
|
60 |
|
61 |
+
#: ../class.yith-wcwl-init.php:488
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr "\"Agregar a Lista de deseos\" fondo del boton (hover)"
|
64 |
|
65 |
+
#: ../class.yith-wcwl-init.php:489
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr "\"Agregar a Lista de deseos\" texto del boton (hover)"
|
68 |
|
69 |
+
#: ../class.yith-wcwl-init.php:490
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr "\"Agregar a Lista de deseos\" borde del boton (hover)"
|
72 |
|
73 |
+
#: ../class.yith-wcwl-init.php:495
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr "\"Agregar al Carrito\" fondo del boton"
|
76 |
|
77 |
+
#: ../class.yith-wcwl-init.php:496
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr "\"Agregar al Carrito\" texto del boton"
|
80 |
|
81 |
+
#: ../class.yith-wcwl-init.php:497
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr "\"Agregar al Carrito\" borde del boton"
|
84 |
|
85 |
+
#: ../class.yith-wcwl-init.php:503
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr "\"Agregar al Carrito\" fondo del boton"
|
88 |
|
89 |
+
#: ../class.yith-wcwl-init.php:504
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr "\"Agregar al Carrito\" texto del boton (hover)"
|
92 |
|
93 |
+
#: ../class.yith-wcwl-init.php:505
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr "\"Agregar al Carrito\" borde del boton(hover)"
|
96 |
|
97 |
+
#: ../class.yith-wcwl-init.php:510
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr "\"Agregar al Carrito\" texto del boton"
|
100 |
|
101 |
+
#: ../class.yith-wcwl-init.php:511
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr "Texto de la tabla de la Lista de deseos"
|
104 |
|
105 |
+
#: ../class.yith-wcwl-init.php:512
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr "Borde de la tabla de la Lista de deseos"
|
108 |
|
109 |
+
#: ../class.yith-wcwl-init.php:572
|
110 |
msgid "Settings"
|
111 |
msgstr "Ajustes"
|
112 |
|
113 |
+
#: ../class.yith-wcwl-init.php:573
|
114 |
msgid "Docs"
|
115 |
msgstr "Documentación"
|
116 |
|
117 |
+
#: ../class.yith-wcwl-init.php:823
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr "Activar la Lista de deseos de YITH"
|
120 |
|
121 |
+
#: ../class.yith-wcwl-init.php:824
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
130 |
"Páginas.</strong>Por favor lea la <a href=\"%s\" target=\"_blank"
|
131 |
"\">documentación</a>. del plugin"
|
132 |
|
133 |
+
#: ../class.yith-wcwl-init.php:831
|
134 |
msgid "Use cookies"
|
135 |
msgstr "Usar cookies"
|
136 |
|
137 |
+
#: ../class.yith-wcwl-init.php:832
|
138 |
msgid ""
|
139 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
140 |
"available for each not logged user for 30 days. Use the filter "
|
146 |
"el filtro yith_wcwl_cookie_expiration_time para cambiar el tiempo de "
|
147 |
"expiración (se necesita usar timestamp)."
|
148 |
|
149 |
+
#: ../class.yith-wcwl-init.php:839
|
150 |
msgid "Wishlist title"
|
151 |
msgstr "Título de la Lista de deseos"
|
152 |
|
153 |
+
#: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
|
154 |
+
#: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
|
155 |
#, php-format
|
156 |
msgid "My wishlist on %s"
|
157 |
msgstr "My Lista de deseos en %s"
|
158 |
|
159 |
+
#: ../class.yith-wcwl-init.php:847
|
160 |
msgid "Position"
|
161 |
msgstr "Posición"
|
162 |
|
163 |
+
#: ../class.yith-wcwl-init.php:848
|
164 |
msgid ""
|
165 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
166 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
168 |
"En productos variables puedes agregarlos solo despues de \"Agregar al "
|
169 |
"Carrito\" o usar el shortcode [yith_wcwl_add_to_wishlist]."
|
170 |
|
171 |
+
#: ../class.yith-wcwl-init.php:854
|
172 |
msgid "After \"Add to cart\""
|
173 |
msgstr "Despued de \"Agregar al Carrito\""
|
174 |
|
175 |
+
#: ../class.yith-wcwl-init.php:855
|
176 |
msgid "After thumbnails"
|
177 |
msgstr "Despues de las miniaturas"
|
178 |
|
179 |
+
#: ../class.yith-wcwl-init.php:856
|
180 |
msgid "After summary"
|
181 |
msgstr "Despues del Resumen"
|
182 |
|
183 |
+
#: ../class.yith-wcwl-init.php:857
|
184 |
msgid "Use shortcode"
|
185 |
msgstr "Usar shortcode"
|
186 |
|
187 |
+
#: ../class.yith-wcwl-init.php:862
|
188 |
msgid "Redirect to cart"
|
189 |
msgstr "Redirreccionar al Carrito"
|
190 |
|
191 |
+
#: ../class.yith-wcwl-init.php:863
|
192 |
msgid ""
|
193 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
194 |
"page."
|
196 |
"Redireccionar a la página del Carrito si el boton de \"Agregar al Carrito\" "
|
197 |
"es presionado en la página de la Lista de deseos."
|
198 |
|
199 |
+
#: ../class.yith-wcwl-init.php:870
|
200 |
msgid "Remove if added to the cart"
|
201 |
msgstr "Remover si es agregado al Carrito."
|
202 |
|
203 |
+
#: ../class.yith-wcwl-init.php:871
|
204 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
205 |
msgstr ""
|
206 |
"Remover el producto de la Lista de deseos si ha sido agregado al Carrito."
|
207 |
|
208 |
+
#: ../class.yith-wcwl-init.php:878
|
209 |
msgid "\"Add to Wishlist\" text"
|
210 |
msgstr "Testo de \"Agregar al Carrito\""
|
211 |
|
212 |
+
#: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
|
213 |
msgid "Add to Wishlist"
|
214 |
msgstr "Agregar a la Lista de deseos"
|
215 |
|
216 |
+
#: ../class.yith-wcwl-init.php:886
|
217 |
msgid "\"Add to Cart\" text"
|
218 |
msgstr "Texto de \"Agregar del Carrito\""
|
219 |
|
220 |
+
#: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
|
221 |
msgid "Add to Cart"
|
222 |
msgstr "Agregar al Carrito"
|
223 |
|
224 |
+
#: ../class.yith-wcwl-init.php:894
|
225 |
msgid "Show Unit price"
|
226 |
msgstr "Mostrar Precio unitario"
|
227 |
|
228 |
+
#: ../class.yith-wcwl-init.php:902
|
229 |
msgid "Show \"Add to Cart\" button"
|
230 |
msgstr "Mostar el boton de \"Agregar al Carrito\" "
|
231 |
|
232 |
+
#: ../class.yith-wcwl-init.php:910
|
233 |
msgid "Show Stock status"
|
234 |
msgstr "Mostar el estado del inventario"
|
235 |
|
236 |
+
#: ../class.yith-wcwl-init.php:925
|
237 |
msgid "Use buttons"
|
238 |
msgstr "Usar botones"
|
239 |
|
240 |
+
#: ../class.yith-wcwl-init.php:926
|
241 |
msgid "Use buttons instead of a simple anchors."
|
242 |
msgstr "Usar botones en lugar de un simple elnaces"
|
243 |
|
244 |
+
#: ../class.yith-wcwl-init.php:933
|
245 |
msgid "Custom CSS"
|
246 |
msgstr "Css personalizado"
|
247 |
|
248 |
+
#: ../class.yith-wcwl-init.php:941
|
249 |
msgid "Use theme style"
|
250 |
msgstr "Usar estilo del tema"
|
251 |
|
252 |
+
#: ../class.yith-wcwl-init.php:942
|
253 |
msgid "Use the theme style."
|
254 |
msgstr "Usar el estilo del tema"
|
255 |
|
256 |
+
#: ../class.yith-wcwl-init.php:949
|
257 |
msgid "Buttons rounded corners"
|
258 |
msgstr "Bordes redondeados para los botones"
|
259 |
|
260 |
+
#: ../class.yith-wcwl-init.php:950
|
261 |
msgid "Make buttons corner rounded"
|
262 |
msgstr "Redondear los bordes de los botones"
|
263 |
|
264 |
+
#: ../class.yith-wcwl-init.php:957
|
265 |
msgid "\"Add to Wishlist\" icon"
|
266 |
msgstr "Icono de \"Agregar a la Lista de deseos\""
|
267 |
|
268 |
+
#: ../class.yith-wcwl-init.php:958
|
269 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
270 |
msgstr "Agregar un icono para el boton de \"Agregar a la Lista de deseos\""
|
271 |
|
272 |
+
#: ../class.yith-wcwl-init.php:969
|
273 |
msgid "\"Add to Cart\" icon"
|
274 |
msgstr "Icono de \"Agregar al carrito\""
|
275 |
|
276 |
+
#: ../class.yith-wcwl-init.php:970
|
277 |
msgid "Add an icon to the \"Add to Cart\" button"
|
278 |
msgstr "Agregar un icono para el boton de \"Agregar al Carrito\""
|
279 |
|
280 |
+
#: ../class.yith-wcwl-init.php:988
|
281 |
msgid "Share on Facebook"
|
282 |
msgstr "Compartir en Facebook"
|
283 |
|
284 |
+
#: ../class.yith-wcwl-init.php:995
|
285 |
msgid "Tweet on Twitter"
|
286 |
msgstr "Tweet en Twitter"
|
287 |
|
288 |
+
#: ../class.yith-wcwl-init.php:1002
|
289 |
msgid "Pin on Pinterest"
|
290 |
msgstr "Pin en Pinterest"
|
291 |
|
292 |
+
#: ../class.yith-wcwl-init.php:1009
|
293 |
msgid "Share on Google+"
|
294 |
msgstr "Compartir en Google+"
|
295 |
|
296 |
+
#: ../class.yith-wcwl-init.php:1016
|
297 |
msgid "Socials title"
|
298 |
msgstr "Tiítulo de Redes sociales"
|
299 |
|
300 |
+
#: ../class.yith-wcwl-init.php:1024
|
301 |
msgid "Socials text"
|
302 |
msgstr "Texto de redes sociales"
|
303 |
|
304 |
+
#: ../class.yith-wcwl-init.php:1025
|
305 |
msgid ""
|
306 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
307 |
"strong> where you want the URL of your wishlist to appear."
|
309 |
"Será usado por Facebook, Twitter y Pinterest. Usa <strong>%wishlist_url%</"
|
310 |
"strong> donde quieras que la URL de tu Lista de deseos aparesca."
|
311 |
|
312 |
+
#: ../class.yith-wcwl-init.php:1033
|
313 |
msgid "Socials image URL"
|
314 |
msgstr "URL de la imágen de las redes Sociales."
|
315 |
|
367 |
msgstr "Error. No fue posible eliminar el producto de la Lista."
|
368 |
|
369 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
370 |
+
#: ../templates/wishlist.php:158
|
371 |
msgid "No products were added to the wishlist"
|
372 |
msgstr "Aun no has agregado nada."
|
373 |
|
374 |
+
#: ../templates/wishlist.php:80
|
375 |
msgid "Product Name"
|
376 |
msgstr "Nombre del producto"
|
377 |
|
378 |
+
#: ../templates/wishlist.php:81
|
379 |
msgid "Unit Price"
|
380 |
msgstr "Precio unitario"
|
381 |
|
382 |
+
#: ../templates/wishlist.php:82
|
383 |
msgid "Stock Status"
|
384 |
msgstr "Estado del inventario"
|
385 |
|
386 |
+
#: ../templates/wishlist.php:104
|
387 |
msgid "Remove this product"
|
388 |
msgstr "Remover este producto"
|
389 |
|
390 |
+
#: ../templates/wishlist.php:124
|
391 |
msgid "Free!"
|
392 |
msgstr "Gratis!"
|
393 |
|
394 |
+
#: ../templates/wishlist.php:137
|
395 |
msgid "Out of Stock"
|
396 |
msgstr "Agotado"
|
397 |
|
398 |
+
#: ../templates/wishlist.php:140
|
399 |
msgid "In Stock"
|
400 |
msgstr "Disponilbe."
|
401 |
|
languages/yit-fr_FR.mo
CHANGED
Binary file
|
languages/yit-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -11,288 +11,309 @@ msgstr ""
|
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;
|
|
|
15 |
"X-Poedit-Basepath: ../\n"
|
16 |
"X-Textdomain-Support: yes\n"
|
17 |
"X-Generator: Poedit 1.5.5\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: class.yith-wcwl-init.php:
|
21 |
-
#: class.yith-wcwl-install.php:137
|
22 |
msgid "Wishlist"
|
23 |
msgstr "Wishlist"
|
24 |
|
25 |
-
#: class.yith-wcwl-init.php:
|
26 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
27 |
msgstr "Impossible d'ajouter au panier : ce produit n'est plus en stock."
|
28 |
|
29 |
-
#: class.yith-wcwl-init.php:
|
30 |
msgid "Wishlist Page"
|
31 |
msgstr "Page Wishlist"
|
32 |
|
33 |
-
#: class.yith-wcwl-init.php:
|
34 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
35 |
msgstr "Contenu de la page : [yith_wcwl_wishlist]"
|
36 |
|
37 |
-
#: class.yith-wcwl-init.php:
|
38 |
-
#: class.yith-wcwl-init.php:783
|
39 |
msgid "General Settings"
|
40 |
msgstr "Paramètres généraux"
|
41 |
|
42 |
-
#: class.yith-wcwl-init.php:
|
43 |
-
#: class.yith-wcwl-init.php:885
|
44 |
msgid "Styles"
|
45 |
msgstr "Styles"
|
46 |
|
47 |
-
#: class.yith-wcwl-init.php:
|
48 |
-
#: class.yith-wcwl-init.php:948
|
49 |
msgid "Socials & Share"
|
50 |
msgstr "Partage"
|
51 |
|
52 |
-
#: class.yith-wcwl-init.php:
|
53 |
msgid "Colors"
|
54 |
msgstr "Couleurs"
|
55 |
|
56 |
-
#: class.yith-wcwl-init.php:
|
57 |
msgid "\"Add to Wishlist\" button background"
|
58 |
msgstr "Fond du bouton \"Ajouter à la Wishlist\""
|
59 |
|
60 |
-
#: class.yith-wcwl-init.php:
|
61 |
msgid "\"Add to Wishlist\" button text"
|
62 |
msgstr "Texte du bouton \"Ajouter à la Wishlist\""
|
63 |
|
64 |
-
#: class.yith-wcwl-init.php:
|
65 |
msgid "\"Add to Wishlist\" button border"
|
66 |
msgstr "Bordure du bouton \"Ajouter à la Wishlist\""
|
67 |
|
68 |
-
#: class.yith-wcwl-init.php:
|
69 |
msgid "\"Add to Wishlist\" button background (hover)"
|
70 |
msgstr "Fond du bouton \"Ajouter à la Wishlist\" (survol)"
|
71 |
|
72 |
-
#: class.yith-wcwl-init.php:
|
73 |
msgid "\"Add to Wishlist\" button text (hover)"
|
74 |
msgstr "Texte du bouton \"Ajouter à la Wishlist\" (survol)"
|
75 |
|
76 |
-
#: class.yith-wcwl-init.php:
|
77 |
msgid "\"Add to Wishlist\" button border (hover)"
|
78 |
msgstr "Bordure du bouton \"Ajouter à la Wishlist\" (survol)"
|
79 |
|
80 |
-
#: class.yith-wcwl-init.php:
|
81 |
msgid "\"Add to Cart\" button background"
|
82 |
msgstr "Fond du bouton \"Ajouter au panier\""
|
83 |
|
84 |
-
#: class.yith-wcwl-init.php:
|
85 |
msgid "\"Add to Cart\" button text"
|
86 |
msgstr "Texte du bouton \"Ajouter au panier\""
|
87 |
|
88 |
-
#: class.yith-wcwl-init.php:
|
89 |
msgid "\"Add to Cart\" button border"
|
90 |
msgstr "Bordure du bouton \"Ajouter au panier\""
|
91 |
|
92 |
-
#: class.yith-wcwl-init.php:
|
93 |
msgid "\"Add to Cart\" button background (hover)"
|
94 |
msgstr "Fond du bouton \"Ajouter au panier\" (survol)"
|
95 |
|
96 |
-
#: class.yith-wcwl-init.php:
|
97 |
msgid "\"Add to Cart\" button text (hover)"
|
98 |
msgstr "Texte du bouton \"Ajouter au panier\" (survol)"
|
99 |
|
100 |
-
#: class.yith-wcwl-init.php:
|
101 |
msgid "\"Add to Cart\" button border (hover)"
|
102 |
msgstr "Bordure du bouton \"Ajouter au panier\" (hover)"
|
103 |
|
104 |
-
#: class.yith-wcwl-init.php:
|
105 |
msgid "Wishlist table background"
|
106 |
msgstr "Fond du tableau de la Wishlist"
|
107 |
|
108 |
-
#: class.yith-wcwl-init.php:
|
109 |
msgid "Wishlist table text"
|
110 |
msgstr "Texte du tableau de la Wishlist"
|
111 |
|
112 |
-
#: class.yith-wcwl-init.php:
|
113 |
msgid "Wishlist table border"
|
114 |
msgstr "Bordure du tableau de la Wishlist"
|
115 |
|
116 |
-
#: class.yith-wcwl-init.php:
|
117 |
msgid "Settings"
|
118 |
msgstr "Paramètres"
|
119 |
|
120 |
-
#: class.yith-wcwl-init.php:
|
121 |
msgid "Docs"
|
122 |
msgstr "Documentation"
|
123 |
|
124 |
-
#: class.yith-wcwl-init.php:
|
125 |
msgid "Enable YITH Wishlist"
|
126 |
msgstr "Activer YITH Wishlist"
|
127 |
|
128 |
-
#: class.yith-wcwl-init.php:
|
129 |
#, php-format
|
130 |
-
msgid "
|
131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
-
#: class.yith-wcwl-init.php:
|
134 |
msgid "Use cookies"
|
135 |
msgstr "Utiliser des cookies"
|
136 |
|
137 |
-
#: class.yith-wcwl-init.php:
|
138 |
-
msgid "
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
-
#: class.yith-wcwl-init.php:
|
142 |
msgid "Wishlist title"
|
143 |
msgstr "Titre de la Wishlist"
|
144 |
|
145 |
-
#: class.yith-wcwl-init.php:
|
146 |
-
#: class.yith-wcwl-init.php:
|
147 |
-
#: class.yith-wcwl-init.php:981
|
148 |
-
#: class.yith-wcwl-init.php:982
|
149 |
#, php-format
|
150 |
msgid "My wishlist on %s"
|
151 |
msgstr "Ma wishlist sur %s"
|
152 |
|
153 |
-
#: class.yith-wcwl-init.php:
|
154 |
msgid "Position"
|
155 |
msgstr "Position"
|
156 |
|
157 |
-
#: class.yith-wcwl-init.php:
|
158 |
-
msgid "
|
159 |
-
|
|
|
|
|
|
|
|
|
160 |
|
161 |
-
#: class.yith-wcwl-init.php:
|
162 |
msgid "After \"Add to cart\""
|
163 |
msgstr "Après \"Ajouter au panier\""
|
164 |
|
165 |
-
#: class.yith-wcwl-init.php:
|
166 |
msgid "After thumbnails"
|
167 |
msgstr "Après les images"
|
168 |
|
169 |
-
#: class.yith-wcwl-init.php:
|
170 |
msgid "After summary"
|
171 |
msgstr "Après le résumé"
|
172 |
|
173 |
-
#: class.yith-wcwl-init.php:
|
174 |
msgid "Use shortcode"
|
175 |
msgstr "Utiliser le shortcode"
|
176 |
|
177 |
-
#: class.yith-wcwl-init.php:
|
178 |
msgid "Redirect to cart"
|
179 |
msgstr "Rediriger vers le panier"
|
180 |
|
181 |
-
#: class.yith-wcwl-init.php:
|
182 |
-
msgid "
|
183 |
-
|
|
|
|
|
|
|
|
|
184 |
|
185 |
-
#: class.yith-wcwl-init.php:
|
186 |
msgid "Remove if added to the cart"
|
187 |
msgstr "Supprimer si ajouté au panier"
|
188 |
|
189 |
-
#: class.yith-wcwl-init.php:
|
190 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
191 |
msgstr "Supprimer le produit de la wishlist s'il a été ajouté au panier."
|
192 |
|
193 |
-
#: class.yith-wcwl-init.php:
|
194 |
msgid "\"Add to Wishlist\" text"
|
195 |
msgstr "Texte \"Ajouter à la wishlist\""
|
196 |
|
197 |
-
#: class.yith-wcwl-init.php:
|
198 |
-
#: class.yith-wcwl-init.php:844
|
199 |
msgid "Add to Wishlist"
|
200 |
msgstr "Ajouter à la wishlist"
|
201 |
|
202 |
-
#: class.yith-wcwl-init.php:
|
203 |
msgid "\"Add to Cart\" text"
|
204 |
msgstr "Texte \"Ajouter au panier\""
|
205 |
|
206 |
-
#: class.yith-wcwl-init.php:
|
207 |
-
#: class.yith-wcwl-init.php:852
|
208 |
msgid "Add to Cart"
|
209 |
msgstr "Ajouter au panier"
|
210 |
|
211 |
-
#: class.yith-wcwl-init.php:
|
212 |
msgid "Show Unit price"
|
213 |
msgstr "Voir le prix unitaire"
|
214 |
|
215 |
-
#: class.yith-wcwl-init.php:
|
216 |
msgid "Show \"Add to Cart\" button"
|
217 |
msgstr "Voir le bouton \"Ajouter au panier\""
|
218 |
|
219 |
-
#: class.yith-wcwl-init.php:
|
220 |
msgid "Show Stock status"
|
221 |
msgstr "Voir le statut du stock"
|
222 |
|
223 |
-
#: class.yith-wcwl-init.php:
|
224 |
msgid "Use buttons"
|
225 |
msgstr "Utiliser des boutons"
|
226 |
|
227 |
-
#: class.yith-wcwl-init.php:
|
228 |
msgid "Use buttons instead of a simple anchors."
|
229 |
msgstr "Utiliser des boutons à la place de simples liens"
|
230 |
|
231 |
-
#: class.yith-wcwl-init.php:
|
232 |
msgid "Custom CSS"
|
233 |
msgstr "CSS personnalisée"
|
234 |
|
235 |
-
#: class.yith-wcwl-init.php:
|
236 |
msgid "Use theme style"
|
237 |
msgstr "Utiliser le style du thème"
|
238 |
|
239 |
-
#: class.yith-wcwl-init.php:
|
240 |
msgid "Use the theme style."
|
241 |
msgstr "Utiliser le style du thème?"
|
242 |
|
243 |
-
#: class.yith-wcwl-init.php:
|
244 |
msgid "Buttons rounded corners"
|
245 |
msgstr "Boutons avec des coins arrondis"
|
246 |
|
247 |
-
#: class.yith-wcwl-init.php:
|
248 |
msgid "Make buttons corner rounded"
|
249 |
msgstr "Arrondir les coins des boutons"
|
250 |
|
251 |
-
#: class.yith-wcwl-init.php:
|
252 |
msgid "\"Add to Wishlist\" icon"
|
253 |
msgstr "Icône \"Ajouter à la wishlist\""
|
254 |
|
255 |
-
#: class.yith-wcwl-init.php:
|
256 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
257 |
msgstr "Ajouter une icône au bouton \"Ajouter à la wishlist\""
|
258 |
|
259 |
-
#: class.yith-wcwl-init.php:
|
260 |
msgid "\"Add to Cart\" icon"
|
261 |
msgstr "Icône \"Ajouter au panier\""
|
262 |
|
263 |
-
#: class.yith-wcwl-init.php:
|
264 |
msgid "Add an icon to the \"Add to Cart\" button"
|
265 |
msgstr "Ajouter une icône au bouton \"Ajouter au panier\""
|
266 |
|
267 |
-
#: class.yith-wcwl-init.php:
|
268 |
msgid "Share on Facebook"
|
269 |
msgstr "Partager sur Facebook"
|
270 |
|
271 |
-
#: class.yith-wcwl-init.php:
|
272 |
msgid "Tweet on Twitter"
|
273 |
msgstr "Partager sur Twitter"
|
274 |
|
275 |
-
#: class.yith-wcwl-init.php:
|
276 |
msgid "Pin on Pinterest"
|
277 |
msgstr "Partager sur Pinterest"
|
278 |
|
279 |
-
#: class.yith-wcwl-init.php:
|
280 |
msgid "Share on Google+"
|
281 |
msgstr "Partager sur Google+"
|
282 |
|
283 |
-
#: class.yith-wcwl-init.php:
|
284 |
msgid "Socials title"
|
285 |
msgstr "Titre pour les réseaux sociaux"
|
286 |
|
287 |
-
#: class.yith-wcwl-init.php:
|
288 |
msgid "Socials text"
|
289 |
msgstr "Texte pour les réseaux sociaux"
|
290 |
|
291 |
-
#: class.yith-wcwl-init.php:
|
292 |
-
msgid "
|
293 |
-
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
-
#: class.yith-wcwl-init.php:
|
296 |
msgid "Socials image URL"
|
297 |
msgstr "URL de l'image pour les réseaux sociaux"
|
298 |
|
@@ -301,14 +322,11 @@ msgctxt "page_slug"
|
|
301 |
msgid "wishlist"
|
302 |
msgstr "wishlist"
|
303 |
|
304 |
-
#: class.yith-wcwl-ui.php:64
|
305 |
-
#: class.yith-wcwl.php:351
|
306 |
-
#: yith-wcwl-ajax.php:47
|
307 |
msgid "Product added!"
|
308 |
msgstr "Produit ajouté !"
|
309 |
|
310 |
-
#: class.yith-wcwl-ui.php:64
|
311 |
-
#: class.yith-wcwl-ui.php:65
|
312 |
msgid "Browse Wishlist"
|
313 |
msgstr "Parcourir la wishlist"
|
314 |
|
@@ -338,50 +356,50 @@ msgstr "Une erreur est survenue lors de l'ajout du produit à la wishlist"
|
|
338 |
|
339 |
#: class.yith-wcwl.php:162
|
340 |
msgid "Error occurred while removing product from wishlist"
|
341 |
-
msgstr "
|
|
|
342 |
|
343 |
-
#: class.yith-wcwl.php:353
|
344 |
-
#: yith-wcwl-ajax.php:49
|
345 |
msgid "Product already in the wishlist."
|
346 |
msgstr "Ce produit est déjà dans votre wishlist"
|
347 |
|
348 |
-
#: class.yith-wcwl.php:370
|
349 |
-
#: yith-wcwl-ajax.php:30
|
350 |
msgid "Product successfully removed."
|
351 |
msgstr "Le produit a bien été supprimé"
|
352 |
|
353 |
-
#: class.yith-wcwl.php:373
|
354 |
-
#: yith-wcwl-ajax.php:33
|
355 |
msgid "Error. Unable to remove the product from the wishlist."
|
356 |
msgstr "Erreur : impossible de supprimer le produit de la wishlist"
|
357 |
|
358 |
-
#: class.yith-wcwl.php:377
|
359 |
-
#: yith-wcwl-ajax.php:37
|
360 |
-
#: templates/wishlist.php:145
|
361 |
msgid "No products were added to the wishlist"
|
362 |
msgstr "Aucun produit dans votre wishlist"
|
363 |
|
364 |
-
#: templates/wishlist.php:
|
365 |
msgid "Product Name"
|
366 |
msgstr "Produit"
|
367 |
|
368 |
-
#: templates/wishlist.php:
|
369 |
msgid "Unit Price"
|
370 |
msgstr "Prix unitaire"
|
371 |
|
372 |
-
#: templates/wishlist.php:
|
373 |
msgid "Stock Status"
|
374 |
msgstr "Stock"
|
375 |
|
376 |
-
#: templates/wishlist.php:
|
377 |
msgid "Remove this product"
|
378 |
msgstr "Enlever ce produit"
|
379 |
|
380 |
-
#: templates/wishlist.php:
|
|
|
|
|
|
|
|
|
381 |
msgid "Out of Stock"
|
382 |
msgstr "Epuisé"
|
383 |
|
384 |
-
#: templates/wishlist.php:
|
385 |
msgid "In Stock"
|
386 |
msgstr "En stock"
|
387 |
|
@@ -393,8 +411,7 @@ msgstr "Choisissez une date"
|
|
393 |
msgid "Hours"
|
394 |
msgstr "Heures"
|
395 |
|
396 |
-
#: yit-common/yith-panel.php:408
|
397 |
-
#: yit-common/yith-panel.php:409
|
398 |
msgid "Minutes"
|
399 |
msgstr "Minutes"
|
400 |
|
@@ -448,6 +465,6 @@ msgstr "Cliquez-ici pour pré-visualiser"
|
|
448 |
|
449 |
#~ msgid "View Cart →"
|
450 |
#~ msgstr "Warenkorb ansehen"
|
|
|
451 |
#~ msgid "Product successfully added to the cart."
|
452 |
#~ msgstr "Produkt erfolgreich im Warenkorb eingefügt "
|
453 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-02-26 15:56+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-02-26 15:56+0100\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
15 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
16 |
"X-Poedit-Basepath: ../\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
"X-Generator: Poedit 1.5.5\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: class.yith-wcwl-init.php:107 class.yith-wcwl-install.php:137
|
|
|
22 |
msgid "Wishlist"
|
23 |
msgstr "Wishlist"
|
24 |
|
25 |
+
#: class.yith-wcwl-init.php:353
|
26 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
27 |
msgstr "Impossible d'ajouter au panier : ce produit n'est plus en stock."
|
28 |
|
29 |
+
#: class.yith-wcwl-init.php:384
|
30 |
msgid "Wishlist Page"
|
31 |
msgstr "Page Wishlist"
|
32 |
|
33 |
+
#: class.yith-wcwl-init.php:385
|
34 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
35 |
msgstr "Contenu de la page : [yith_wcwl_wishlist]"
|
36 |
|
37 |
+
#: class.yith-wcwl-init.php:428 class.yith-wcwl-init.php:820
|
|
|
38 |
msgid "General Settings"
|
39 |
msgstr "Paramètres généraux"
|
40 |
|
41 |
+
#: class.yith-wcwl-init.php:429 class.yith-wcwl-init.php:922
|
|
|
42 |
msgid "Styles"
|
43 |
msgstr "Styles"
|
44 |
|
45 |
+
#: class.yith-wcwl-init.php:430 class.yith-wcwl-init.php:985
|
|
|
46 |
msgid "Socials & Share"
|
47 |
msgstr "Partage"
|
48 |
|
49 |
+
#: class.yith-wcwl-init.php:450
|
50 |
msgid "Colors"
|
51 |
msgstr "Couleurs"
|
52 |
|
53 |
+
#: class.yith-wcwl-init.php:480
|
54 |
msgid "\"Add to Wishlist\" button background"
|
55 |
msgstr "Fond du bouton \"Ajouter à la Wishlist\""
|
56 |
|
57 |
+
#: class.yith-wcwl-init.php:481
|
58 |
msgid "\"Add to Wishlist\" button text"
|
59 |
msgstr "Texte du bouton \"Ajouter à la Wishlist\""
|
60 |
|
61 |
+
#: class.yith-wcwl-init.php:482
|
62 |
msgid "\"Add to Wishlist\" button border"
|
63 |
msgstr "Bordure du bouton \"Ajouter à la Wishlist\""
|
64 |
|
65 |
+
#: class.yith-wcwl-init.php:488
|
66 |
msgid "\"Add to Wishlist\" button background (hover)"
|
67 |
msgstr "Fond du bouton \"Ajouter à la Wishlist\" (survol)"
|
68 |
|
69 |
+
#: class.yith-wcwl-init.php:489
|
70 |
msgid "\"Add to Wishlist\" button text (hover)"
|
71 |
msgstr "Texte du bouton \"Ajouter à la Wishlist\" (survol)"
|
72 |
|
73 |
+
#: class.yith-wcwl-init.php:490
|
74 |
msgid "\"Add to Wishlist\" button border (hover)"
|
75 |
msgstr "Bordure du bouton \"Ajouter à la Wishlist\" (survol)"
|
76 |
|
77 |
+
#: class.yith-wcwl-init.php:495
|
78 |
msgid "\"Add to Cart\" button background"
|
79 |
msgstr "Fond du bouton \"Ajouter au panier\""
|
80 |
|
81 |
+
#: class.yith-wcwl-init.php:496
|
82 |
msgid "\"Add to Cart\" button text"
|
83 |
msgstr "Texte du bouton \"Ajouter au panier\""
|
84 |
|
85 |
+
#: class.yith-wcwl-init.php:497
|
86 |
msgid "\"Add to Cart\" button border"
|
87 |
msgstr "Bordure du bouton \"Ajouter au panier\""
|
88 |
|
89 |
+
#: class.yith-wcwl-init.php:503
|
90 |
msgid "\"Add to Cart\" button background (hover)"
|
91 |
msgstr "Fond du bouton \"Ajouter au panier\" (survol)"
|
92 |
|
93 |
+
#: class.yith-wcwl-init.php:504
|
94 |
msgid "\"Add to Cart\" button text (hover)"
|
95 |
msgstr "Texte du bouton \"Ajouter au panier\" (survol)"
|
96 |
|
97 |
+
#: class.yith-wcwl-init.php:505
|
98 |
msgid "\"Add to Cart\" button border (hover)"
|
99 |
msgstr "Bordure du bouton \"Ajouter au panier\" (hover)"
|
100 |
|
101 |
+
#: class.yith-wcwl-init.php:510
|
102 |
msgid "Wishlist table background"
|
103 |
msgstr "Fond du tableau de la Wishlist"
|
104 |
|
105 |
+
#: class.yith-wcwl-init.php:511
|
106 |
msgid "Wishlist table text"
|
107 |
msgstr "Texte du tableau de la Wishlist"
|
108 |
|
109 |
+
#: class.yith-wcwl-init.php:512
|
110 |
msgid "Wishlist table border"
|
111 |
msgstr "Bordure du tableau de la Wishlist"
|
112 |
|
113 |
+
#: class.yith-wcwl-init.php:572
|
114 |
msgid "Settings"
|
115 |
msgstr "Paramètres"
|
116 |
|
117 |
+
#: class.yith-wcwl-init.php:573
|
118 |
msgid "Docs"
|
119 |
msgstr "Documentation"
|
120 |
|
121 |
+
#: class.yith-wcwl-init.php:823
|
122 |
msgid "Enable YITH Wishlist"
|
123 |
msgstr "Activer YITH Wishlist"
|
124 |
|
125 |
+
#: class.yith-wcwl-init.php:824
|
126 |
#, php-format
|
127 |
+
msgid ""
|
128 |
+
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
129 |
+
"selected in WooCommerce > Settings > Pages.</strong> Also, please read "
|
130 |
+
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
131 |
+
msgstr ""
|
132 |
+
"Activer toutes les fonctionnalités. <strong>Assurez-vous que la page "
|
133 |
+
"Wishlist est sélectionnée dans WooCommerce > Réglages > Pages.</"
|
134 |
+
"strong> Egalement, prenez le temps de lire la <a href=\"%s\" target=\"_blank"
|
135 |
+
"\">documentation</a>."
|
136 |
|
137 |
+
#: class.yith-wcwl-init.php:831
|
138 |
msgid "Use cookies"
|
139 |
msgstr "Utiliser des cookies"
|
140 |
|
141 |
+
#: class.yith-wcwl-init.php:832
|
142 |
+
msgid ""
|
143 |
+
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
144 |
+
"available for each not logged user for 30 days. Use the filter "
|
145 |
+
"yith_wcwl_cookie_expiration_time to change the expiration time ( needs "
|
146 |
+
"timestamp )."
|
147 |
+
msgstr ""
|
148 |
+
"Utiliser des cookies à la place des sessions. Avec cette fonctionnalité, la "
|
149 |
+
"wishlist restera disponible pour les utilisateurs non logués durant 30 "
|
150 |
+
"jours. Utilisez le filtre yith_wcwl_cookie_expiration_time pour changer la "
|
151 |
+
"durée de validité (requiert un timestamp)"
|
152 |
|
153 |
+
#: class.yith-wcwl-init.php:839
|
154 |
msgid "Wishlist title"
|
155 |
msgstr "Titre de la Wishlist"
|
156 |
|
157 |
+
#: class.yith-wcwl-init.php:841 class.yith-wcwl-init.php:842
|
158 |
+
#: class.yith-wcwl-init.php:1018 class.yith-wcwl-init.php:1019
|
|
|
|
|
159 |
#, php-format
|
160 |
msgid "My wishlist on %s"
|
161 |
msgstr "Ma wishlist sur %s"
|
162 |
|
163 |
+
#: class.yith-wcwl-init.php:847
|
164 |
msgid "Position"
|
165 |
msgstr "Position"
|
166 |
|
167 |
+
#: class.yith-wcwl-init.php:848
|
168 |
+
msgid ""
|
169 |
+
"On variable products you can add it only After \"Add to Cart\" or use the "
|
170 |
+
"shortcode [yith_wcwl_add_to_wishlist]."
|
171 |
+
msgstr ""
|
172 |
+
"Pour les produits variables, vous pouver seulement l'ajouter après \"Ajouter "
|
173 |
+
"au panier\" ou en utilisant le shortcode [yith_wcwl_add_to_wishlist]."
|
174 |
|
175 |
+
#: class.yith-wcwl-init.php:854
|
176 |
msgid "After \"Add to cart\""
|
177 |
msgstr "Après \"Ajouter au panier\""
|
178 |
|
179 |
+
#: class.yith-wcwl-init.php:855
|
180 |
msgid "After thumbnails"
|
181 |
msgstr "Après les images"
|
182 |
|
183 |
+
#: class.yith-wcwl-init.php:856
|
184 |
msgid "After summary"
|
185 |
msgstr "Après le résumé"
|
186 |
|
187 |
+
#: class.yith-wcwl-init.php:857
|
188 |
msgid "Use shortcode"
|
189 |
msgstr "Utiliser le shortcode"
|
190 |
|
191 |
+
#: class.yith-wcwl-init.php:862
|
192 |
msgid "Redirect to cart"
|
193 |
msgstr "Rediriger vers le panier"
|
194 |
|
195 |
+
#: class.yith-wcwl-init.php:863
|
196 |
+
msgid ""
|
197 |
+
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
198 |
+
"page."
|
199 |
+
msgstr ""
|
200 |
+
"Rediriger vers le panier si on clique sur le bouton \"Ajouter au panier\" "
|
201 |
+
"sur la page Wishlist."
|
202 |
|
203 |
+
#: class.yith-wcwl-init.php:870
|
204 |
msgid "Remove if added to the cart"
|
205 |
msgstr "Supprimer si ajouté au panier"
|
206 |
|
207 |
+
#: class.yith-wcwl-init.php:871
|
208 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
209 |
msgstr "Supprimer le produit de la wishlist s'il a été ajouté au panier."
|
210 |
|
211 |
+
#: class.yith-wcwl-init.php:878
|
212 |
msgid "\"Add to Wishlist\" text"
|
213 |
msgstr "Texte \"Ajouter à la wishlist\""
|
214 |
|
215 |
+
#: class.yith-wcwl-init.php:880 class.yith-wcwl-init.php:881
|
|
|
216 |
msgid "Add to Wishlist"
|
217 |
msgstr "Ajouter à la wishlist"
|
218 |
|
219 |
+
#: class.yith-wcwl-init.php:886
|
220 |
msgid "\"Add to Cart\" text"
|
221 |
msgstr "Texte \"Ajouter au panier\""
|
222 |
|
223 |
+
#: class.yith-wcwl-init.php:888 class.yith-wcwl-init.php:889
|
|
|
224 |
msgid "Add to Cart"
|
225 |
msgstr "Ajouter au panier"
|
226 |
|
227 |
+
#: class.yith-wcwl-init.php:894
|
228 |
msgid "Show Unit price"
|
229 |
msgstr "Voir le prix unitaire"
|
230 |
|
231 |
+
#: class.yith-wcwl-init.php:902
|
232 |
msgid "Show \"Add to Cart\" button"
|
233 |
msgstr "Voir le bouton \"Ajouter au panier\""
|
234 |
|
235 |
+
#: class.yith-wcwl-init.php:910
|
236 |
msgid "Show Stock status"
|
237 |
msgstr "Voir le statut du stock"
|
238 |
|
239 |
+
#: class.yith-wcwl-init.php:925
|
240 |
msgid "Use buttons"
|
241 |
msgstr "Utiliser des boutons"
|
242 |
|
243 |
+
#: class.yith-wcwl-init.php:926
|
244 |
msgid "Use buttons instead of a simple anchors."
|
245 |
msgstr "Utiliser des boutons à la place de simples liens"
|
246 |
|
247 |
+
#: class.yith-wcwl-init.php:933
|
248 |
msgid "Custom CSS"
|
249 |
msgstr "CSS personnalisée"
|
250 |
|
251 |
+
#: class.yith-wcwl-init.php:941
|
252 |
msgid "Use theme style"
|
253 |
msgstr "Utiliser le style du thème"
|
254 |
|
255 |
+
#: class.yith-wcwl-init.php:942
|
256 |
msgid "Use the theme style."
|
257 |
msgstr "Utiliser le style du thème?"
|
258 |
|
259 |
+
#: class.yith-wcwl-init.php:949
|
260 |
msgid "Buttons rounded corners"
|
261 |
msgstr "Boutons avec des coins arrondis"
|
262 |
|
263 |
+
#: class.yith-wcwl-init.php:950
|
264 |
msgid "Make buttons corner rounded"
|
265 |
msgstr "Arrondir les coins des boutons"
|
266 |
|
267 |
+
#: class.yith-wcwl-init.php:957
|
268 |
msgid "\"Add to Wishlist\" icon"
|
269 |
msgstr "Icône \"Ajouter à la wishlist\""
|
270 |
|
271 |
+
#: class.yith-wcwl-init.php:958
|
272 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
273 |
msgstr "Ajouter une icône au bouton \"Ajouter à la wishlist\""
|
274 |
|
275 |
+
#: class.yith-wcwl-init.php:969
|
276 |
msgid "\"Add to Cart\" icon"
|
277 |
msgstr "Icône \"Ajouter au panier\""
|
278 |
|
279 |
+
#: class.yith-wcwl-init.php:970
|
280 |
msgid "Add an icon to the \"Add to Cart\" button"
|
281 |
msgstr "Ajouter une icône au bouton \"Ajouter au panier\""
|
282 |
|
283 |
+
#: class.yith-wcwl-init.php:988
|
284 |
msgid "Share on Facebook"
|
285 |
msgstr "Partager sur Facebook"
|
286 |
|
287 |
+
#: class.yith-wcwl-init.php:995
|
288 |
msgid "Tweet on Twitter"
|
289 |
msgstr "Partager sur Twitter"
|
290 |
|
291 |
+
#: class.yith-wcwl-init.php:1002
|
292 |
msgid "Pin on Pinterest"
|
293 |
msgstr "Partager sur Pinterest"
|
294 |
|
295 |
+
#: class.yith-wcwl-init.php:1009
|
296 |
msgid "Share on Google+"
|
297 |
msgstr "Partager sur Google+"
|
298 |
|
299 |
+
#: class.yith-wcwl-init.php:1016
|
300 |
msgid "Socials title"
|
301 |
msgstr "Titre pour les réseaux sociaux"
|
302 |
|
303 |
+
#: class.yith-wcwl-init.php:1024
|
304 |
msgid "Socials text"
|
305 |
msgstr "Texte pour les réseaux sociaux"
|
306 |
|
307 |
+
#: class.yith-wcwl-init.php:1025
|
308 |
+
msgid ""
|
309 |
+
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
310 |
+
"strong> where you want the URL of your wishlist to appear."
|
311 |
+
msgstr ""
|
312 |
+
"Sera utiliser par Facebook, Twitter et Pinterest. Placez <strong>"
|
313 |
+
"%wishlist_url%</strong> à l'endroit où vous voulez faire apparaitre le lien "
|
314 |
+
"vers votre wishlist."
|
315 |
|
316 |
+
#: class.yith-wcwl-init.php:1033
|
317 |
msgid "Socials image URL"
|
318 |
msgstr "URL de l'image pour les réseaux sociaux"
|
319 |
|
322 |
msgid "wishlist"
|
323 |
msgstr "wishlist"
|
324 |
|
325 |
+
#: class.yith-wcwl-ui.php:64 class.yith-wcwl.php:351 yith-wcwl-ajax.php:47
|
|
|
|
|
326 |
msgid "Product added!"
|
327 |
msgstr "Produit ajouté !"
|
328 |
|
329 |
+
#: class.yith-wcwl-ui.php:64 class.yith-wcwl-ui.php:65
|
|
|
330 |
msgid "Browse Wishlist"
|
331 |
msgstr "Parcourir la wishlist"
|
332 |
|
356 |
|
357 |
#: class.yith-wcwl.php:162
|
358 |
msgid "Error occurred while removing product from wishlist"
|
359 |
+
msgstr ""
|
360 |
+
"Une erreur est survenue lors de le suppression du produit de la wishlist"
|
361 |
|
362 |
+
#: class.yith-wcwl.php:353 yith-wcwl-ajax.php:49
|
|
|
363 |
msgid "Product already in the wishlist."
|
364 |
msgstr "Ce produit est déjà dans votre wishlist"
|
365 |
|
366 |
+
#: class.yith-wcwl.php:370 yith-wcwl-ajax.php:30
|
|
|
367 |
msgid "Product successfully removed."
|
368 |
msgstr "Le produit a bien été supprimé"
|
369 |
|
370 |
+
#: class.yith-wcwl.php:373 yith-wcwl-ajax.php:33
|
|
|
371 |
msgid "Error. Unable to remove the product from the wishlist."
|
372 |
msgstr "Erreur : impossible de supprimer le produit de la wishlist"
|
373 |
|
374 |
+
#: class.yith-wcwl.php:377 yith-wcwl-ajax.php:37 templates/wishlist.php:158
|
|
|
|
|
375 |
msgid "No products were added to the wishlist"
|
376 |
msgstr "Aucun produit dans votre wishlist"
|
377 |
|
378 |
+
#: templates/wishlist.php:80
|
379 |
msgid "Product Name"
|
380 |
msgstr "Produit"
|
381 |
|
382 |
+
#: templates/wishlist.php:81
|
383 |
msgid "Unit Price"
|
384 |
msgstr "Prix unitaire"
|
385 |
|
386 |
+
#: templates/wishlist.php:82
|
387 |
msgid "Stock Status"
|
388 |
msgstr "Stock"
|
389 |
|
390 |
+
#: templates/wishlist.php:104
|
391 |
msgid "Remove this product"
|
392 |
msgstr "Enlever ce produit"
|
393 |
|
394 |
+
#: templates/wishlist.php:124
|
395 |
+
msgid "Free!"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: templates/wishlist.php:137
|
399 |
msgid "Out of Stock"
|
400 |
msgstr "Epuisé"
|
401 |
|
402 |
+
#: templates/wishlist.php:140
|
403 |
msgid "In Stock"
|
404 |
msgstr "En stock"
|
405 |
|
411 |
msgid "Hours"
|
412 |
msgstr "Heures"
|
413 |
|
414 |
+
#: yit-common/yith-panel.php:408 yit-common/yith-panel.php:409
|
|
|
415 |
msgid "Minutes"
|
416 |
msgstr "Minutes"
|
417 |
|
465 |
|
466 |
#~ msgid "View Cart →"
|
467 |
#~ msgstr "Warenkorb ansehen"
|
468 |
+
|
469 |
#~ msgid "Product successfully added to the cart."
|
470 |
#~ msgstr "Produkt erfolgreich im Warenkorb eingefügt "
|
|
languages/yit-he_IL.mo
CHANGED
Binary file
|
languages/yit-he_IL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,111 +14,111 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../class.yith-wcwl-init.php:
|
18 |
msgid "Wishlist"
|
19 |
msgstr "רשימת משאלות"
|
20 |
|
21 |
-
#: ../class.yith-wcwl-init.php:
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr "לא ניתן להוסיף את המוצר לסל כי הוא אינו קיים במלאי!"
|
24 |
|
25 |
-
#: ../class.yith-wcwl-init.php:
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr "עמוד רשימת המשאלות"
|
28 |
|
29 |
-
#: ../class.yith-wcwl-init.php:
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr "תוכן העמוד: [yith_wcwl_wishlist]"
|
32 |
|
33 |
-
#: ../class.yith-wcwl-init.php:
|
34 |
msgid "General Settings"
|
35 |
msgstr "הגדרות כלליות"
|
36 |
|
37 |
-
#: ../class.yith-wcwl-init.php:
|
38 |
msgid "Styles"
|
39 |
msgstr "סגנונות עיצוב"
|
40 |
|
41 |
-
#: ../class.yith-wcwl-init.php:
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../class.yith-wcwl-init.php:
|
46 |
msgid "Colors"
|
47 |
msgstr "צבעים"
|
48 |
|
49 |
-
#: ../class.yith-wcwl-init.php:
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../class.yith-wcwl-init.php:
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../class.yith-wcwl-init.php:
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../class.yith-wcwl-init.php:
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../class.yith-wcwl-init.php:
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../class.yith-wcwl-init.php:
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../class.yith-wcwl-init.php:
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../class.yith-wcwl-init.php:
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../class.yith-wcwl-init.php:
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../class.yith-wcwl-init.php:
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../class.yith-wcwl-init.php:
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
|
92 |
|
93 |
-
#: ../class.yith-wcwl-init.php:
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr "\"הוסף לסל\" גבול כפתור (hover)"
|
96 |
|
97 |
-
#: ../class.yith-wcwl-init.php:
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr "רקע טבלת הרשימה"
|
100 |
|
101 |
-
#: ../class.yith-wcwl-init.php:
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr "טקסט בטבלת הרשימה"
|
104 |
|
105 |
-
#: ../class.yith-wcwl-init.php:
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr "גבול טבלאות הרשימה"
|
108 |
|
109 |
-
#: ../class.yith-wcwl-init.php:
|
110 |
msgid "Settings"
|
111 |
msgstr "הגדרות"
|
112 |
|
113 |
-
#: ../class.yith-wcwl-init.php:
|
114 |
msgid "Docs"
|
115 |
msgstr "מסמכים"
|
116 |
|
117 |
-
#: ../class.yith-wcwl-init.php:
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr "אפשר שימוש ברשימת המשאלות של YITH"
|
120 |
|
121 |
-
#: ../class.yith-wcwl-init.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -129,11 +129,11 @@ msgstr ""
|
|
129 |
"בהגדרות של WooCommerce > Settings > Pages.</strong> בנוסף, קרא את <a "
|
130 |
"href=\"%s\" target=\"_blank\">הוראות השימוש</a> של התוסף."
|
131 |
|
132 |
-
#: ../class.yith-wcwl-init.php:
|
133 |
msgid "Use cookies"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../class.yith-wcwl-init.php:
|
137 |
msgid ""
|
138 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
139 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -141,160 +141,160 @@ msgid ""
|
|
141 |
"timestamp )."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../class.yith-wcwl-init.php:
|
145 |
msgid "Wishlist title"
|
146 |
msgstr "כותרת רשימת משאלות"
|
147 |
|
148 |
-
#: ../class.yith-wcwl-init.php:
|
149 |
-
#: ../class.yith-wcwl-init.php:
|
150 |
#, php-format
|
151 |
msgid "My wishlist on %s"
|
152 |
msgstr "רשימת המשאלות שלי ב-%s"
|
153 |
|
154 |
-
#: ../class.yith-wcwl-init.php:
|
155 |
msgid "Position"
|
156 |
msgstr "מיקום"
|
157 |
|
158 |
-
#: ../class.yith-wcwl-init.php:
|
159 |
msgid ""
|
160 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
161 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../class.yith-wcwl-init.php:
|
165 |
msgid "After \"Add to cart\""
|
166 |
msgstr "לאחר \"הוספה לסל\""
|
167 |
|
168 |
-
#: ../class.yith-wcwl-init.php:
|
169 |
msgid "After thumbnails"
|
170 |
msgstr "אחרי התמונות המוקטנות"
|
171 |
|
172 |
-
#: ../class.yith-wcwl-init.php:
|
173 |
msgid "After summary"
|
174 |
msgstr "אחרי תיאור מוצר"
|
175 |
|
176 |
-
#: ../class.yith-wcwl-init.php:
|
177 |
msgid "Use shortcode"
|
178 |
msgstr "השתמש בקוד מקוצר"
|
179 |
|
180 |
-
#: ../class.yith-wcwl-init.php:
|
181 |
msgid "Redirect to cart"
|
182 |
msgstr "הפנייה לסל הקניות"
|
183 |
|
184 |
-
#: ../class.yith-wcwl-init.php:
|
185 |
msgid ""
|
186 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
187 |
"page."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../class.yith-wcwl-init.php:
|
191 |
msgid "Remove if added to the cart"
|
192 |
msgstr "הסר מהרשימה אם הוסף לסל"
|
193 |
|
194 |
-
#: ../class.yith-wcwl-init.php:
|
195 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
196 |
msgstr "הסר את המוצר מהרשימה אם הוא הוסף לסל."
|
197 |
|
198 |
-
#: ../class.yith-wcwl-init.php:
|
199 |
msgid "\"Add to Wishlist\" text"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../class.yith-wcwl-init.php:
|
203 |
msgid "Add to Wishlist"
|
204 |
msgstr "הוסף לרשימת המשאלות"
|
205 |
|
206 |
-
#: ../class.yith-wcwl-init.php:
|
207 |
msgid "\"Add to Cart\" text"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: ../class.yith-wcwl-init.php:
|
211 |
msgid "Add to Cart"
|
212 |
msgstr "הוסף לסל"
|
213 |
|
214 |
-
#: ../class.yith-wcwl-init.php:
|
215 |
#, fuzzy
|
216 |
msgid "Show Unit price"
|
217 |
msgstr "מחיר ליחידה"
|
218 |
|
219 |
-
#: ../class.yith-wcwl-init.php:
|
220 |
#, fuzzy
|
221 |
msgid "Show \"Add to Cart\" button"
|
222 |
msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
|
223 |
|
224 |
-
#: ../class.yith-wcwl-init.php:
|
225 |
#, fuzzy
|
226 |
msgid "Show Stock status"
|
227 |
msgstr "מצב מלאי"
|
228 |
|
229 |
-
#: ../class.yith-wcwl-init.php:
|
230 |
msgid "Use buttons"
|
231 |
msgstr "השתמש בכפתורים"
|
232 |
|
233 |
-
#: ../class.yith-wcwl-init.php:
|
234 |
msgid "Use buttons instead of a simple anchors."
|
235 |
msgstr "השתמש בכפתורים במקום קישורים רגילים."
|
236 |
|
237 |
-
#: ../class.yith-wcwl-init.php:
|
238 |
msgid "Custom CSS"
|
239 |
msgstr "הכנס שורות CSS משלך"
|
240 |
|
241 |
-
#: ../class.yith-wcwl-init.php:
|
242 |
msgid "Use theme style"
|
243 |
msgstr "השתמש בעיצוב של התבנית שלך"
|
244 |
|
245 |
-
#: ../class.yith-wcwl-init.php:
|
246 |
msgid "Use the theme style."
|
247 |
msgstr "השתמש בעיצוב של תבנית האתר."
|
248 |
|
249 |
-
#: ../class.yith-wcwl-init.php:
|
250 |
msgid "Buttons rounded corners"
|
251 |
msgstr "כפתורים עם פינות מעוגלות"
|
252 |
|
253 |
-
#: ../class.yith-wcwl-init.php:
|
254 |
msgid "Make buttons corner rounded"
|
255 |
msgstr "הצג את הכפתורים עם פינות מעוגלות"
|
256 |
|
257 |
-
#: ../class.yith-wcwl-init.php:
|
258 |
msgid "\"Add to Wishlist\" icon"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../class.yith-wcwl-init.php:
|
262 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ../class.yith-wcwl-init.php:
|
266 |
msgid "\"Add to Cart\" icon"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../class.yith-wcwl-init.php:
|
270 |
msgid "Add an icon to the \"Add to Cart\" button"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ../class.yith-wcwl-init.php:
|
274 |
msgid "Share on Facebook"
|
275 |
msgstr "שתף בפייסבוק"
|
276 |
|
277 |
-
#: ../class.yith-wcwl-init.php:
|
278 |
msgid "Tweet on Twitter"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../class.yith-wcwl-init.php:
|
282 |
msgid "Pin on Pinterest"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../class.yith-wcwl-init.php:
|
286 |
msgid "Share on Google+"
|
287 |
msgstr "שתף בגוגל+"
|
288 |
|
289 |
-
#: ../class.yith-wcwl-init.php:
|
290 |
msgid "Socials title"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../class.yith-wcwl-init.php:
|
294 |
msgid "Socials text"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../class.yith-wcwl-init.php:
|
298 |
msgid ""
|
299 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
300 |
"strong> where you want the URL of your wishlist to appear."
|
@@ -302,7 +302,7 @@ msgstr ""
|
|
302 |
"יעשה שימוש על ידי Facebook, Twitter וגם Pinterest. השתמש ב-<strong>"
|
303 |
"%wishlist_url%</strong> היכן שתרצה את ה-URL של רשימת המשאלות שלך שיופיע."
|
304 |
|
305 |
-
#: ../class.yith-wcwl-init.php:
|
306 |
msgid "Socials image URL"
|
307 |
msgstr ""
|
308 |
|
@@ -360,31 +360,35 @@ msgid "Error. Unable to remove the product from the wishlist."
|
|
360 |
msgstr "שגיאה. לא הצלחנו להסיר את המוצר מרשימת המשאלות."
|
361 |
|
362 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
363 |
-
#: ../templates/wishlist.php:
|
364 |
msgid "No products were added to the wishlist"
|
365 |
msgstr "אין מוצרים ברשימת המשאלות שלך."
|
366 |
|
367 |
-
#: ../templates/wishlist.php:
|
368 |
msgid "Product Name"
|
369 |
msgstr "שם המוצר"
|
370 |
|
371 |
-
#: ../templates/wishlist.php:
|
372 |
msgid "Unit Price"
|
373 |
msgstr "מחיר ליחידה"
|
374 |
|
375 |
-
#: ../templates/wishlist.php:
|
376 |
msgid "Stock Status"
|
377 |
msgstr "מצב מלאי"
|
378 |
|
379 |
-
#: ../templates/wishlist.php:
|
380 |
msgid "Remove this product"
|
381 |
msgstr "הסרת מוצר מהרשימה"
|
382 |
|
383 |
-
#: ../templates/wishlist.php:
|
|
|
|
|
|
|
|
|
384 |
msgid "Out of Stock"
|
385 |
msgstr "לא קיים במלאי"
|
386 |
|
387 |
-
#: ../templates/wishlist.php:
|
388 |
msgid "In Stock"
|
389 |
msgstr "קיים במלאי"
|
390 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2014-02-26 15:56+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-26 15:56+0100\n"
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
+
#: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
|
18 |
msgid "Wishlist"
|
19 |
msgstr "רשימת משאלות"
|
20 |
|
21 |
+
#: ../class.yith-wcwl-init.php:353
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr "לא ניתן להוסיף את המוצר לסל כי הוא אינו קיים במלאי!"
|
24 |
|
25 |
+
#: ../class.yith-wcwl-init.php:384
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr "עמוד רשימת המשאלות"
|
28 |
|
29 |
+
#: ../class.yith-wcwl-init.php:385
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr "תוכן העמוד: [yith_wcwl_wishlist]"
|
32 |
|
33 |
+
#: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
|
34 |
msgid "General Settings"
|
35 |
msgstr "הגדרות כלליות"
|
36 |
|
37 |
+
#: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
|
38 |
msgid "Styles"
|
39 |
msgstr "סגנונות עיצוב"
|
40 |
|
41 |
+
#: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../class.yith-wcwl-init.php:450
|
46 |
msgid "Colors"
|
47 |
msgstr "צבעים"
|
48 |
|
49 |
+
#: ../class.yith-wcwl-init.php:480
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../class.yith-wcwl-init.php:481
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../class.yith-wcwl-init.php:482
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../class.yith-wcwl-init.php:488
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../class.yith-wcwl-init.php:489
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../class.yith-wcwl-init.php:490
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../class.yith-wcwl-init.php:495
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../class.yith-wcwl-init.php:496
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../class.yith-wcwl-init.php:497
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../class.yith-wcwl-init.php:503
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../class.yith-wcwl-init.php:504
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
|
92 |
|
93 |
+
#: ../class.yith-wcwl-init.php:505
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr "\"הוסף לסל\" גבול כפתור (hover)"
|
96 |
|
97 |
+
#: ../class.yith-wcwl-init.php:510
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr "רקע טבלת הרשימה"
|
100 |
|
101 |
+
#: ../class.yith-wcwl-init.php:511
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr "טקסט בטבלת הרשימה"
|
104 |
|
105 |
+
#: ../class.yith-wcwl-init.php:512
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr "גבול טבלאות הרשימה"
|
108 |
|
109 |
+
#: ../class.yith-wcwl-init.php:572
|
110 |
msgid "Settings"
|
111 |
msgstr "הגדרות"
|
112 |
|
113 |
+
#: ../class.yith-wcwl-init.php:573
|
114 |
msgid "Docs"
|
115 |
msgstr "מסמכים"
|
116 |
|
117 |
+
#: ../class.yith-wcwl-init.php:823
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr "אפשר שימוש ברשימת המשאלות של YITH"
|
120 |
|
121 |
+
#: ../class.yith-wcwl-init.php:824
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
129 |
"בהגדרות של WooCommerce > Settings > Pages.</strong> בנוסף, קרא את <a "
|
130 |
"href=\"%s\" target=\"_blank\">הוראות השימוש</a> של התוסף."
|
131 |
|
132 |
+
#: ../class.yith-wcwl-init.php:831
|
133 |
msgid "Use cookies"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: ../class.yith-wcwl-init.php:832
|
137 |
msgid ""
|
138 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
139 |
"available for each not logged user for 30 days. Use the filter "
|
141 |
"timestamp )."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../class.yith-wcwl-init.php:839
|
145 |
msgid "Wishlist title"
|
146 |
msgstr "כותרת רשימת משאלות"
|
147 |
|
148 |
+
#: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
|
149 |
+
#: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
|
150 |
#, php-format
|
151 |
msgid "My wishlist on %s"
|
152 |
msgstr "רשימת המשאלות שלי ב-%s"
|
153 |
|
154 |
+
#: ../class.yith-wcwl-init.php:847
|
155 |
msgid "Position"
|
156 |
msgstr "מיקום"
|
157 |
|
158 |
+
#: ../class.yith-wcwl-init.php:848
|
159 |
msgid ""
|
160 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
161 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../class.yith-wcwl-init.php:854
|
165 |
msgid "After \"Add to cart\""
|
166 |
msgstr "לאחר \"הוספה לסל\""
|
167 |
|
168 |
+
#: ../class.yith-wcwl-init.php:855
|
169 |
msgid "After thumbnails"
|
170 |
msgstr "אחרי התמונות המוקטנות"
|
171 |
|
172 |
+
#: ../class.yith-wcwl-init.php:856
|
173 |
msgid "After summary"
|
174 |
msgstr "אחרי תיאור מוצר"
|
175 |
|
176 |
+
#: ../class.yith-wcwl-init.php:857
|
177 |
msgid "Use shortcode"
|
178 |
msgstr "השתמש בקוד מקוצר"
|
179 |
|
180 |
+
#: ../class.yith-wcwl-init.php:862
|
181 |
msgid "Redirect to cart"
|
182 |
msgstr "הפנייה לסל הקניות"
|
183 |
|
184 |
+
#: ../class.yith-wcwl-init.php:863
|
185 |
msgid ""
|
186 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
187 |
"page."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../class.yith-wcwl-init.php:870
|
191 |
msgid "Remove if added to the cart"
|
192 |
msgstr "הסר מהרשימה אם הוסף לסל"
|
193 |
|
194 |
+
#: ../class.yith-wcwl-init.php:871
|
195 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
196 |
msgstr "הסר את המוצר מהרשימה אם הוא הוסף לסל."
|
197 |
|
198 |
+
#: ../class.yith-wcwl-init.php:878
|
199 |
msgid "\"Add to Wishlist\" text"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
|
203 |
msgid "Add to Wishlist"
|
204 |
msgstr "הוסף לרשימת המשאלות"
|
205 |
|
206 |
+
#: ../class.yith-wcwl-init.php:886
|
207 |
msgid "\"Add to Cart\" text"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
|
211 |
msgid "Add to Cart"
|
212 |
msgstr "הוסף לסל"
|
213 |
|
214 |
+
#: ../class.yith-wcwl-init.php:894
|
215 |
#, fuzzy
|
216 |
msgid "Show Unit price"
|
217 |
msgstr "מחיר ליחידה"
|
218 |
|
219 |
+
#: ../class.yith-wcwl-init.php:902
|
220 |
#, fuzzy
|
221 |
msgid "Show \"Add to Cart\" button"
|
222 |
msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
|
223 |
|
224 |
+
#: ../class.yith-wcwl-init.php:910
|
225 |
#, fuzzy
|
226 |
msgid "Show Stock status"
|
227 |
msgstr "מצב מלאי"
|
228 |
|
229 |
+
#: ../class.yith-wcwl-init.php:925
|
230 |
msgid "Use buttons"
|
231 |
msgstr "השתמש בכפתורים"
|
232 |
|
233 |
+
#: ../class.yith-wcwl-init.php:926
|
234 |
msgid "Use buttons instead of a simple anchors."
|
235 |
msgstr "השתמש בכפתורים במקום קישורים רגילים."
|
236 |
|
237 |
+
#: ../class.yith-wcwl-init.php:933
|
238 |
msgid "Custom CSS"
|
239 |
msgstr "הכנס שורות CSS משלך"
|
240 |
|
241 |
+
#: ../class.yith-wcwl-init.php:941
|
242 |
msgid "Use theme style"
|
243 |
msgstr "השתמש בעיצוב של התבנית שלך"
|
244 |
|
245 |
+
#: ../class.yith-wcwl-init.php:942
|
246 |
msgid "Use the theme style."
|
247 |
msgstr "השתמש בעיצוב של תבנית האתר."
|
248 |
|
249 |
+
#: ../class.yith-wcwl-init.php:949
|
250 |
msgid "Buttons rounded corners"
|
251 |
msgstr "כפתורים עם פינות מעוגלות"
|
252 |
|
253 |
+
#: ../class.yith-wcwl-init.php:950
|
254 |
msgid "Make buttons corner rounded"
|
255 |
msgstr "הצג את הכפתורים עם פינות מעוגלות"
|
256 |
|
257 |
+
#: ../class.yith-wcwl-init.php:957
|
258 |
msgid "\"Add to Wishlist\" icon"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../class.yith-wcwl-init.php:958
|
262 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../class.yith-wcwl-init.php:969
|
266 |
msgid "\"Add to Cart\" icon"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../class.yith-wcwl-init.php:970
|
270 |
msgid "Add an icon to the \"Add to Cart\" button"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../class.yith-wcwl-init.php:988
|
274 |
msgid "Share on Facebook"
|
275 |
msgstr "שתף בפייסבוק"
|
276 |
|
277 |
+
#: ../class.yith-wcwl-init.php:995
|
278 |
msgid "Tweet on Twitter"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../class.yith-wcwl-init.php:1002
|
282 |
msgid "Pin on Pinterest"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../class.yith-wcwl-init.php:1009
|
286 |
msgid "Share on Google+"
|
287 |
msgstr "שתף בגוגל+"
|
288 |
|
289 |
+
#: ../class.yith-wcwl-init.php:1016
|
290 |
msgid "Socials title"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../class.yith-wcwl-init.php:1024
|
294 |
msgid "Socials text"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../class.yith-wcwl-init.php:1025
|
298 |
msgid ""
|
299 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
300 |
"strong> where you want the URL of your wishlist to appear."
|
302 |
"יעשה שימוש על ידי Facebook, Twitter וגם Pinterest. השתמש ב-<strong>"
|
303 |
"%wishlist_url%</strong> היכן שתרצה את ה-URL של רשימת המשאלות שלך שיופיע."
|
304 |
|
305 |
+
#: ../class.yith-wcwl-init.php:1033
|
306 |
msgid "Socials image URL"
|
307 |
msgstr ""
|
308 |
|
360 |
msgstr "שגיאה. לא הצלחנו להסיר את המוצר מרשימת המשאלות."
|
361 |
|
362 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
363 |
+
#: ../templates/wishlist.php:158
|
364 |
msgid "No products were added to the wishlist"
|
365 |
msgstr "אין מוצרים ברשימת המשאלות שלך."
|
366 |
|
367 |
+
#: ../templates/wishlist.php:80
|
368 |
msgid "Product Name"
|
369 |
msgstr "שם המוצר"
|
370 |
|
371 |
+
#: ../templates/wishlist.php:81
|
372 |
msgid "Unit Price"
|
373 |
msgstr "מחיר ליחידה"
|
374 |
|
375 |
+
#: ../templates/wishlist.php:82
|
376 |
msgid "Stock Status"
|
377 |
msgstr "מצב מלאי"
|
378 |
|
379 |
+
#: ../templates/wishlist.php:104
|
380 |
msgid "Remove this product"
|
381 |
msgstr "הסרת מוצר מהרשימה"
|
382 |
|
383 |
+
#: ../templates/wishlist.php:124
|
384 |
+
msgid "Free!"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: ../templates/wishlist.php:137
|
388 |
msgid "Out of Stock"
|
389 |
msgstr "לא קיים במלאי"
|
390 |
|
391 |
+
#: ../templates/wishlist.php:140
|
392 |
msgid "In Stock"
|
393 |
msgstr "קיים במלאי"
|
394 |
|
languages/yit-it_IT.mo
CHANGED
Binary file
|
languages/yit-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: 2014-02-
|
7 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
8 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,138 +19,138 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
# @ yit
|
22 |
-
#: ../class.yith-wcwl-init.php:
|
23 |
msgid "Wishlist"
|
24 |
msgstr "Lista dei desideri"
|
25 |
|
26 |
# @ yit
|
27 |
-
#: ../class.yith-wcwl-init.php:
|
28 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
29 |
msgstr "Prodotto non disponibile! Impossibile aggiungerlo nel carrello"
|
30 |
|
31 |
# @ yit
|
32 |
-
#: ../class.yith-wcwl-init.php:
|
33 |
msgid "Wishlist Page"
|
34 |
msgstr "Lista dei desideri"
|
35 |
|
36 |
# @ yit
|
37 |
-
#: ../class.yith-wcwl-init.php:
|
38 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
39 |
msgstr "Contenuto della pagina: [yith_wcwl_wishlist]"
|
40 |
|
41 |
# @ yit
|
42 |
-
#: ../class.yith-wcwl-init.php:
|
43 |
msgid "General Settings"
|
44 |
msgstr "Impostazioni"
|
45 |
|
46 |
# @ yit
|
47 |
-
#: ../class.yith-wcwl-init.php:
|
48 |
msgid "Styles"
|
49 |
msgstr "Stili"
|
50 |
|
51 |
# @ yit
|
52 |
-
#: ../class.yith-wcwl-init.php:
|
53 |
msgid "Socials & Share"
|
54 |
msgstr "Social & Condivisione"
|
55 |
|
56 |
# @ yit
|
57 |
-
#: ../class.yith-wcwl-init.php:
|
58 |
msgid "Colors"
|
59 |
msgstr "Colori"
|
60 |
|
61 |
# @ yit
|
62 |
-
#: ../class.yith-wcwl-init.php:
|
63 |
msgid "\"Add to Wishlist\" button background"
|
64 |
msgstr "Sfondo del pulsante \"Aggiungi alla lista dei desideri\""
|
65 |
|
66 |
# @ yit
|
67 |
-
#: ../class.yith-wcwl-init.php:
|
68 |
msgid "\"Add to Wishlist\" button text"
|
69 |
msgstr "Testo del pulsante \"Aggiungi alla lista dei desideri\""
|
70 |
|
71 |
# @ yit
|
72 |
-
#: ../class.yith-wcwl-init.php:
|
73 |
msgid "\"Add to Wishlist\" button border"
|
74 |
msgstr "Bordo del pulsante \"Aggiungi alla lista dei desideri\""
|
75 |
|
76 |
# @ yit
|
77 |
-
#: ../class.yith-wcwl-init.php:
|
78 |
msgid "\"Add to Wishlist\" button background (hover)"
|
79 |
msgstr ""
|
80 |
"Colore di sfondo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
|
81 |
|
82 |
# @ yit
|
83 |
-
#: ../class.yith-wcwl-init.php:
|
84 |
msgid "\"Add to Wishlist\" button text (hover)"
|
85 |
msgstr "Colore testo per \"Aggiungi alla lista dei desideri\" pulsante (hover)"
|
86 |
|
87 |
# @ yit
|
88 |
-
#: ../class.yith-wcwl-init.php:
|
89 |
msgid "\"Add to Wishlist\" button border (hover)"
|
90 |
msgstr "Colore bordo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
|
91 |
|
92 |
# @ yit
|
93 |
-
#: ../class.yith-wcwl-init.php:
|
94 |
msgid "\"Add to Cart\" button background"
|
95 |
msgstr "Sfondo del pulsante\"Aggiungi al carrello\""
|
96 |
|
97 |
# @ yit
|
98 |
-
#: ../class.yith-wcwl-init.php:
|
99 |
msgid "\"Add to Cart\" button text"
|
100 |
msgstr "Testo del pulsante\"Aggiungi al carrello\""
|
101 |
|
102 |
# @ yit
|
103 |
-
#: ../class.yith-wcwl-init.php:
|
104 |
msgid "\"Add to Cart\" button border"
|
105 |
msgstr "Bordo del pulsante\"Aggiungi al carrello\""
|
106 |
|
107 |
# @ yit
|
108 |
-
#: ../class.yith-wcwl-init.php:
|
109 |
msgid "\"Add to Cart\" button background (hover)"
|
110 |
msgstr "Colore di sfondo per \"Aggiungi al carrello\" pulsante (hover)"
|
111 |
|
112 |
# @ yit
|
113 |
-
#: ../class.yith-wcwl-init.php:
|
114 |
msgid "\"Add to Cart\" button text (hover)"
|
115 |
msgstr "Colore testo per \"Aggiungi al carrello\" pulsante (hover)"
|
116 |
|
117 |
# @ yit
|
118 |
-
#: ../class.yith-wcwl-init.php:
|
119 |
msgid "\"Add to Cart\" button border (hover)"
|
120 |
msgstr "Colore bordo per \"Aggiungi al carrello\" pulsante (hover)"
|
121 |
|
122 |
# @ yit
|
123 |
-
#: ../class.yith-wcwl-init.php:
|
124 |
msgid "Wishlist table background"
|
125 |
msgstr "Sfondo della tabella lista dei desideri"
|
126 |
|
127 |
# @ yit
|
128 |
-
#: ../class.yith-wcwl-init.php:
|
129 |
msgid "Wishlist table text"
|
130 |
msgstr "Testo della tabella lista dei desideri"
|
131 |
|
132 |
# @ yit
|
133 |
-
#: ../class.yith-wcwl-init.php:
|
134 |
msgid "Wishlist table border"
|
135 |
msgstr "Bordo della tabella lista dei desideri"
|
136 |
|
137 |
# @ yit
|
138 |
-
#: ../class.yith-wcwl-init.php:
|
139 |
msgid "Settings"
|
140 |
msgstr "Impostazioni"
|
141 |
|
142 |
# @ yit
|
143 |
-
#: ../class.yith-wcwl-init.php:
|
144 |
msgid "Docs"
|
145 |
msgstr "Documenti"
|
146 |
|
147 |
# @ yit
|
148 |
-
#: ../class.yith-wcwl-init.php:
|
149 |
msgid "Enable YITH Wishlist"
|
150 |
msgstr "Abilita YITH WooCommerce Wishlist"
|
151 |
|
152 |
# @ yit
|
153 |
-
#: ../class.yith-wcwl-init.php:
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -163,12 +163,12 @@ msgstr ""
|
|
163 |
"a> del plugin."
|
164 |
|
165 |
# @ yit
|
166 |
-
#: ../class.yith-wcwl-init.php:
|
167 |
msgid "Use cookies"
|
168 |
msgstr "Utilizza cookie"
|
169 |
|
170 |
# @ yit
|
171 |
-
#: ../class.yith-wcwl-init.php:
|
172 |
msgid ""
|
173 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
174 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -181,24 +181,24 @@ msgstr ""
|
|
181 |
"durata del cookie ( in timestamp )"
|
182 |
|
183 |
# @ yit
|
184 |
-
#: ../class.yith-wcwl-init.php:
|
185 |
msgid "Wishlist title"
|
186 |
msgstr "Titolo della lista dei desideri"
|
187 |
|
188 |
# @ yit
|
189 |
-
#: ../class.yith-wcwl-init.php:
|
190 |
-
#: ../class.yith-wcwl-init.php:
|
191 |
#, php-format
|
192 |
msgid "My wishlist on %s"
|
193 |
msgstr "La mia lista dei desideri su %s"
|
194 |
|
195 |
# @ yit
|
196 |
-
#: ../class.yith-wcwl-init.php:
|
197 |
msgid "Position"
|
198 |
msgstr "Posizione"
|
199 |
|
200 |
# @ yit
|
201 |
-
#: ../class.yith-wcwl-init.php:
|
202 |
msgid ""
|
203 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
204 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
@@ -207,32 +207,32 @@ msgstr ""
|
|
207 |
"\" o utilizzare lo shortcode [yith_wcwl_add_to_wishlist]."
|
208 |
|
209 |
# @ yit
|
210 |
-
#: ../class.yith-wcwl-init.php:
|
211 |
msgid "After \"Add to cart\""
|
212 |
msgstr "Dopo \"Aggiungi al Carrello\""
|
213 |
|
214 |
# @ yit
|
215 |
-
#: ../class.yith-wcwl-init.php:
|
216 |
msgid "After thumbnails"
|
217 |
msgstr "Dopo le thumbnail"
|
218 |
|
219 |
# @ yit
|
220 |
-
#: ../class.yith-wcwl-init.php:
|
221 |
msgid "After summary"
|
222 |
msgstr "Dopo la descrizione"
|
223 |
|
224 |
# @ yit
|
225 |
-
#: ../class.yith-wcwl-init.php:
|
226 |
msgid "Use shortcode"
|
227 |
msgstr "Utilizza lo shortcode"
|
228 |
|
229 |
# @ yit
|
230 |
-
#: ../class.yith-wcwl-init.php:
|
231 |
msgid "Redirect to cart"
|
232 |
msgstr "Reindirizza al carrello"
|
233 |
|
234 |
# @ yit
|
235 |
-
#: ../class.yith-wcwl-init.php:
|
236 |
msgid ""
|
237 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
238 |
"page."
|
@@ -241,141 +241,141 @@ msgstr ""
|
|
241 |
"bottone \"Aggiungi al carrello\" "
|
242 |
|
243 |
# @ yit
|
244 |
-
#: ../class.yith-wcwl-init.php:
|
245 |
msgid "Remove if added to the cart"
|
246 |
msgstr "Rimuovi se aggiunto al carrello"
|
247 |
|
248 |
# @ yit
|
249 |
-
#: ../class.yith-wcwl-init.php:
|
250 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
251 |
msgstr ""
|
252 |
"Quando un prodotto viene aggiunto al carrello, viene rimosso dalla lista dei "
|
253 |
"desideri."
|
254 |
|
255 |
# @ yit
|
256 |
-
#: ../class.yith-wcwl-init.php:
|
257 |
msgid "\"Add to Wishlist\" text"
|
258 |
msgstr "Testo del pulsante\"Aggiungi alla lista dei desideri\""
|
259 |
|
260 |
# @ yit
|
261 |
-
#: ../class.yith-wcwl-init.php:
|
262 |
msgid "Add to Wishlist"
|
263 |
msgstr "Aggiungi alla lista dei desideri"
|
264 |
|
265 |
# @ yit
|
266 |
-
#: ../class.yith-wcwl-init.php:
|
267 |
msgid "\"Add to Cart\" text"
|
268 |
msgstr "Testo del pulsante\"Aggiungi al carrello\""
|
269 |
|
270 |
# @ yit
|
271 |
-
#: ../class.yith-wcwl-init.php:
|
272 |
msgid "Add to Cart"
|
273 |
msgstr "Aggiungi al Carrello"
|
274 |
|
275 |
# @ yit
|
276 |
-
#: ../class.yith-wcwl-init.php:
|
277 |
#, fuzzy
|
278 |
msgid "Show Unit price"
|
279 |
msgstr "Prezzo Unitario"
|
280 |
|
281 |
# @ yit
|
282 |
-
#: ../class.yith-wcwl-init.php:
|
283 |
msgid "Show \"Add to Cart\" button"
|
284 |
msgstr "Mostra il pulsante \"Aggiungi al carrello\""
|
285 |
|
286 |
# @ yit
|
287 |
-
#: ../class.yith-wcwl-init.php:
|
288 |
#, fuzzy
|
289 |
msgid "Show Stock status"
|
290 |
msgstr "Disponibilitá"
|
291 |
|
292 |
# @ yit
|
293 |
-
#: ../class.yith-wcwl-init.php:
|
294 |
msgid "Use buttons"
|
295 |
msgstr "Usa pulsanti"
|
296 |
|
297 |
# @ yit
|
298 |
-
#: ../class.yith-wcwl-init.php:
|
299 |
msgid "Use buttons instead of a simple anchors."
|
300 |
msgstr "Utilizza dei pulsanti al posto delle ancore"
|
301 |
|
302 |
# @ yit
|
303 |
-
#: ../class.yith-wcwl-init.php:
|
304 |
msgid "Custom CSS"
|
305 |
msgstr "CSS personalizzato"
|
306 |
|
307 |
# @ yit
|
308 |
-
#: ../class.yith-wcwl-init.php:
|
309 |
msgid "Use theme style"
|
310 |
msgstr "Usa stile del tema"
|
311 |
|
312 |
# @ yit
|
313 |
-
#: ../class.yith-wcwl-init.php:
|
314 |
msgid "Use the theme style."
|
315 |
msgstr "Usa lo stile del tema."
|
316 |
|
317 |
# @ yit
|
318 |
-
#: ../class.yith-wcwl-init.php:
|
319 |
msgid "Buttons rounded corners"
|
320 |
msgstr "Pulsanti con bordi arrotondati"
|
321 |
|
322 |
# @ yit
|
323 |
-
#: ../class.yith-wcwl-init.php:
|
324 |
msgid "Make buttons corner rounded"
|
325 |
msgstr "Arrotonda i bordi dei pulsanti"
|
326 |
|
327 |
# @ yit
|
328 |
-
#: ../class.yith-wcwl-init.php:
|
329 |
msgid "\"Add to Wishlist\" icon"
|
330 |
msgstr "Icona \"Aggiungi alla lista dei desideri\""
|
331 |
|
332 |
# @ yit
|
333 |
-
#: ../class.yith-wcwl-init.php:
|
334 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
335 |
msgstr "Aggiungi un'icona al pulsante \"Aggiungi alla lista dei desideri\""
|
336 |
|
337 |
# @ yit
|
338 |
-
#: ../class.yith-wcwl-init.php:
|
339 |
msgid "\"Add to Cart\" icon"
|
340 |
msgstr "Icona \"Aggiungi al carrello\""
|
341 |
|
342 |
# @ yit
|
343 |
-
#: ../class.yith-wcwl-init.php:
|
344 |
msgid "Add an icon to the \"Add to Cart\" button"
|
345 |
msgstr "Aggiunge un'icona al pulsante \"Aggiungi al carrello\""
|
346 |
|
347 |
# @ yit
|
348 |
-
#: ../class.yith-wcwl-init.php:
|
349 |
msgid "Share on Facebook"
|
350 |
msgstr "Condivi su Facebook"
|
351 |
|
352 |
# @ yit
|
353 |
-
#: ../class.yith-wcwl-init.php:
|
354 |
msgid "Tweet on Twitter"
|
355 |
msgstr "Condividi su Twitter"
|
356 |
|
357 |
# @ yit
|
358 |
-
#: ../class.yith-wcwl-init.php:
|
359 |
msgid "Pin on Pinterest"
|
360 |
msgstr "Pin su Pinterest"
|
361 |
|
362 |
# @ yit
|
363 |
-
#: ../class.yith-wcwl-init.php:
|
364 |
msgid "Share on Google+"
|
365 |
msgstr "Condividi su Google+"
|
366 |
|
367 |
# @ yit
|
368 |
-
#: ../class.yith-wcwl-init.php:
|
369 |
msgid "Socials title"
|
370 |
msgstr "Titolo dei social"
|
371 |
|
372 |
# @ yit
|
373 |
-
#: ../class.yith-wcwl-init.php:
|
374 |
msgid "Socials text"
|
375 |
msgstr "Testo dei social"
|
376 |
|
377 |
# @ yit
|
378 |
-
#: ../class.yith-wcwl-init.php:
|
379 |
msgid ""
|
380 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
381 |
"strong> where you want the URL of your wishlist to appear."
|
@@ -384,7 +384,7 @@ msgstr ""
|
|
384 |
"%wishlist_url%</strong> dove vuoi che appaia l'URL della lista dei desideri."
|
385 |
|
386 |
# @ yit
|
387 |
-
#: ../class.yith-wcwl-init.php:
|
388 |
msgid "Socials image URL"
|
389 |
msgstr "URL immagine social"
|
390 |
|
@@ -457,37 +457,41 @@ msgstr "Errore. Impossibile rimuovere il prodotto dalla lista dei desideri."
|
|
457 |
|
458 |
# @ yit
|
459 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
460 |
-
#: ../templates/wishlist.php:
|
461 |
msgid "No products were added to the wishlist"
|
462 |
msgstr "Nessun prodotto nella lista dei desideri"
|
463 |
|
464 |
# @ yit
|
465 |
-
#: ../templates/wishlist.php:
|
466 |
msgid "Product Name"
|
467 |
msgstr "Nome del Prodotto"
|
468 |
|
469 |
# @ yit
|
470 |
-
#: ../templates/wishlist.php:
|
471 |
msgid "Unit Price"
|
472 |
msgstr "Prezzo Unitario"
|
473 |
|
474 |
# @ yit
|
475 |
-
#: ../templates/wishlist.php:
|
476 |
msgid "Stock Status"
|
477 |
msgstr "Disponibilitá"
|
478 |
|
479 |
# @ yit
|
480 |
-
#: ../templates/wishlist.php:
|
481 |
msgid "Remove this product"
|
482 |
msgstr "Rimuovi questo prodotto"
|
483 |
|
|
|
|
|
|
|
|
|
484 |
# @ yit
|
485 |
-
#: ../templates/wishlist.php:
|
486 |
msgid "Out of Stock"
|
487 |
msgstr "Non disponibile"
|
488 |
|
489 |
# @ yit
|
490 |
-
#: ../templates/wishlist.php:
|
491 |
msgid "In Stock"
|
492 |
msgstr "Disponibile"
|
493 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-02-26 15:56+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-02-26 15:57+0100\n"
|
7 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
8 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
# @ yit
|
22 |
+
#: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
|
23 |
msgid "Wishlist"
|
24 |
msgstr "Lista dei desideri"
|
25 |
|
26 |
# @ yit
|
27 |
+
#: ../class.yith-wcwl-init.php:353
|
28 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
29 |
msgstr "Prodotto non disponibile! Impossibile aggiungerlo nel carrello"
|
30 |
|
31 |
# @ yit
|
32 |
+
#: ../class.yith-wcwl-init.php:384
|
33 |
msgid "Wishlist Page"
|
34 |
msgstr "Lista dei desideri"
|
35 |
|
36 |
# @ yit
|
37 |
+
#: ../class.yith-wcwl-init.php:385
|
38 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
39 |
msgstr "Contenuto della pagina: [yith_wcwl_wishlist]"
|
40 |
|
41 |
# @ yit
|
42 |
+
#: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
|
43 |
msgid "General Settings"
|
44 |
msgstr "Impostazioni"
|
45 |
|
46 |
# @ yit
|
47 |
+
#: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
|
48 |
msgid "Styles"
|
49 |
msgstr "Stili"
|
50 |
|
51 |
# @ yit
|
52 |
+
#: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
|
53 |
msgid "Socials & Share"
|
54 |
msgstr "Social & Condivisione"
|
55 |
|
56 |
# @ yit
|
57 |
+
#: ../class.yith-wcwl-init.php:450
|
58 |
msgid "Colors"
|
59 |
msgstr "Colori"
|
60 |
|
61 |
# @ yit
|
62 |
+
#: ../class.yith-wcwl-init.php:480
|
63 |
msgid "\"Add to Wishlist\" button background"
|
64 |
msgstr "Sfondo del pulsante \"Aggiungi alla lista dei desideri\""
|
65 |
|
66 |
# @ yit
|
67 |
+
#: ../class.yith-wcwl-init.php:481
|
68 |
msgid "\"Add to Wishlist\" button text"
|
69 |
msgstr "Testo del pulsante \"Aggiungi alla lista dei desideri\""
|
70 |
|
71 |
# @ yit
|
72 |
+
#: ../class.yith-wcwl-init.php:482
|
73 |
msgid "\"Add to Wishlist\" button border"
|
74 |
msgstr "Bordo del pulsante \"Aggiungi alla lista dei desideri\""
|
75 |
|
76 |
# @ yit
|
77 |
+
#: ../class.yith-wcwl-init.php:488
|
78 |
msgid "\"Add to Wishlist\" button background (hover)"
|
79 |
msgstr ""
|
80 |
"Colore di sfondo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
|
81 |
|
82 |
# @ yit
|
83 |
+
#: ../class.yith-wcwl-init.php:489
|
84 |
msgid "\"Add to Wishlist\" button text (hover)"
|
85 |
msgstr "Colore testo per \"Aggiungi alla lista dei desideri\" pulsante (hover)"
|
86 |
|
87 |
# @ yit
|
88 |
+
#: ../class.yith-wcwl-init.php:490
|
89 |
msgid "\"Add to Wishlist\" button border (hover)"
|
90 |
msgstr "Colore bordo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
|
91 |
|
92 |
# @ yit
|
93 |
+
#: ../class.yith-wcwl-init.php:495
|
94 |
msgid "\"Add to Cart\" button background"
|
95 |
msgstr "Sfondo del pulsante\"Aggiungi al carrello\""
|
96 |
|
97 |
# @ yit
|
98 |
+
#: ../class.yith-wcwl-init.php:496
|
99 |
msgid "\"Add to Cart\" button text"
|
100 |
msgstr "Testo del pulsante\"Aggiungi al carrello\""
|
101 |
|
102 |
# @ yit
|
103 |
+
#: ../class.yith-wcwl-init.php:497
|
104 |
msgid "\"Add to Cart\" button border"
|
105 |
msgstr "Bordo del pulsante\"Aggiungi al carrello\""
|
106 |
|
107 |
# @ yit
|
108 |
+
#: ../class.yith-wcwl-init.php:503
|
109 |
msgid "\"Add to Cart\" button background (hover)"
|
110 |
msgstr "Colore di sfondo per \"Aggiungi al carrello\" pulsante (hover)"
|
111 |
|
112 |
# @ yit
|
113 |
+
#: ../class.yith-wcwl-init.php:504
|
114 |
msgid "\"Add to Cart\" button text (hover)"
|
115 |
msgstr "Colore testo per \"Aggiungi al carrello\" pulsante (hover)"
|
116 |
|
117 |
# @ yit
|
118 |
+
#: ../class.yith-wcwl-init.php:505
|
119 |
msgid "\"Add to Cart\" button border (hover)"
|
120 |
msgstr "Colore bordo per \"Aggiungi al carrello\" pulsante (hover)"
|
121 |
|
122 |
# @ yit
|
123 |
+
#: ../class.yith-wcwl-init.php:510
|
124 |
msgid "Wishlist table background"
|
125 |
msgstr "Sfondo della tabella lista dei desideri"
|
126 |
|
127 |
# @ yit
|
128 |
+
#: ../class.yith-wcwl-init.php:511
|
129 |
msgid "Wishlist table text"
|
130 |
msgstr "Testo della tabella lista dei desideri"
|
131 |
|
132 |
# @ yit
|
133 |
+
#: ../class.yith-wcwl-init.php:512
|
134 |
msgid "Wishlist table border"
|
135 |
msgstr "Bordo della tabella lista dei desideri"
|
136 |
|
137 |
# @ yit
|
138 |
+
#: ../class.yith-wcwl-init.php:572
|
139 |
msgid "Settings"
|
140 |
msgstr "Impostazioni"
|
141 |
|
142 |
# @ yit
|
143 |
+
#: ../class.yith-wcwl-init.php:573
|
144 |
msgid "Docs"
|
145 |
msgstr "Documenti"
|
146 |
|
147 |
# @ yit
|
148 |
+
#: ../class.yith-wcwl-init.php:823
|
149 |
msgid "Enable YITH Wishlist"
|
150 |
msgstr "Abilita YITH WooCommerce Wishlist"
|
151 |
|
152 |
# @ yit
|
153 |
+
#: ../class.yith-wcwl-init.php:824
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
163 |
"a> del plugin."
|
164 |
|
165 |
# @ yit
|
166 |
+
#: ../class.yith-wcwl-init.php:831
|
167 |
msgid "Use cookies"
|
168 |
msgstr "Utilizza cookie"
|
169 |
|
170 |
# @ yit
|
171 |
+
#: ../class.yith-wcwl-init.php:832
|
172 |
msgid ""
|
173 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
174 |
"available for each not logged user for 30 days. Use the filter "
|
181 |
"durata del cookie ( in timestamp )"
|
182 |
|
183 |
# @ yit
|
184 |
+
#: ../class.yith-wcwl-init.php:839
|
185 |
msgid "Wishlist title"
|
186 |
msgstr "Titolo della lista dei desideri"
|
187 |
|
188 |
# @ yit
|
189 |
+
#: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
|
190 |
+
#: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
|
191 |
#, php-format
|
192 |
msgid "My wishlist on %s"
|
193 |
msgstr "La mia lista dei desideri su %s"
|
194 |
|
195 |
# @ yit
|
196 |
+
#: ../class.yith-wcwl-init.php:847
|
197 |
msgid "Position"
|
198 |
msgstr "Posizione"
|
199 |
|
200 |
# @ yit
|
201 |
+
#: ../class.yith-wcwl-init.php:848
|
202 |
msgid ""
|
203 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
204 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
207 |
"\" o utilizzare lo shortcode [yith_wcwl_add_to_wishlist]."
|
208 |
|
209 |
# @ yit
|
210 |
+
#: ../class.yith-wcwl-init.php:854
|
211 |
msgid "After \"Add to cart\""
|
212 |
msgstr "Dopo \"Aggiungi al Carrello\""
|
213 |
|
214 |
# @ yit
|
215 |
+
#: ../class.yith-wcwl-init.php:855
|
216 |
msgid "After thumbnails"
|
217 |
msgstr "Dopo le thumbnail"
|
218 |
|
219 |
# @ yit
|
220 |
+
#: ../class.yith-wcwl-init.php:856
|
221 |
msgid "After summary"
|
222 |
msgstr "Dopo la descrizione"
|
223 |
|
224 |
# @ yit
|
225 |
+
#: ../class.yith-wcwl-init.php:857
|
226 |
msgid "Use shortcode"
|
227 |
msgstr "Utilizza lo shortcode"
|
228 |
|
229 |
# @ yit
|
230 |
+
#: ../class.yith-wcwl-init.php:862
|
231 |
msgid "Redirect to cart"
|
232 |
msgstr "Reindirizza al carrello"
|
233 |
|
234 |
# @ yit
|
235 |
+
#: ../class.yith-wcwl-init.php:863
|
236 |
msgid ""
|
237 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
238 |
"page."
|
241 |
"bottone \"Aggiungi al carrello\" "
|
242 |
|
243 |
# @ yit
|
244 |
+
#: ../class.yith-wcwl-init.php:870
|
245 |
msgid "Remove if added to the cart"
|
246 |
msgstr "Rimuovi se aggiunto al carrello"
|
247 |
|
248 |
# @ yit
|
249 |
+
#: ../class.yith-wcwl-init.php:871
|
250 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
251 |
msgstr ""
|
252 |
"Quando un prodotto viene aggiunto al carrello, viene rimosso dalla lista dei "
|
253 |
"desideri."
|
254 |
|
255 |
# @ yit
|
256 |
+
#: ../class.yith-wcwl-init.php:878
|
257 |
msgid "\"Add to Wishlist\" text"
|
258 |
msgstr "Testo del pulsante\"Aggiungi alla lista dei desideri\""
|
259 |
|
260 |
# @ yit
|
261 |
+
#: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
|
262 |
msgid "Add to Wishlist"
|
263 |
msgstr "Aggiungi alla lista dei desideri"
|
264 |
|
265 |
# @ yit
|
266 |
+
#: ../class.yith-wcwl-init.php:886
|
267 |
msgid "\"Add to Cart\" text"
|
268 |
msgstr "Testo del pulsante\"Aggiungi al carrello\""
|
269 |
|
270 |
# @ yit
|
271 |
+
#: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
|
272 |
msgid "Add to Cart"
|
273 |
msgstr "Aggiungi al Carrello"
|
274 |
|
275 |
# @ yit
|
276 |
+
#: ../class.yith-wcwl-init.php:894
|
277 |
#, fuzzy
|
278 |
msgid "Show Unit price"
|
279 |
msgstr "Prezzo Unitario"
|
280 |
|
281 |
# @ yit
|
282 |
+
#: ../class.yith-wcwl-init.php:902
|
283 |
msgid "Show \"Add to Cart\" button"
|
284 |
msgstr "Mostra il pulsante \"Aggiungi al carrello\""
|
285 |
|
286 |
# @ yit
|
287 |
+
#: ../class.yith-wcwl-init.php:910
|
288 |
#, fuzzy
|
289 |
msgid "Show Stock status"
|
290 |
msgstr "Disponibilitá"
|
291 |
|
292 |
# @ yit
|
293 |
+
#: ../class.yith-wcwl-init.php:925
|
294 |
msgid "Use buttons"
|
295 |
msgstr "Usa pulsanti"
|
296 |
|
297 |
# @ yit
|
298 |
+
#: ../class.yith-wcwl-init.php:926
|
299 |
msgid "Use buttons instead of a simple anchors."
|
300 |
msgstr "Utilizza dei pulsanti al posto delle ancore"
|
301 |
|
302 |
# @ yit
|
303 |
+
#: ../class.yith-wcwl-init.php:933
|
304 |
msgid "Custom CSS"
|
305 |
msgstr "CSS personalizzato"
|
306 |
|
307 |
# @ yit
|
308 |
+
#: ../class.yith-wcwl-init.php:941
|
309 |
msgid "Use theme style"
|
310 |
msgstr "Usa stile del tema"
|
311 |
|
312 |
# @ yit
|
313 |
+
#: ../class.yith-wcwl-init.php:942
|
314 |
msgid "Use the theme style."
|
315 |
msgstr "Usa lo stile del tema."
|
316 |
|
317 |
# @ yit
|
318 |
+
#: ../class.yith-wcwl-init.php:949
|
319 |
msgid "Buttons rounded corners"
|
320 |
msgstr "Pulsanti con bordi arrotondati"
|
321 |
|
322 |
# @ yit
|
323 |
+
#: ../class.yith-wcwl-init.php:950
|
324 |
msgid "Make buttons corner rounded"
|
325 |
msgstr "Arrotonda i bordi dei pulsanti"
|
326 |
|
327 |
# @ yit
|
328 |
+
#: ../class.yith-wcwl-init.php:957
|
329 |
msgid "\"Add to Wishlist\" icon"
|
330 |
msgstr "Icona \"Aggiungi alla lista dei desideri\""
|
331 |
|
332 |
# @ yit
|
333 |
+
#: ../class.yith-wcwl-init.php:958
|
334 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
335 |
msgstr "Aggiungi un'icona al pulsante \"Aggiungi alla lista dei desideri\""
|
336 |
|
337 |
# @ yit
|
338 |
+
#: ../class.yith-wcwl-init.php:969
|
339 |
msgid "\"Add to Cart\" icon"
|
340 |
msgstr "Icona \"Aggiungi al carrello\""
|
341 |
|
342 |
# @ yit
|
343 |
+
#: ../class.yith-wcwl-init.php:970
|
344 |
msgid "Add an icon to the \"Add to Cart\" button"
|
345 |
msgstr "Aggiunge un'icona al pulsante \"Aggiungi al carrello\""
|
346 |
|
347 |
# @ yit
|
348 |
+
#: ../class.yith-wcwl-init.php:988
|
349 |
msgid "Share on Facebook"
|
350 |
msgstr "Condivi su Facebook"
|
351 |
|
352 |
# @ yit
|
353 |
+
#: ../class.yith-wcwl-init.php:995
|
354 |
msgid "Tweet on Twitter"
|
355 |
msgstr "Condividi su Twitter"
|
356 |
|
357 |
# @ yit
|
358 |
+
#: ../class.yith-wcwl-init.php:1002
|
359 |
msgid "Pin on Pinterest"
|
360 |
msgstr "Pin su Pinterest"
|
361 |
|
362 |
# @ yit
|
363 |
+
#: ../class.yith-wcwl-init.php:1009
|
364 |
msgid "Share on Google+"
|
365 |
msgstr "Condividi su Google+"
|
366 |
|
367 |
# @ yit
|
368 |
+
#: ../class.yith-wcwl-init.php:1016
|
369 |
msgid "Socials title"
|
370 |
msgstr "Titolo dei social"
|
371 |
|
372 |
# @ yit
|
373 |
+
#: ../class.yith-wcwl-init.php:1024
|
374 |
msgid "Socials text"
|
375 |
msgstr "Testo dei social"
|
376 |
|
377 |
# @ yit
|
378 |
+
#: ../class.yith-wcwl-init.php:1025
|
379 |
msgid ""
|
380 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
381 |
"strong> where you want the URL of your wishlist to appear."
|
384 |
"%wishlist_url%</strong> dove vuoi che appaia l'URL della lista dei desideri."
|
385 |
|
386 |
# @ yit
|
387 |
+
#: ../class.yith-wcwl-init.php:1033
|
388 |
msgid "Socials image URL"
|
389 |
msgstr "URL immagine social"
|
390 |
|
457 |
|
458 |
# @ yit
|
459 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
460 |
+
#: ../templates/wishlist.php:158
|
461 |
msgid "No products were added to the wishlist"
|
462 |
msgstr "Nessun prodotto nella lista dei desideri"
|
463 |
|
464 |
# @ yit
|
465 |
+
#: ../templates/wishlist.php:80
|
466 |
msgid "Product Name"
|
467 |
msgstr "Nome del Prodotto"
|
468 |
|
469 |
# @ yit
|
470 |
+
#: ../templates/wishlist.php:81
|
471 |
msgid "Unit Price"
|
472 |
msgstr "Prezzo Unitario"
|
473 |
|
474 |
# @ yit
|
475 |
+
#: ../templates/wishlist.php:82
|
476 |
msgid "Stock Status"
|
477 |
msgstr "Disponibilitá"
|
478 |
|
479 |
# @ yit
|
480 |
+
#: ../templates/wishlist.php:104
|
481 |
msgid "Remove this product"
|
482 |
msgstr "Rimuovi questo prodotto"
|
483 |
|
484 |
+
#: ../templates/wishlist.php:124
|
485 |
+
msgid "Free!"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
# @ yit
|
489 |
+
#: ../templates/wishlist.php:137
|
490 |
msgid "Out of Stock"
|
491 |
msgstr "Non disponibile"
|
492 |
|
493 |
# @ yit
|
494 |
+
#: ../templates/wishlist.php:140
|
495 |
msgid "In Stock"
|
496 |
msgstr "Disponibile"
|
497 |
|
languages/yit-pt_BR.mo
CHANGED
Binary file
|
languages/yit-pt_BR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,119 +14,111 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../
|
18 |
-
msgid "View Cart →"
|
19 |
-
msgstr "Ver Carrinho"
|
20 |
-
|
21 |
-
#: ../add-to-cart.php:31
|
22 |
-
msgid "Product successfully added to the cart."
|
23 |
-
msgstr "Produto adicionado ao carrinho."
|
24 |
-
|
25 |
-
#: ../class.yith-wcwl-init.php:105 ../class.yith-wcwl-install.php:137
|
26 |
msgid "Wishlist"
|
27 |
msgstr "Lista de Desejos"
|
28 |
|
29 |
-
#: ../class.yith-wcwl-init.php:
|
30 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
31 |
msgstr "Não foi possível adicionar ao carrinho. O produto esta esgotado."
|
32 |
|
33 |
-
#: ../class.yith-wcwl-init.php:
|
34 |
msgid "Wishlist Page"
|
35 |
msgstr "Meus desejos"
|
36 |
|
37 |
-
#: ../class.yith-wcwl-init.php:
|
38 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
39 |
msgstr "Conteúdo da página: [yith_wcwl_wishlist]"
|
40 |
|
41 |
-
#: ../class.yith-wcwl-init.php:
|
42 |
msgid "General Settings"
|
43 |
msgstr "Opções gerais"
|
44 |
|
45 |
-
#: ../class.yith-wcwl-init.php:
|
46 |
msgid "Styles"
|
47 |
msgstr "Estilos"
|
48 |
|
49 |
-
#: ../class.yith-wcwl-init.php:
|
50 |
msgid "Socials & Share"
|
51 |
msgstr "Social & Compartilhamento"
|
52 |
|
53 |
-
#: ../class.yith-wcwl-init.php:
|
54 |
msgid "Colors"
|
55 |
msgstr "Cores"
|
56 |
|
57 |
-
#: ../class.yith-wcwl-init.php:
|
58 |
msgid "\"Add to Wishlist\" button background"
|
59 |
msgstr "Fundo do botão \"Adicionar aos meus desejos\""
|
60 |
|
61 |
-
#: ../class.yith-wcwl-init.php:
|
62 |
msgid "\"Add to Wishlist\" button text"
|
63 |
msgstr "Texto do botão \"Adicionar aos meus desejos\""
|
64 |
|
65 |
-
#: ../class.yith-wcwl-init.php:
|
66 |
msgid "\"Add to Wishlist\" button border"
|
67 |
msgstr "Borda do botão \"Adicionar aos meus desejos\""
|
68 |
|
69 |
-
#: ../class.yith-wcwl-init.php:
|
70 |
msgid "\"Add to Wishlist\" button background (hover)"
|
71 |
msgstr "Fundo do botão \"Adicionar aos meus desejos\" (Hover)"
|
72 |
|
73 |
-
#: ../class.yith-wcwl-init.php:
|
74 |
msgid "\"Add to Wishlist\" button text (hover)"
|
75 |
msgstr "Texto do botão \"Adicionar aos meus desejos\" (Hover)"
|
76 |
|
77 |
-
#: ../class.yith-wcwl-init.php:
|
78 |
msgid "\"Add to Wishlist\" button border (hover)"
|
79 |
msgstr "Borda do botão \"Adicionar aos meus desejos\" (hover)"
|
80 |
|
81 |
-
#: ../class.yith-wcwl-init.php:
|
82 |
msgid "\"Add to Cart\" button background"
|
83 |
msgstr "Fundo do do botão \"Adicionar ao carrinho \""
|
84 |
|
85 |
-
#: ../class.yith-wcwl-init.php:
|
86 |
msgid "\"Add to Cart\" button text"
|
87 |
msgstr "Texto do botão \"Adicionar ao carrinho \""
|
88 |
|
89 |
-
#: ../class.yith-wcwl-init.php:
|
90 |
msgid "\"Add to Cart\" button border"
|
91 |
msgstr "Borda do do botão \"Adicionar ao carrinho \""
|
92 |
|
93 |
-
#: ../class.yith-wcwl-init.php:
|
94 |
msgid "\"Add to Cart\" button background (hover)"
|
95 |
msgstr "Fundo do botão \"Adicionar ao carrinho \" (hover)"
|
96 |
|
97 |
-
#: ../class.yith-wcwl-init.php:
|
98 |
msgid "\"Add to Cart\" button text (hover)"
|
99 |
msgstr "Texto do botão \"Adicionar ao carrinho \" (hover)"
|
100 |
|
101 |
-
#: ../class.yith-wcwl-init.php:
|
102 |
msgid "\"Add to Cart\" button border (hover)"
|
103 |
msgstr "Borda do botão \"Adicionar ao carrinho \" (hover)"
|
104 |
|
105 |
-
#: ../class.yith-wcwl-init.php:
|
106 |
msgid "Wishlist table background"
|
107 |
msgstr "Fundo da tabela de desejos"
|
108 |
|
109 |
-
#: ../class.yith-wcwl-init.php:
|
110 |
msgid "Wishlist table text"
|
111 |
msgstr "Texto da tabela de desejos"
|
112 |
|
113 |
-
#: ../class.yith-wcwl-init.php:
|
114 |
msgid "Wishlist table border"
|
115 |
msgstr "Borda da tabela de desejos"
|
116 |
|
117 |
-
#: ../class.yith-wcwl-init.php:
|
118 |
msgid "Settings"
|
119 |
msgstr "Configurações"
|
120 |
|
121 |
-
#: ../class.yith-wcwl-init.php:
|
122 |
msgid "Docs"
|
123 |
msgstr "Documentos"
|
124 |
|
125 |
-
#: ../class.yith-wcwl-init.php:
|
126 |
msgid "Enable YITH Wishlist"
|
127 |
msgstr "Ativar Lista de Desejos"
|
128 |
|
129 |
-
#: ../class.yith-wcwl-init.php:
|
130 |
#, php-format
|
131 |
msgid ""
|
132 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -136,11 +128,11 @@ msgstr ""
|
|
136 |
"Ativar todas opções. <strong> Saiba que a página de desejos é selecionada na "
|
137 |
"seção Páginas. </strong>. <a href=\"%s\" target=\"_blank\">Documentação</a>."
|
138 |
|
139 |
-
#: ../class.yith-wcwl-init.php:
|
140 |
msgid "Use cookies"
|
141 |
msgstr "Usar cookies"
|
142 |
|
143 |
-
#: ../class.yith-wcwl-init.php:
|
144 |
msgid ""
|
145 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
146 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -150,21 +142,21 @@ msgstr ""
|
|
150 |
"Usar cookies ao invés de sessões. Com essa opção, a lista de desejos vai "
|
151 |
"estar disponível para todos os usuários não logados por até 30 dias. "
|
152 |
|
153 |
-
#: ../class.yith-wcwl-init.php:
|
154 |
msgid "Wishlist title"
|
155 |
msgstr "Titulo da lista de desejos"
|
156 |
|
157 |
-
#: ../class.yith-wcwl-init.php:
|
158 |
-
#: ../class.yith-wcwl-init.php:
|
159 |
#, php-format
|
160 |
msgid "My wishlist on %s"
|
161 |
msgstr "Minha lista de desejos em %s"
|
162 |
|
163 |
-
#: ../class.yith-wcwl-init.php:
|
164 |
msgid "Position"
|
165 |
msgstr "Posição"
|
166 |
|
167 |
-
#: ../class.yith-wcwl-init.php:
|
168 |
msgid ""
|
169 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
170 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
@@ -172,27 +164,27 @@ msgstr ""
|
|
172 |
"Em produtos variáveis você pode adicionar isto somenteapós \"Adcionar ao "
|
173 |
"Carrinho\" ou usar o shortcode [yith_wcwl_add_to_wishlist]."
|
174 |
|
175 |
-
#: ../class.yith-wcwl-init.php:
|
176 |
msgid "After \"Add to cart\""
|
177 |
msgstr "Após \" Adicionar ao carrinho \""
|
178 |
|
179 |
-
#: ../class.yith-wcwl-init.php:
|
180 |
msgid "After thumbnails"
|
181 |
msgstr "Após miniaturas"
|
182 |
|
183 |
-
#: ../class.yith-wcwl-init.php:
|
184 |
msgid "After summary"
|
185 |
msgstr "Após sumário"
|
186 |
|
187 |
-
#: ../class.yith-wcwl-init.php:
|
188 |
msgid "Use shortcode"
|
189 |
msgstr "Usar shortcode"
|
190 |
|
191 |
-
#: ../class.yith-wcwl-init.php:
|
192 |
msgid "Redirect to cart"
|
193 |
msgstr "Redirecionar para o carrinho"
|
194 |
|
195 |
-
#: ../class.yith-wcwl-init.php:
|
196 |
msgid ""
|
197 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
198 |
"page."
|
@@ -200,100 +192,115 @@ msgstr ""
|
|
200 |
"Redirecionar para a página de carrinho se o botão \" Adcionar ao carrinho \" "
|
201 |
"estiver clicado na página de lista de desejos."
|
202 |
|
203 |
-
#: ../class.yith-wcwl-init.php:
|
204 |
msgid "Remove if added to the cart"
|
205 |
msgstr "Remover se adcionado ao carrinho"
|
206 |
|
207 |
-
#: ../class.yith-wcwl-init.php:
|
208 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
209 |
msgstr ""
|
210 |
"Remover o produto da lista, se a mesma tiver sido adicionada ao carrinho."
|
211 |
|
212 |
-
#: ../class.yith-wcwl-init.php:
|
213 |
msgid "\"Add to Wishlist\" text"
|
214 |
msgstr "Texto \" Adcionar a Lista de Desejos\""
|
215 |
|
216 |
-
#: ../class.yith-wcwl-init.php:
|
217 |
msgid "Add to Wishlist"
|
218 |
msgstr "Adicionar aos meus desejos"
|
219 |
|
220 |
-
#: ../class.yith-wcwl-init.php:
|
221 |
msgid "\"Add to Cart\" text"
|
222 |
msgstr "Texto \" Adicionar ao Carrinho\""
|
223 |
|
224 |
-
#: ../class.yith-wcwl-init.php:
|
225 |
msgid "Add to Cart"
|
226 |
msgstr "Adcionar ao Carrinho"
|
227 |
|
228 |
-
#: ../class.yith-wcwl-init.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
msgid "Use buttons"
|
230 |
msgstr "Usar botões"
|
231 |
|
232 |
-
#: ../class.yith-wcwl-init.php:
|
233 |
msgid "Use buttons instead of a simple anchors."
|
234 |
msgstr "Usar botões ao invés de simples âncoras."
|
235 |
|
236 |
-
#: ../class.yith-wcwl-init.php:
|
237 |
msgid "Custom CSS"
|
238 |
msgstr "CSS Customizado"
|
239 |
|
240 |
-
#: ../class.yith-wcwl-init.php:
|
241 |
msgid "Use theme style"
|
242 |
msgstr "Usar estilo do tema"
|
243 |
|
244 |
-
#: ../class.yith-wcwl-init.php:
|
245 |
msgid "Use the theme style."
|
246 |
msgstr "Usar o estilo do tema."
|
247 |
|
248 |
-
#: ../class.yith-wcwl-init.php:
|
249 |
msgid "Buttons rounded corners"
|
250 |
msgstr "Botões com cantos arredondados"
|
251 |
|
252 |
-
#: ../class.yith-wcwl-init.php:
|
253 |
msgid "Make buttons corner rounded"
|
254 |
msgstr "Faça botões do canto arredondado"
|
255 |
|
256 |
-
#: ../class.yith-wcwl-init.php:
|
257 |
msgid "\"Add to Wishlist\" icon"
|
258 |
msgstr "Ícone \"Adcionar aos meus desejos\" "
|
259 |
|
260 |
-
#: ../class.yith-wcwl-init.php:
|
261 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
262 |
msgstr "Adicionar um ícone ao botão \"Adcionar aos meus desejos\""
|
263 |
|
264 |
-
#: ../class.yith-wcwl-init.php:
|
265 |
msgid "\"Add to Cart\" icon"
|
266 |
msgstr "Ícone \"Adicionar ao Carrinho\""
|
267 |
|
268 |
-
#: ../class.yith-wcwl-init.php:
|
269 |
msgid "Add an icon to the \"Add to Cart\" button"
|
270 |
msgstr "Adicionar um ícone ao botão \"Adcionar ao carrinho\""
|
271 |
|
272 |
-
#: ../class.yith-wcwl-init.php:
|
273 |
msgid "Share on Facebook"
|
274 |
msgstr "Compartilhar no Facebook"
|
275 |
|
276 |
-
#: ../class.yith-wcwl-init.php:
|
277 |
msgid "Tweet on Twitter"
|
278 |
msgstr "Tweetar no Twitter"
|
279 |
|
280 |
-
#: ../class.yith-wcwl-init.php:
|
281 |
msgid "Pin on Pinterest"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../class.yith-wcwl-init.php:
|
285 |
msgid "Share on Google+"
|
286 |
msgstr "Comparilhar no Google+"
|
287 |
|
288 |
-
#: ../class.yith-wcwl-init.php:
|
289 |
msgid "Socials title"
|
290 |
msgstr "Título Mídias Sociais"
|
291 |
|
292 |
-
#: ../class.yith-wcwl-init.php:
|
293 |
msgid "Socials text"
|
294 |
msgstr "Texto Mídias Sociais"
|
295 |
|
296 |
-
#: ../class.yith-wcwl-init.php:
|
297 |
msgid ""
|
298 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
299 |
"strong> where you want the URL of your wishlist to appear."
|
@@ -301,7 +308,7 @@ msgstr ""
|
|
301 |
"Vai ser usado por Facebook, Twitter e Pinterest. Use <strong>%wishlist_url%</"
|
302 |
"strong> "
|
303 |
|
304 |
-
#: ../class.yith-wcwl-init.php:
|
305 |
msgid "Socials image URL"
|
306 |
msgstr "Url para compartilhamento"
|
307 |
|
@@ -359,30 +366,100 @@ msgid "Error. Unable to remove the product from the wishlist."
|
|
359 |
msgstr "Erro. Não foi possível remover o produto da lista de desejos."
|
360 |
|
361 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
362 |
-
#: ../templates/wishlist.php:
|
363 |
msgid "No products were added to the wishlist"
|
364 |
msgstr "Nenhum produto foi adicionado à lista de desejos"
|
365 |
|
366 |
-
#: ../templates/wishlist.php:
|
367 |
msgid "Product Name"
|
368 |
msgstr "Nome do Produto"
|
369 |
|
370 |
-
#: ../templates/wishlist.php:
|
371 |
msgid "Unit Price"
|
372 |
msgstr "Preço unitário"
|
373 |
|
374 |
-
#: ../templates/wishlist.php:
|
375 |
msgid "Stock Status"
|
376 |
msgstr "Status do estoque"
|
377 |
|
378 |
-
#: ../templates/wishlist.php:
|
379 |
msgid "Remove this product"
|
380 |
msgstr "Remover este produto"
|
381 |
|
382 |
-
#: ../templates/wishlist.php:
|
|
|
|
|
|
|
|
|
383 |
msgid "Out of Stock"
|
384 |
msgstr "Sem estoque"
|
385 |
|
386 |
-
#: ../templates/wishlist.php:
|
387 |
msgid "In Stock"
|
388 |
msgstr "Em estoque"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2014-02-26 15:57+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-26 15:57+0100\n"
|
6 |
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
+
#: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
msgid "Wishlist"
|
19 |
msgstr "Lista de Desejos"
|
20 |
|
21 |
+
#: ../class.yith-wcwl-init.php:353
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr "Não foi possível adicionar ao carrinho. O produto esta esgotado."
|
24 |
|
25 |
+
#: ../class.yith-wcwl-init.php:384
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr "Meus desejos"
|
28 |
|
29 |
+
#: ../class.yith-wcwl-init.php:385
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr "Conteúdo da página: [yith_wcwl_wishlist]"
|
32 |
|
33 |
+
#: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
|
34 |
msgid "General Settings"
|
35 |
msgstr "Opções gerais"
|
36 |
|
37 |
+
#: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
|
38 |
msgid "Styles"
|
39 |
msgstr "Estilos"
|
40 |
|
41 |
+
#: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
|
42 |
msgid "Socials & Share"
|
43 |
msgstr "Social & Compartilhamento"
|
44 |
|
45 |
+
#: ../class.yith-wcwl-init.php:450
|
46 |
msgid "Colors"
|
47 |
msgstr "Cores"
|
48 |
|
49 |
+
#: ../class.yith-wcwl-init.php:480
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr "Fundo do botão \"Adicionar aos meus desejos\""
|
52 |
|
53 |
+
#: ../class.yith-wcwl-init.php:481
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr "Texto do botão \"Adicionar aos meus desejos\""
|
56 |
|
57 |
+
#: ../class.yith-wcwl-init.php:482
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr "Borda do botão \"Adicionar aos meus desejos\""
|
60 |
|
61 |
+
#: ../class.yith-wcwl-init.php:488
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr "Fundo do botão \"Adicionar aos meus desejos\" (Hover)"
|
64 |
|
65 |
+
#: ../class.yith-wcwl-init.php:489
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr "Texto do botão \"Adicionar aos meus desejos\" (Hover)"
|
68 |
|
69 |
+
#: ../class.yith-wcwl-init.php:490
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr "Borda do botão \"Adicionar aos meus desejos\" (hover)"
|
72 |
|
73 |
+
#: ../class.yith-wcwl-init.php:495
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr "Fundo do do botão \"Adicionar ao carrinho \""
|
76 |
|
77 |
+
#: ../class.yith-wcwl-init.php:496
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr "Texto do botão \"Adicionar ao carrinho \""
|
80 |
|
81 |
+
#: ../class.yith-wcwl-init.php:497
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr "Borda do do botão \"Adicionar ao carrinho \""
|
84 |
|
85 |
+
#: ../class.yith-wcwl-init.php:503
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr "Fundo do botão \"Adicionar ao carrinho \" (hover)"
|
88 |
|
89 |
+
#: ../class.yith-wcwl-init.php:504
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr "Texto do botão \"Adicionar ao carrinho \" (hover)"
|
92 |
|
93 |
+
#: ../class.yith-wcwl-init.php:505
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr "Borda do botão \"Adicionar ao carrinho \" (hover)"
|
96 |
|
97 |
+
#: ../class.yith-wcwl-init.php:510
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr "Fundo da tabela de desejos"
|
100 |
|
101 |
+
#: ../class.yith-wcwl-init.php:511
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr "Texto da tabela de desejos"
|
104 |
|
105 |
+
#: ../class.yith-wcwl-init.php:512
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr "Borda da tabela de desejos"
|
108 |
|
109 |
+
#: ../class.yith-wcwl-init.php:572
|
110 |
msgid "Settings"
|
111 |
msgstr "Configurações"
|
112 |
|
113 |
+
#: ../class.yith-wcwl-init.php:573
|
114 |
msgid "Docs"
|
115 |
msgstr "Documentos"
|
116 |
|
117 |
+
#: ../class.yith-wcwl-init.php:823
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr "Ativar Lista de Desejos"
|
120 |
|
121 |
+
#: ../class.yith-wcwl-init.php:824
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
128 |
"Ativar todas opções. <strong> Saiba que a página de desejos é selecionada na "
|
129 |
"seção Páginas. </strong>. <a href=\"%s\" target=\"_blank\">Documentação</a>."
|
130 |
|
131 |
+
#: ../class.yith-wcwl-init.php:831
|
132 |
msgid "Use cookies"
|
133 |
msgstr "Usar cookies"
|
134 |
|
135 |
+
#: ../class.yith-wcwl-init.php:832
|
136 |
msgid ""
|
137 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
138 |
"available for each not logged user for 30 days. Use the filter "
|
142 |
"Usar cookies ao invés de sessões. Com essa opção, a lista de desejos vai "
|
143 |
"estar disponível para todos os usuários não logados por até 30 dias. "
|
144 |
|
145 |
+
#: ../class.yith-wcwl-init.php:839
|
146 |
msgid "Wishlist title"
|
147 |
msgstr "Titulo da lista de desejos"
|
148 |
|
149 |
+
#: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
|
150 |
+
#: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
|
151 |
#, php-format
|
152 |
msgid "My wishlist on %s"
|
153 |
msgstr "Minha lista de desejos em %s"
|
154 |
|
155 |
+
#: ../class.yith-wcwl-init.php:847
|
156 |
msgid "Position"
|
157 |
msgstr "Posição"
|
158 |
|
159 |
+
#: ../class.yith-wcwl-init.php:848
|
160 |
msgid ""
|
161 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
162 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
164 |
"Em produtos variáveis você pode adicionar isto somenteapós \"Adcionar ao "
|
165 |
"Carrinho\" ou usar o shortcode [yith_wcwl_add_to_wishlist]."
|
166 |
|
167 |
+
#: ../class.yith-wcwl-init.php:854
|
168 |
msgid "After \"Add to cart\""
|
169 |
msgstr "Após \" Adicionar ao carrinho \""
|
170 |
|
171 |
+
#: ../class.yith-wcwl-init.php:855
|
172 |
msgid "After thumbnails"
|
173 |
msgstr "Após miniaturas"
|
174 |
|
175 |
+
#: ../class.yith-wcwl-init.php:856
|
176 |
msgid "After summary"
|
177 |
msgstr "Após sumário"
|
178 |
|
179 |
+
#: ../class.yith-wcwl-init.php:857
|
180 |
msgid "Use shortcode"
|
181 |
msgstr "Usar shortcode"
|
182 |
|
183 |
+
#: ../class.yith-wcwl-init.php:862
|
184 |
msgid "Redirect to cart"
|
185 |
msgstr "Redirecionar para o carrinho"
|
186 |
|
187 |
+
#: ../class.yith-wcwl-init.php:863
|
188 |
msgid ""
|
189 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
190 |
"page."
|
192 |
"Redirecionar para a página de carrinho se o botão \" Adcionar ao carrinho \" "
|
193 |
"estiver clicado na página de lista de desejos."
|
194 |
|
195 |
+
#: ../class.yith-wcwl-init.php:870
|
196 |
msgid "Remove if added to the cart"
|
197 |
msgstr "Remover se adcionado ao carrinho"
|
198 |
|
199 |
+
#: ../class.yith-wcwl-init.php:871
|
200 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
201 |
msgstr ""
|
202 |
"Remover o produto da lista, se a mesma tiver sido adicionada ao carrinho."
|
203 |
|
204 |
+
#: ../class.yith-wcwl-init.php:878
|
205 |
msgid "\"Add to Wishlist\" text"
|
206 |
msgstr "Texto \" Adcionar a Lista de Desejos\""
|
207 |
|
208 |
+
#: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
|
209 |
msgid "Add to Wishlist"
|
210 |
msgstr "Adicionar aos meus desejos"
|
211 |
|
212 |
+
#: ../class.yith-wcwl-init.php:886
|
213 |
msgid "\"Add to Cart\" text"
|
214 |
msgstr "Texto \" Adicionar ao Carrinho\""
|
215 |
|
216 |
+
#: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
|
217 |
msgid "Add to Cart"
|
218 |
msgstr "Adcionar ao Carrinho"
|
219 |
|
220 |
+
#: ../class.yith-wcwl-init.php:894
|
221 |
+
#, fuzzy
|
222 |
+
msgid "Show Unit price"
|
223 |
+
msgstr "Preço unitário"
|
224 |
+
|
225 |
+
#: ../class.yith-wcwl-init.php:902
|
226 |
+
#, fuzzy
|
227 |
+
msgid "Show \"Add to Cart\" button"
|
228 |
+
msgstr "Texto do botão \"Adicionar ao carrinho \""
|
229 |
+
|
230 |
+
#: ../class.yith-wcwl-init.php:910
|
231 |
+
#, fuzzy
|
232 |
+
msgid "Show Stock status"
|
233 |
+
msgstr "Status do estoque"
|
234 |
+
|
235 |
+
#: ../class.yith-wcwl-init.php:925
|
236 |
msgid "Use buttons"
|
237 |
msgstr "Usar botões"
|
238 |
|
239 |
+
#: ../class.yith-wcwl-init.php:926
|
240 |
msgid "Use buttons instead of a simple anchors."
|
241 |
msgstr "Usar botões ao invés de simples âncoras."
|
242 |
|
243 |
+
#: ../class.yith-wcwl-init.php:933
|
244 |
msgid "Custom CSS"
|
245 |
msgstr "CSS Customizado"
|
246 |
|
247 |
+
#: ../class.yith-wcwl-init.php:941
|
248 |
msgid "Use theme style"
|
249 |
msgstr "Usar estilo do tema"
|
250 |
|
251 |
+
#: ../class.yith-wcwl-init.php:942
|
252 |
msgid "Use the theme style."
|
253 |
msgstr "Usar o estilo do tema."
|
254 |
|
255 |
+
#: ../class.yith-wcwl-init.php:949
|
256 |
msgid "Buttons rounded corners"
|
257 |
msgstr "Botões com cantos arredondados"
|
258 |
|
259 |
+
#: ../class.yith-wcwl-init.php:950
|
260 |
msgid "Make buttons corner rounded"
|
261 |
msgstr "Faça botões do canto arredondado"
|
262 |
|
263 |
+
#: ../class.yith-wcwl-init.php:957
|
264 |
msgid "\"Add to Wishlist\" icon"
|
265 |
msgstr "Ícone \"Adcionar aos meus desejos\" "
|
266 |
|
267 |
+
#: ../class.yith-wcwl-init.php:958
|
268 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
269 |
msgstr "Adicionar um ícone ao botão \"Adcionar aos meus desejos\""
|
270 |
|
271 |
+
#: ../class.yith-wcwl-init.php:969
|
272 |
msgid "\"Add to Cart\" icon"
|
273 |
msgstr "Ícone \"Adicionar ao Carrinho\""
|
274 |
|
275 |
+
#: ../class.yith-wcwl-init.php:970
|
276 |
msgid "Add an icon to the \"Add to Cart\" button"
|
277 |
msgstr "Adicionar um ícone ao botão \"Adcionar ao carrinho\""
|
278 |
|
279 |
+
#: ../class.yith-wcwl-init.php:988
|
280 |
msgid "Share on Facebook"
|
281 |
msgstr "Compartilhar no Facebook"
|
282 |
|
283 |
+
#: ../class.yith-wcwl-init.php:995
|
284 |
msgid "Tweet on Twitter"
|
285 |
msgstr "Tweetar no Twitter"
|
286 |
|
287 |
+
#: ../class.yith-wcwl-init.php:1002
|
288 |
msgid "Pin on Pinterest"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../class.yith-wcwl-init.php:1009
|
292 |
msgid "Share on Google+"
|
293 |
msgstr "Comparilhar no Google+"
|
294 |
|
295 |
+
#: ../class.yith-wcwl-init.php:1016
|
296 |
msgid "Socials title"
|
297 |
msgstr "Título Mídias Sociais"
|
298 |
|
299 |
+
#: ../class.yith-wcwl-init.php:1024
|
300 |
msgid "Socials text"
|
301 |
msgstr "Texto Mídias Sociais"
|
302 |
|
303 |
+
#: ../class.yith-wcwl-init.php:1025
|
304 |
msgid ""
|
305 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
306 |
"strong> where you want the URL of your wishlist to appear."
|
308 |
"Vai ser usado por Facebook, Twitter e Pinterest. Use <strong>%wishlist_url%</"
|
309 |
"strong> "
|
310 |
|
311 |
+
#: ../class.yith-wcwl-init.php:1033
|
312 |
msgid "Socials image URL"
|
313 |
msgstr "Url para compartilhamento"
|
314 |
|
366 |
msgstr "Erro. Não foi possível remover o produto da lista de desejos."
|
367 |
|
368 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
369 |
+
#: ../templates/wishlist.php:158
|
370 |
msgid "No products were added to the wishlist"
|
371 |
msgstr "Nenhum produto foi adicionado à lista de desejos"
|
372 |
|
373 |
+
#: ../templates/wishlist.php:80
|
374 |
msgid "Product Name"
|
375 |
msgstr "Nome do Produto"
|
376 |
|
377 |
+
#: ../templates/wishlist.php:81
|
378 |
msgid "Unit Price"
|
379 |
msgstr "Preço unitário"
|
380 |
|
381 |
+
#: ../templates/wishlist.php:82
|
382 |
msgid "Stock Status"
|
383 |
msgstr "Status do estoque"
|
384 |
|
385 |
+
#: ../templates/wishlist.php:104
|
386 |
msgid "Remove this product"
|
387 |
msgstr "Remover este produto"
|
388 |
|
389 |
+
#: ../templates/wishlist.php:124
|
390 |
+
msgid "Free!"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: ../templates/wishlist.php:137
|
394 |
msgid "Out of Stock"
|
395 |
msgstr "Sem estoque"
|
396 |
|
397 |
+
#: ../templates/wishlist.php:140
|
398 |
msgid "In Stock"
|
399 |
msgstr "Em estoque"
|
400 |
+
|
401 |
+
#: ../yit-common/yith-panel.php:406
|
402 |
+
msgid "Select a date"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: ../yit-common/yith-panel.php:407
|
406 |
+
msgid "Hours"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
410 |
+
msgid "Minutes"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: ../yit-common/yith-panel.php:417
|
414 |
+
msgid "Upload"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: ../yit-common/yith-panel.php:444
|
418 |
+
msgid "px"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: ../yit-common/yith-panel.php:445
|
422 |
+
msgid "em"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: ../yit-common/yith-panel.php:446
|
426 |
+
msgid "pt"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: ../yit-common/yith-panel.php:447
|
430 |
+
msgid "rem"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: ../yit-common/yith-panel.php:457
|
434 |
+
msgid "Select a font family"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: ../yit-common/yith-panel.php:465
|
438 |
+
msgid "Regular"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: ../yit-common/yith-panel.php:466
|
442 |
+
msgid "Bold"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: ../yit-common/yith-panel.php:467
|
446 |
+
msgid "Extra bold"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: ../yit-common/yith-panel.php:468
|
450 |
+
msgid "Italic"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: ../yit-common/yith-panel.php:469
|
454 |
+
msgid "Italic bold"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: ../yit-common/yith-panel.php:481
|
458 |
+
msgid "Click to preview"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#~ msgid "View Cart →"
|
462 |
+
#~ msgstr "Ver Carrinho"
|
463 |
+
|
464 |
+
#~ msgid "Product successfully added to the cart."
|
465 |
+
#~ msgstr "Produto adicionado ao carrinho."
|
languages/yit-uk_UA.mo
CHANGED
Binary file
|
languages/yit-uk_UA.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,111 +14,111 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../class.yith-wcwl-init.php:
|
18 |
msgid "Wishlist"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: ../class.yith-wcwl-init.php:
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ../class.yith-wcwl-init.php:
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-wcwl-init.php:
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../class.yith-wcwl-init.php:
|
34 |
msgid "General Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../class.yith-wcwl-init.php:
|
38 |
msgid "Styles"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../class.yith-wcwl-init.php:
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../class.yith-wcwl-init.php:
|
46 |
msgid "Colors"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../class.yith-wcwl-init.php:
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../class.yith-wcwl-init.php:
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../class.yith-wcwl-init.php:
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../class.yith-wcwl-init.php:
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../class.yith-wcwl-init.php:
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../class.yith-wcwl-init.php:
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../class.yith-wcwl-init.php:
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr "\"Додати в кошик\" button background"
|
76 |
|
77 |
-
#: ../class.yith-wcwl-init.php:
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr "\"Додати в кошик\" button text"
|
80 |
|
81 |
-
#: ../class.yith-wcwl-init.php:
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr "\"Додати в кошик\" button border"
|
84 |
|
85 |
-
#: ../class.yith-wcwl-init.php:
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr "\"Додати в кошик\" button background (hover)"
|
88 |
|
89 |
-
#: ../class.yith-wcwl-init.php:
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr "\"Додати в кошик\" button text (hover)"
|
92 |
|
93 |
-
#: ../class.yith-wcwl-init.php:
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr "\"Додати в кошик\" button border (hover)"
|
96 |
|
97 |
-
#: ../class.yith-wcwl-init.php:
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../class.yith-wcwl-init.php:
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../class.yith-wcwl-init.php:
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../class.yith-wcwl-init.php:
|
110 |
msgid "Settings"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../class.yith-wcwl-init.php:
|
114 |
msgid "Docs"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ../class.yith-wcwl-init.php:
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../class.yith-wcwl-init.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -126,11 +126,11 @@ msgid ""
|
|
126 |
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ../class.yith-wcwl-init.php:
|
130 |
msgid "Use cookies"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../class.yith-wcwl-init.php:
|
134 |
msgid ""
|
135 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
136 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -138,166 +138,166 @@ msgid ""
|
|
138 |
"timestamp )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../class.yith-wcwl-init.php:
|
142 |
msgid "Wishlist title"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../class.yith-wcwl-init.php:
|
146 |
-
#: ../class.yith-wcwl-init.php:
|
147 |
#, php-format
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr "Мій обраний список в %s"
|
150 |
|
151 |
-
#: ../class.yith-wcwl-init.php:
|
152 |
msgid "Position"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../class.yith-wcwl-init.php:
|
156 |
msgid ""
|
157 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
158 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../class.yith-wcwl-init.php:
|
162 |
msgid "After \"Add to cart\""
|
163 |
msgstr "After \"Додати в кошик\""
|
164 |
|
165 |
-
#: ../class.yith-wcwl-init.php:
|
166 |
msgid "After thumbnails"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../class.yith-wcwl-init.php:
|
170 |
msgid "After summary"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../class.yith-wcwl-init.php:
|
174 |
msgid "Use shortcode"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../class.yith-wcwl-init.php:
|
178 |
msgid "Redirect to cart"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../class.yith-wcwl-init.php:
|
182 |
msgid ""
|
183 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
184 |
"page."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../class.yith-wcwl-init.php:
|
188 |
msgid "Remove if added to the cart"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../class.yith-wcwl-init.php:
|
192 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../class.yith-wcwl-init.php:
|
196 |
msgid "\"Add to Wishlist\" text"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../class.yith-wcwl-init.php:
|
200 |
msgid "Add to Wishlist"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../class.yith-wcwl-init.php:
|
204 |
msgid "\"Add to Cart\" text"
|
205 |
msgstr "\"Додати в кошик\" text"
|
206 |
|
207 |
-
#: ../class.yith-wcwl-init.php:
|
208 |
msgid "Add to Cart"
|
209 |
msgstr "Додати в кошик"
|
210 |
|
211 |
-
#: ../class.yith-wcwl-init.php:
|
212 |
#, fuzzy
|
213 |
msgid "Show Unit price"
|
214 |
msgstr "Ціна"
|
215 |
|
216 |
-
#: ../class.yith-wcwl-init.php:
|
217 |
#, fuzzy
|
218 |
msgid "Show \"Add to Cart\" button"
|
219 |
msgstr "\"Додати в кошик\" button text"
|
220 |
|
221 |
-
#: ../class.yith-wcwl-init.php:
|
222 |
#, fuzzy
|
223 |
msgid "Show Stock status"
|
224 |
msgstr "Наявність на складі"
|
225 |
|
226 |
-
#: ../class.yith-wcwl-init.php:
|
227 |
msgid "Use buttons"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../class.yith-wcwl-init.php:
|
231 |
msgid "Use buttons instead of a simple anchors."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../class.yith-wcwl-init.php:
|
235 |
msgid "Custom CSS"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../class.yith-wcwl-init.php:
|
239 |
msgid "Use theme style"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../class.yith-wcwl-init.php:
|
243 |
msgid "Use the theme style."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../class.yith-wcwl-init.php:
|
247 |
msgid "Buttons rounded corners"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../class.yith-wcwl-init.php:
|
251 |
msgid "Make buttons corner rounded"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../class.yith-wcwl-init.php:
|
255 |
msgid "\"Add to Wishlist\" icon"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../class.yith-wcwl-init.php:
|
259 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../class.yith-wcwl-init.php:
|
263 |
msgid "\"Add to Cart\" icon"
|
264 |
msgstr "\"Додати в кошик\" icon"
|
265 |
|
266 |
-
#: ../class.yith-wcwl-init.php:
|
267 |
msgid "Add an icon to the \"Add to Cart\" button"
|
268 |
msgstr "Add an icon to the \"Додати в кошик\" button"
|
269 |
|
270 |
-
#: ../class.yith-wcwl-init.php:
|
271 |
msgid "Share on Facebook"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../class.yith-wcwl-init.php:
|
275 |
msgid "Tweet on Twitter"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../class.yith-wcwl-init.php:
|
279 |
msgid "Pin on Pinterest"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../class.yith-wcwl-init.php:
|
283 |
msgid "Share on Google+"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../class.yith-wcwl-init.php:
|
287 |
msgid "Socials title"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../class.yith-wcwl-init.php:
|
291 |
msgid "Socials text"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../class.yith-wcwl-init.php:
|
295 |
msgid ""
|
296 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
297 |
"strong> where you want the URL of your wishlist to appear."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../class.yith-wcwl-init.php:
|
301 |
msgid "Socials image URL"
|
302 |
msgstr ""
|
303 |
|
@@ -355,31 +355,35 @@ msgid "Error. Unable to remove the product from the wishlist."
|
|
355 |
msgstr ""
|
356 |
|
357 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
358 |
-
#: ../templates/wishlist.php:
|
359 |
msgid "No products were added to the wishlist"
|
360 |
msgstr "Немає доданих продуктів до вибраного"
|
361 |
|
362 |
-
#: ../templates/wishlist.php:
|
363 |
msgid "Product Name"
|
364 |
msgstr "Назва продукту"
|
365 |
|
366 |
-
#: ../templates/wishlist.php:
|
367 |
msgid "Unit Price"
|
368 |
msgstr "Ціна"
|
369 |
|
370 |
-
#: ../templates/wishlist.php:
|
371 |
msgid "Stock Status"
|
372 |
msgstr "Наявність на складі"
|
373 |
|
374 |
-
#: ../templates/wishlist.php:
|
375 |
msgid "Remove this product"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: ../templates/wishlist.php:
|
|
|
|
|
|
|
|
|
379 |
msgid "Out of Stock"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../templates/wishlist.php:
|
383 |
msgid "In Stock"
|
384 |
msgstr "в наявності"
|
385 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2014-02-26 15:57+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-26 15:57+0100\n"
|
6 |
"Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
+
#: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
|
18 |
msgid "Wishlist"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: ../class.yith-wcwl-init.php:353
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ../class.yith-wcwl-init.php:384
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../class.yith-wcwl-init.php:385
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
|
34 |
msgid "General Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
|
38 |
msgid "Styles"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../class.yith-wcwl-init.php:450
|
46 |
msgid "Colors"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../class.yith-wcwl-init.php:480
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../class.yith-wcwl-init.php:481
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../class.yith-wcwl-init.php:482
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../class.yith-wcwl-init.php:488
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../class.yith-wcwl-init.php:489
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../class.yith-wcwl-init.php:490
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../class.yith-wcwl-init.php:495
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr "\"Додати в кошик\" button background"
|
76 |
|
77 |
+
#: ../class.yith-wcwl-init.php:496
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr "\"Додати в кошик\" button text"
|
80 |
|
81 |
+
#: ../class.yith-wcwl-init.php:497
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr "\"Додати в кошик\" button border"
|
84 |
|
85 |
+
#: ../class.yith-wcwl-init.php:503
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr "\"Додати в кошик\" button background (hover)"
|
88 |
|
89 |
+
#: ../class.yith-wcwl-init.php:504
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr "\"Додати в кошик\" button text (hover)"
|
92 |
|
93 |
+
#: ../class.yith-wcwl-init.php:505
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr "\"Додати в кошик\" button border (hover)"
|
96 |
|
97 |
+
#: ../class.yith-wcwl-init.php:510
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../class.yith-wcwl-init.php:511
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../class.yith-wcwl-init.php:512
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: ../class.yith-wcwl-init.php:572
|
110 |
msgid "Settings"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../class.yith-wcwl-init.php:573
|
114 |
msgid "Docs"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../class.yith-wcwl-init.php:823
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../class.yith-wcwl-init.php:824
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
126 |
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../class.yith-wcwl-init.php:831
|
130 |
msgid "Use cookies"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../class.yith-wcwl-init.php:832
|
134 |
msgid ""
|
135 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
136 |
"available for each not logged user for 30 days. Use the filter "
|
138 |
"timestamp )."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../class.yith-wcwl-init.php:839
|
142 |
msgid "Wishlist title"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
|
146 |
+
#: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
|
147 |
#, php-format
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr "Мій обраний список в %s"
|
150 |
|
151 |
+
#: ../class.yith-wcwl-init.php:847
|
152 |
msgid "Position"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../class.yith-wcwl-init.php:848
|
156 |
msgid ""
|
157 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
158 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../class.yith-wcwl-init.php:854
|
162 |
msgid "After \"Add to cart\""
|
163 |
msgstr "After \"Додати в кошик\""
|
164 |
|
165 |
+
#: ../class.yith-wcwl-init.php:855
|
166 |
msgid "After thumbnails"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../class.yith-wcwl-init.php:856
|
170 |
msgid "After summary"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../class.yith-wcwl-init.php:857
|
174 |
msgid "Use shortcode"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../class.yith-wcwl-init.php:862
|
178 |
msgid "Redirect to cart"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../class.yith-wcwl-init.php:863
|
182 |
msgid ""
|
183 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
184 |
"page."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../class.yith-wcwl-init.php:870
|
188 |
msgid "Remove if added to the cart"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../class.yith-wcwl-init.php:871
|
192 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../class.yith-wcwl-init.php:878
|
196 |
msgid "\"Add to Wishlist\" text"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
|
200 |
msgid "Add to Wishlist"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../class.yith-wcwl-init.php:886
|
204 |
msgid "\"Add to Cart\" text"
|
205 |
msgstr "\"Додати в кошик\" text"
|
206 |
|
207 |
+
#: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
|
208 |
msgid "Add to Cart"
|
209 |
msgstr "Додати в кошик"
|
210 |
|
211 |
+
#: ../class.yith-wcwl-init.php:894
|
212 |
#, fuzzy
|
213 |
msgid "Show Unit price"
|
214 |
msgstr "Ціна"
|
215 |
|
216 |
+
#: ../class.yith-wcwl-init.php:902
|
217 |
#, fuzzy
|
218 |
msgid "Show \"Add to Cart\" button"
|
219 |
msgstr "\"Додати в кошик\" button text"
|
220 |
|
221 |
+
#: ../class.yith-wcwl-init.php:910
|
222 |
#, fuzzy
|
223 |
msgid "Show Stock status"
|
224 |
msgstr "Наявність на складі"
|
225 |
|
226 |
+
#: ../class.yith-wcwl-init.php:925
|
227 |
msgid "Use buttons"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../class.yith-wcwl-init.php:926
|
231 |
msgid "Use buttons instead of a simple anchors."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../class.yith-wcwl-init.php:933
|
235 |
msgid "Custom CSS"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../class.yith-wcwl-init.php:941
|
239 |
msgid "Use theme style"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../class.yith-wcwl-init.php:942
|
243 |
msgid "Use the theme style."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../class.yith-wcwl-init.php:949
|
247 |
msgid "Buttons rounded corners"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../class.yith-wcwl-init.php:950
|
251 |
msgid "Make buttons corner rounded"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../class.yith-wcwl-init.php:957
|
255 |
msgid "\"Add to Wishlist\" icon"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: ../class.yith-wcwl-init.php:958
|
259 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../class.yith-wcwl-init.php:969
|
263 |
msgid "\"Add to Cart\" icon"
|
264 |
msgstr "\"Додати в кошик\" icon"
|
265 |
|
266 |
+
#: ../class.yith-wcwl-init.php:970
|
267 |
msgid "Add an icon to the \"Add to Cart\" button"
|
268 |
msgstr "Add an icon to the \"Додати в кошик\" button"
|
269 |
|
270 |
+
#: ../class.yith-wcwl-init.php:988
|
271 |
msgid "Share on Facebook"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../class.yith-wcwl-init.php:995
|
275 |
msgid "Tweet on Twitter"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../class.yith-wcwl-init.php:1002
|
279 |
msgid "Pin on Pinterest"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ../class.yith-wcwl-init.php:1009
|
283 |
msgid "Share on Google+"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ../class.yith-wcwl-init.php:1016
|
287 |
msgid "Socials title"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../class.yith-wcwl-init.php:1024
|
291 |
msgid "Socials text"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../class.yith-wcwl-init.php:1025
|
295 |
msgid ""
|
296 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
297 |
"strong> where you want the URL of your wishlist to appear."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../class.yith-wcwl-init.php:1033
|
301 |
msgid "Socials image URL"
|
302 |
msgstr ""
|
303 |
|
355 |
msgstr ""
|
356 |
|
357 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
358 |
+
#: ../templates/wishlist.php:158
|
359 |
msgid "No products were added to the wishlist"
|
360 |
msgstr "Немає доданих продуктів до вибраного"
|
361 |
|
362 |
+
#: ../templates/wishlist.php:80
|
363 |
msgid "Product Name"
|
364 |
msgstr "Назва продукту"
|
365 |
|
366 |
+
#: ../templates/wishlist.php:81
|
367 |
msgid "Unit Price"
|
368 |
msgstr "Ціна"
|
369 |
|
370 |
+
#: ../templates/wishlist.php:82
|
371 |
msgid "Stock Status"
|
372 |
msgstr "Наявність на складі"
|
373 |
|
374 |
+
#: ../templates/wishlist.php:104
|
375 |
msgid "Remove this product"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: ../templates/wishlist.php:124
|
379 |
+
msgid "Free!"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: ../templates/wishlist.php:137
|
383 |
msgid "Out of Stock"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../templates/wishlist.php:140
|
387 |
msgid "In Stock"
|
388 |
msgstr "в наявності"
|
389 |
|
languages/yit.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,111 +14,111 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../class.yith-wcwl-init.php:
|
18 |
msgid "Wishlist"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: ../class.yith-wcwl-init.php:
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ../class.yith-wcwl-init.php:
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-wcwl-init.php:
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../class.yith-wcwl-init.php:
|
34 |
msgid "General Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../class.yith-wcwl-init.php:
|
38 |
msgid "Styles"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../class.yith-wcwl-init.php:
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../class.yith-wcwl-init.php:
|
46 |
msgid "Colors"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../class.yith-wcwl-init.php:
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../class.yith-wcwl-init.php:
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../class.yith-wcwl-init.php:
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../class.yith-wcwl-init.php:
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../class.yith-wcwl-init.php:
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../class.yith-wcwl-init.php:
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../class.yith-wcwl-init.php:
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../class.yith-wcwl-init.php:
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../class.yith-wcwl-init.php:
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../class.yith-wcwl-init.php:
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../class.yith-wcwl-init.php:
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../class.yith-wcwl-init.php:
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ../class.yith-wcwl-init.php:
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../class.yith-wcwl-init.php:
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../class.yith-wcwl-init.php:
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../class.yith-wcwl-init.php:
|
110 |
msgid "Settings"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../class.yith-wcwl-init.php:
|
114 |
msgid "Docs"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ../class.yith-wcwl-init.php:
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../class.yith-wcwl-init.php:
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
@@ -126,11 +126,11 @@ msgid ""
|
|
126 |
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ../class.yith-wcwl-init.php:
|
130 |
msgid "Use cookies"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../class.yith-wcwl-init.php:
|
134 |
msgid ""
|
135 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
136 |
"available for each not logged user for 30 days. Use the filter "
|
@@ -138,163 +138,163 @@ msgid ""
|
|
138 |
"timestamp )."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../class.yith-wcwl-init.php:
|
142 |
msgid "Wishlist title"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../class.yith-wcwl-init.php:
|
146 |
-
#: ../class.yith-wcwl-init.php:
|
147 |
#, php-format
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../class.yith-wcwl-init.php:
|
152 |
msgid "Position"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../class.yith-wcwl-init.php:
|
156 |
msgid ""
|
157 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
158 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../class.yith-wcwl-init.php:
|
162 |
msgid "After \"Add to cart\""
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../class.yith-wcwl-init.php:
|
166 |
msgid "After thumbnails"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../class.yith-wcwl-init.php:
|
170 |
msgid "After summary"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../class.yith-wcwl-init.php:
|
174 |
msgid "Use shortcode"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../class.yith-wcwl-init.php:
|
178 |
msgid "Redirect to cart"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../class.yith-wcwl-init.php:
|
182 |
msgid ""
|
183 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
184 |
"page."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../class.yith-wcwl-init.php:
|
188 |
msgid "Remove if added to the cart"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../class.yith-wcwl-init.php:
|
192 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../class.yith-wcwl-init.php:
|
196 |
msgid "\"Add to Wishlist\" text"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../class.yith-wcwl-init.php:
|
200 |
msgid "Add to Wishlist"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../class.yith-wcwl-init.php:
|
204 |
msgid "\"Add to Cart\" text"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: ../class.yith-wcwl-init.php:
|
208 |
msgid "Add to Cart"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: ../class.yith-wcwl-init.php:
|
212 |
msgid "Show Unit price"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../class.yith-wcwl-init.php:
|
216 |
msgid "Show \"Add to Cart\" button"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../class.yith-wcwl-init.php:
|
220 |
msgid "Show Stock status"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../class.yith-wcwl-init.php:
|
224 |
msgid "Use buttons"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../class.yith-wcwl-init.php:
|
228 |
msgid "Use buttons instead of a simple anchors."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../class.yith-wcwl-init.php:
|
232 |
msgid "Custom CSS"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../class.yith-wcwl-init.php:
|
236 |
msgid "Use theme style"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../class.yith-wcwl-init.php:
|
240 |
msgid "Use the theme style."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../class.yith-wcwl-init.php:
|
244 |
msgid "Buttons rounded corners"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../class.yith-wcwl-init.php:
|
248 |
msgid "Make buttons corner rounded"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../class.yith-wcwl-init.php:
|
252 |
msgid "\"Add to Wishlist\" icon"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../class.yith-wcwl-init.php:
|
256 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../class.yith-wcwl-init.php:
|
260 |
msgid "\"Add to Cart\" icon"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../class.yith-wcwl-init.php:
|
264 |
msgid "Add an icon to the \"Add to Cart\" button"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../class.yith-wcwl-init.php:
|
268 |
msgid "Share on Facebook"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../class.yith-wcwl-init.php:
|
272 |
msgid "Tweet on Twitter"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../class.yith-wcwl-init.php:
|
276 |
msgid "Pin on Pinterest"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../class.yith-wcwl-init.php:
|
280 |
msgid "Share on Google+"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../class.yith-wcwl-init.php:
|
284 |
msgid "Socials title"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../class.yith-wcwl-init.php:
|
288 |
msgid "Socials text"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../class.yith-wcwl-init.php:
|
292 |
msgid ""
|
293 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
294 |
"strong> where you want the URL of your wishlist to appear."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../class.yith-wcwl-init.php:
|
298 |
msgid "Socials image URL"
|
299 |
msgstr ""
|
300 |
|
@@ -352,31 +352,35 @@ msgid "Error. Unable to remove the product from the wishlist."
|
|
352 |
msgstr ""
|
353 |
|
354 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
355 |
-
#: ../templates/wishlist.php:
|
356 |
msgid "No products were added to the wishlist"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../templates/wishlist.php:
|
360 |
msgid "Product Name"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../templates/wishlist.php:
|
364 |
msgid "Unit Price"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../templates/wishlist.php:
|
368 |
msgid "Stock Status"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../templates/wishlist.php:
|
372 |
msgid "Remove this product"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../templates/wishlist.php:
|
|
|
|
|
|
|
|
|
376 |
msgid "Out of Stock"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../templates/wishlist.php:
|
380 |
msgid "In Stock"
|
381 |
msgstr ""
|
382 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2014-02-26 15:55+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-26 15:56+0100\n"
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
+
#: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
|
18 |
msgid "Wishlist"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: ../class.yith-wcwl-init.php:353
|
22 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ../class.yith-wcwl-init.php:384
|
26 |
msgid "Wishlist Page"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../class.yith-wcwl-init.php:385
|
30 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
|
34 |
msgid "General Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
|
38 |
msgid "Styles"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../class.yith-wcwl-init.php:450
|
46 |
msgid "Colors"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../class.yith-wcwl-init.php:480
|
50 |
msgid "\"Add to Wishlist\" button background"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../class.yith-wcwl-init.php:481
|
54 |
msgid "\"Add to Wishlist\" button text"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../class.yith-wcwl-init.php:482
|
58 |
msgid "\"Add to Wishlist\" button border"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../class.yith-wcwl-init.php:488
|
62 |
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../class.yith-wcwl-init.php:489
|
66 |
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../class.yith-wcwl-init.php:490
|
70 |
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../class.yith-wcwl-init.php:495
|
74 |
msgid "\"Add to Cart\" button background"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../class.yith-wcwl-init.php:496
|
78 |
msgid "\"Add to Cart\" button text"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../class.yith-wcwl-init.php:497
|
82 |
msgid "\"Add to Cart\" button border"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../class.yith-wcwl-init.php:503
|
86 |
msgid "\"Add to Cart\" button background (hover)"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../class.yith-wcwl-init.php:504
|
90 |
msgid "\"Add to Cart\" button text (hover)"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../class.yith-wcwl-init.php:505
|
94 |
msgid "\"Add to Cart\" button border (hover)"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../class.yith-wcwl-init.php:510
|
98 |
msgid "Wishlist table background"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../class.yith-wcwl-init.php:511
|
102 |
msgid "Wishlist table text"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../class.yith-wcwl-init.php:512
|
106 |
msgid "Wishlist table border"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: ../class.yith-wcwl-init.php:572
|
110 |
msgid "Settings"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../class.yith-wcwl-init.php:573
|
114 |
msgid "Docs"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../class.yith-wcwl-init.php:823
|
118 |
msgid "Enable YITH Wishlist"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../class.yith-wcwl-init.php:824
|
122 |
#, php-format
|
123 |
msgid ""
|
124 |
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
126 |
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../class.yith-wcwl-init.php:831
|
130 |
msgid "Use cookies"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../class.yith-wcwl-init.php:832
|
134 |
msgid ""
|
135 |
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
136 |
"available for each not logged user for 30 days. Use the filter "
|
138 |
"timestamp )."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../class.yith-wcwl-init.php:839
|
142 |
msgid "Wishlist title"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
|
146 |
+
#: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
|
147 |
#, php-format
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../class.yith-wcwl-init.php:847
|
152 |
msgid "Position"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: ../class.yith-wcwl-init.php:848
|
156 |
msgid ""
|
157 |
"On variable products you can add it only After \"Add to Cart\" or use the "
|
158 |
"shortcode [yith_wcwl_add_to_wishlist]."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../class.yith-wcwl-init.php:854
|
162 |
msgid "After \"Add to cart\""
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ../class.yith-wcwl-init.php:855
|
166 |
msgid "After thumbnails"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../class.yith-wcwl-init.php:856
|
170 |
msgid "After summary"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../class.yith-wcwl-init.php:857
|
174 |
msgid "Use shortcode"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../class.yith-wcwl-init.php:862
|
178 |
msgid "Redirect to cart"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../class.yith-wcwl-init.php:863
|
182 |
msgid ""
|
183 |
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
184 |
"page."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../class.yith-wcwl-init.php:870
|
188 |
msgid "Remove if added to the cart"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../class.yith-wcwl-init.php:871
|
192 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../class.yith-wcwl-init.php:878
|
196 |
msgid "\"Add to Wishlist\" text"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
|
200 |
msgid "Add to Wishlist"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../class.yith-wcwl-init.php:886
|
204 |
msgid "\"Add to Cart\" text"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
|
208 |
msgid "Add to Cart"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../class.yith-wcwl-init.php:894
|
212 |
msgid "Show Unit price"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../class.yith-wcwl-init.php:902
|
216 |
msgid "Show \"Add to Cart\" button"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../class.yith-wcwl-init.php:910
|
220 |
msgid "Show Stock status"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../class.yith-wcwl-init.php:925
|
224 |
msgid "Use buttons"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../class.yith-wcwl-init.php:926
|
228 |
msgid "Use buttons instead of a simple anchors."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../class.yith-wcwl-init.php:933
|
232 |
msgid "Custom CSS"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../class.yith-wcwl-init.php:941
|
236 |
msgid "Use theme style"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../class.yith-wcwl-init.php:942
|
240 |
msgid "Use the theme style."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../class.yith-wcwl-init.php:949
|
244 |
msgid "Buttons rounded corners"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../class.yith-wcwl-init.php:950
|
248 |
msgid "Make buttons corner rounded"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../class.yith-wcwl-init.php:957
|
252 |
msgid "\"Add to Wishlist\" icon"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../class.yith-wcwl-init.php:958
|
256 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../class.yith-wcwl-init.php:969
|
260 |
msgid "\"Add to Cart\" icon"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../class.yith-wcwl-init.php:970
|
264 |
msgid "Add an icon to the \"Add to Cart\" button"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../class.yith-wcwl-init.php:988
|
268 |
msgid "Share on Facebook"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../class.yith-wcwl-init.php:995
|
272 |
msgid "Tweet on Twitter"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../class.yith-wcwl-init.php:1002
|
276 |
msgid "Pin on Pinterest"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../class.yith-wcwl-init.php:1009
|
280 |
msgid "Share on Google+"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../class.yith-wcwl-init.php:1016
|
284 |
msgid "Socials title"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../class.yith-wcwl-init.php:1024
|
288 |
msgid "Socials text"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../class.yith-wcwl-init.php:1025
|
292 |
msgid ""
|
293 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
294 |
"strong> where you want the URL of your wishlist to appear."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../class.yith-wcwl-init.php:1033
|
298 |
msgid "Socials image URL"
|
299 |
msgstr ""
|
300 |
|
352 |
msgstr ""
|
353 |
|
354 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
355 |
+
#: ../templates/wishlist.php:158
|
356 |
msgid "No products were added to the wishlist"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../templates/wishlist.php:80
|
360 |
msgid "Product Name"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../templates/wishlist.php:81
|
364 |
msgid "Unit Price"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../templates/wishlist.php:82
|
368 |
msgid "Stock Status"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../templates/wishlist.php:104
|
372 |
msgid "Remove this product"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../templates/wishlist.php:124
|
376 |
+
msgid "Free!"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: ../templates/wishlist.php:137
|
380 |
msgid "Out of Stock"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../templates/wishlist.php:140
|
384 |
msgid "In Stock"
|
385 |
msgstr ""
|
386 |
|
templates/share.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
global $yith_wcwl;
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
global $yith_wcwl;
|
templates/wishlist.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
global $wpdb, $yith_wcwl, $woocommerce;
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
global $wpdb, $yith_wcwl, $woocommerce;
|
uninstall.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
// If uninstall not called from WordPress exit
|
@@ -12,8 +12,6 @@ if( !defined( 'WP_UNINSTALL_PLUGIN' ) )
|
|
12 |
{ exit; }
|
13 |
|
14 |
global $wpdb;
|
15 |
-
require_once( 'yith-wcwl.php' );
|
16 |
-
|
17 |
|
18 |
// Delete option from options table
|
19 |
delete_option( 'yith_wcwl_version' );
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
// If uninstall not called from WordPress exit
|
12 |
{ exit; }
|
13 |
|
14 |
global $wpdb;
|
|
|
|
|
15 |
|
16 |
// Delete option from options table
|
17 |
delete_option( 'yith_wcwl_version' );
|
yith-wcwl-ajax.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YIHT WooCommerce Wishlist
|
7 |
-
* @version 1.1.
|
8 |
*/
|
9 |
|
10 |
/**
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YIHT WooCommerce Wishlist
|
7 |
+
* @version 1.1.1
|
8 |
*/
|
9 |
|
10 |
/**
|