Version Description
- Added: partial Ukrainian translation
- Added: complete German translation. Thanks to Stephanie Schliesk
- Added: options to show/hide button add to cart, unit price and stock status in the wishlist page
- Added: Hebrew language (thanks to Gery Grinvald)
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Wishlist |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- README.txt +8 -1
- class.yith-wcwl-init.php +24 -0
- init.php +2 -2
- languages/default.po +99 -35
- languages/yit-de_DE.mo +0 -0
- languages/yit-de_DE.po +476 -0
- languages/yit-he_IL.mo +0 -0
- languages/yit-he_IL.po +455 -0
- languages/yit-it_IT.mo +0 -0
- languages/yit-it_IT.po +314 -264
- languages/yit-uk_UA.mo +0 -0
- languages/yit-uk_UA.po +447 -0
- languages/yit.pot +99 -35
- templates/wishlist.php +9 -3
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.5.1
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -74,6 +74,13 @@ Yes, you can change the colors of background, text and border or apply a custom
|
|
74 |
|
75 |
== Changelog ==
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
= 1.0.3 =
|
78 |
|
79 |
* Minor bugs fixes
|
4 |
Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 1.0.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= 1.0.4 =
|
78 |
+
|
79 |
+
* Added: partial Ukrainian translation
|
80 |
+
* Added: complete German translation. Thanks to Stephanie Schliesk
|
81 |
+
* Added: options to show/hide button add to cart, unit price and stock status in the wishlist page
|
82 |
+
* Added: Hebrew language (thanks to Gery Grinvald)
|
83 |
+
|
84 |
= 1.0.3 =
|
85 |
|
86 |
* Minor bugs fixes
|
class.yith-wcwl-init.php
CHANGED
@@ -853,6 +853,30 @@ if( !class_exists( 'YITH_WCWL_Init' ) ) {
|
|
853 |
'type' => 'text',
|
854 |
'css' => 'min-width:300px;',
|
855 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
|
857 |
array( 'type' => 'sectionend', 'id' => 'yith_wcwl_general_settings' )
|
858 |
);
|
853 |
'type' => 'text',
|
854 |
'css' => 'min-width:300px;',
|
855 |
),
|
856 |
+
array(
|
857 |
+
'name' => __( 'Show Unit price', 'yit' ),
|
858 |
+
'id' => 'yith_wcwl_price_show',
|
859 |
+
'std' => 'yes', // for woocommerce < 2.0
|
860 |
+
'default' => 'yes', // for woocommerce >= 2.0
|
861 |
+
'type' => 'checkbox',
|
862 |
+
'css' => 'min-width:300px;',
|
863 |
+
),
|
864 |
+
array(
|
865 |
+
'name' => __( 'Show "Add to Cart" button', 'yit' ),
|
866 |
+
'id' => 'yith_wcwl_add_to_cart_show',
|
867 |
+
'std' => 'yes', // for woocommerce < 2.0
|
868 |
+
'default' => 'yes', // for woocommerce >= 2.0
|
869 |
+
'type' => 'checkbox',
|
870 |
+
'css' => 'min-width:300px;',
|
871 |
+
),
|
872 |
+
array(
|
873 |
+
'name' => __( 'Show Stock status', 'yit' ),
|
874 |
+
'id' => 'yith_wcwl_stock_show',
|
875 |
+
'std' => 'yes', // for woocommerce < 2.0
|
876 |
+
'default' => 'yes', // for woocommerce >= 2.0
|
877 |
+
'type' => 'checkbox',
|
878 |
+
'css' => 'min-width:300px;',
|
879 |
+
),
|
880 |
|
881 |
array( 'type' => 'sectionend', 'id' => 'yith_wcwl_general_settings' )
|
882 |
);
|
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.0.
|
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.0.
|
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.0.4
|
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.0.4
|
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: 2013-
|
5 |
-
"PO-Revision-Date: 2013-
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,14 +14,6 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../add-to-cart.php:31
|
18 |
-
msgid "View Cart →"
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
#: ../add-to-cart.php:31
|
22 |
-
msgid "Product successfully added to the cart."
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
#: ../class.yith-wcwl-init.php:105 ../class.yith-wcwl-install.php:137
|
26 |
msgid "Wishlist"
|
27 |
msgstr ""
|
@@ -42,11 +34,11 @@ msgstr ""
|
|
42 |
msgid "General Settings"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../class.yith-wcwl-init.php:409 ../class.yith-wcwl-init.php:
|
46 |
msgid "Styles"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../class.yith-wcwl-init.php:410 ../class.yith-wcwl-init.php:
|
50 |
msgid "Socials & Share"
|
51 |
msgstr ""
|
52 |
|
@@ -151,7 +143,7 @@ msgid "Wishlist title"
|
|
151 |
msgstr ""
|
152 |
|
153 |
#: ../class.yith-wcwl-init.php:804 ../class.yith-wcwl-init.php:805
|
154 |
-
#: ../class.yith-wcwl-init.php:
|
155 |
#, php-format
|
156 |
msgid "My wishlist on %s"
|
157 |
msgstr ""
|
@@ -216,81 +208,93 @@ msgstr ""
|
|
216 |
msgid "Add to Cart"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../class.yith-wcwl-init.php:
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
#: ../class.yith-wcwl-init.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
msgid "Use buttons instead of a simple anchors."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../class.yith-wcwl-init.php:
|
228 |
msgid "Custom CSS"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../class.yith-wcwl-init.php:
|
232 |
msgid "Use theme style"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../class.yith-wcwl-init.php:
|
236 |
msgid "Use the theme style."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../class.yith-wcwl-init.php:
|
240 |
msgid "Buttons rounded corners"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../class.yith-wcwl-init.php:
|
244 |
msgid "Make buttons corner rounded"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../class.yith-wcwl-init.php:
|
248 |
msgid "\"Add to Wishlist\" icon"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../class.yith-wcwl-init.php:
|
252 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../class.yith-wcwl-init.php:
|
256 |
msgid "\"Add to Cart\" icon"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../class.yith-wcwl-init.php:
|
260 |
msgid "Add an icon to the \"Add to Cart\" button"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../class.yith-wcwl-init.php:
|
264 |
msgid "Share on Facebook"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../class.yith-wcwl-init.php:
|
268 |
msgid "Tweet on Twitter"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../class.yith-wcwl-init.php:
|
272 |
msgid "Pin on Pinterest"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../class.yith-wcwl-init.php:
|
276 |
msgid "Share on Google+"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../class.yith-wcwl-init.php:
|
280 |
msgid "Socials title"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../class.yith-wcwl-init.php:
|
284 |
msgid "Socials text"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../class.yith-wcwl-init.php:
|
288 |
msgid ""
|
289 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
290 |
"strong> where you want the URL of your wishlist to appear."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../class.yith-wcwl-init.php:
|
294 |
msgid "Socials image URL"
|
295 |
msgstr ""
|
296 |
|
@@ -348,7 +352,7 @@ msgid "Error. Unable to remove the product from the wishlist."
|
|
348 |
msgstr ""
|
349 |
|
350 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
351 |
-
#: ../templates/wishlist.php:
|
352 |
msgid "No products were added to the wishlist"
|
353 |
msgstr ""
|
354 |
|
@@ -368,10 +372,70 @@ msgstr ""
|
|
368 |
msgid "Remove this product"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../templates/wishlist.php:
|
372 |
msgid "Out of Stock"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../templates/wishlist.php:
|
376 |
msgid "In Stock"
|
377 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 16:30+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 16:30+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:105 ../class.yith-wcwl-install.php:137
|
18 |
msgid "Wishlist"
|
19 |
msgstr ""
|
34 |
msgid "General Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-wcwl-init.php:409 ../class.yith-wcwl-init.php:885
|
38 |
msgid "Styles"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../class.yith-wcwl-init.php:410 ../class.yith-wcwl-init.php:948
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
143 |
msgstr ""
|
144 |
|
145 |
#: ../class.yith-wcwl-init.php:804 ../class.yith-wcwl-init.php:805
|
146 |
+
#: ../class.yith-wcwl-init.php:981 ../class.yith-wcwl-init.php:982
|
147 |
#, php-format
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr ""
|
208 |
msgid "Add to Cart"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../class.yith-wcwl-init.php:857
|
212 |
+
msgid "Show Unit price"
|
213 |
msgstr ""
|
214 |
|
215 |
#: ../class.yith-wcwl-init.php:865
|
216 |
+
msgid "Show \"Add to Cart\" button"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: ../class.yith-wcwl-init.php:873
|
220 |
+
msgid "Show Stock status"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: ../class.yith-wcwl-init.php:888
|
224 |
+
msgid "Use buttons"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: ../class.yith-wcwl-init.php:889
|
228 |
msgid "Use buttons instead of a simple anchors."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../class.yith-wcwl-init.php:896
|
232 |
msgid "Custom CSS"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../class.yith-wcwl-init.php:904
|
236 |
msgid "Use theme style"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../class.yith-wcwl-init.php:905
|
240 |
msgid "Use the theme style."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../class.yith-wcwl-init.php:912
|
244 |
msgid "Buttons rounded corners"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../class.yith-wcwl-init.php:913
|
248 |
msgid "Make buttons corner rounded"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../class.yith-wcwl-init.php:920
|
252 |
msgid "\"Add to Wishlist\" icon"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../class.yith-wcwl-init.php:921
|
256 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../class.yith-wcwl-init.php:932
|
260 |
msgid "\"Add to Cart\" icon"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../class.yith-wcwl-init.php:933
|
264 |
msgid "Add an icon to the \"Add to Cart\" button"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../class.yith-wcwl-init.php:951
|
268 |
msgid "Share on Facebook"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../class.yith-wcwl-init.php:958
|
272 |
msgid "Tweet on Twitter"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../class.yith-wcwl-init.php:965
|
276 |
msgid "Pin on Pinterest"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../class.yith-wcwl-init.php:972
|
280 |
msgid "Share on Google+"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../class.yith-wcwl-init.php:979
|
284 |
msgid "Socials title"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../class.yith-wcwl-init.php:987
|
288 |
msgid "Socials text"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../class.yith-wcwl-init.php:988
|
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:996
|
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:145
|
356 |
msgid "No products were added to the wishlist"
|
357 |
msgstr ""
|
358 |
|
372 |
msgid "Remove this product"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../templates/wishlist.php:126
|
376 |
msgid "Out of Stock"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../templates/wishlist.php:129
|
380 |
msgid "In Stock"
|
381 |
msgstr ""
|
382 |
+
|
383 |
+
#: ../yit-common/yith-panel.php:406
|
384 |
+
msgid "Select a date"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: ../yit-common/yith-panel.php:407
|
388 |
+
msgid "Hours"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
392 |
+
msgid "Minutes"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: ../yit-common/yith-panel.php:417
|
396 |
+
msgid "Upload"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: ../yit-common/yith-panel.php:444
|
400 |
+
msgid "px"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: ../yit-common/yith-panel.php:445
|
404 |
+
msgid "em"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: ../yit-common/yith-panel.php:446
|
408 |
+
msgid "pt"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: ../yit-common/yith-panel.php:447
|
412 |
+
msgid "rem"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: ../yit-common/yith-panel.php:457
|
416 |
+
msgid "Select a font family"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../yit-common/yith-panel.php:465
|
420 |
+
msgid "Regular"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: ../yit-common/yith-panel.php:466
|
424 |
+
msgid "Bold"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: ../yit-common/yith-panel.php:467
|
428 |
+
msgid "Extra bold"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: ../yit-common/yith-panel.php:468
|
432 |
+
msgid "Italic"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: ../yit-common/yith-panel.php:469
|
436 |
+
msgid "Italic bold"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: ../yit-common/yith-panel.php:481
|
440 |
+
msgid "Click to preview"
|
441 |
+
msgstr ""
|
languages/yit-de_DE.mo
ADDED
Binary file
|
languages/yit-de_DE.po
ADDED
@@ -0,0 +1,476 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-04 16:30+0100\n"
|
6 |
+
"PO-Revision-Date: 2013-09-04 16:31+0100\n"
|
7 |
+
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\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:105 class.yith-wcwl-install.php:137
|
22 |
+
msgid "Wishlist"
|
23 |
+
msgstr "Wunschliste"
|
24 |
+
|
25 |
+
#: class.yith-wcwl-init.php:335
|
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:364
|
32 |
+
msgid "Wishlist Page"
|
33 |
+
msgstr "Wunschlistenseite"
|
34 |
+
|
35 |
+
#: class.yith-wcwl-init.php:365
|
36 |
+
msgid "Page contents: [yith_wcwl_wishlist]"
|
37 |
+
msgstr "Seiteninhalt: [yith_wcwl_wishlist]"
|
38 |
+
|
39 |
+
#: class.yith-wcwl-init.php:408 class.yith-wcwl-init.php:783
|
40 |
+
msgid "General Settings"
|
41 |
+
msgstr "Allgemeine Einstellungen"
|
42 |
+
|
43 |
+
#: class.yith-wcwl-init.php:409 class.yith-wcwl-init.php:885
|
44 |
+
msgid "Styles"
|
45 |
+
msgstr "Style"
|
46 |
+
|
47 |
+
#: class.yith-wcwl-init.php:410 class.yith-wcwl-init.php:948
|
48 |
+
msgid "Socials & Share"
|
49 |
+
msgstr "Soziale Netzwerke; Teilen"
|
50 |
+
|
51 |
+
#: class.yith-wcwl-init.php:430
|
52 |
+
msgid "Colors"
|
53 |
+
msgstr "Farben"
|
54 |
+
|
55 |
+
#: class.yith-wcwl-init.php:457
|
56 |
+
msgid "\"Add to Wishlist\" button background"
|
57 |
+
msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund"
|
58 |
+
|
59 |
+
#: class.yith-wcwl-init.php:458
|
60 |
+
msgid "\"Add to Wishlist\" button text"
|
61 |
+
msgstr "\"Zu Wunschliste hinzufügen\" Button Text"
|
62 |
+
|
63 |
+
#: class.yith-wcwl-init.php:459
|
64 |
+
msgid "\"Add to Wishlist\" button border"
|
65 |
+
msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen"
|
66 |
+
|
67 |
+
#: class.yith-wcwl-init.php:464
|
68 |
+
msgid "\"Add to Wishlist\" button background (hover)"
|
69 |
+
msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund (hover)"
|
70 |
+
|
71 |
+
#: class.yith-wcwl-init.php:465
|
72 |
+
msgid "\"Add to Wishlist\" button text (hover)"
|
73 |
+
msgstr "\"Zu Wunschliste hinzufügen\" Button Text (hover)"
|
74 |
+
|
75 |
+
#: class.yith-wcwl-init.php:466
|
76 |
+
msgid "\"Add to Wishlist\" button border (hover)"
|
77 |
+
msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen (hover)"
|
78 |
+
|
79 |
+
#: class.yith-wcwl-init.php:470
|
80 |
+
msgid "\"Add to Cart\" button background"
|
81 |
+
msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund"
|
82 |
+
|
83 |
+
#: class.yith-wcwl-init.php:471
|
84 |
+
msgid "\"Add to Cart\" button text"
|
85 |
+
msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
|
86 |
+
|
87 |
+
#: class.yith-wcwl-init.php:472
|
88 |
+
msgid "\"Add to Cart\" button border"
|
89 |
+
msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen"
|
90 |
+
|
91 |
+
#: class.yith-wcwl-init.php:477
|
92 |
+
msgid "\"Add to Cart\" button background (hover)"
|
93 |
+
msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund (hover)"
|
94 |
+
|
95 |
+
#: class.yith-wcwl-init.php:478
|
96 |
+
msgid "\"Add to Cart\" button text (hover)"
|
97 |
+
msgstr "\"Zu Warenkorb hinzufügen\" Button Text (hover)"
|
98 |
+
|
99 |
+
#: class.yith-wcwl-init.php:479
|
100 |
+
msgid "\"Add to Cart\" button border (hover)"
|
101 |
+
msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen (hover)"
|
102 |
+
|
103 |
+
#: class.yith-wcwl-init.php:483
|
104 |
+
msgid "Wishlist table background"
|
105 |
+
msgstr "Wunschliste Tabellenhintergrund"
|
106 |
+
|
107 |
+
#: class.yith-wcwl-init.php:484
|
108 |
+
msgid "Wishlist table text"
|
109 |
+
msgstr "Wunschliste Tabellentext"
|
110 |
+
|
111 |
+
#: class.yith-wcwl-init.php:485
|
112 |
+
msgid "Wishlist table border"
|
113 |
+
msgstr "Wunschliste Tabellenrahmen"
|
114 |
+
|
115 |
+
#: class.yith-wcwl-init.php:535
|
116 |
+
msgid "Settings"
|
117 |
+
msgstr "Einstellungen"
|
118 |
+
|
119 |
+
#: class.yith-wcwl-init.php:536
|
120 |
+
msgid "Docs"
|
121 |
+
msgstr "Dokumentation"
|
122 |
+
|
123 |
+
#: class.yith-wcwl-init.php:786
|
124 |
+
msgid "Enable YITH Wishlist"
|
125 |
+
msgstr "Aktiviere YITH Wunschliste"
|
126 |
+
|
127 |
+
#: class.yith-wcwl-init.php:787
|
128 |
+
#, php-format
|
129 |
+
msgid ""
|
130 |
+
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
131 |
+
"selected in WooCommerce > Settings > Pages.</strong> Also, please read "
|
132 |
+
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
133 |
+
msgstr ""
|
134 |
+
"Aktiviere alle Plugin-Einstellungen <strong>Stellen Sie sicher, dass die "
|
135 |
+
"Wunschlisten-Seite in den WooCommerce > Einstellungen > Seiten "
|
136 |
+
"markiert ist.</strong> Bitte lesen Sie die Plugin- <a href=\"%s\" target="
|
137 |
+
"\"_blank\">Hinweise</a>."
|
138 |
+
|
139 |
+
#: class.yith-wcwl-init.php:794
|
140 |
+
msgid "Use cookies"
|
141 |
+
msgstr "Cookies verwenden"
|
142 |
+
|
143 |
+
#: class.yith-wcwl-init.php:795
|
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 "
|
147 |
+
"yith_wcwl_cookie_expiration_time to change the expiration time ( needs "
|
148 |
+
"timestamp )."
|
149 |
+
msgstr ""
|
150 |
+
"Cookies anstatt Sessions verwenden. Mit dieser Einstellung wird die "
|
151 |
+
"Wunschliste für 30 Tage auch für nicht eingeloggte Benutzer verfügbar sein. "
|
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:802
|
156 |
+
msgid "Wishlist title"
|
157 |
+
msgstr "Wunschlistentitel"
|
158 |
+
|
159 |
+
#: class.yith-wcwl-init.php:804 class.yith-wcwl-init.php:805
|
160 |
+
#: class.yith-wcwl-init.php:981 class.yith-wcwl-init.php:982
|
161 |
+
#, php-format
|
162 |
+
msgid "My wishlist on %s"
|
163 |
+
msgstr "Meine Wunschliste von %s"
|
164 |
+
|
165 |
+
#: class.yith-wcwl-init.php:810
|
166 |
+
msgid "Position"
|
167 |
+
msgstr "Position"
|
168 |
+
|
169 |
+
#: class.yith-wcwl-init.php:811
|
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]."
|
173 |
+
msgstr ""
|
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:817
|
178 |
+
msgid "After \"Add to cart\""
|
179 |
+
msgstr "Nach \"Add to cart\""
|
180 |
+
|
181 |
+
#: class.yith-wcwl-init.php:818
|
182 |
+
msgid "After thumbnails"
|
183 |
+
msgstr "Nach Thumbnails (Miniaturbilder)"
|
184 |
+
|
185 |
+
#: class.yith-wcwl-init.php:819
|
186 |
+
msgid "After summary"
|
187 |
+
msgstr "Nach Zusammenfassung"
|
188 |
+
|
189 |
+
#: class.yith-wcwl-init.php:820
|
190 |
+
msgid "Use shortcode"
|
191 |
+
msgstr "Shortcode verwenden"
|
192 |
+
|
193 |
+
#: class.yith-wcwl-init.php:825
|
194 |
+
msgid "Redirect to cart"
|
195 |
+
msgstr "Weiterleiten zum Warenkorb"
|
196 |
+
|
197 |
+
#: class.yith-wcwl-init.php:826
|
198 |
+
msgid ""
|
199 |
+
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
200 |
+
"page."
|
201 |
+
msgstr ""
|
202 |
+
"Zum Warenkorb weiterleiten, wenn \"Add to cart\" Button auf der "
|
203 |
+
"Wunschlistenseite angeklickt wurde"
|
204 |
+
|
205 |
+
#: class.yith-wcwl-init.php:833
|
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:834
|
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:841
|
215 |
+
msgid "\"Add to Wishlist\" text"
|
216 |
+
msgstr "\"Zu Wunschliste hinzufügen\" Text"
|
217 |
+
|
218 |
+
#: class.yith-wcwl-init.php:843 class.yith-wcwl-init.php:844
|
219 |
+
msgid "Add to Wishlist"
|
220 |
+
msgstr "Zu Wunschliste hinzufügen"
|
221 |
+
|
222 |
+
#: class.yith-wcwl-init.php:849
|
223 |
+
msgid "\"Add to Cart\" text"
|
224 |
+
msgstr "\"Auf die Wunschliste setzen\" Text"
|
225 |
+
|
226 |
+
#: class.yith-wcwl-init.php:851 class.yith-wcwl-init.php:852
|
227 |
+
msgid "Add to Cart"
|
228 |
+
msgstr "Zum Warenkorb hinzufügen"
|
229 |
+
|
230 |
+
#: class.yith-wcwl-init.php:857
|
231 |
+
#, fuzzy
|
232 |
+
msgid "Show Unit price"
|
233 |
+
msgstr "Preis"
|
234 |
+
|
235 |
+
#: class.yith-wcwl-init.php:865
|
236 |
+
#, fuzzy
|
237 |
+
msgid "Show \"Add to Cart\" button"
|
238 |
+
msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
|
239 |
+
|
240 |
+
#: class.yith-wcwl-init.php:873
|
241 |
+
#, fuzzy
|
242 |
+
msgid "Show Stock status"
|
243 |
+
msgstr "Lagerstatus"
|
244 |
+
|
245 |
+
#: class.yith-wcwl-init.php:888
|
246 |
+
msgid "Use buttons"
|
247 |
+
msgstr "Buttons verwenden"
|
248 |
+
|
249 |
+
#: class.yith-wcwl-init.php:889
|
250 |
+
msgid "Use buttons instead of a simple anchors."
|
251 |
+
msgstr "Buttons anstatt von einfachen Anchors verwenden"
|
252 |
+
|
253 |
+
#: class.yith-wcwl-init.php:896
|
254 |
+
msgid "Custom CSS"
|
255 |
+
msgstr "Benutzerdefiniertes CSS"
|
256 |
+
|
257 |
+
#: class.yith-wcwl-init.php:904
|
258 |
+
msgid "Use theme style"
|
259 |
+
msgstr "Theme Design verwenden"
|
260 |
+
|
261 |
+
#: class.yith-wcwl-init.php:905
|
262 |
+
msgid "Use the theme style."
|
263 |
+
msgstr "Theme Design verwenden"
|
264 |
+
|
265 |
+
#: class.yith-wcwl-init.php:912
|
266 |
+
msgid "Buttons rounded corners"
|
267 |
+
msgstr "Button mit abgerundeten Ecken"
|
268 |
+
|
269 |
+
#: class.yith-wcwl-init.php:913
|
270 |
+
msgid "Make buttons corner rounded"
|
271 |
+
msgstr "Button mit abgerundeten Ecken nutzen"
|
272 |
+
|
273 |
+
#: class.yith-wcwl-init.php:920
|
274 |
+
msgid "\"Add to Wishlist\" icon"
|
275 |
+
msgstr "\"Zur Wunschliste hinzufügen\" Icon"
|
276 |
+
|
277 |
+
#: class.yith-wcwl-init.php:921
|
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:932
|
282 |
+
msgid "\"Add to Cart\" icon"
|
283 |
+
msgstr "\"In den Warenkoeb\" Icon"
|
284 |
+
|
285 |
+
#: class.yith-wcwl-init.php:933
|
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:951
|
290 |
+
msgid "Share on Facebook"
|
291 |
+
msgstr "Auf Facebook teilen"
|
292 |
+
|
293 |
+
#: class.yith-wcwl-init.php:958
|
294 |
+
msgid "Tweet on Twitter"
|
295 |
+
msgstr "Auf Twitter tweeten"
|
296 |
+
|
297 |
+
#: class.yith-wcwl-init.php:965
|
298 |
+
msgid "Pin on Pinterest"
|
299 |
+
msgstr "Auf Pinterest pinnen"
|
300 |
+
|
301 |
+
#: class.yith-wcwl-init.php:972
|
302 |
+
msgid "Share on Google+"
|
303 |
+
msgstr "Bei Google+ teilen"
|
304 |
+
|
305 |
+
#: class.yith-wcwl-init.php:979
|
306 |
+
msgid "Socials title"
|
307 |
+
msgstr "Soziale Netzwerke-Titel"
|
308 |
+
|
309 |
+
#: class.yith-wcwl-init.php:987
|
310 |
+
msgid "Socials text"
|
311 |
+
msgstr "Soziale Netzwerke Text"
|
312 |
+
|
313 |
+
#: class.yith-wcwl-init.php:988
|
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."
|
317 |
+
msgstr ""
|
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:996
|
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:145
|
385 |
+
msgid "No products were added to the wishlist"
|
386 |
+
msgstr "Es wurden keine Produkte auf die Wunschliste gesetzt"
|
387 |
+
|
388 |
+
#: templates/wishlist.php:75
|
389 |
+
msgid "Product Name"
|
390 |
+
msgstr "Produktname"
|
391 |
+
|
392 |
+
#: templates/wishlist.php:76
|
393 |
+
msgid "Unit Price"
|
394 |
+
msgstr "Preis"
|
395 |
+
|
396 |
+
#: templates/wishlist.php:77
|
397 |
+
msgid "Stock Status"
|
398 |
+
msgstr "Lagerstatus"
|
399 |
+
|
400 |
+
#: templates/wishlist.php:99
|
401 |
+
msgid "Remove this product"
|
402 |
+
msgstr "Dieses Produkt entfernen"
|
403 |
+
|
404 |
+
#: templates/wishlist.php:126
|
405 |
+
msgid "Out of Stock"
|
406 |
+
msgstr "Nicht auf Lager"
|
407 |
+
|
408 |
+
#: templates/wishlist.php:129
|
409 |
+
msgid "In Stock"
|
410 |
+
msgstr "Auf Lager"
|
411 |
+
|
412 |
+
#: yit-common/yith-panel.php:406
|
413 |
+
msgid "Select a date"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: yit-common/yith-panel.php:407
|
417 |
+
msgid "Hours"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: yit-common/yith-panel.php:408 yit-common/yith-panel.php:409
|
421 |
+
msgid "Minutes"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: yit-common/yith-panel.php:417
|
425 |
+
msgid "Upload"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: yit-common/yith-panel.php:444
|
429 |
+
msgid "px"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: yit-common/yith-panel.php:445
|
433 |
+
msgid "em"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: yit-common/yith-panel.php:446
|
437 |
+
msgid "pt"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: yit-common/yith-panel.php:447
|
441 |
+
msgid "rem"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: yit-common/yith-panel.php:457
|
445 |
+
msgid "Select a font family"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: yit-common/yith-panel.php:465
|
449 |
+
msgid "Regular"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: yit-common/yith-panel.php:466
|
453 |
+
msgid "Bold"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: yit-common/yith-panel.php:467
|
457 |
+
msgid "Extra bold"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: yit-common/yith-panel.php:468
|
461 |
+
msgid "Italic"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: yit-common/yith-panel.php:469
|
465 |
+
msgid "Italic bold"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: yit-common/yith-panel.php:481
|
469 |
+
msgid "Click to preview"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#~ msgid "View Cart →"
|
473 |
+
#~ msgstr "Warenkorb ansehen"
|
474 |
+
|
475 |
+
#~ msgid "Product successfully added to the cart."
|
476 |
+
#~ msgstr "Produkt erfolgreich im Warenkorb eingefügt "
|
languages/yit-he_IL.mo
ADDED
Binary file
|
languages/yit-he_IL.po
ADDED
@@ -0,0 +1,455 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 16:33+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 16:33+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"
|
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:105 ../class.yith-wcwl-install.php:137
|
18 |
+
msgid "Wishlist"
|
19 |
+
msgstr "רשימת משאלות"
|
20 |
+
|
21 |
+
#: ../class.yith-wcwl-init.php:335
|
22 |
+
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
+
msgstr "לא ניתן להוסיף את המוצר לסל כי הוא אינו קיים במלאי!"
|
24 |
+
|
25 |
+
#: ../class.yith-wcwl-init.php:364
|
26 |
+
msgid "Wishlist Page"
|
27 |
+
msgstr "עמוד רשימת המשאלות"
|
28 |
+
|
29 |
+
#: ../class.yith-wcwl-init.php:365
|
30 |
+
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
+
msgstr "תוכן העמוד: [yith_wcwl_wishlist]"
|
32 |
+
|
33 |
+
#: ../class.yith-wcwl-init.php:408 ../class.yith-wcwl-init.php:783
|
34 |
+
msgid "General Settings"
|
35 |
+
msgstr "הגדרות כלליות"
|
36 |
+
|
37 |
+
#: ../class.yith-wcwl-init.php:409 ../class.yith-wcwl-init.php:885
|
38 |
+
msgid "Styles"
|
39 |
+
msgstr "סגנונות עיצוב"
|
40 |
+
|
41 |
+
#: ../class.yith-wcwl-init.php:410 ../class.yith-wcwl-init.php:948
|
42 |
+
msgid "Socials & Share"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../class.yith-wcwl-init.php:430
|
46 |
+
msgid "Colors"
|
47 |
+
msgstr "צבעים"
|
48 |
+
|
49 |
+
#: ../class.yith-wcwl-init.php:457
|
50 |
+
msgid "\"Add to Wishlist\" button background"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ../class.yith-wcwl-init.php:458
|
54 |
+
msgid "\"Add to Wishlist\" button text"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: ../class.yith-wcwl-init.php:459
|
58 |
+
msgid "\"Add to Wishlist\" button border"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: ../class.yith-wcwl-init.php:464
|
62 |
+
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: ../class.yith-wcwl-init.php:465
|
66 |
+
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../class.yith-wcwl-init.php:466
|
70 |
+
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../class.yith-wcwl-init.php:470
|
74 |
+
msgid "\"Add to Cart\" button background"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: ../class.yith-wcwl-init.php:471
|
78 |
+
msgid "\"Add to Cart\" button text"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: ../class.yith-wcwl-init.php:472
|
82 |
+
msgid "\"Add to Cart\" button border"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: ../class.yith-wcwl-init.php:477
|
86 |
+
msgid "\"Add to Cart\" button background (hover)"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../class.yith-wcwl-init.php:478
|
90 |
+
msgid "\"Add to Cart\" button text (hover)"
|
91 |
+
msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
|
92 |
+
|
93 |
+
#: ../class.yith-wcwl-init.php:479
|
94 |
+
msgid "\"Add to Cart\" button border (hover)"
|
95 |
+
msgstr "\"הוסף לסל\" גבול כפתור (hover)"
|
96 |
+
|
97 |
+
#: ../class.yith-wcwl-init.php:483
|
98 |
+
msgid "Wishlist table background"
|
99 |
+
msgstr "רקע טבלת הרשימה"
|
100 |
+
|
101 |
+
#: ../class.yith-wcwl-init.php:484
|
102 |
+
msgid "Wishlist table text"
|
103 |
+
msgstr "טקסט בטבלת הרשימה"
|
104 |
+
|
105 |
+
#: ../class.yith-wcwl-init.php:485
|
106 |
+
msgid "Wishlist table border"
|
107 |
+
msgstr "גבול טבלאות הרשימה"
|
108 |
+
|
109 |
+
#: ../class.yith-wcwl-init.php:535
|
110 |
+
msgid "Settings"
|
111 |
+
msgstr "הגדרות"
|
112 |
+
|
113 |
+
#: ../class.yith-wcwl-init.php:536
|
114 |
+
msgid "Docs"
|
115 |
+
msgstr "מסמכים"
|
116 |
+
|
117 |
+
#: ../class.yith-wcwl-init.php:786
|
118 |
+
msgid "Enable YITH Wishlist"
|
119 |
+
msgstr "אפשר שימוש ברשימת המשאלות של YITH"
|
120 |
+
|
121 |
+
#: ../class.yith-wcwl-init.php:787
|
122 |
+
#, php-format
|
123 |
+
msgid ""
|
124 |
+
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
125 |
+
"selected in WooCommerce > Settings > Pages.</strong> Also, please read "
|
126 |
+
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
127 |
+
msgstr ""
|
128 |
+
"אפשר את כל התוכנות של התוסף. <strong>בדוק שעמוד רשימת המשאלות קיים ונבחר "
|
129 |
+
"בהגדרות של WooCommerce > Settings > Pages.</strong> בנוסף, קרא את <a "
|
130 |
+
"href=\"%s\" target=\"_blank\">הוראות השימוש</a> של התוסף."
|
131 |
+
|
132 |
+
#: ../class.yith-wcwl-init.php:794
|
133 |
+
msgid "Use cookies"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: ../class.yith-wcwl-init.php:795
|
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 "
|
140 |
+
"yith_wcwl_cookie_expiration_time to change the expiration time ( needs "
|
141 |
+
"timestamp )."
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: ../class.yith-wcwl-init.php:802
|
145 |
+
msgid "Wishlist title"
|
146 |
+
msgstr "כותרת רשימת משאלות"
|
147 |
+
|
148 |
+
#: ../class.yith-wcwl-init.php:804 ../class.yith-wcwl-init.php:805
|
149 |
+
#: ../class.yith-wcwl-init.php:981 ../class.yith-wcwl-init.php:982
|
150 |
+
#, php-format
|
151 |
+
msgid "My wishlist on %s"
|
152 |
+
msgstr "רשימת המשאלות שלי ב-%s"
|
153 |
+
|
154 |
+
#: ../class.yith-wcwl-init.php:810
|
155 |
+
msgid "Position"
|
156 |
+
msgstr "מיקום"
|
157 |
+
|
158 |
+
#: ../class.yith-wcwl-init.php:811
|
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:817
|
165 |
+
msgid "After \"Add to cart\""
|
166 |
+
msgstr "לאחר \"הוספה לסל\""
|
167 |
+
|
168 |
+
#: ../class.yith-wcwl-init.php:818
|
169 |
+
msgid "After thumbnails"
|
170 |
+
msgstr "אחרי התמונות המוקטנות"
|
171 |
+
|
172 |
+
#: ../class.yith-wcwl-init.php:819
|
173 |
+
msgid "After summary"
|
174 |
+
msgstr "אחרי תיאור מוצר"
|
175 |
+
|
176 |
+
#: ../class.yith-wcwl-init.php:820
|
177 |
+
msgid "Use shortcode"
|
178 |
+
msgstr "השתמש בקוד מקוצר"
|
179 |
+
|
180 |
+
#: ../class.yith-wcwl-init.php:825
|
181 |
+
msgid "Redirect to cart"
|
182 |
+
msgstr "הפנייה לסל הקניות"
|
183 |
+
|
184 |
+
#: ../class.yith-wcwl-init.php:826
|
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:833
|
191 |
+
msgid "Remove if added to the cart"
|
192 |
+
msgstr "הסר מהרשימה אם הוסף לסל"
|
193 |
+
|
194 |
+
#: ../class.yith-wcwl-init.php:834
|
195 |
+
msgid "Remove the product from the wishlist if is been added to the cart."
|
196 |
+
msgstr "הסר את המוצר מהרשימה אם הוא הוסף לסל."
|
197 |
+
|
198 |
+
#: ../class.yith-wcwl-init.php:841
|
199 |
+
msgid "\"Add to Wishlist\" text"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: ../class.yith-wcwl-init.php:843 ../class.yith-wcwl-init.php:844
|
203 |
+
msgid "Add to Wishlist"
|
204 |
+
msgstr "הוסף לרשימת המשאלות"
|
205 |
+
|
206 |
+
#: ../class.yith-wcwl-init.php:849
|
207 |
+
msgid "\"Add to Cart\" text"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: ../class.yith-wcwl-init.php:851 ../class.yith-wcwl-init.php:852
|
211 |
+
msgid "Add to Cart"
|
212 |
+
msgstr "הוסף לסל"
|
213 |
+
|
214 |
+
#: ../class.yith-wcwl-init.php:857
|
215 |
+
#, fuzzy
|
216 |
+
msgid "Show Unit price"
|
217 |
+
msgstr "מחיר ליחידה"
|
218 |
+
|
219 |
+
#: ../class.yith-wcwl-init.php:865
|
220 |
+
#, fuzzy
|
221 |
+
msgid "Show \"Add to Cart\" button"
|
222 |
+
msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
|
223 |
+
|
224 |
+
#: ../class.yith-wcwl-init.php:873
|
225 |
+
#, fuzzy
|
226 |
+
msgid "Show Stock status"
|
227 |
+
msgstr "מצב מלאי"
|
228 |
+
|
229 |
+
#: ../class.yith-wcwl-init.php:888
|
230 |
+
msgid "Use buttons"
|
231 |
+
msgstr "השתמש בכפתורים"
|
232 |
+
|
233 |
+
#: ../class.yith-wcwl-init.php:889
|
234 |
+
msgid "Use buttons instead of a simple anchors."
|
235 |
+
msgstr "השתמש בכפתורים במקום קישורים רגילים."
|
236 |
+
|
237 |
+
#: ../class.yith-wcwl-init.php:896
|
238 |
+
msgid "Custom CSS"
|
239 |
+
msgstr "הכנס שורות CSS משלך"
|
240 |
+
|
241 |
+
#: ../class.yith-wcwl-init.php:904
|
242 |
+
msgid "Use theme style"
|
243 |
+
msgstr "השתמש בעיצוב של התבנית שלך"
|
244 |
+
|
245 |
+
#: ../class.yith-wcwl-init.php:905
|
246 |
+
msgid "Use the theme style."
|
247 |
+
msgstr "השתמש בעיצוב של תבנית האתר."
|
248 |
+
|
249 |
+
#: ../class.yith-wcwl-init.php:912
|
250 |
+
msgid "Buttons rounded corners"
|
251 |
+
msgstr "כפתורים עם פינות מעוגלות"
|
252 |
+
|
253 |
+
#: ../class.yith-wcwl-init.php:913
|
254 |
+
msgid "Make buttons corner rounded"
|
255 |
+
msgstr "הצג את הכפתורים עם פינות מעוגלות"
|
256 |
+
|
257 |
+
#: ../class.yith-wcwl-init.php:920
|
258 |
+
msgid "\"Add to Wishlist\" icon"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: ../class.yith-wcwl-init.php:921
|
262 |
+
msgid "Add an icon to the \"Add to Wishlist\" button"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: ../class.yith-wcwl-init.php:932
|
266 |
+
msgid "\"Add to Cart\" icon"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: ../class.yith-wcwl-init.php:933
|
270 |
+
msgid "Add an icon to the \"Add to Cart\" button"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: ../class.yith-wcwl-init.php:951
|
274 |
+
msgid "Share on Facebook"
|
275 |
+
msgstr "שתף בפייסבוק"
|
276 |
+
|
277 |
+
#: ../class.yith-wcwl-init.php:958
|
278 |
+
msgid "Tweet on Twitter"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: ../class.yith-wcwl-init.php:965
|
282 |
+
msgid "Pin on Pinterest"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: ../class.yith-wcwl-init.php:972
|
286 |
+
msgid "Share on Google+"
|
287 |
+
msgstr "שתף בגוגל+"
|
288 |
+
|
289 |
+
#: ../class.yith-wcwl-init.php:979
|
290 |
+
msgid "Socials title"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: ../class.yith-wcwl-init.php:987
|
294 |
+
msgid "Socials text"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: ../class.yith-wcwl-init.php:988
|
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."
|
301 |
+
msgstr ""
|
302 |
+
"יעשה שימוש על ידי Facebook, Twitter וגם Pinterest. השתמש ב-<strong>"
|
303 |
+
"%wishlist_url%</strong> היכן שתרצה את ה-URL של רשימת המשאלות שלך שיופיע."
|
304 |
+
|
305 |
+
#: ../class.yith-wcwl-init.php:996
|
306 |
+
msgid "Socials image URL"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: ../class.yith-wcwl-install.php:136
|
310 |
+
msgid "wishlist"
|
311 |
+
msgstr "רשימת משאלות"
|
312 |
+
|
313 |
+
#: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
|
314 |
+
#: ../yith-wcwl-ajax.php:47
|
315 |
+
msgid "Product added!"
|
316 |
+
msgstr "המוצר נשמר!"
|
317 |
+
|
318 |
+
#: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
|
319 |
+
msgid "Browse Wishlist"
|
320 |
+
msgstr "צפה ברשימת השמורים שלך"
|
321 |
+
|
322 |
+
#: ../class.yith-wcwl-ui.php:65
|
323 |
+
msgid "The product is already in the wishlist!"
|
324 |
+
msgstr "המוצר נשמר."
|
325 |
+
|
326 |
+
#: ../class.yith-wcwl-ui.php:93
|
327 |
+
msgid "Select options"
|
328 |
+
msgstr "בחירת דגם"
|
329 |
+
|
330 |
+
#: ../class.yith-wcwl-ui.php:136
|
331 |
+
msgid "Share on:"
|
332 |
+
msgstr "שתף ברשת:"
|
333 |
+
|
334 |
+
#: ../class.yith-wcwl-ui.php:140
|
335 |
+
msgid "Facebook"
|
336 |
+
msgstr "פייסבוק"
|
337 |
+
|
338 |
+
#: ../class.yith-wcwl-ui.php:143
|
339 |
+
msgid "Twitter"
|
340 |
+
msgstr "טוויטר"
|
341 |
+
|
342 |
+
#: ../class.yith-wcwl.php:140
|
343 |
+
msgid "Error occurred while adding product to wishlist."
|
344 |
+
msgstr "ארעה שגיאה בזמן הוספת המוצר לרשימה."
|
345 |
+
|
346 |
+
#: ../class.yith-wcwl.php:162
|
347 |
+
msgid "Error occurred while removing product from wishlist"
|
348 |
+
msgstr "ארעה שגיאה בזמן הסרת המוצר מהרשימה"
|
349 |
+
|
350 |
+
#: ../class.yith-wcwl.php:353 ../yith-wcwl-ajax.php:49
|
351 |
+
msgid "Product already in the wishlist."
|
352 |
+
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."
|
353 |
+
|
354 |
+
#: ../class.yith-wcwl.php:370 ../yith-wcwl-ajax.php:30
|
355 |
+
msgid "Product successfully removed."
|
356 |
+
msgstr "המוצר הוסר מהרשימה בהצלחה."
|
357 |
+
|
358 |
+
#: ../class.yith-wcwl.php:373 ../yith-wcwl-ajax.php:33
|
359 |
+
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:145
|
364 |
+
msgid "No products were added to the wishlist"
|
365 |
+
msgstr "אין מוצרים ברשימת המשאלות שלך."
|
366 |
+
|
367 |
+
#: ../templates/wishlist.php:75
|
368 |
+
msgid "Product Name"
|
369 |
+
msgstr "שם המוצר"
|
370 |
+
|
371 |
+
#: ../templates/wishlist.php:76
|
372 |
+
msgid "Unit Price"
|
373 |
+
msgstr "מחיר ליחידה"
|
374 |
+
|
375 |
+
#: ../templates/wishlist.php:77
|
376 |
+
msgid "Stock Status"
|
377 |
+
msgstr "מצב מלאי"
|
378 |
+
|
379 |
+
#: ../templates/wishlist.php:99
|
380 |
+
msgid "Remove this product"
|
381 |
+
msgstr "הסרת מוצר מהרשימה"
|
382 |
+
|
383 |
+
#: ../templates/wishlist.php:126
|
384 |
+
msgid "Out of Stock"
|
385 |
+
msgstr "לא קיים במלאי"
|
386 |
+
|
387 |
+
#: ../templates/wishlist.php:129
|
388 |
+
msgid "In Stock"
|
389 |
+
msgstr "קיים במלאי"
|
390 |
+
|
391 |
+
#: ../yit-common/yith-panel.php:406
|
392 |
+
msgid "Select a date"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: ../yit-common/yith-panel.php:407
|
396 |
+
msgid "Hours"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
400 |
+
msgid "Minutes"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: ../yit-common/yith-panel.php:417
|
404 |
+
msgid "Upload"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: ../yit-common/yith-panel.php:444
|
408 |
+
msgid "px"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: ../yit-common/yith-panel.php:445
|
412 |
+
msgid "em"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: ../yit-common/yith-panel.php:446
|
416 |
+
msgid "pt"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../yit-common/yith-panel.php:447
|
420 |
+
msgid "rem"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: ../yit-common/yith-panel.php:457
|
424 |
+
msgid "Select a font family"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: ../yit-common/yith-panel.php:465
|
428 |
+
msgid "Regular"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: ../yit-common/yith-panel.php:466
|
432 |
+
msgid "Bold"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: ../yit-common/yith-panel.php:467
|
436 |
+
msgid "Extra bold"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: ../yit-common/yith-panel.php:468
|
440 |
+
msgid "Italic"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../yit-common/yith-panel.php:469
|
444 |
+
msgid "Italic bold"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: ../yit-common/yith-panel.php:481
|
448 |
+
msgid "Click to preview"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#~ msgid "View Cart →"
|
452 |
+
#~ msgstr "צפייה בעגלה ←"
|
453 |
+
|
454 |
+
#~ msgid "Product successfully added to the cart."
|
455 |
+
#~ msgstr ".המוצר הוסף לרשימה בהצלחה"
|
languages/yit-it_IT.mo
CHANGED
Binary file
|
languages/yit-it_IT.po
CHANGED
@@ -2,503 +2,553 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
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"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Generator: Poedit 1.5.
|
14 |
-
"X-Poedit-Language: \n"
|
15 |
-
"X-Poedit-Country: \n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;
|
|
|
18 |
"X-Poedit-Basepath: ./\n"
|
19 |
-
"X-
|
20 |
"X-Poedit-SearchPath-0: ..\n"
|
21 |
-
"X-Textdomain-Support: yes"
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
msgid "View Cart →"
|
26 |
-
msgstr "Vedi Carrello →"
|
27 |
-
|
28 |
-
#: add-to-cart.php:31
|
29 |
-
#@ yit
|
30 |
-
msgid "Product successfully added to the cart."
|
31 |
-
msgstr "Prodotto aggiunto con successo nel carrello."
|
32 |
-
|
33 |
-
#: class.yith-wcwl-init.php:105
|
34 |
-
#: class.yith-wcwl-install.php:137
|
35 |
-
#@ yit
|
36 |
msgid "Wishlist"
|
37 |
msgstr "Lista dei desideri"
|
38 |
|
39 |
-
|
40 |
-
|
41 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
42 |
-
msgstr "
|
|
|
43 |
|
44 |
-
|
45 |
-
|
46 |
msgid "Wishlist Page"
|
47 |
msgstr "Lista dei desideri"
|
48 |
|
49 |
-
|
50 |
-
|
51 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
52 |
msgstr "Contenuto della pagina: [yith_wcwl_wishlist]"
|
53 |
|
54 |
-
|
55 |
-
#: class.yith-wcwl-init.php:783
|
56 |
-
#@ yit
|
57 |
msgid "General Settings"
|
58 |
msgstr "Impostazioni"
|
59 |
|
60 |
-
|
61 |
-
#: class.yith-wcwl-init.php:
|
62 |
-
#@ yit
|
63 |
msgid "Styles"
|
64 |
msgstr "Stili"
|
65 |
|
66 |
-
|
67 |
-
#: class.yith-wcwl-init.php:
|
68 |
-
#@ yit
|
69 |
msgid "Socials & Share"
|
70 |
msgstr "Social & Condivisione"
|
71 |
|
72 |
-
|
73 |
-
|
74 |
msgid "Colors"
|
75 |
msgstr "Colori"
|
76 |
|
77 |
-
|
78 |
-
|
79 |
msgid "\"Add to Wishlist\" button background"
|
80 |
msgstr "Sfondo del bottone \"Aggiungi alla lista dei desideri\""
|
81 |
|
82 |
-
|
83 |
-
|
84 |
msgid "\"Add to Wishlist\" button text"
|
85 |
msgstr "Testo del bottone \"Aggiungi alla lista dei desideri\""
|
86 |
|
87 |
-
|
88 |
-
|
89 |
msgid "\"Add to Wishlist\" button border"
|
90 |
msgstr "Bordo del bottone \"Aggiungi alla lista dei desideri\""
|
91 |
|
92 |
-
|
93 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
msgid "\"Add to Cart\" button background"
|
95 |
msgstr "Sfondo del bottone \"Aggiungi al carrello\""
|
96 |
|
97 |
-
|
98 |
-
|
99 |
msgid "\"Add to Cart\" button text"
|
100 |
msgstr "Testo del bottone \"Aggiungi al carrello\""
|
101 |
|
102 |
-
|
103 |
-
|
104 |
msgid "\"Add to Cart\" button border"
|
105 |
msgstr "Bordo del bottone \"Aggiungi al carrello\""
|
106 |
|
107 |
-
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "Wishlist table background"
|
110 |
msgstr "Sfondo della tabella lista dei desideri"
|
111 |
|
112 |
-
|
113 |
-
|
114 |
msgid "Wishlist table text"
|
115 |
msgstr "Testo della tabella lista dei desideri"
|
116 |
|
117 |
-
|
118 |
-
|
119 |
msgid "Wishlist table border"
|
120 |
msgstr "Bordo della tabella lista dei desideri"
|
121 |
|
122 |
-
|
123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgid "Enable YITH Wishlist"
|
125 |
msgstr "Abilita YITH WooCommerce Wishlist"
|
126 |
|
127 |
-
|
128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
msgid "Use cookies"
|
130 |
msgstr "Utilizza cookie"
|
131 |
|
132 |
-
|
133 |
-
|
134 |
-
msgid "
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
-
|
138 |
-
|
139 |
msgid "Wishlist title"
|
140 |
msgstr "Titolo della tabella lista dei desideri"
|
141 |
|
142 |
-
|
143 |
-
#: class.yith-wcwl-init.php:805
|
144 |
-
#: class.yith-wcwl-init.php:
|
145 |
-
#: class.yith-wcwl-init.php:958
|
146 |
#, php-format
|
147 |
-
#@ yit
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr "La mia lista dei desideri su %s"
|
150 |
|
151 |
-
|
152 |
-
|
153 |
msgid "Position"
|
154 |
msgstr "Posizione"
|
155 |
|
156 |
-
|
157 |
-
|
158 |
-
msgid "
|
159 |
-
|
|
|
|
|
|
|
|
|
160 |
|
161 |
-
|
162 |
-
|
163 |
msgid "After \"Add to cart\""
|
164 |
msgstr "Dopo \"Aggiungi al Carrello\""
|
165 |
|
166 |
-
|
167 |
-
|
168 |
msgid "After thumbnails"
|
169 |
msgstr "Dopo le thumbnail"
|
170 |
|
171 |
-
|
172 |
-
|
173 |
msgid "After summary"
|
174 |
msgstr "Dopo la descrizione"
|
175 |
|
176 |
-
|
177 |
-
|
178 |
msgid "Use shortcode"
|
179 |
msgstr "Utilizza lo shortcode"
|
180 |
|
181 |
-
|
182 |
-
|
183 |
msgid "Redirect to cart"
|
184 |
msgstr "Reindirizza al carrello"
|
185 |
|
186 |
-
|
187 |
-
|
188 |
-
msgid "
|
189 |
-
|
|
|
|
|
|
|
|
|
190 |
|
191 |
-
|
192 |
-
|
193 |
msgid "Remove if added to the cart"
|
194 |
msgstr "Rimuovi se aggiunto al carrello"
|
195 |
|
196 |
-
|
197 |
-
|
198 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
199 |
-
msgstr "
|
|
|
|
|
200 |
|
201 |
-
|
202 |
-
|
203 |
msgid "\"Add to Wishlist\" text"
|
204 |
msgstr "Testo del bottone \"Aggiungi alla lista dei desideri\""
|
205 |
|
206 |
-
|
207 |
-
#: class.yith-wcwl-init.php:844
|
208 |
-
#@ yit
|
209 |
msgid "Add to Wishlist"
|
210 |
msgstr "Aggiungi alla lista dei desideri"
|
211 |
|
212 |
-
|
213 |
-
|
214 |
msgid "\"Add to Cart\" text"
|
215 |
msgstr "Testo del bottone \"Aggiungi al carrello\""
|
216 |
|
217 |
-
|
218 |
-
#: class.yith-wcwl-init.php:852
|
219 |
-
#@ yit
|
220 |
msgid "Add to Cart"
|
221 |
msgstr "Aggiungi al Carrello"
|
222 |
|
223 |
-
|
224 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
msgid "Use buttons"
|
226 |
msgstr "Usa bottoni"
|
227 |
|
228 |
-
|
229 |
-
|
230 |
msgid "Use buttons instead of a simple anchors."
|
231 |
msgstr "Utilizza bottoni al posto di semplici ancore testuali."
|
232 |
|
233 |
-
|
234 |
-
|
235 |
msgid "Custom CSS"
|
236 |
msgstr "CSS personalizzato"
|
237 |
|
238 |
-
|
239 |
-
|
240 |
msgid "Use theme style"
|
241 |
msgstr "Usa stile del tema"
|
242 |
|
243 |
-
|
244 |
-
|
245 |
msgid "Use the theme style."
|
246 |
msgstr "Usa lo stile del tema."
|
247 |
|
248 |
-
|
249 |
-
|
250 |
msgid "Buttons rounded corners"
|
251 |
msgstr "Bottoni con bordi arrotondati"
|
252 |
|
253 |
-
|
254 |
-
|
255 |
msgid "Make buttons corner rounded"
|
256 |
msgstr "Applica i bordi arrotondati ai bottoni"
|
257 |
|
258 |
-
|
259 |
-
|
260 |
msgid "\"Add to Wishlist\" icon"
|
261 |
msgstr "Icona \"Aggiungi alla lista dei desideri\""
|
262 |
|
263 |
-
|
264 |
-
|
265 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
266 |
msgstr "Aggiunge un'icona al bottone \"Aggiungi alla lista dei desideri\""
|
267 |
|
268 |
-
|
269 |
-
|
270 |
msgid "\"Add to Cart\" icon"
|
271 |
msgstr "Icona \"Aggiungi al carrello\""
|
272 |
|
273 |
-
|
274 |
-
|
275 |
msgid "Add an icon to the \"Add to Cart\" button"
|
276 |
msgstr "Aggiunge un'icona al bottone \"Aggiungi al carrello\""
|
277 |
|
278 |
-
|
279 |
-
|
280 |
msgid "Share on Facebook"
|
281 |
msgstr "Condivi su Facebook"
|
282 |
|
283 |
-
|
284 |
-
|
285 |
msgid "Tweet on Twitter"
|
286 |
msgstr "Condividi su Twitter"
|
287 |
|
288 |
-
|
289 |
-
|
290 |
msgid "Pin on Pinterest"
|
291 |
msgstr "Pin su Pinterest"
|
292 |
|
293 |
-
|
294 |
-
|
|
|
|
|
|
|
|
|
|
|
295 |
msgid "Socials title"
|
296 |
msgstr "Titolo dei social"
|
297 |
|
298 |
-
|
299 |
-
|
300 |
msgid "Socials text"
|
301 |
msgstr "Testo dei social"
|
302 |
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
|
|
|
|
|
|
308 |
|
309 |
-
|
310 |
-
|
311 |
msgid "Socials image URL"
|
312 |
msgstr "URL immagine dei social"
|
313 |
|
314 |
-
|
315 |
-
#: class.yith-wcwl.php:
|
316 |
-
|
317 |
-
|
|
|
|
|
|
|
|
|
|
|
318 |
msgid "Product added!"
|
319 |
msgstr "Prodotto aggiunto!"
|
320 |
|
321 |
-
|
322 |
-
#: class.yith-wcwl-ui.php:65
|
323 |
-
#@ yit
|
324 |
msgid "Browse Wishlist"
|
325 |
msgstr "Naviga la lista dei desideri"
|
326 |
|
327 |
-
|
328 |
-
|
329 |
msgid "The product is already in the wishlist!"
|
330 |
msgstr "Il prodotto é giá nella lista dei desideri!"
|
331 |
|
332 |
-
|
333 |
-
|
334 |
msgid "Select options"
|
335 |
msgstr "Seleziona opzioni"
|
336 |
|
337 |
-
|
338 |
-
|
339 |
msgid "Share on:"
|
340 |
msgstr "Condividi su:"
|
341 |
|
342 |
-
|
343 |
-
|
344 |
msgid "Facebook"
|
345 |
msgstr "Facebook"
|
346 |
|
347 |
-
|
348 |
-
|
349 |
msgid "Twitter"
|
350 |
msgstr "Twitter"
|
351 |
|
352 |
-
|
353 |
-
|
354 |
msgid "Error occurred while adding product to wishlist."
|
355 |
msgstr "Errore durante l'aggiunta del prodotto alla lista dei desideri."
|
356 |
|
357 |
-
|
358 |
-
|
359 |
msgid "Error occurred while removing product from wishlist"
|
360 |
msgstr "Errore durante la rimozione del prodotto dalla lista dei desideri"
|
361 |
|
362 |
-
|
363 |
-
#: yith-wcwl-ajax.php:
|
364 |
-
|
|
|
|
|
|
|
|
|
365 |
msgid "Product successfully removed."
|
366 |
msgstr "Prodotto rimosso con successo."
|
367 |
|
368 |
-
|
369 |
-
#: yith-wcwl-ajax.php:33
|
370 |
-
#@ yit
|
371 |
msgid "Error. Unable to remove the product from the wishlist."
|
372 |
msgstr "Errore. Impossibile rimuovere il prodotto dalla lista dei desideri."
|
373 |
|
374 |
-
|
375 |
-
#:
|
376 |
-
#:
|
377 |
-
#@ yit
|
378 |
msgid "No products were added to the wishlist"
|
379 |
msgstr "Nessun prodotto nella lista dei desideri"
|
380 |
|
381 |
-
|
382 |
-
#:
|
383 |
-
#@ yit
|
384 |
-
msgid "Product already in the wishlist."
|
385 |
-
msgstr "Il prodotto é giá nella lista dei desideri."
|
386 |
-
|
387 |
-
#: templates/wishlist.php:75
|
388 |
-
#@ yit
|
389 |
msgid "Product Name"
|
390 |
msgstr "Nome del Prodotto"
|
391 |
|
392 |
-
|
393 |
-
|
394 |
msgid "Unit Price"
|
395 |
msgstr "Prezzo Unitario"
|
396 |
|
397 |
-
|
398 |
-
|
399 |
msgid "Stock Status"
|
400 |
msgstr "Disponibilitá"
|
401 |
|
402 |
-
|
403 |
-
|
404 |
msgid "Remove this product"
|
405 |
msgstr "Rimuovi questo prodotto"
|
406 |
|
407 |
-
|
408 |
-
|
409 |
msgid "Out of Stock"
|
410 |
msgstr "Non disponibile"
|
411 |
|
412 |
-
|
413 |
-
|
414 |
msgid "In Stock"
|
415 |
msgstr "Disponibile"
|
416 |
|
417 |
-
#:
|
418 |
-
|
419 |
-
|
420 |
-
msgstr "Colore di sfondo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
|
421 |
-
|
422 |
-
#: class.yith-wcwl-init.php:465
|
423 |
-
#@ yit
|
424 |
-
msgid "\"Add to Wishlist\" button text (hover)"
|
425 |
-
msgstr "Colore testo per \"Aggiungi alla lista dei desideri\" pulsante (hover)"
|
426 |
|
427 |
-
#:
|
428 |
-
|
429 |
-
|
430 |
-
msgstr "Colore bordo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
|
431 |
|
432 |
-
#:
|
433 |
-
|
434 |
-
|
435 |
-
msgstr "Colore di sfondo per \"Aggiungi al carrello\" pulsante (hover)"
|
436 |
|
437 |
-
#:
|
438 |
-
|
439 |
-
|
440 |
-
msgstr "Colore testo per \"Aggiungi al carrello\" pulsante (hover)"
|
441 |
|
442 |
-
#:
|
443 |
-
|
444 |
-
|
445 |
-
msgstr "Colore bordo per \"Aggiungi al carrello\" pulsante (hover)"
|
446 |
|
447 |
-
#:
|
448 |
-
|
449 |
-
msgid "Share on Google+"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#:
|
453 |
-
|
454 |
-
msgctxt "page_slug"
|
455 |
-
msgid "wishlist"
|
456 |
msgstr ""
|
457 |
|
458 |
-
|
459 |
-
|
460 |
-
#@ yit
|
461 |
-
msgid "YITH WooCommerce Wishlist"
|
462 |
-
msgstr "YITH WooCommerce Wishlist"
|
463 |
-
|
464 |
-
#. translators: plugin header field 'PluginURI'
|
465 |
-
#. translators: plugin header field 'AuthorURI'
|
466 |
-
#: init.php:0
|
467 |
-
#@ yit
|
468 |
-
msgid "http://yithemes.com/"
|
469 |
msgstr ""
|
470 |
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
msgid "YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce."
|
475 |
-
msgstr "YITH WooCommerce Wishlist ti permette di aggiungere le funzionalità di una \\\"Lista dei desider\\\" al tuo ecommerce."
|
476 |
|
477 |
-
|
478 |
-
|
479 |
-
#@ yit
|
480 |
-
msgid "Your Inspiration Themes"
|
481 |
msgstr ""
|
482 |
|
483 |
-
|
484 |
-
|
485 |
-
#@ yit
|
486 |
-
msgid "1.0.0"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#:
|
490 |
-
|
491 |
-
|
492 |
-
msgstr "Impostazioni"
|
493 |
|
494 |
-
#:
|
495 |
-
|
496 |
-
|
497 |
-
msgstr "Docs"
|
498 |
|
499 |
-
#:
|
500 |
-
|
501 |
-
|
502 |
-
msgid "Enable all plugin features. <strong>Be sure that the wishlist page is selected in WooCommerce > Settings > Pages.</strong> Also, please read the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
503 |
-
msgstr "Abilita le caratteristiche del plugin. <strong>Accertati che la pagina wishlist sia selezionata su Woocommerce > Impostazioni > Pagine</strong>. Inoltre, leggi la <a href=\"%s\" target=\"_blank\">documentazione</a> del plugin."
|
504 |
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WooCommerce Wishlist v1.0.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-09-04 16:33+0100\n"
|
6 |
+
"PO-Revision-Date: 2013-09-04 16:33+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"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: Poedit 1.5.5\n"
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
+
"_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"
|
17 |
"X-Poedit-Basepath: ./\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
|
|
20 |
|
21 |
+
# @ yit
|
22 |
+
#: ../class.yith-wcwl-init.php:105 ../class.yith-wcwl-install.php:137
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "Wishlist"
|
24 |
msgstr "Lista dei desideri"
|
25 |
|
26 |
+
# @ yit
|
27 |
+
#: ../class.yith-wcwl-init.php:335
|
28 |
msgid "Cannot add to the cart as product is Out of Stock!"
|
29 |
+
msgstr ""
|
30 |
+
"Impossibile aggiungere il prodotto nel carrello perché non é disponbile!"
|
31 |
|
32 |
+
# @ yit
|
33 |
+
#: ../class.yith-wcwl-init.php:364
|
34 |
msgid "Wishlist Page"
|
35 |
msgstr "Lista dei desideri"
|
36 |
|
37 |
+
# @ yit
|
38 |
+
#: ../class.yith-wcwl-init.php:365
|
39 |
msgid "Page contents: [yith_wcwl_wishlist]"
|
40 |
msgstr "Contenuto della pagina: [yith_wcwl_wishlist]"
|
41 |
|
42 |
+
# @ yit
|
43 |
+
#: ../class.yith-wcwl-init.php:408 ../class.yith-wcwl-init.php:783
|
|
|
44 |
msgid "General Settings"
|
45 |
msgstr "Impostazioni"
|
46 |
|
47 |
+
# @ yit
|
48 |
+
#: ../class.yith-wcwl-init.php:409 ../class.yith-wcwl-init.php:885
|
|
|
49 |
msgid "Styles"
|
50 |
msgstr "Stili"
|
51 |
|
52 |
+
# @ yit
|
53 |
+
#: ../class.yith-wcwl-init.php:410 ../class.yith-wcwl-init.php:948
|
|
|
54 |
msgid "Socials & Share"
|
55 |
msgstr "Social & Condivisione"
|
56 |
|
57 |
+
# @ yit
|
58 |
+
#: ../class.yith-wcwl-init.php:430
|
59 |
msgid "Colors"
|
60 |
msgstr "Colori"
|
61 |
|
62 |
+
# @ yit
|
63 |
+
#: ../class.yith-wcwl-init.php:457
|
64 |
msgid "\"Add to Wishlist\" button background"
|
65 |
msgstr "Sfondo del bottone \"Aggiungi alla lista dei desideri\""
|
66 |
|
67 |
+
# @ yit
|
68 |
+
#: ../class.yith-wcwl-init.php:458
|
69 |
msgid "\"Add to Wishlist\" button text"
|
70 |
msgstr "Testo del bottone \"Aggiungi alla lista dei desideri\""
|
71 |
|
72 |
+
# @ yit
|
73 |
+
#: ../class.yith-wcwl-init.php:459
|
74 |
msgid "\"Add to Wishlist\" button border"
|
75 |
msgstr "Bordo del bottone \"Aggiungi alla lista dei desideri\""
|
76 |
|
77 |
+
# @ yit
|
78 |
+
#: ../class.yith-wcwl-init.php:464
|
79 |
+
msgid "\"Add to Wishlist\" button background (hover)"
|
80 |
+
msgstr ""
|
81 |
+
"Colore di sfondo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
|
82 |
+
|
83 |
+
# @ yit
|
84 |
+
#: ../class.yith-wcwl-init.php:465
|
85 |
+
msgid "\"Add to Wishlist\" button text (hover)"
|
86 |
+
msgstr "Colore testo per \"Aggiungi alla lista dei desideri\" pulsante (hover)"
|
87 |
+
|
88 |
+
# @ yit
|
89 |
+
#: ../class.yith-wcwl-init.php:466
|
90 |
+
msgid "\"Add to Wishlist\" button border (hover)"
|
91 |
+
msgstr "Colore bordo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
|
92 |
+
|
93 |
+
# @ yit
|
94 |
+
#: ../class.yith-wcwl-init.php:470
|
95 |
msgid "\"Add to Cart\" button background"
|
96 |
msgstr "Sfondo del bottone \"Aggiungi al carrello\""
|
97 |
|
98 |
+
# @ yit
|
99 |
+
#: ../class.yith-wcwl-init.php:471
|
100 |
msgid "\"Add to Cart\" button text"
|
101 |
msgstr "Testo del bottone \"Aggiungi al carrello\""
|
102 |
|
103 |
+
# @ yit
|
104 |
+
#: ../class.yith-wcwl-init.php:472
|
105 |
msgid "\"Add to Cart\" button border"
|
106 |
msgstr "Bordo del bottone \"Aggiungi al carrello\""
|
107 |
|
108 |
+
# @ yit
|
109 |
+
#: ../class.yith-wcwl-init.php:477
|
110 |
+
msgid "\"Add to Cart\" button background (hover)"
|
111 |
+
msgstr "Colore di sfondo per \"Aggiungi al carrello\" pulsante (hover)"
|
112 |
+
|
113 |
+
# @ yit
|
114 |
+
#: ../class.yith-wcwl-init.php:478
|
115 |
+
msgid "\"Add to Cart\" button text (hover)"
|
116 |
+
msgstr "Colore testo per \"Aggiungi al carrello\" pulsante (hover)"
|
117 |
+
|
118 |
+
# @ yit
|
119 |
+
#: ../class.yith-wcwl-init.php:479
|
120 |
+
msgid "\"Add to Cart\" button border (hover)"
|
121 |
+
msgstr "Colore bordo per \"Aggiungi al carrello\" pulsante (hover)"
|
122 |
+
|
123 |
+
# @ yit
|
124 |
+
#: ../class.yith-wcwl-init.php:483
|
125 |
msgid "Wishlist table background"
|
126 |
msgstr "Sfondo della tabella lista dei desideri"
|
127 |
|
128 |
+
# @ yit
|
129 |
+
#: ../class.yith-wcwl-init.php:484
|
130 |
msgid "Wishlist table text"
|
131 |
msgstr "Testo della tabella lista dei desideri"
|
132 |
|
133 |
+
# @ yit
|
134 |
+
#: ../class.yith-wcwl-init.php:485
|
135 |
msgid "Wishlist table border"
|
136 |
msgstr "Bordo della tabella lista dei desideri"
|
137 |
|
138 |
+
# @ yit
|
139 |
+
#: ../class.yith-wcwl-init.php:535
|
140 |
+
msgid "Settings"
|
141 |
+
msgstr "Impostazioni"
|
142 |
+
|
143 |
+
# @ yit
|
144 |
+
#: ../class.yith-wcwl-init.php:536
|
145 |
+
msgid "Docs"
|
146 |
+
msgstr "Docs"
|
147 |
+
|
148 |
+
# @ yit
|
149 |
+
#: ../class.yith-wcwl-init.php:786
|
150 |
msgid "Enable YITH Wishlist"
|
151 |
msgstr "Abilita YITH WooCommerce Wishlist"
|
152 |
|
153 |
+
# @ yit
|
154 |
+
#: ../class.yith-wcwl-init.php:787
|
155 |
+
#, php-format
|
156 |
+
msgid ""
|
157 |
+
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
158 |
+
"selected in WooCommerce > Settings > Pages.</strong> Also, please read "
|
159 |
+
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
160 |
+
msgstr ""
|
161 |
+
"Abilita le caratteristiche del plugin. <strong>Accertati che la pagina "
|
162 |
+
"wishlist sia selezionata su Woocommerce > Impostazioni > Pagine</"
|
163 |
+
"strong>. Inoltre, leggi la <a href=\"%s\" target=\"_blank\">documentazione</"
|
164 |
+
"a> del plugin."
|
165 |
+
|
166 |
+
# @ yit
|
167 |
+
#: ../class.yith-wcwl-init.php:794
|
168 |
msgid "Use cookies"
|
169 |
msgstr "Utilizza cookie"
|
170 |
|
171 |
+
# @ yit
|
172 |
+
#: ../class.yith-wcwl-init.php:795
|
173 |
+
msgid ""
|
174 |
+
"Use cookies instead of sessions. With this feature, the wishlist will be "
|
175 |
+
"available for each not logged user for 30 days. Use the filter "
|
176 |
+
"yith_wcwl_cookie_expiration_time to change the expiration time ( needs "
|
177 |
+
"timestamp )."
|
178 |
+
msgstr ""
|
179 |
+
"Utilizza i cookie invece delle sessioni. Con questa funzionalitá, la "
|
180 |
+
"wishlist sará disponibile per ogni utente non loggato per un massimo di 30 "
|
181 |
+
"giorni. Utilizza il filtro yith_wcwl_cookie_expiration_time per cambiare la "
|
182 |
+
"durata del cookie ( in timestamp )"
|
183 |
|
184 |
+
# @ yit
|
185 |
+
#: ../class.yith-wcwl-init.php:802
|
186 |
msgid "Wishlist title"
|
187 |
msgstr "Titolo della tabella lista dei desideri"
|
188 |
|
189 |
+
# @ yit
|
190 |
+
#: ../class.yith-wcwl-init.php:804 ../class.yith-wcwl-init.php:805
|
191 |
+
#: ../class.yith-wcwl-init.php:981 ../class.yith-wcwl-init.php:982
|
|
|
192 |
#, php-format
|
|
|
193 |
msgid "My wishlist on %s"
|
194 |
msgstr "La mia lista dei desideri su %s"
|
195 |
|
196 |
+
# @ yit
|
197 |
+
#: ../class.yith-wcwl-init.php:810
|
198 |
msgid "Position"
|
199 |
msgstr "Posizione"
|
200 |
|
201 |
+
# @ yit
|
202 |
+
#: ../class.yith-wcwl-init.php:811
|
203 |
+
msgid ""
|
204 |
+
"On variable products you can add it only After \"Add to Cart\" or use the "
|
205 |
+
"shortcode [yith_wcwl_add_to_wishlist]."
|
206 |
+
msgstr ""
|
207 |
+
"Per i prodotti variabili puoi utilizzare soltanto Dopo \"Aggiungi al Carrello"
|
208 |
+
"\" o utilizza lo shortcode [yith_wcwl_add_to_wishlist]."
|
209 |
|
210 |
+
# @ yit
|
211 |
+
#: ../class.yith-wcwl-init.php:817
|
212 |
msgid "After \"Add to cart\""
|
213 |
msgstr "Dopo \"Aggiungi al Carrello\""
|
214 |
|
215 |
+
# @ yit
|
216 |
+
#: ../class.yith-wcwl-init.php:818
|
217 |
msgid "After thumbnails"
|
218 |
msgstr "Dopo le thumbnail"
|
219 |
|
220 |
+
# @ yit
|
221 |
+
#: ../class.yith-wcwl-init.php:819
|
222 |
msgid "After summary"
|
223 |
msgstr "Dopo la descrizione"
|
224 |
|
225 |
+
# @ yit
|
226 |
+
#: ../class.yith-wcwl-init.php:820
|
227 |
msgid "Use shortcode"
|
228 |
msgstr "Utilizza lo shortcode"
|
229 |
|
230 |
+
# @ yit
|
231 |
+
#: ../class.yith-wcwl-init.php:825
|
232 |
msgid "Redirect to cart"
|
233 |
msgstr "Reindirizza al carrello"
|
234 |
|
235 |
+
# @ yit
|
236 |
+
#: ../class.yith-wcwl-init.php:826
|
237 |
+
msgid ""
|
238 |
+
"Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
|
239 |
+
"page."
|
240 |
+
msgstr ""
|
241 |
+
"Reindirizza al carrello se il bottone \"Aggiungi al carrello\" viene "
|
242 |
+
"cliccano nella lista dei desideri"
|
243 |
|
244 |
+
# @ yit
|
245 |
+
#: ../class.yith-wcwl-init.php:833
|
246 |
msgid "Remove if added to the cart"
|
247 |
msgstr "Rimuovi se aggiunto al carrello"
|
248 |
|
249 |
+
# @ yit
|
250 |
+
#: ../class.yith-wcwl-init.php:834
|
251 |
msgid "Remove the product from the wishlist if is been added to the cart."
|
252 |
+
msgstr ""
|
253 |
+
"Rimuove il prodotto dalla lista dei desideri quando questo viene aggiunto al "
|
254 |
+
"carrello."
|
255 |
|
256 |
+
# @ yit
|
257 |
+
#: ../class.yith-wcwl-init.php:841
|
258 |
msgid "\"Add to Wishlist\" text"
|
259 |
msgstr "Testo del bottone \"Aggiungi alla lista dei desideri\""
|
260 |
|
261 |
+
# @ yit
|
262 |
+
#: ../class.yith-wcwl-init.php:843 ../class.yith-wcwl-init.php:844
|
|
|
263 |
msgid "Add to Wishlist"
|
264 |
msgstr "Aggiungi alla lista dei desideri"
|
265 |
|
266 |
+
# @ yit
|
267 |
+
#: ../class.yith-wcwl-init.php:849
|
268 |
msgid "\"Add to Cart\" text"
|
269 |
msgstr "Testo del bottone \"Aggiungi al carrello\""
|
270 |
|
271 |
+
# @ yit
|
272 |
+
#: ../class.yith-wcwl-init.php:851 ../class.yith-wcwl-init.php:852
|
|
|
273 |
msgid "Add to Cart"
|
274 |
msgstr "Aggiungi al Carrello"
|
275 |
|
276 |
+
# @ yit
|
277 |
+
#: ../class.yith-wcwl-init.php:857
|
278 |
+
#, fuzzy
|
279 |
+
msgid "Show Unit price"
|
280 |
+
msgstr "Prezzo Unitario"
|
281 |
+
|
282 |
+
# @ yit
|
283 |
+
#: ../class.yith-wcwl-init.php:865
|
284 |
+
#, fuzzy
|
285 |
+
msgid "Show \"Add to Cart\" button"
|
286 |
+
msgstr "Testo del bottone \"Aggiungi al carrello\""
|
287 |
+
|
288 |
+
# @ yit
|
289 |
+
#: ../class.yith-wcwl-init.php:873
|
290 |
+
#, fuzzy
|
291 |
+
msgid "Show Stock status"
|
292 |
+
msgstr "Disponibilitá"
|
293 |
+
|
294 |
+
# @ yit
|
295 |
+
#: ../class.yith-wcwl-init.php:888
|
296 |
msgid "Use buttons"
|
297 |
msgstr "Usa bottoni"
|
298 |
|
299 |
+
# @ yit
|
300 |
+
#: ../class.yith-wcwl-init.php:889
|
301 |
msgid "Use buttons instead of a simple anchors."
|
302 |
msgstr "Utilizza bottoni al posto di semplici ancore testuali."
|
303 |
|
304 |
+
# @ yit
|
305 |
+
#: ../class.yith-wcwl-init.php:896
|
306 |
msgid "Custom CSS"
|
307 |
msgstr "CSS personalizzato"
|
308 |
|
309 |
+
# @ yit
|
310 |
+
#: ../class.yith-wcwl-init.php:904
|
311 |
msgid "Use theme style"
|
312 |
msgstr "Usa stile del tema"
|
313 |
|
314 |
+
# @ yit
|
315 |
+
#: ../class.yith-wcwl-init.php:905
|
316 |
msgid "Use the theme style."
|
317 |
msgstr "Usa lo stile del tema."
|
318 |
|
319 |
+
# @ yit
|
320 |
+
#: ../class.yith-wcwl-init.php:912
|
321 |
msgid "Buttons rounded corners"
|
322 |
msgstr "Bottoni con bordi arrotondati"
|
323 |
|
324 |
+
# @ yit
|
325 |
+
#: ../class.yith-wcwl-init.php:913
|
326 |
msgid "Make buttons corner rounded"
|
327 |
msgstr "Applica i bordi arrotondati ai bottoni"
|
328 |
|
329 |
+
# @ yit
|
330 |
+
#: ../class.yith-wcwl-init.php:920
|
331 |
msgid "\"Add to Wishlist\" icon"
|
332 |
msgstr "Icona \"Aggiungi alla lista dei desideri\""
|
333 |
|
334 |
+
# @ yit
|
335 |
+
#: ../class.yith-wcwl-init.php:921
|
336 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
337 |
msgstr "Aggiunge un'icona al bottone \"Aggiungi alla lista dei desideri\""
|
338 |
|
339 |
+
# @ yit
|
340 |
+
#: ../class.yith-wcwl-init.php:932
|
341 |
msgid "\"Add to Cart\" icon"
|
342 |
msgstr "Icona \"Aggiungi al carrello\""
|
343 |
|
344 |
+
# @ yit
|
345 |
+
#: ../class.yith-wcwl-init.php:933
|
346 |
msgid "Add an icon to the \"Add to Cart\" button"
|
347 |
msgstr "Aggiunge un'icona al bottone \"Aggiungi al carrello\""
|
348 |
|
349 |
+
# @ yit
|
350 |
+
#: ../class.yith-wcwl-init.php:951
|
351 |
msgid "Share on Facebook"
|
352 |
msgstr "Condivi su Facebook"
|
353 |
|
354 |
+
# @ yit
|
355 |
+
#: ../class.yith-wcwl-init.php:958
|
356 |
msgid "Tweet on Twitter"
|
357 |
msgstr "Condividi su Twitter"
|
358 |
|
359 |
+
# @ yit
|
360 |
+
#: ../class.yith-wcwl-init.php:965
|
361 |
msgid "Pin on Pinterest"
|
362 |
msgstr "Pin su Pinterest"
|
363 |
|
364 |
+
# @ yit
|
365 |
+
#: ../class.yith-wcwl-init.php:972
|
366 |
+
msgid "Share on Google+"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
# @ yit
|
370 |
+
#: ../class.yith-wcwl-init.php:979
|
371 |
msgid "Socials title"
|
372 |
msgstr "Titolo dei social"
|
373 |
|
374 |
+
# @ yit
|
375 |
+
#: ../class.yith-wcwl-init.php:987
|
376 |
msgid "Socials text"
|
377 |
msgstr "Testo dei social"
|
378 |
|
379 |
+
# @ yit
|
380 |
+
#: ../class.yith-wcwl-init.php:988
|
381 |
+
msgid ""
|
382 |
+
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
383 |
+
"strong> where you want the URL of your wishlist to appear."
|
384 |
+
msgstr ""
|
385 |
+
"Sará utilizzato da Facebook, Twitter e Pinterest. Utilizza <strong>"
|
386 |
+
"%wishlist_url%</strong> dove vuoi che appaia l'URL della litsa dei desideri."
|
387 |
|
388 |
+
# @ yit
|
389 |
+
#: ../class.yith-wcwl-init.php:996
|
390 |
msgid "Socials image URL"
|
391 |
msgstr "URL immagine dei social"
|
392 |
|
393 |
+
# @ yit
|
394 |
+
#: ../class.yith-wcwl-install.php:136
|
395 |
+
msgctxt "page_slug"
|
396 |
+
msgid "wishlist"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
# @ yit
|
400 |
+
#: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
|
401 |
+
#: ../yith-wcwl-ajax.php:47
|
402 |
msgid "Product added!"
|
403 |
msgstr "Prodotto aggiunto!"
|
404 |
|
405 |
+
# @ yit
|
406 |
+
#: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
|
|
|
407 |
msgid "Browse Wishlist"
|
408 |
msgstr "Naviga la lista dei desideri"
|
409 |
|
410 |
+
# @ yit
|
411 |
+
#: ../class.yith-wcwl-ui.php:65
|
412 |
msgid "The product is already in the wishlist!"
|
413 |
msgstr "Il prodotto é giá nella lista dei desideri!"
|
414 |
|
415 |
+
# @ yit
|
416 |
+
#: ../class.yith-wcwl-ui.php:93
|
417 |
msgid "Select options"
|
418 |
msgstr "Seleziona opzioni"
|
419 |
|
420 |
+
# @ yit
|
421 |
+
#: ../class.yith-wcwl-ui.php:136
|
422 |
msgid "Share on:"
|
423 |
msgstr "Condividi su:"
|
424 |
|
425 |
+
# @ yit
|
426 |
+
#: ../class.yith-wcwl-ui.php:140
|
427 |
msgid "Facebook"
|
428 |
msgstr "Facebook"
|
429 |
|
430 |
+
# @ yit
|
431 |
+
#: ../class.yith-wcwl-ui.php:143
|
432 |
msgid "Twitter"
|
433 |
msgstr "Twitter"
|
434 |
|
435 |
+
# @ yit
|
436 |
+
#: ../class.yith-wcwl.php:140
|
437 |
msgid "Error occurred while adding product to wishlist."
|
438 |
msgstr "Errore durante l'aggiunta del prodotto alla lista dei desideri."
|
439 |
|
440 |
+
# @ yit
|
441 |
+
#: ../class.yith-wcwl.php:162
|
442 |
msgid "Error occurred while removing product from wishlist"
|
443 |
msgstr "Errore durante la rimozione del prodotto dalla lista dei desideri"
|
444 |
|
445 |
+
# @ yit
|
446 |
+
#: ../class.yith-wcwl.php:353 ../yith-wcwl-ajax.php:49
|
447 |
+
msgid "Product already in the wishlist."
|
448 |
+
msgstr "Il prodotto é giá nella lista dei desideri."
|
449 |
+
|
450 |
+
# @ yit
|
451 |
+
#: ../class.yith-wcwl.php:370 ../yith-wcwl-ajax.php:30
|
452 |
msgid "Product successfully removed."
|
453 |
msgstr "Prodotto rimosso con successo."
|
454 |
|
455 |
+
# @ yit
|
456 |
+
#: ../class.yith-wcwl.php:373 ../yith-wcwl-ajax.php:33
|
|
|
457 |
msgid "Error. Unable to remove the product from the wishlist."
|
458 |
msgstr "Errore. Impossibile rimuovere il prodotto dalla lista dei desideri."
|
459 |
|
460 |
+
# @ yit
|
461 |
+
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
462 |
+
#: ../templates/wishlist.php:145
|
|
|
463 |
msgid "No products were added to the wishlist"
|
464 |
msgstr "Nessun prodotto nella lista dei desideri"
|
465 |
|
466 |
+
# @ yit
|
467 |
+
#: ../templates/wishlist.php:75
|
|
|
|
|
|
|
|
|
|
|
|
|
468 |
msgid "Product Name"
|
469 |
msgstr "Nome del Prodotto"
|
470 |
|
471 |
+
# @ yit
|
472 |
+
#: ../templates/wishlist.php:76
|
473 |
msgid "Unit Price"
|
474 |
msgstr "Prezzo Unitario"
|
475 |
|
476 |
+
# @ yit
|
477 |
+
#: ../templates/wishlist.php:77
|
478 |
msgid "Stock Status"
|
479 |
msgstr "Disponibilitá"
|
480 |
|
481 |
+
# @ yit
|
482 |
+
#: ../templates/wishlist.php:99
|
483 |
msgid "Remove this product"
|
484 |
msgstr "Rimuovi questo prodotto"
|
485 |
|
486 |
+
# @ yit
|
487 |
+
#: ../templates/wishlist.php:126
|
488 |
msgid "Out of Stock"
|
489 |
msgstr "Non disponibile"
|
490 |
|
491 |
+
# @ yit
|
492 |
+
#: ../templates/wishlist.php:129
|
493 |
msgid "In Stock"
|
494 |
msgstr "Disponibile"
|
495 |
|
496 |
+
#: ../yit-common/yith-panel.php:406
|
497 |
+
msgid "Select a date"
|
498 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
|
500 |
+
#: ../yit-common/yith-panel.php:407
|
501 |
+
msgid "Hours"
|
502 |
+
msgstr ""
|
|
|
503 |
|
504 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
505 |
+
msgid "Minutes"
|
506 |
+
msgstr ""
|
|
|
507 |
|
508 |
+
#: ../yit-common/yith-panel.php:417
|
509 |
+
msgid "Upload"
|
510 |
+
msgstr ""
|
|
|
511 |
|
512 |
+
#: ../yit-common/yith-panel.php:444
|
513 |
+
msgid "px"
|
514 |
+
msgstr ""
|
|
|
515 |
|
516 |
+
#: ../yit-common/yith-panel.php:445
|
517 |
+
msgid "em"
|
|
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../yit-common/yith-panel.php:446
|
521 |
+
msgid "pt"
|
|
|
|
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../yit-common/yith-panel.php:447
|
525 |
+
msgid "rem"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../yit-common/yith-panel.php:457
|
529 |
+
msgid "Select a font family"
|
530 |
+
msgstr ""
|
|
|
|
|
531 |
|
532 |
+
#: ../yit-common/yith-panel.php:465
|
533 |
+
msgid "Regular"
|
|
|
|
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../yit-common/yith-panel.php:466
|
537 |
+
msgid "Bold"
|
|
|
|
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../yit-common/yith-panel.php:467
|
541 |
+
msgid "Extra bold"
|
542 |
+
msgstr ""
|
|
|
543 |
|
544 |
+
#: ../yit-common/yith-panel.php:468
|
545 |
+
msgid "Italic"
|
546 |
+
msgstr ""
|
|
|
547 |
|
548 |
+
#: ../yit-common/yith-panel.php:469
|
549 |
+
msgid "Italic bold"
|
550 |
+
msgstr ""
|
|
|
|
|
551 |
|
552 |
+
#: ../yit-common/yith-panel.php:481
|
553 |
+
msgid "Click to preview"
|
554 |
+
msgstr ""
|
languages/yit-uk_UA.mo
ADDED
Binary file
|
languages/yit-uk_UA.po
ADDED
@@ -0,0 +1,447 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 16:33+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 16:33+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"
|
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:105 ../class.yith-wcwl-install.php:137
|
18 |
+
msgid "Wishlist"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: ../class.yith-wcwl-init.php:335
|
22 |
+
msgid "Cannot add to the cart as product is Out of Stock!"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: ../class.yith-wcwl-init.php:364
|
26 |
+
msgid "Wishlist Page"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: ../class.yith-wcwl-init.php:365
|
30 |
+
msgid "Page contents: [yith_wcwl_wishlist]"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: ../class.yith-wcwl-init.php:408 ../class.yith-wcwl-init.php:783
|
34 |
+
msgid "General Settings"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: ../class.yith-wcwl-init.php:409 ../class.yith-wcwl-init.php:885
|
38 |
+
msgid "Styles"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: ../class.yith-wcwl-init.php:410 ../class.yith-wcwl-init.php:948
|
42 |
+
msgid "Socials & Share"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../class.yith-wcwl-init.php:430
|
46 |
+
msgid "Colors"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../class.yith-wcwl-init.php:457
|
50 |
+
msgid "\"Add to Wishlist\" button background"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ../class.yith-wcwl-init.php:458
|
54 |
+
msgid "\"Add to Wishlist\" button text"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: ../class.yith-wcwl-init.php:459
|
58 |
+
msgid "\"Add to Wishlist\" button border"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: ../class.yith-wcwl-init.php:464
|
62 |
+
msgid "\"Add to Wishlist\" button background (hover)"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: ../class.yith-wcwl-init.php:465
|
66 |
+
msgid "\"Add to Wishlist\" button text (hover)"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../class.yith-wcwl-init.php:466
|
70 |
+
msgid "\"Add to Wishlist\" button border (hover)"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: ../class.yith-wcwl-init.php:470
|
74 |
+
msgid "\"Add to Cart\" button background"
|
75 |
+
msgstr "\"Додати в кошик\" button background"
|
76 |
+
|
77 |
+
#: ../class.yith-wcwl-init.php:471
|
78 |
+
msgid "\"Add to Cart\" button text"
|
79 |
+
msgstr "\"Додати в кошик\" button text"
|
80 |
+
|
81 |
+
#: ../class.yith-wcwl-init.php:472
|
82 |
+
msgid "\"Add to Cart\" button border"
|
83 |
+
msgstr "\"Додати в кошик\" button border"
|
84 |
+
|
85 |
+
#: ../class.yith-wcwl-init.php:477
|
86 |
+
msgid "\"Add to Cart\" button background (hover)"
|
87 |
+
msgstr "\"Додати в кошик\" button background (hover)"
|
88 |
+
|
89 |
+
#: ../class.yith-wcwl-init.php:478
|
90 |
+
msgid "\"Add to Cart\" button text (hover)"
|
91 |
+
msgstr "\"Додати в кошик\" button text (hover)"
|
92 |
+
|
93 |
+
#: ../class.yith-wcwl-init.php:479
|
94 |
+
msgid "\"Add to Cart\" button border (hover)"
|
95 |
+
msgstr "\"Додати в кошик\" button border (hover)"
|
96 |
+
|
97 |
+
#: ../class.yith-wcwl-init.php:483
|
98 |
+
msgid "Wishlist table background"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: ../class.yith-wcwl-init.php:484
|
102 |
+
msgid "Wishlist table text"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: ../class.yith-wcwl-init.php:485
|
106 |
+
msgid "Wishlist table border"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: ../class.yith-wcwl-init.php:535
|
110 |
+
msgid "Settings"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: ../class.yith-wcwl-init.php:536
|
114 |
+
msgid "Docs"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: ../class.yith-wcwl-init.php:786
|
118 |
+
msgid "Enable YITH Wishlist"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: ../class.yith-wcwl-init.php:787
|
122 |
+
#, php-format
|
123 |
+
msgid ""
|
124 |
+
"Enable all plugin features. <strong>Be sure that the wishlist page is "
|
125 |
+
"selected in WooCommerce > Settings > Pages.</strong> Also, please read "
|
126 |
+
"the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: ../class.yith-wcwl-init.php:794
|
130 |
+
msgid "Use cookies"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: ../class.yith-wcwl-init.php:795
|
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 "
|
137 |
+
"yith_wcwl_cookie_expiration_time to change the expiration time ( needs "
|
138 |
+
"timestamp )."
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: ../class.yith-wcwl-init.php:802
|
142 |
+
msgid "Wishlist title"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: ../class.yith-wcwl-init.php:804 ../class.yith-wcwl-init.php:805
|
146 |
+
#: ../class.yith-wcwl-init.php:981 ../class.yith-wcwl-init.php:982
|
147 |
+
#, php-format
|
148 |
+
msgid "My wishlist on %s"
|
149 |
+
msgstr "Мій обраний список в %s"
|
150 |
+
|
151 |
+
#: ../class.yith-wcwl-init.php:810
|
152 |
+
msgid "Position"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: ../class.yith-wcwl-init.php:811
|
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:817
|
162 |
+
msgid "After \"Add to cart\""
|
163 |
+
msgstr "After \"Додати в кошик\""
|
164 |
+
|
165 |
+
#: ../class.yith-wcwl-init.php:818
|
166 |
+
msgid "After thumbnails"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: ../class.yith-wcwl-init.php:819
|
170 |
+
msgid "After summary"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: ../class.yith-wcwl-init.php:820
|
174 |
+
msgid "Use shortcode"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: ../class.yith-wcwl-init.php:825
|
178 |
+
msgid "Redirect to cart"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: ../class.yith-wcwl-init.php:826
|
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:833
|
188 |
+
msgid "Remove if added to the cart"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: ../class.yith-wcwl-init.php:834
|
192 |
+
msgid "Remove the product from the wishlist if is been added to the cart."
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: ../class.yith-wcwl-init.php:841
|
196 |
+
msgid "\"Add to Wishlist\" text"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../class.yith-wcwl-init.php:843 ../class.yith-wcwl-init.php:844
|
200 |
+
msgid "Add to Wishlist"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: ../class.yith-wcwl-init.php:849
|
204 |
+
msgid "\"Add to Cart\" text"
|
205 |
+
msgstr "\"Додати в кошик\" text"
|
206 |
+
|
207 |
+
#: ../class.yith-wcwl-init.php:851 ../class.yith-wcwl-init.php:852
|
208 |
+
msgid "Add to Cart"
|
209 |
+
msgstr "Додати в кошик"
|
210 |
+
|
211 |
+
#: ../class.yith-wcwl-init.php:857
|
212 |
+
#, fuzzy
|
213 |
+
msgid "Show Unit price"
|
214 |
+
msgstr "Ціна"
|
215 |
+
|
216 |
+
#: ../class.yith-wcwl-init.php:865
|
217 |
+
#, fuzzy
|
218 |
+
msgid "Show \"Add to Cart\" button"
|
219 |
+
msgstr "\"Додати в кошик\" button text"
|
220 |
+
|
221 |
+
#: ../class.yith-wcwl-init.php:873
|
222 |
+
#, fuzzy
|
223 |
+
msgid "Show Stock status"
|
224 |
+
msgstr "Наявність на складі"
|
225 |
+
|
226 |
+
#: ../class.yith-wcwl-init.php:888
|
227 |
+
msgid "Use buttons"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: ../class.yith-wcwl-init.php:889
|
231 |
+
msgid "Use buttons instead of a simple anchors."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: ../class.yith-wcwl-init.php:896
|
235 |
+
msgid "Custom CSS"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: ../class.yith-wcwl-init.php:904
|
239 |
+
msgid "Use theme style"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: ../class.yith-wcwl-init.php:905
|
243 |
+
msgid "Use the theme style."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: ../class.yith-wcwl-init.php:912
|
247 |
+
msgid "Buttons rounded corners"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../class.yith-wcwl-init.php:913
|
251 |
+
msgid "Make buttons corner rounded"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: ../class.yith-wcwl-init.php:920
|
255 |
+
msgid "\"Add to Wishlist\" icon"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: ../class.yith-wcwl-init.php:921
|
259 |
+
msgid "Add an icon to the \"Add to Wishlist\" button"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: ../class.yith-wcwl-init.php:932
|
263 |
+
msgid "\"Add to Cart\" icon"
|
264 |
+
msgstr "\"Додати в кошик\" icon"
|
265 |
+
|
266 |
+
#: ../class.yith-wcwl-init.php:933
|
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:951
|
271 |
+
msgid "Share on Facebook"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: ../class.yith-wcwl-init.php:958
|
275 |
+
msgid "Tweet on Twitter"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: ../class.yith-wcwl-init.php:965
|
279 |
+
msgid "Pin on Pinterest"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: ../class.yith-wcwl-init.php:972
|
283 |
+
msgid "Share on Google+"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: ../class.yith-wcwl-init.php:979
|
287 |
+
msgid "Socials title"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: ../class.yith-wcwl-init.php:987
|
291 |
+
msgid "Socials text"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: ../class.yith-wcwl-init.php:988
|
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:996
|
301 |
+
msgid "Socials image URL"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: ../class.yith-wcwl-install.php:136
|
305 |
+
msgid "wishlist"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
|
309 |
+
#: ../yith-wcwl-ajax.php:47
|
310 |
+
msgid "Product added!"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
|
314 |
+
msgid "Browse Wishlist"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: ../class.yith-wcwl-ui.php:65
|
318 |
+
msgid "The product is already in the wishlist!"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: ../class.yith-wcwl-ui.php:93
|
322 |
+
msgid "Select options"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: ../class.yith-wcwl-ui.php:136
|
326 |
+
msgid "Share on:"
|
327 |
+
msgstr "Поширити в:"
|
328 |
+
|
329 |
+
#: ../class.yith-wcwl-ui.php:140
|
330 |
+
msgid "Facebook"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: ../class.yith-wcwl-ui.php:143
|
334 |
+
msgid "Twitter"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: ../class.yith-wcwl.php:140
|
338 |
+
msgid "Error occurred while adding product to wishlist."
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: ../class.yith-wcwl.php:162
|
342 |
+
msgid "Error occurred while removing product from wishlist"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: ../class.yith-wcwl.php:353 ../yith-wcwl-ajax.php:49
|
346 |
+
msgid "Product already in the wishlist."
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: ../class.yith-wcwl.php:370 ../yith-wcwl-ajax.php:30
|
350 |
+
msgid "Product successfully removed."
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: ../class.yith-wcwl.php:373 ../yith-wcwl-ajax.php:33
|
354 |
+
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:145
|
359 |
+
msgid "No products were added to the wishlist"
|
360 |
+
msgstr "Немає доданих продуктів до вибраного"
|
361 |
+
|
362 |
+
#: ../templates/wishlist.php:75
|
363 |
+
msgid "Product Name"
|
364 |
+
msgstr "Назва продукту"
|
365 |
+
|
366 |
+
#: ../templates/wishlist.php:76
|
367 |
+
msgid "Unit Price"
|
368 |
+
msgstr "Ціна"
|
369 |
+
|
370 |
+
#: ../templates/wishlist.php:77
|
371 |
+
msgid "Stock Status"
|
372 |
+
msgstr "Наявність на складі"
|
373 |
+
|
374 |
+
#: ../templates/wishlist.php:99
|
375 |
+
msgid "Remove this product"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: ../templates/wishlist.php:126
|
379 |
+
msgid "Out of Stock"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: ../templates/wishlist.php:129
|
383 |
+
msgid "In Stock"
|
384 |
+
msgstr "в наявності"
|
385 |
+
|
386 |
+
#: ../yit-common/yith-panel.php:406
|
387 |
+
msgid "Select a date"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: ../yit-common/yith-panel.php:407
|
391 |
+
msgid "Hours"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
395 |
+
msgid "Minutes"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: ../yit-common/yith-panel.php:417
|
399 |
+
msgid "Upload"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: ../yit-common/yith-panel.php:444
|
403 |
+
msgid "px"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: ../yit-common/yith-panel.php:445
|
407 |
+
msgid "em"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: ../yit-common/yith-panel.php:446
|
411 |
+
msgid "pt"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: ../yit-common/yith-panel.php:447
|
415 |
+
msgid "rem"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: ../yit-common/yith-panel.php:457
|
419 |
+
msgid "Select a font family"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: ../yit-common/yith-panel.php:465
|
423 |
+
msgid "Regular"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: ../yit-common/yith-panel.php:466
|
427 |
+
msgid "Bold"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: ../yit-common/yith-panel.php:467
|
431 |
+
msgid "Extra bold"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: ../yit-common/yith-panel.php:468
|
435 |
+
msgid "Italic"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: ../yit-common/yith-panel.php:469
|
439 |
+
msgid "Italic bold"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: ../yit-common/yith-panel.php:481
|
443 |
+
msgid "Click to preview"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#~ msgid "View Cart →"
|
447 |
+
#~ msgstr "Подивитись корзину →"
|
languages/yit.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
-
"POT-Creation-Date: 2013-
|
5 |
-
"PO-Revision-Date: 2013-
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,14 +14,6 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../add-to-cart.php:31
|
18 |
-
msgid "View Cart →"
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
#: ../add-to-cart.php:31
|
22 |
-
msgid "Product successfully added to the cart."
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
#: ../class.yith-wcwl-init.php:105 ../class.yith-wcwl-install.php:137
|
26 |
msgid "Wishlist"
|
27 |
msgstr ""
|
@@ -42,11 +34,11 @@ msgstr ""
|
|
42 |
msgid "General Settings"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ../class.yith-wcwl-init.php:409 ../class.yith-wcwl-init.php:
|
46 |
msgid "Styles"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../class.yith-wcwl-init.php:410 ../class.yith-wcwl-init.php:
|
50 |
msgid "Socials & Share"
|
51 |
msgstr ""
|
52 |
|
@@ -151,7 +143,7 @@ msgid "Wishlist title"
|
|
151 |
msgstr ""
|
152 |
|
153 |
#: ../class.yith-wcwl-init.php:804 ../class.yith-wcwl-init.php:805
|
154 |
-
#: ../class.yith-wcwl-init.php:
|
155 |
#, php-format
|
156 |
msgid "My wishlist on %s"
|
157 |
msgstr ""
|
@@ -216,81 +208,93 @@ msgstr ""
|
|
216 |
msgid "Add to Cart"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../class.yith-wcwl-init.php:
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
#: ../class.yith-wcwl-init.php:865
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
msgid "Use buttons instead of a simple anchors."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../class.yith-wcwl-init.php:
|
228 |
msgid "Custom CSS"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../class.yith-wcwl-init.php:
|
232 |
msgid "Use theme style"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../class.yith-wcwl-init.php:
|
236 |
msgid "Use the theme style."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../class.yith-wcwl-init.php:
|
240 |
msgid "Buttons rounded corners"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../class.yith-wcwl-init.php:
|
244 |
msgid "Make buttons corner rounded"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../class.yith-wcwl-init.php:
|
248 |
msgid "\"Add to Wishlist\" icon"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../class.yith-wcwl-init.php:
|
252 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../class.yith-wcwl-init.php:
|
256 |
msgid "\"Add to Cart\" icon"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../class.yith-wcwl-init.php:
|
260 |
msgid "Add an icon to the \"Add to Cart\" button"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../class.yith-wcwl-init.php:
|
264 |
msgid "Share on Facebook"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../class.yith-wcwl-init.php:
|
268 |
msgid "Tweet on Twitter"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../class.yith-wcwl-init.php:
|
272 |
msgid "Pin on Pinterest"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../class.yith-wcwl-init.php:
|
276 |
msgid "Share on Google+"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../class.yith-wcwl-init.php:
|
280 |
msgid "Socials title"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../class.yith-wcwl-init.php:
|
284 |
msgid "Socials text"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../class.yith-wcwl-init.php:
|
288 |
msgid ""
|
289 |
"Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
|
290 |
"strong> where you want the URL of your wishlist to appear."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../class.yith-wcwl-init.php:
|
294 |
msgid "Socials image URL"
|
295 |
msgstr ""
|
296 |
|
@@ -348,7 +352,7 @@ msgid "Error. Unable to remove the product from the wishlist."
|
|
348 |
msgstr ""
|
349 |
|
350 |
#: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
|
351 |
-
#: ../templates/wishlist.php:
|
352 |
msgid "No products were added to the wishlist"
|
353 |
msgstr ""
|
354 |
|
@@ -368,10 +372,70 @@ msgstr ""
|
|
368 |
msgid "Remove this product"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../templates/wishlist.php:
|
372 |
msgid "Out of Stock"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../templates/wishlist.php:
|
376 |
msgid "In Stock"
|
377 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH WCWL\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 16:30+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 16:30+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:105 ../class.yith-wcwl-install.php:137
|
18 |
msgid "Wishlist"
|
19 |
msgstr ""
|
34 |
msgid "General Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-wcwl-init.php:409 ../class.yith-wcwl-init.php:885
|
38 |
msgid "Styles"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../class.yith-wcwl-init.php:410 ../class.yith-wcwl-init.php:948
|
42 |
msgid "Socials & Share"
|
43 |
msgstr ""
|
44 |
|
143 |
msgstr ""
|
144 |
|
145 |
#: ../class.yith-wcwl-init.php:804 ../class.yith-wcwl-init.php:805
|
146 |
+
#: ../class.yith-wcwl-init.php:981 ../class.yith-wcwl-init.php:982
|
147 |
#, php-format
|
148 |
msgid "My wishlist on %s"
|
149 |
msgstr ""
|
208 |
msgid "Add to Cart"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../class.yith-wcwl-init.php:857
|
212 |
+
msgid "Show Unit price"
|
213 |
msgstr ""
|
214 |
|
215 |
#: ../class.yith-wcwl-init.php:865
|
216 |
+
msgid "Show \"Add to Cart\" button"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: ../class.yith-wcwl-init.php:873
|
220 |
+
msgid "Show Stock status"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: ../class.yith-wcwl-init.php:888
|
224 |
+
msgid "Use buttons"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: ../class.yith-wcwl-init.php:889
|
228 |
msgid "Use buttons instead of a simple anchors."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../class.yith-wcwl-init.php:896
|
232 |
msgid "Custom CSS"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../class.yith-wcwl-init.php:904
|
236 |
msgid "Use theme style"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../class.yith-wcwl-init.php:905
|
240 |
msgid "Use the theme style."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../class.yith-wcwl-init.php:912
|
244 |
msgid "Buttons rounded corners"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../class.yith-wcwl-init.php:913
|
248 |
msgid "Make buttons corner rounded"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../class.yith-wcwl-init.php:920
|
252 |
msgid "\"Add to Wishlist\" icon"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../class.yith-wcwl-init.php:921
|
256 |
msgid "Add an icon to the \"Add to Wishlist\" button"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../class.yith-wcwl-init.php:932
|
260 |
msgid "\"Add to Cart\" icon"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../class.yith-wcwl-init.php:933
|
264 |
msgid "Add an icon to the \"Add to Cart\" button"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../class.yith-wcwl-init.php:951
|
268 |
msgid "Share on Facebook"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../class.yith-wcwl-init.php:958
|
272 |
msgid "Tweet on Twitter"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../class.yith-wcwl-init.php:965
|
276 |
msgid "Pin on Pinterest"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../class.yith-wcwl-init.php:972
|
280 |
msgid "Share on Google+"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../class.yith-wcwl-init.php:979
|
284 |
msgid "Socials title"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../class.yith-wcwl-init.php:987
|
288 |
msgid "Socials text"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../class.yith-wcwl-init.php:988
|
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:996
|
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:145
|
356 |
msgid "No products were added to the wishlist"
|
357 |
msgstr ""
|
358 |
|
372 |
msgid "Remove this product"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../templates/wishlist.php:126
|
376 |
msgid "Out of Stock"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../templates/wishlist.php:129
|
380 |
msgid "In Stock"
|
381 |
msgstr ""
|
382 |
+
|
383 |
+
#: ../yit-common/yith-panel.php:406
|
384 |
+
msgid "Select a date"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: ../yit-common/yith-panel.php:407
|
388 |
+
msgid "Hours"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
392 |
+
msgid "Minutes"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: ../yit-common/yith-panel.php:417
|
396 |
+
msgid "Upload"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: ../yit-common/yith-panel.php:444
|
400 |
+
msgid "px"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: ../yit-common/yith-panel.php:445
|
404 |
+
msgid "em"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: ../yit-common/yith-panel.php:446
|
408 |
+
msgid "pt"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: ../yit-common/yith-panel.php:447
|
412 |
+
msgid "rem"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: ../yit-common/yith-panel.php:457
|
416 |
+
msgid "Select a font family"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../yit-common/yith-panel.php:465
|
420 |
+
msgid "Regular"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: ../yit-common/yith-panel.php:466
|
424 |
+
msgid "Bold"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: ../yit-common/yith-panel.php:467
|
428 |
+
msgid "Extra bold"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: ../yit-common/yith-panel.php:468
|
432 |
+
msgid "Italic"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: ../yit-common/yith-panel.php:469
|
436 |
+
msgid "Italic bold"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: ../yit-common/yith-panel.php:481
|
440 |
+
msgid "Click to preview"
|
441 |
+
msgstr ""
|
templates/wishlist.php
CHANGED
@@ -73,9 +73,9 @@ $woocommerce->show_messages() ?>
|
|
73 |
<th class="product-remove"></th>
|
74 |
<th class="product-thumbnail"></th>
|
75 |
<th class="product-name"><span class="nobr"><?php _e( 'Product Name', 'yit' ) ?></span></th>
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
</tr>
|
80 |
</thead>
|
81 |
<tbody>
|
@@ -105,6 +105,7 @@ $woocommerce->show_messages() ?>
|
|
105 |
<td class="product-name">
|
106 |
<a href="<?php echo esc_url( get_permalink( apply_filters( 'woocommerce_in_cart_product', $values['prod_id'] ) ) ) ?>"><?php echo apply_filters( 'woocommerce_in_cartproduct_obj_title', $product_obj->get_title(), $product_obj ) ?></a>
|
107 |
</td>
|
|
|
108 |
<td class="product-price">
|
109 |
<?php
|
110 |
if( get_option( 'woocommerce_display_cart_prices_excluding_tax' ) == 'yes' )
|
@@ -113,6 +114,8 @@ $woocommerce->show_messages() ?>
|
|
113 |
{ echo apply_filters( 'woocommerce_cart_item_price_html', woocommerce_price( $product_obj->get_price() ), $values, '' ); }
|
114 |
?>
|
115 |
</td>
|
|
|
|
|
116 |
<td class="product-stock-status">
|
117 |
<?php
|
118 |
$availability = $product_obj->get_availability();
|
@@ -127,9 +130,12 @@ $woocommerce->show_messages() ?>
|
|
127 |
}
|
128 |
?>
|
129 |
</td>
|
|
|
|
|
130 |
<td class="product-add-to-cart">
|
131 |
<?php echo YITH_WCWL_UI::add_to_cart_button( $values['prod_id'], $availability['class'] ) ?>
|
132 |
</td>
|
|
|
133 |
</tr>
|
134 |
<?php
|
135 |
endif;
|
73 |
<th class="product-remove"></th>
|
74 |
<th class="product-thumbnail"></th>
|
75 |
<th class="product-name"><span class="nobr"><?php _e( 'Product Name', 'yit' ) ?></span></th>
|
76 |
+
<?php if( get_option( 'yith_wcwl_price_show' ) == 'yes' ) : ?><th class="product-price"><span class="nobr"><?php _e( 'Unit Price', 'yit' ) ?></span></th><?php endif ?>
|
77 |
+
<?php if( get_option( 'yith_wcwl_stock_show' ) == 'yes' ) : ?><th><span class="nobr"><?php _e( 'Stock Status', 'yit' ) ?></span></th><?php endif ?>
|
78 |
+
<?php if( get_option( 'yith_wcwl_add_to_cart_show' ) == 'yes' ) : ?><th><span class="nobr"></th><?php endif ?>
|
79 |
</tr>
|
80 |
</thead>
|
81 |
<tbody>
|
105 |
<td class="product-name">
|
106 |
<a href="<?php echo esc_url( get_permalink( apply_filters( 'woocommerce_in_cart_product', $values['prod_id'] ) ) ) ?>"><?php echo apply_filters( 'woocommerce_in_cartproduct_obj_title', $product_obj->get_title(), $product_obj ) ?></a>
|
107 |
</td>
|
108 |
+
<?php if( get_option( 'yith_wcwl_price_show' ) == 'yes' ) : ?>
|
109 |
<td class="product-price">
|
110 |
<?php
|
111 |
if( get_option( 'woocommerce_display_cart_prices_excluding_tax' ) == 'yes' )
|
114 |
{ echo apply_filters( 'woocommerce_cart_item_price_html', woocommerce_price( $product_obj->get_price() ), $values, '' ); }
|
115 |
?>
|
116 |
</td>
|
117 |
+
<?php endif ?>
|
118 |
+
<?php if( get_option( 'yith_wcwl_stock_show' ) == 'yes' ) : ?>
|
119 |
<td class="product-stock-status">
|
120 |
<?php
|
121 |
$availability = $product_obj->get_availability();
|
130 |
}
|
131 |
?>
|
132 |
</td>
|
133 |
+
<?php endif ?>
|
134 |
+
<?php if( get_option( 'yith_wcwl_add_to_cart_show' ) == 'yes' ) : ?>
|
135 |
<td class="product-add-to-cart">
|
136 |
<?php echo YITH_WCWL_UI::add_to_cart_button( $values['prod_id'], $availability['class'] ) ?>
|
137 |
</td>
|
138 |
+
<?php endif ?>
|
139 |
</tr>
|
140 |
<?php
|
141 |
endif;
|