YITH WooCommerce Wishlist - Version 1.1.6

Version Description

  • Updated: Plugin Core Framework
  • Update: Languages file
  • Tweek: WPML Support Improved
Download this release

Release Info

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

Code changes from version 1.1.5 to 1.1.6

README.txt CHANGED
@@ -3,13 +3,13 @@
3
  Contributors: yithemes
4
  Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
5
  Requires at least: 3.5.1
6
- Tested up to: 3.9.1
7
- Stable tag: 1.1.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  YITH WooCommerce Wishlist add all Wishlist features to your website. Needs WooCommerce to work.
12
- WooCommerce 2.1.x compatible.
13
 
14
 
15
  == Description ==
@@ -75,6 +75,12 @@ Yes, you can change the colors of background, text and border or apply a custom
75
 
76
  == Changelog ==
77
 
 
 
 
 
 
 
78
  = 1.1.5 =
79
 
80
  * Added: Share wishlist by email
3
  Contributors: yithemes
4
  Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
5
  Requires at least: 3.5.1
6
+ Tested up to: 4.0
7
+ Stable tag: 1.1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  YITH WooCommerce Wishlist add all Wishlist features to your website. Needs WooCommerce to work.
12
+ WooCommerce 2.2.x compatible.
13
 
14
 
15
  == Description ==
75
 
76
  == Changelog ==
77
 
78
+ = 1.1.6 =
79
+
80
+ * Updated: Plugin Core Framework
81
+ * Update: Languages file
82
+ * Tweek: WPML Support Improved
83
+
84
  = 1.1.5 =
85
 
86
  * Added: Share wishlist by email
class.yith-wcwl-init.php CHANGED
@@ -24,7 +24,7 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
24
  * @var string
25
  * @since 1.0.0
26
  */
27
- public $version = '1.1.5';
28
 
29
  /**
30
  * Plugin database version
24
  * @var string
25
  * @since 1.0.0
26
  */
27
+ public $version = '1.1.6';
28
 
29
  /**
30
  * Plugin database version
class.yith-wcwl-ui.php CHANGED
@@ -47,7 +47,10 @@ public static function popup_message() {
47
  public static function add_to_wishlist_button( $url, $product_type, $exists ) {
48
  global $yith_wcwl, $product;
49
 
50
- $label = apply_filters( 'yith_wcwl_button_label', get_option( 'yith_wcwl_add_to_wishlist_text' ) );
 
 
 
51
  $icon = get_option( 'yith_wcwl_add_to_wishlist_icon' ) != 'none' ? '<i class="' . get_option( 'yith_wcwl_add_to_wishlist_icon' ) . '"></i>' : '';
52
 
53
  $classes = get_option( 'yith_wcwl_use_button' ) == 'yes' ? 'class="add_to_wishlist single_add_to_wishlist button alt"' : 'class="add_to_wishlist"';
@@ -90,7 +93,11 @@ public static function popup_message() {
90
  $product = new WC_Product( $product_id );
91
 
92
  $url = $product->product_type == 'external' ? $yith_wcwl->get_affiliate_product_url( $product_id ) : $yith_wcwl->get_addtocart_url( $product_id );
93
- $label = $product->product_type == 'variable' ? apply_filters( 'variable_add_to_cart_text', __('Select options', 'yit') ) : apply_filters( 'yith_wcwl_add_to_cart_label', get_option( 'yith_wcwl_add_to_cart_text' ) );
 
 
 
 
94
  $icon = get_option( 'yith_wcwl_use_button' ) == 'yes' && get_option( 'yith_wcwl_add_to_cart_icon' ) != 'none' ? '<i class="' . get_option( 'yith_wcwl_add_to_cart_icon' ) . '"></i>' : '';
95
 
96
  $cartlink = '';
@@ -129,7 +136,7 @@ public static function popup_message() {
129
  public static function get_share_links( $url ) {
130
  $normal_url = $url;
131
  $url = urlencode( $url );
132
- $title = urlencode( get_option( 'yith_wcwl_socials_title' ) );
133
  $twitter_summary = str_replace( '%wishlist_url%', '', get_option( 'yith_wcwl_socials_text' ) );
134
  $summary = urlencode( str_replace( '%wishlist_url%', $normal_url, get_option( 'yith_wcwl_socials_text' ) ) );
135
  $imageurl = urlencode( get_option( 'yith_wcwl_socials_image_url' ) );
47
  public static function add_to_wishlist_button( $url, $product_type, $exists ) {
48
  global $yith_wcwl, $product;
49
 
50
+ $label_option = get_option( 'yith_wcwl_add_to_wishlist_text' );
51
+ $localize_label = function_exists( 'icl_translate' ) ? icl_translate( 'Plugins', 'plugin_yit_wishlist_button', $label_option ) : $label_option;
52
+
53
+ $label = apply_filters( 'yith_wcwl_button_label', $localize_label );
54
  $icon = get_option( 'yith_wcwl_add_to_wishlist_icon' ) != 'none' ? '<i class="' . get_option( 'yith_wcwl_add_to_wishlist_icon' ) . '"></i>' : '';
55
 
56
  $classes = get_option( 'yith_wcwl_use_button' ) == 'yes' ? 'class="add_to_wishlist single_add_to_wishlist button alt"' : 'class="add_to_wishlist"';
93
  $product = new WC_Product( $product_id );
94
 
95
  $url = $product->product_type == 'external' ? $yith_wcwl->get_affiliate_product_url( $product_id ) : $yith_wcwl->get_addtocart_url( $product_id );
96
+
97
+ $label_option = get_option( 'yith_wcwl_add_to_cart_text' );
98
+ $localize_label = function_exists( 'icl_translate' ) ? icl_translate( 'Plugins', 'plugin_yit_wishlist_button', $label_option ) : $label_option;
99
+
100
+ $label = $product->product_type == 'variable' ? apply_filters( 'variable_add_to_cart_text', __('Select options', 'yit') ) : apply_filters( 'yith_wcwl_add_to_cart_label', $localize_label );
101
  $icon = get_option( 'yith_wcwl_use_button' ) == 'yes' && get_option( 'yith_wcwl_add_to_cart_icon' ) != 'none' ? '<i class="' . get_option( 'yith_wcwl_add_to_cart_icon' ) . '"></i>' : '';
102
 
103
  $cartlink = '';
136
  public static function get_share_links( $url ) {
137
  $normal_url = $url;
138
  $url = urlencode( $url );
139
+ $title = apply_filters( 'plugin_text', urlencode( get_option( 'yith_wcwl_socials_title' ) ) );
140
  $twitter_summary = str_replace( '%wishlist_url%', '', get_option( 'yith_wcwl_socials_text' ) );
141
  $summary = urlencode( str_replace( '%wishlist_url%', $normal_url, get_option( 'yith_wcwl_socials_text' ) ) );
142
  $imageurl = urlencode( get_option( 'yith_wcwl_socials_image_url' ) );
init.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: YITH WooCommerce Wishlist
4
  * Plugin URI: http://yithemes.com/
5
  * Description: YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce.
6
- * Version: 1.1.5
7
  * Author: Your Inspiration Themes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yit
3
  * Plugin Name: YITH WooCommerce Wishlist
4
  * Plugin URI: http://yithemes.com/
5
  * Description: YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce.
6
+ * Version: 1.1.6
7
  * Author: Your Inspiration Themes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yit
languages/default.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-03-21 17:01+0100\n"
5
- "PO-Revision-Date: 2014-03-21 17:01+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"
@@ -22,103 +22,103 @@ msgstr ""
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:858
26
  msgid "General Settings"
27
  msgstr ""
28
 
29
- #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:964
30
  msgid "Styles"
31
  msgstr ""
32
 
33
- #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1027
34
  msgid "Socials &amp; Share"
35
  msgstr ""
36
 
37
- #: ../class.yith-wcwl-init.php:452
38
  msgid "Colors"
39
  msgstr ""
40
 
41
- #: ../class.yith-wcwl-init.php:482
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr ""
44
 
45
- #: ../class.yith-wcwl-init.php:483
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr ""
48
 
49
- #: ../class.yith-wcwl-init.php:484
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr ""
52
 
53
- #: ../class.yith-wcwl-init.php:490
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr ""
56
 
57
- #: ../class.yith-wcwl-init.php:491
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr ""
60
 
61
- #: ../class.yith-wcwl-init.php:492
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr ""
64
 
65
- #: ../class.yith-wcwl-init.php:497
66
  msgid "\"Add to Cart\" button background"
67
  msgstr ""
68
 
69
- #: ../class.yith-wcwl-init.php:498
70
  msgid "\"Add to Cart\" button text"
71
  msgstr ""
72
 
73
- #: ../class.yith-wcwl-init.php:499
74
  msgid "\"Add to Cart\" button border"
75
  msgstr ""
76
 
77
- #: ../class.yith-wcwl-init.php:505
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr ""
80
 
81
- #: ../class.yith-wcwl-init.php:506
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr ""
84
 
85
- #: ../class.yith-wcwl-init.php:507
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr ""
88
 
89
- #: ../class.yith-wcwl-init.php:512
90
  msgid "Wishlist table background"
91
  msgstr ""
92
 
93
- #: ../class.yith-wcwl-init.php:513
94
  msgid "Wishlist table text"
95
  msgstr ""
96
 
97
- #: ../class.yith-wcwl-init.php:514
98
  msgid "Wishlist table border"
99
  msgstr ""
100
 
101
- #: ../class.yith-wcwl-init.php:574
102
  msgid "Settings"
103
  msgstr ""
104
 
105
- #: ../class.yith-wcwl-init.php:575
106
  msgid "Docs"
107
  msgstr ""
108
 
109
- #: ../class.yith-wcwl-init.php:591
110
  msgid "Wishlist Page"
111
  msgstr ""
112
 
113
- #: ../class.yith-wcwl-init.php:592
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr ""
116
 
117
- #: ../class.yith-wcwl-init.php:861
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
- #: ../class.yith-wcwl-init.php:862
122
  #, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -126,11 +126,11 @@ msgid ""
126
  "\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
- #: ../class.yith-wcwl-init.php:869
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
- #: ../class.yith-wcwl-init.php:870
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
@@ -138,163 +138,167 @@ msgid ""
138
  "timestamp )."
139
  msgstr ""
140
 
141
- #: ../class.yith-wcwl-init.php:877
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
- #: ../class.yith-wcwl-init.php:879 ../class.yith-wcwl-init.php:880
146
- #: ../class.yith-wcwl-init.php:1060 ../class.yith-wcwl-init.php:1061
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr ""
150
 
151
- #: ../class.yith-wcwl-init.php:889
152
  msgid "Position"
153
  msgstr ""
154
 
155
- #: ../class.yith-wcwl-init.php:890
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:896
162
  msgid "After \"Add to cart\""
163
  msgstr ""
164
 
165
- #: ../class.yith-wcwl-init.php:897
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
- #: ../class.yith-wcwl-init.php:898
170
  msgid "After summary"
171
  msgstr ""
172
 
173
- #: ../class.yith-wcwl-init.php:899
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
- #: ../class.yith-wcwl-init.php:904
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
- #: ../class.yith-wcwl-init.php:905
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:912
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
- #: ../class.yith-wcwl-init.php:913
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
- #: ../class.yith-wcwl-init.php:920
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
- #: ../class.yith-wcwl-init.php:922 ../class.yith-wcwl-init.php:923
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
- #: ../class.yith-wcwl-init.php:928
204
  msgid "\"Add to Cart\" text"
205
  msgstr ""
206
 
207
- #: ../class.yith-wcwl-init.php:930 ../class.yith-wcwl-init.php:931
208
  msgid "Add to Cart"
209
  msgstr ""
210
 
211
- #: ../class.yith-wcwl-init.php:936
212
  msgid "Show Unit price"
213
  msgstr ""
214
 
215
- #: ../class.yith-wcwl-init.php:944
216
  msgid "Show \"Add to Cart\" button"
217
  msgstr ""
218
 
219
- #: ../class.yith-wcwl-init.php:952
220
  msgid "Show Stock status"
221
  msgstr ""
222
 
223
- #: ../class.yith-wcwl-init.php:967
224
  msgid "Use buttons"
225
  msgstr ""
226
 
227
- #: ../class.yith-wcwl-init.php:968
228
  msgid "Use buttons instead of a simple anchors."
229
  msgstr ""
230
 
231
- #: ../class.yith-wcwl-init.php:975
232
  msgid "Custom CSS"
233
  msgstr ""
234
 
235
- #: ../class.yith-wcwl-init.php:983
236
  msgid "Use theme style"
237
  msgstr ""
238
 
239
- #: ../class.yith-wcwl-init.php:984
240
  msgid "Use the theme style."
241
  msgstr ""
242
 
243
- #: ../class.yith-wcwl-init.php:991
244
  msgid "Buttons rounded corners"
245
  msgstr ""
246
 
247
- #: ../class.yith-wcwl-init.php:992
248
  msgid "Make buttons corner rounded"
249
  msgstr ""
250
 
251
- #: ../class.yith-wcwl-init.php:999
252
  msgid "\"Add to Wishlist\" icon"
253
  msgstr ""
254
 
255
- #: ../class.yith-wcwl-init.php:1000
256
  msgid "Add an icon to the \"Add to Wishlist\" button"
257
  msgstr ""
258
 
259
- #: ../class.yith-wcwl-init.php:1011
260
  msgid "\"Add to Cart\" icon"
261
  msgstr ""
262
 
263
- #: ../class.yith-wcwl-init.php:1012
264
  msgid "Add an icon to the \"Add to Cart\" button"
265
  msgstr ""
266
 
267
- #: ../class.yith-wcwl-init.php:1030
268
  msgid "Share on Facebook"
269
  msgstr ""
270
 
271
- #: ../class.yith-wcwl-init.php:1037
272
  msgid "Tweet on Twitter"
273
  msgstr ""
274
 
275
- #: ../class.yith-wcwl-init.php:1044
276
  msgid "Pin on Pinterest"
277
  msgstr ""
278
 
279
- #: ../class.yith-wcwl-init.php:1051
280
  msgid "Share on Google+"
281
  msgstr ""
282
 
283
- #: ../class.yith-wcwl-init.php:1058
284
- msgid "Socials title"
285
  msgstr ""
286
 
287
  #: ../class.yith-wcwl-init.php:1066
 
 
 
 
288
  msgid "Socials text"
289
  msgstr ""
290
 
291
- #: ../class.yith-wcwl-init.php:1067
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:1075
298
  msgid "Socials image URL"
299
  msgstr ""
300
 
@@ -302,35 +306,39 @@ msgstr ""
302
  msgid "wishlist"
303
  msgstr ""
304
 
305
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
306
  #: ../yith-wcwl-ajax.php:47
307
  msgid "Product added!"
308
  msgstr ""
309
 
310
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
311
  msgid "Browse Wishlist"
312
  msgstr ""
313
 
314
- #: ../class.yith-wcwl-ui.php:65
315
  msgid "The product is already in the wishlist!"
316
  msgstr ""
317
 
318
- #: ../class.yith-wcwl-ui.php:93
319
  msgid "Select options"
320
  msgstr ""
321
 
322
- #: ../class.yith-wcwl-ui.php:136
323
  msgid "Share on:"
324
  msgstr ""
325
 
326
- #: ../class.yith-wcwl-ui.php:140
327
  msgid "Facebook"
328
  msgstr ""
329
 
330
- #: ../class.yith-wcwl-ui.php:143
331
  msgid "Twitter"
332
  msgstr ""
333
 
 
 
 
 
334
  #: ../class.yith-wcwl.php:140
335
  msgid "Error occurred while adding product to wishlist."
336
  msgstr ""
@@ -352,35 +360,35 @@ msgid "Error. Unable to remove the product from the wishlist."
352
  msgstr ""
353
 
354
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
355
- #: ../templates/wishlist.php:158
356
  msgid "No products were added to the wishlist"
357
  msgstr ""
358
 
359
- #: ../templates/wishlist.php:80
360
  msgid "Product Name"
361
  msgstr ""
362
 
363
- #: ../templates/wishlist.php:81
364
  msgid "Unit Price"
365
  msgstr ""
366
 
367
- #: ../templates/wishlist.php:82
368
  msgid "Stock Status"
369
  msgstr ""
370
 
371
- #: ../templates/wishlist.php:104
372
  msgid "Remove this product"
373
  msgstr ""
374
 
375
- #: ../templates/wishlist.php:124
376
  msgid "Free!"
377
  msgstr ""
378
 
379
- #: ../templates/wishlist.php:137
380
  msgid "Out of Stock"
381
  msgstr ""
382
 
383
- #: ../templates/wishlist.php:140
384
  msgid "In Stock"
385
  msgstr ""
386
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
+ "POT-Creation-Date: 2014-09-16 16:15+0100\n"
5
+ "PO-Revision-Date: 2014-09-16 16:15+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"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
+ #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:859
26
  msgid "General Settings"
27
  msgstr ""
28
 
29
+ #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:965
30
  msgid "Styles"
31
  msgstr ""
32
 
33
+ #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1028
34
  msgid "Socials &amp; Share"
35
  msgstr ""
36
 
37
+ #: ../class.yith-wcwl-init.php:453
38
  msgid "Colors"
39
  msgstr ""
40
 
41
+ #: ../class.yith-wcwl-init.php:483
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr ""
44
 
45
+ #: ../class.yith-wcwl-init.php:484
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr ""
48
 
49
+ #: ../class.yith-wcwl-init.php:485
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr ""
52
 
53
+ #: ../class.yith-wcwl-init.php:491
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr ""
56
 
57
+ #: ../class.yith-wcwl-init.php:492
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr ""
60
 
61
+ #: ../class.yith-wcwl-init.php:493
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr ""
64
 
65
+ #: ../class.yith-wcwl-init.php:498
66
  msgid "\"Add to Cart\" button background"
67
  msgstr ""
68
 
69
+ #: ../class.yith-wcwl-init.php:499
70
  msgid "\"Add to Cart\" button text"
71
  msgstr ""
72
 
73
+ #: ../class.yith-wcwl-init.php:500
74
  msgid "\"Add to Cart\" button border"
75
  msgstr ""
76
 
77
+ #: ../class.yith-wcwl-init.php:506
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr ""
80
 
81
+ #: ../class.yith-wcwl-init.php:507
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr ""
84
 
85
+ #: ../class.yith-wcwl-init.php:508
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr ""
88
 
89
+ #: ../class.yith-wcwl-init.php:513
90
  msgid "Wishlist table background"
91
  msgstr ""
92
 
93
+ #: ../class.yith-wcwl-init.php:514
94
  msgid "Wishlist table text"
95
  msgstr ""
96
 
97
+ #: ../class.yith-wcwl-init.php:515
98
  msgid "Wishlist table border"
99
  msgstr ""
100
 
101
+ #: ../class.yith-wcwl-init.php:575
102
  msgid "Settings"
103
  msgstr ""
104
 
105
+ #: ../class.yith-wcwl-init.php:576
106
  msgid "Docs"
107
  msgstr ""
108
 
109
+ #: ../class.yith-wcwl-init.php:592
110
  msgid "Wishlist Page"
111
  msgstr ""
112
 
113
+ #: ../class.yith-wcwl-init.php:593
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr ""
116
 
117
+ #: ../class.yith-wcwl-init.php:862
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
+ #: ../class.yith-wcwl-init.php:863
122
  #, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
126
  "\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
+ #: ../class.yith-wcwl-init.php:870
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
+ #: ../class.yith-wcwl-init.php:871
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
138
  "timestamp )."
139
  msgstr ""
140
 
141
+ #: ../class.yith-wcwl-init.php:878
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
+ #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
146
+ #: ../class.yith-wcwl-init.php:1068 ../class.yith-wcwl-init.php:1069
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr ""
150
 
151
+ #: ../class.yith-wcwl-init.php:890
152
  msgid "Position"
153
  msgstr ""
154
 
155
+ #: ../class.yith-wcwl-init.php:891
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:897
162
  msgid "After \"Add to cart\""
163
  msgstr ""
164
 
165
+ #: ../class.yith-wcwl-init.php:898
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
+ #: ../class.yith-wcwl-init.php:899
170
  msgid "After summary"
171
  msgstr ""
172
 
173
+ #: ../class.yith-wcwl-init.php:900
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
+ #: ../class.yith-wcwl-init.php:905
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
+ #: ../class.yith-wcwl-init.php:906
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:913
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
+ #: ../class.yith-wcwl-init.php:914
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
+ #: ../class.yith-wcwl-init.php:921
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
+ #: ../class.yith-wcwl-init.php:923 ../class.yith-wcwl-init.php:924
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
+ #: ../class.yith-wcwl-init.php:929
204
  msgid "\"Add to Cart\" text"
205
  msgstr ""
206
 
207
+ #: ../class.yith-wcwl-init.php:931 ../class.yith-wcwl-init.php:932
208
  msgid "Add to Cart"
209
  msgstr ""
210
 
211
+ #: ../class.yith-wcwl-init.php:937
212
  msgid "Show Unit price"
213
  msgstr ""
214
 
215
+ #: ../class.yith-wcwl-init.php:945
216
  msgid "Show \"Add to Cart\" button"
217
  msgstr ""
218
 
219
+ #: ../class.yith-wcwl-init.php:953
220
  msgid "Show Stock status"
221
  msgstr ""
222
 
223
+ #: ../class.yith-wcwl-init.php:968
224
  msgid "Use buttons"
225
  msgstr ""
226
 
227
+ #: ../class.yith-wcwl-init.php:969
228
  msgid "Use buttons instead of a simple anchors."
229
  msgstr ""
230
 
231
+ #: ../class.yith-wcwl-init.php:976
232
  msgid "Custom CSS"
233
  msgstr ""
234
 
235
+ #: ../class.yith-wcwl-init.php:984
236
  msgid "Use theme style"
237
  msgstr ""
238
 
239
+ #: ../class.yith-wcwl-init.php:985
240
  msgid "Use the theme style."
241
  msgstr ""
242
 
243
+ #: ../class.yith-wcwl-init.php:992
244
  msgid "Buttons rounded corners"
245
  msgstr ""
246
 
247
+ #: ../class.yith-wcwl-init.php:993
248
  msgid "Make buttons corner rounded"
249
  msgstr ""
250
 
251
+ #: ../class.yith-wcwl-init.php:1000
252
  msgid "\"Add to Wishlist\" icon"
253
  msgstr ""
254
 
255
+ #: ../class.yith-wcwl-init.php:1001
256
  msgid "Add an icon to the \"Add to Wishlist\" button"
257
  msgstr ""
258
 
259
+ #: ../class.yith-wcwl-init.php:1012
260
  msgid "\"Add to Cart\" icon"
261
  msgstr ""
262
 
263
+ #: ../class.yith-wcwl-init.php:1013
264
  msgid "Add an icon to the \"Add to Cart\" button"
265
  msgstr ""
266
 
267
+ #: ../class.yith-wcwl-init.php:1031
268
  msgid "Share on Facebook"
269
  msgstr ""
270
 
271
+ #: ../class.yith-wcwl-init.php:1038
272
  msgid "Tweet on Twitter"
273
  msgstr ""
274
 
275
+ #: ../class.yith-wcwl-init.php:1045
276
  msgid "Pin on Pinterest"
277
  msgstr ""
278
 
279
+ #: ../class.yith-wcwl-init.php:1052
280
  msgid "Share on Google+"
281
  msgstr ""
282
 
283
+ #: ../class.yith-wcwl-init.php:1059
284
+ msgid "Share by Email"
285
  msgstr ""
286
 
287
  #: ../class.yith-wcwl-init.php:1066
288
+ msgid "Socials title"
289
+ msgstr ""
290
+
291
+ #: ../class.yith-wcwl-init.php:1074
292
  msgid "Socials text"
293
  msgstr ""
294
 
295
+ #: ../class.yith-wcwl-init.php:1075
296
  msgid ""
297
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
298
  "strong> where you want the URL of your wishlist to appear."
299
  msgstr ""
300
 
301
+ #: ../class.yith-wcwl-init.php:1083
302
  msgid "Socials image URL"
303
  msgstr ""
304
 
306
  msgid "wishlist"
307
  msgstr ""
308
 
309
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl.php:351
310
  #: ../yith-wcwl-ajax.php:47
311
  msgid "Product added!"
312
  msgstr ""
313
 
314
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl-ui.php:68
315
  msgid "Browse Wishlist"
316
  msgstr ""
317
 
318
+ #: ../class.yith-wcwl-ui.php:68
319
  msgid "The product is already in the wishlist!"
320
  msgstr ""
321
 
322
+ #: ../class.yith-wcwl-ui.php:100
323
  msgid "Select options"
324
  msgstr ""
325
 
326
+ #: ../class.yith-wcwl-ui.php:145
327
  msgid "Share on:"
328
  msgstr ""
329
 
330
+ #: ../class.yith-wcwl-ui.php:149
331
  msgid "Facebook"
332
  msgstr ""
333
 
334
+ #: ../class.yith-wcwl-ui.php:152
335
  msgid "Twitter"
336
  msgstr ""
337
 
338
+ #: ../class.yith-wcwl-ui.php:161
339
+ msgid "email"
340
+ msgstr ""
341
+
342
  #: ../class.yith-wcwl.php:140
343
  msgid "Error occurred while adding product to wishlist."
344
  msgstr ""
360
  msgstr ""
361
 
362
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
363
+ #: ../templates/wishlist.php:161
364
  msgid "No products were added to the wishlist"
365
  msgstr ""
366
 
367
+ #: ../templates/wishlist.php:82
368
  msgid "Product Name"
369
  msgstr ""
370
 
371
+ #: ../templates/wishlist.php:83
372
  msgid "Unit Price"
373
  msgstr ""
374
 
375
+ #: ../templates/wishlist.php:84
376
  msgid "Stock Status"
377
  msgstr ""
378
 
379
+ #: ../templates/wishlist.php:107
380
  msgid "Remove this product"
381
  msgstr ""
382
 
383
+ #: ../templates/wishlist.php:127
384
  msgid "Free!"
385
  msgstr ""
386
 
387
+ #: ../templates/wishlist.php:140
388
  msgid "Out of Stock"
389
  msgstr ""
390
 
391
+ #: ../templates/wishlist.php:143
392
  msgid "In Stock"
393
  msgstr ""
394
 
languages/yit-de_DE.mo CHANGED
Binary file
languages/yit-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-21 17:01+0100\n"
6
- "PO-Revision-Date: 2014-03-21 17:01+0100\n"
7
  "Last-Translator: YIThemes <support@yithemes.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -28,103 +28,103 @@ 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:430 class.yith-wcwl-init.php:858
32
  msgid "General Settings"
33
  msgstr "Allgemeine Einstellungen"
34
 
35
- #: class.yith-wcwl-init.php:431 class.yith-wcwl-init.php:964
36
  msgid "Styles"
37
  msgstr "Style"
38
 
39
- #: class.yith-wcwl-init.php:432 class.yith-wcwl-init.php:1027
40
  msgid "Socials &amp; Share"
41
  msgstr "Soziale Netzwerke; Teilen"
42
 
43
- #: class.yith-wcwl-init.php:452
44
  msgid "Colors"
45
  msgstr "Farben"
46
 
47
- #: class.yith-wcwl-init.php:482
48
  msgid "\"Add to Wishlist\" button background"
49
  msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund"
50
 
51
- #: class.yith-wcwl-init.php:483
52
  msgid "\"Add to Wishlist\" button text"
53
  msgstr "\"Zu Wunschliste hinzufügen\" Button Text"
54
 
55
- #: class.yith-wcwl-init.php:484
56
  msgid "\"Add to Wishlist\" button border"
57
  msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen"
58
 
59
- #: class.yith-wcwl-init.php:490
60
  msgid "\"Add to Wishlist\" button background (hover)"
61
  msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund (hover)"
62
 
63
- #: class.yith-wcwl-init.php:491
64
  msgid "\"Add to Wishlist\" button text (hover)"
65
  msgstr "\"Zu Wunschliste hinzufügen\" Button Text (hover)"
66
 
67
- #: class.yith-wcwl-init.php:492
68
  msgid "\"Add to Wishlist\" button border (hover)"
69
  msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen (hover)"
70
 
71
- #: class.yith-wcwl-init.php:497
72
  msgid "\"Add to Cart\" button background"
73
  msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund"
74
 
75
- #: class.yith-wcwl-init.php:498
76
  msgid "\"Add to Cart\" button text"
77
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
78
 
79
- #: class.yith-wcwl-init.php:499
80
  msgid "\"Add to Cart\" button border"
81
  msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen"
82
 
83
- #: class.yith-wcwl-init.php:505
84
  msgid "\"Add to Cart\" button background (hover)"
85
  msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund (hover)"
86
 
87
- #: class.yith-wcwl-init.php:506
88
  msgid "\"Add to Cart\" button text (hover)"
89
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text (hover)"
90
 
91
- #: class.yith-wcwl-init.php:507
92
  msgid "\"Add to Cart\" button border (hover)"
93
  msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen (hover)"
94
 
95
- #: class.yith-wcwl-init.php:512
96
  msgid "Wishlist table background"
97
  msgstr "Wunschliste Tabellenhintergrund"
98
 
99
- #: class.yith-wcwl-init.php:513
100
  msgid "Wishlist table text"
101
  msgstr "Wunschliste Tabellentext"
102
 
103
- #: class.yith-wcwl-init.php:514
104
  msgid "Wishlist table border"
105
  msgstr "Wunschliste Tabellenrahmen"
106
 
107
- #: class.yith-wcwl-init.php:574
108
  msgid "Settings"
109
  msgstr "Einstellungen"
110
 
111
- #: class.yith-wcwl-init.php:575
112
  msgid "Docs"
113
  msgstr "Dokumentation"
114
 
115
- #: class.yith-wcwl-init.php:591
116
  msgid "Wishlist Page"
117
  msgstr "Wunschlistenseite"
118
 
119
- #: class.yith-wcwl-init.php:592
120
  msgid "Page contents: [yith_wcwl_wishlist]"
121
  msgstr "Seiteninhalt: [yith_wcwl_wishlist]"
122
 
123
- #: class.yith-wcwl-init.php:861
124
  msgid "Enable YITH Wishlist"
125
  msgstr "Aktiviere YITH Wunschliste"
126
 
127
- #: class.yith-wcwl-init.php:862
128
  #, fuzzy, php-format
129
  msgid ""
130
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -136,11 +136,11 @@ msgstr ""
136
  "markiert ist.</strong> Bitte lesen Sie die Plugin- <a href=\"%s\" target="
137
  "\"_blank\">Hinweise</a>."
138
 
139
- #: class.yith-wcwl-init.php:869
140
  msgid "Use cookies"
141
  msgstr "Cookies verwenden"
142
 
143
- #: class.yith-wcwl-init.php:870
144
  msgid ""
145
  "Use cookies instead of sessions. With this feature, the wishlist will be "
146
  "available for each not logged user for 30 days. Use the filter "
@@ -152,21 +152,21 @@ msgstr ""
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:877
156
  msgid "Wishlist title"
157
  msgstr "Wunschlistentitel"
158
 
159
- #: class.yith-wcwl-init.php:879 class.yith-wcwl-init.php:880
160
- #: class.yith-wcwl-init.php:1060 class.yith-wcwl-init.php:1061
161
  #, php-format
162
  msgid "My wishlist on %s"
163
  msgstr "Meine Wunschliste von %s"
164
 
165
- #: class.yith-wcwl-init.php:889
166
  msgid "Position"
167
  msgstr "Position"
168
 
169
- #: class.yith-wcwl-init.php:890
170
  msgid ""
171
  "On variable products you can add it only After \"Add to Cart\" or use the "
172
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -174,27 +174,27 @@ 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:896
178
  msgid "After \"Add to cart\""
179
  msgstr "Nach \"Add to cart\""
180
 
181
- #: class.yith-wcwl-init.php:897
182
  msgid "After thumbnails"
183
  msgstr "Nach Thumbnails (Miniaturbilder)"
184
 
185
- #: class.yith-wcwl-init.php:898
186
  msgid "After summary"
187
  msgstr "Nach Zusammenfassung"
188
 
189
- #: class.yith-wcwl-init.php:899
190
  msgid "Use shortcode"
191
  msgstr "Shortcode verwenden"
192
 
193
- #: class.yith-wcwl-init.php:904
194
  msgid "Redirect to cart"
195
  msgstr "Weiterleiten zum Warenkorb"
196
 
197
- #: class.yith-wcwl-init.php:905
198
  msgid ""
199
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
200
  "page."
@@ -202,115 +202,119 @@ msgstr ""
202
  "Zum Warenkorb weiterleiten, wenn \"Add to cart\" Button auf der "
203
  "Wunschlistenseite angeklickt wurde"
204
 
205
- #: class.yith-wcwl-init.php:912
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:913
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:920
215
  msgid "\"Add to Wishlist\" text"
216
  msgstr "\"Zu Wunschliste hinzufügen\" Text"
217
 
218
- #: class.yith-wcwl-init.php:922 class.yith-wcwl-init.php:923
219
  msgid "Add to Wishlist"
220
  msgstr "Zu Wunschliste hinzufügen"
221
 
222
- #: class.yith-wcwl-init.php:928
223
  msgid "\"Add to Cart\" text"
224
  msgstr "\"Auf die Wunschliste setzen\" Text"
225
 
226
- #: class.yith-wcwl-init.php:930 class.yith-wcwl-init.php:931
227
  msgid "Add to Cart"
228
  msgstr "Zum Warenkorb hinzufügen"
229
 
230
- #: class.yith-wcwl-init.php:936
231
  #, fuzzy
232
  msgid "Show Unit price"
233
  msgstr "Preis"
234
 
235
- #: class.yith-wcwl-init.php:944
236
  #, fuzzy
237
  msgid "Show \"Add to Cart\" button"
238
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
239
 
240
- #: class.yith-wcwl-init.php:952
241
  #, fuzzy
242
  msgid "Show Stock status"
243
  msgstr "Lagerstatus"
244
 
245
- #: class.yith-wcwl-init.php:967
246
  msgid "Use buttons"
247
  msgstr "Buttons verwenden"
248
 
249
- #: class.yith-wcwl-init.php:968
250
  msgid "Use buttons instead of a simple anchors."
251
  msgstr "Buttons anstatt von einfachen Anchors verwenden"
252
 
253
- #: class.yith-wcwl-init.php:975
254
  msgid "Custom CSS"
255
  msgstr "Benutzerdefiniertes CSS"
256
 
257
- #: class.yith-wcwl-init.php:983
258
  msgid "Use theme style"
259
  msgstr "Theme Design verwenden"
260
 
261
- #: class.yith-wcwl-init.php:984
262
  msgid "Use the theme style."
263
  msgstr "Theme Design verwenden"
264
 
265
- #: class.yith-wcwl-init.php:991
266
  msgid "Buttons rounded corners"
267
  msgstr "Button mit abgerundeten Ecken"
268
 
269
- #: class.yith-wcwl-init.php:992
270
  msgid "Make buttons corner rounded"
271
  msgstr "Button mit abgerundeten Ecken nutzen"
272
 
273
- #: class.yith-wcwl-init.php:999
274
  msgid "\"Add to Wishlist\" icon"
275
  msgstr "\"Zur Wunschliste hinzufügen\" Icon"
276
 
277
- #: class.yith-wcwl-init.php:1000
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:1011
282
  msgid "\"Add to Cart\" icon"
283
  msgstr "\"In den Warenkoeb\" Icon"
284
 
285
- #: class.yith-wcwl-init.php:1012
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:1030
290
  msgid "Share on Facebook"
291
  msgstr "Auf Facebook teilen"
292
 
293
- #: class.yith-wcwl-init.php:1037
294
  msgid "Tweet on Twitter"
295
  msgstr "Auf Twitter tweeten"
296
 
297
- #: class.yith-wcwl-init.php:1044
298
  msgid "Pin on Pinterest"
299
  msgstr "Auf Pinterest pinnen"
300
 
301
- #: class.yith-wcwl-init.php:1051
302
  msgid "Share on Google+"
303
  msgstr "Bei Google+ teilen"
304
 
305
- #: class.yith-wcwl-init.php:1058
 
 
 
 
306
  msgid "Socials title"
307
  msgstr "Soziale Netzwerke-Titel"
308
 
309
- #: class.yith-wcwl-init.php:1066
310
  msgid "Socials text"
311
  msgstr "Soziale Netzwerke Text"
312
 
313
- #: class.yith-wcwl-init.php:1067
314
  msgid ""
315
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
316
  "strong> where you want the URL of your wishlist to appear."
@@ -318,7 +322,7 @@ 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:1075
322
  msgid "Socials image URL"
323
  msgstr "Soziale Netzwerke Bild URL"
324
 
@@ -328,34 +332,38 @@ 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 ""
@@ -381,35 +389,35 @@ msgid "Error. Unable to remove the product from the wishlist."
381
  msgstr ""
382
  "Fehlermeldung: Entfernen des Produkts von der Wunschliste nicht möglich. "
383
 
384
- #: class.yith-wcwl.php:377 yith-wcwl-ajax.php:37 templates/wishlist.php:158
385
  msgid "No products were added to the wishlist"
386
  msgstr "Es wurden keine Produkte auf die Wunschliste gesetzt"
387
 
388
- #: templates/wishlist.php:80
389
  msgid "Product Name"
390
  msgstr "Produktname"
391
 
392
- #: templates/wishlist.php:81
393
  msgid "Unit Price"
394
  msgstr "Preis"
395
 
396
- #: templates/wishlist.php:82
397
  msgid "Stock Status"
398
  msgstr "Lagerstatus"
399
 
400
- #: templates/wishlist.php:104
401
  msgid "Remove this product"
402
  msgstr "Dieses Produkt entfernen"
403
 
404
- #: templates/wishlist.php:124
405
  msgid "Free!"
406
  msgstr ""
407
 
408
- #: templates/wishlist.php:137
409
  msgid "Out of Stock"
410
  msgstr "Nicht auf Lager"
411
 
412
- #: templates/wishlist.php:140
413
  msgid "In Stock"
414
  msgstr "Auf Lager"
415
 
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-09-16 16:15+0100\n"
6
+ "PO-Revision-Date: 2014-09-16 16:15+0100\n"
7
  "Last-Translator: YIThemes <support@yithemes.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
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:430 class.yith-wcwl-init.php:859
32
  msgid "General Settings"
33
  msgstr "Allgemeine Einstellungen"
34
 
35
+ #: class.yith-wcwl-init.php:431 class.yith-wcwl-init.php:965
36
  msgid "Styles"
37
  msgstr "Style"
38
 
39
+ #: class.yith-wcwl-init.php:432 class.yith-wcwl-init.php:1028
40
  msgid "Socials &amp; Share"
41
  msgstr "Soziale Netzwerke; Teilen"
42
 
43
+ #: class.yith-wcwl-init.php:453
44
  msgid "Colors"
45
  msgstr "Farben"
46
 
47
+ #: class.yith-wcwl-init.php:483
48
  msgid "\"Add to Wishlist\" button background"
49
  msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund"
50
 
51
+ #: class.yith-wcwl-init.php:484
52
  msgid "\"Add to Wishlist\" button text"
53
  msgstr "\"Zu Wunschliste hinzufügen\" Button Text"
54
 
55
+ #: class.yith-wcwl-init.php:485
56
  msgid "\"Add to Wishlist\" button border"
57
  msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen"
58
 
59
+ #: class.yith-wcwl-init.php:491
60
  msgid "\"Add to Wishlist\" button background (hover)"
61
  msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund (hover)"
62
 
63
+ #: class.yith-wcwl-init.php:492
64
  msgid "\"Add to Wishlist\" button text (hover)"
65
  msgstr "\"Zu Wunschliste hinzufügen\" Button Text (hover)"
66
 
67
+ #: class.yith-wcwl-init.php:493
68
  msgid "\"Add to Wishlist\" button border (hover)"
69
  msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen (hover)"
70
 
71
+ #: class.yith-wcwl-init.php:498
72
  msgid "\"Add to Cart\" button background"
73
  msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund"
74
 
75
+ #: class.yith-wcwl-init.php:499
76
  msgid "\"Add to Cart\" button text"
77
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
78
 
79
+ #: class.yith-wcwl-init.php:500
80
  msgid "\"Add to Cart\" button border"
81
  msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen"
82
 
83
+ #: class.yith-wcwl-init.php:506
84
  msgid "\"Add to Cart\" button background (hover)"
85
  msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund (hover)"
86
 
87
+ #: class.yith-wcwl-init.php:507
88
  msgid "\"Add to Cart\" button text (hover)"
89
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text (hover)"
90
 
91
+ #: class.yith-wcwl-init.php:508
92
  msgid "\"Add to Cart\" button border (hover)"
93
  msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen (hover)"
94
 
95
+ #: class.yith-wcwl-init.php:513
96
  msgid "Wishlist table background"
97
  msgstr "Wunschliste Tabellenhintergrund"
98
 
99
+ #: class.yith-wcwl-init.php:514
100
  msgid "Wishlist table text"
101
  msgstr "Wunschliste Tabellentext"
102
 
103
+ #: class.yith-wcwl-init.php:515
104
  msgid "Wishlist table border"
105
  msgstr "Wunschliste Tabellenrahmen"
106
 
107
+ #: class.yith-wcwl-init.php:575
108
  msgid "Settings"
109
  msgstr "Einstellungen"
110
 
111
+ #: class.yith-wcwl-init.php:576
112
  msgid "Docs"
113
  msgstr "Dokumentation"
114
 
115
+ #: class.yith-wcwl-init.php:592
116
  msgid "Wishlist Page"
117
  msgstr "Wunschlistenseite"
118
 
119
+ #: class.yith-wcwl-init.php:593
120
  msgid "Page contents: [yith_wcwl_wishlist]"
121
  msgstr "Seiteninhalt: [yith_wcwl_wishlist]"
122
 
123
+ #: class.yith-wcwl-init.php:862
124
  msgid "Enable YITH Wishlist"
125
  msgstr "Aktiviere YITH Wunschliste"
126
 
127
+ #: class.yith-wcwl-init.php:863
128
  #, fuzzy, php-format
129
  msgid ""
130
  "Enable all plugin features. <strong>Be sure to select a voice in the "
136
  "markiert ist.</strong> Bitte lesen Sie die Plugin- <a href=\"%s\" target="
137
  "\"_blank\">Hinweise</a>."
138
 
139
+ #: class.yith-wcwl-init.php:870
140
  msgid "Use cookies"
141
  msgstr "Cookies verwenden"
142
 
143
+ #: class.yith-wcwl-init.php:871
144
  msgid ""
145
  "Use cookies instead of sessions. With this feature, the wishlist will be "
146
  "available for each not logged user for 30 days. Use the filter "
152
  "Verwenden Sie den Filter yith_wcwl_cookie_expiration_time um die "
153
  "Einstellungen für die Laufzeit zu bestimmen (Zeitangabe erforderlich)"
154
 
155
+ #: class.yith-wcwl-init.php:878
156
  msgid "Wishlist title"
157
  msgstr "Wunschlistentitel"
158
 
159
+ #: class.yith-wcwl-init.php:880 class.yith-wcwl-init.php:881
160
+ #: class.yith-wcwl-init.php:1068 class.yith-wcwl-init.php:1069
161
  #, php-format
162
  msgid "My wishlist on %s"
163
  msgstr "Meine Wunschliste von %s"
164
 
165
+ #: class.yith-wcwl-init.php:890
166
  msgid "Position"
167
  msgstr "Position"
168
 
169
+ #: class.yith-wcwl-init.php:891
170
  msgid ""
171
  "On variable products you can add it only After \"Add to Cart\" or use the "
172
  "shortcode [yith_wcwl_add_to_wishlist]."
174
  "Bei Variablen Produkten kann nur nach \"Add to Cart\" eingetragen werden "
175
  "oder der Shortcode[yith_wcwl_add_to_wishlist] verwendet werden."
176
 
177
+ #: class.yith-wcwl-init.php:897
178
  msgid "After \"Add to cart\""
179
  msgstr "Nach \"Add to cart\""
180
 
181
+ #: class.yith-wcwl-init.php:898
182
  msgid "After thumbnails"
183
  msgstr "Nach Thumbnails (Miniaturbilder)"
184
 
185
+ #: class.yith-wcwl-init.php:899
186
  msgid "After summary"
187
  msgstr "Nach Zusammenfassung"
188
 
189
+ #: class.yith-wcwl-init.php:900
190
  msgid "Use shortcode"
191
  msgstr "Shortcode verwenden"
192
 
193
+ #: class.yith-wcwl-init.php:905
194
  msgid "Redirect to cart"
195
  msgstr "Weiterleiten zum Warenkorb"
196
 
197
+ #: class.yith-wcwl-init.php:906
198
  msgid ""
199
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
200
  "page."
202
  "Zum Warenkorb weiterleiten, wenn \"Add to cart\" Button auf der "
203
  "Wunschlistenseite angeklickt wurde"
204
 
205
+ #: class.yith-wcwl-init.php:913
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:914
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:921
215
  msgid "\"Add to Wishlist\" text"
216
  msgstr "\"Zu Wunschliste hinzufügen\" Text"
217
 
218
+ #: class.yith-wcwl-init.php:923 class.yith-wcwl-init.php:924
219
  msgid "Add to Wishlist"
220
  msgstr "Zu Wunschliste hinzufügen"
221
 
222
+ #: class.yith-wcwl-init.php:929
223
  msgid "\"Add to Cart\" text"
224
  msgstr "\"Auf die Wunschliste setzen\" Text"
225
 
226
+ #: class.yith-wcwl-init.php:931 class.yith-wcwl-init.php:932
227
  msgid "Add to Cart"
228
  msgstr "Zum Warenkorb hinzufügen"
229
 
230
+ #: class.yith-wcwl-init.php:937
231
  #, fuzzy
232
  msgid "Show Unit price"
233
  msgstr "Preis"
234
 
235
+ #: class.yith-wcwl-init.php:945
236
  #, fuzzy
237
  msgid "Show \"Add to Cart\" button"
238
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
239
 
240
+ #: class.yith-wcwl-init.php:953
241
  #, fuzzy
242
  msgid "Show Stock status"
243
  msgstr "Lagerstatus"
244
 
245
+ #: class.yith-wcwl-init.php:968
246
  msgid "Use buttons"
247
  msgstr "Buttons verwenden"
248
 
249
+ #: class.yith-wcwl-init.php:969
250
  msgid "Use buttons instead of a simple anchors."
251
  msgstr "Buttons anstatt von einfachen Anchors verwenden"
252
 
253
+ #: class.yith-wcwl-init.php:976
254
  msgid "Custom CSS"
255
  msgstr "Benutzerdefiniertes CSS"
256
 
257
+ #: class.yith-wcwl-init.php:984
258
  msgid "Use theme style"
259
  msgstr "Theme Design verwenden"
260
 
261
+ #: class.yith-wcwl-init.php:985
262
  msgid "Use the theme style."
263
  msgstr "Theme Design verwenden"
264
 
265
+ #: class.yith-wcwl-init.php:992
266
  msgid "Buttons rounded corners"
267
  msgstr "Button mit abgerundeten Ecken"
268
 
269
+ #: class.yith-wcwl-init.php:993
270
  msgid "Make buttons corner rounded"
271
  msgstr "Button mit abgerundeten Ecken nutzen"
272
 
273
+ #: class.yith-wcwl-init.php:1000
274
  msgid "\"Add to Wishlist\" icon"
275
  msgstr "\"Zur Wunschliste hinzufügen\" Icon"
276
 
277
+ #: class.yith-wcwl-init.php:1001
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:1012
282
  msgid "\"Add to Cart\" icon"
283
  msgstr "\"In den Warenkoeb\" Icon"
284
 
285
+ #: class.yith-wcwl-init.php:1013
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:1031
290
  msgid "Share on Facebook"
291
  msgstr "Auf Facebook teilen"
292
 
293
+ #: class.yith-wcwl-init.php:1038
294
  msgid "Tweet on Twitter"
295
  msgstr "Auf Twitter tweeten"
296
 
297
+ #: class.yith-wcwl-init.php:1045
298
  msgid "Pin on Pinterest"
299
  msgstr "Auf Pinterest pinnen"
300
 
301
+ #: class.yith-wcwl-init.php:1052
302
  msgid "Share on Google+"
303
  msgstr "Bei Google+ teilen"
304
 
305
+ #: class.yith-wcwl-init.php:1059
306
+ msgid "Share by Email"
307
+ msgstr ""
308
+
309
+ #: class.yith-wcwl-init.php:1066
310
  msgid "Socials title"
311
  msgstr "Soziale Netzwerke-Titel"
312
 
313
+ #: class.yith-wcwl-init.php:1074
314
  msgid "Socials text"
315
  msgstr "Soziale Netzwerke Text"
316
 
317
+ #: class.yith-wcwl-init.php:1075
318
  msgid ""
319
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
320
  "strong> where you want the URL of your wishlist to appear."
322
  "Wird bei Facebook, Twitter und Pinterest genutzt. Benutzen Sie <strong>"
323
  "%wishlist_url%</strong> wenn die URL der Wunschliste angezeigt werden soll. "
324
 
325
+ #: class.yith-wcwl-init.php:1083
326
  msgid "Socials image URL"
327
  msgstr "Soziale Netzwerke Bild URL"
328
 
332
  msgid "wishlist"
333
  msgstr "Wunschliste"
334
 
335
+ #: class.yith-wcwl-ui.php:67 class.yith-wcwl.php:351 yith-wcwl-ajax.php:47
336
  msgid "Product added!"
337
  msgstr "Produkt hinzugefügt!"
338
 
339
+ #: class.yith-wcwl-ui.php:67 class.yith-wcwl-ui.php:68
340
  msgid "Browse Wishlist"
341
  msgstr "Wunschliste durchsuchen"
342
 
343
+ #: class.yith-wcwl-ui.php:68
344
  msgid "The product is already in the wishlist!"
345
  msgstr "Dieses Produkt ist bereits in der Wunschliste vorhanden."
346
 
347
+ #: class.yith-wcwl-ui.php:100
348
  msgid "Select options"
349
  msgstr "Optionen wählen"
350
 
351
+ #: class.yith-wcwl-ui.php:145
352
  msgid "Share on:"
353
  msgstr "Teilen auf:"
354
 
355
+ #: class.yith-wcwl-ui.php:149
356
  msgid "Facebook"
357
  msgstr "Facebook"
358
 
359
+ #: class.yith-wcwl-ui.php:152
360
  msgid "Twitter"
361
  msgstr "Twitter"
362
 
363
+ #: class.yith-wcwl-ui.php:161
364
+ msgid "email"
365
+ msgstr ""
366
+
367
  #: class.yith-wcwl.php:140
368
  msgid "Error occurred while adding product to wishlist."
369
  msgstr ""
389
  msgstr ""
390
  "Fehlermeldung: Entfernen des Produkts von der Wunschliste nicht möglich. "
391
 
392
+ #: class.yith-wcwl.php:377 yith-wcwl-ajax.php:37 templates/wishlist.php:161
393
  msgid "No products were added to the wishlist"
394
  msgstr "Es wurden keine Produkte auf die Wunschliste gesetzt"
395
 
396
+ #: templates/wishlist.php:82
397
  msgid "Product Name"
398
  msgstr "Produktname"
399
 
400
+ #: templates/wishlist.php:83
401
  msgid "Unit Price"
402
  msgstr "Preis"
403
 
404
+ #: templates/wishlist.php:84
405
  msgid "Stock Status"
406
  msgstr "Lagerstatus"
407
 
408
+ #: templates/wishlist.php:107
409
  msgid "Remove this product"
410
  msgstr "Dieses Produkt entfernen"
411
 
412
+ #: templates/wishlist.php:127
413
  msgid "Free!"
414
  msgstr ""
415
 
416
+ #: templates/wishlist.php:140
417
  msgid "Out of Stock"
418
  msgstr "Nicht auf Lager"
419
 
420
+ #: templates/wishlist.php:143
421
  msgid "In Stock"
422
  msgstr "Auf Lager"
423
 
languages/yit-es_AR.mo CHANGED
Binary file
languages/yit-es_AR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-03-21 17:01+0100\n"
5
- "PO-Revision-Date: 2014-03-21 17:01+0100\n"
6
  "Last-Translator: YIThemes <support@yithemes.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: Español\n"
@@ -24,103 +24,103 @@ msgstr ""
24
  "Perdón, pero no podemos agregarlo al carrito porque actualmente no tenemos "
25
  "en stock."
26
 
27
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:858
28
  msgid "General Settings"
29
  msgstr "Configuraciones generales"
30
 
31
- #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:964
32
  msgid "Styles"
33
  msgstr "Estilos"
34
 
35
- #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1027
36
  msgid "Socials &amp; Share"
37
  msgstr "Sociales &amp; Compartir"
38
 
39
- #: ../class.yith-wcwl-init.php:452
40
  msgid "Colors"
41
  msgstr "Colores"
42
 
43
- #: ../class.yith-wcwl-init.php:482
44
  msgid "\"Add to Wishlist\" button background"
45
  msgstr "Fondo del botón \"Agregar a la lista de deseos\""
46
 
47
- #: ../class.yith-wcwl-init.php:483
48
  msgid "\"Add to Wishlist\" button text"
49
  msgstr "Texto del botón \"Agregar a la lista de deseos\""
50
 
51
- #: ../class.yith-wcwl-init.php:484
52
  msgid "\"Add to Wishlist\" button border"
53
  msgstr "Borde del botón \"Agregar a la lista de deseos\""
54
 
55
- #: ../class.yith-wcwl-init.php:490
56
  msgid "\"Add to Wishlist\" button background (hover)"
57
  msgstr "Fondo del botón \"Agregar a la lista de deseos\" (hover)"
58
 
59
- #: ../class.yith-wcwl-init.php:491
60
  msgid "\"Add to Wishlist\" button text (hover)"
61
  msgstr "Texto del botón \"Agregar a la lista de deseos\" (hover)"
62
 
63
- #: ../class.yith-wcwl-init.php:492
64
  msgid "\"Add to Wishlist\" button border (hover)"
65
  msgstr "Borde del botón \"Agregar a la lista de deseos\" (hover)"
66
 
67
- #: ../class.yith-wcwl-init.php:497
68
  msgid "\"Add to Cart\" button background"
69
  msgstr "Fondo del botón \"Agregar al carrito\""
70
 
71
- #: ../class.yith-wcwl-init.php:498
72
  msgid "\"Add to Cart\" button text"
73
  msgstr "Texto del botón \"Agregar al carrito\""
74
 
75
- #: ../class.yith-wcwl-init.php:499
76
  msgid "\"Add to Cart\" button border"
77
  msgstr "Borde del botón \"Agregar al carrito\""
78
 
79
- #: ../class.yith-wcwl-init.php:505
80
  msgid "\"Add to Cart\" button background (hover)"
81
  msgstr "Fondo del botón \"Agregar al carrito\" (hover)"
82
 
83
- #: ../class.yith-wcwl-init.php:506
84
  msgid "\"Add to Cart\" button text (hover)"
85
  msgstr "Texto del botón \"Agregar al carrito\" (hover)"
86
 
87
- #: ../class.yith-wcwl-init.php:507
88
  msgid "\"Add to Cart\" button border (hover)"
89
  msgstr "Borde del botón \"Agregar al carrito\" (hover)"
90
 
91
- #: ../class.yith-wcwl-init.php:512
92
  msgid "Wishlist table background"
93
  msgstr "Fondo de la tabla de la Lista de Deseos"
94
 
95
- #: ../class.yith-wcwl-init.php:513
96
  msgid "Wishlist table text"
97
  msgstr "Texto de la tabla de la Lista de Deseos"
98
 
99
- #: ../class.yith-wcwl-init.php:514
100
  msgid "Wishlist table border"
101
  msgstr "Borde de la tabla de la Lista de Deseos"
102
 
103
- #: ../class.yith-wcwl-init.php:574
104
  msgid "Settings"
105
  msgstr "Configuraciones"
106
 
107
- #: ../class.yith-wcwl-init.php:575
108
  msgid "Docs"
109
  msgstr "Documentación"
110
 
111
- #: ../class.yith-wcwl-init.php:591
112
  msgid "Wishlist Page"
113
  msgstr "Lista de deseos"
114
 
115
- #: ../class.yith-wcwl-init.php:592
116
  msgid "Page contents: [yith_wcwl_wishlist]"
117
  msgstr "Contenidos: [yith_wcwl_wishlist]"
118
 
119
- #: ../class.yith-wcwl-init.php:861
120
  msgid "Enable YITH Wishlist"
121
  msgstr "Habilitar YITH Wishlist"
122
 
123
- #: ../class.yith-wcwl-init.php:862
124
  #, fuzzy, php-format
125
  msgid ""
126
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -132,11 +132,11 @@ msgstr ""
132
  "Páginas.</strong> También, por favor lee la <a href=\"%s\" target=\"_blank"
133
  "\">documentación</a> del plugin."
134
 
135
- #: ../class.yith-wcwl-init.php:869
136
  msgid "Use cookies"
137
  msgstr "Usar cookies"
138
 
139
- #: ../class.yith-wcwl-init.php:870
140
  msgid ""
141
  "Use cookies instead of sessions. With this feature, the wishlist will be "
142
  "available for each not logged user for 30 days. Use the filter "
@@ -148,21 +148,21 @@ msgstr ""
148
  "Usa el filtro yith_wcwl_cookie_expiration_time para cambiar el tiempo de "
149
  "expiración de la cookie (necesita marca de tiempo)."
150
 
151
- #: ../class.yith-wcwl-init.php:877
152
  msgid "Wishlist title"
153
  msgstr "Título de la Lista de deseos"
154
 
155
- #: ../class.yith-wcwl-init.php:879 ../class.yith-wcwl-init.php:880
156
- #: ../class.yith-wcwl-init.php:1060 ../class.yith-wcwl-init.php:1061
157
  #, php-format
158
  msgid "My wishlist on %s"
159
  msgstr "Mi lista de deseos en %s"
160
 
161
- #: ../class.yith-wcwl-init.php:889
162
  msgid "Position"
163
  msgstr "Posición"
164
 
165
- #: ../class.yith-wcwl-init.php:890
166
  msgid ""
167
  "On variable products you can add it only After \"Add to Cart\" or use the "
168
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -170,27 +170,27 @@ msgstr ""
170
  "En productos variables puedes agregarlo sólo Después de \"Agregar al carrito"
171
  "\" o usar el shortcode [yith_wcwl_add_to_wishlist]. "
172
 
173
- #: ../class.yith-wcwl-init.php:896
174
  msgid "After \"Add to cart\""
175
  msgstr "Después de \"Agregar al carrito\""
176
 
177
- #: ../class.yith-wcwl-init.php:897
178
  msgid "After thumbnails"
179
  msgstr "Después de las miniaturas"
180
 
181
- #: ../class.yith-wcwl-init.php:898
182
  msgid "After summary"
183
  msgstr "Después del resúmen"
184
 
185
- #: ../class.yith-wcwl-init.php:899
186
  msgid "Use shortcode"
187
  msgstr "Usar shortcode"
188
 
189
- #: ../class.yith-wcwl-init.php:904
190
  msgid "Redirect to cart"
191
  msgstr "Redireccionar al carrito"
192
 
193
- #: ../class.yith-wcwl-init.php:905
194
  msgid ""
195
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
196
  "page."
@@ -198,111 +198,115 @@ msgstr ""
198
  "Redireccionar a la página del carrito si se presiona el botón \"Agregar al "
199
  "carrito\" en la página de la lista de deseos."
200
 
201
- #: ../class.yith-wcwl-init.php:912
202
  msgid "Remove if added to the cart"
203
  msgstr "Eliminar después de agregar al carrito"
204
 
205
- #: ../class.yith-wcwl-init.php:913
206
  msgid "Remove the product from the wishlist if is been added to the cart."
207
  msgstr "Eliminar el producto de la lista de deseos si fue agregado al carrito."
208
 
209
- #: ../class.yith-wcwl-init.php:920
210
  msgid "\"Add to Wishlist\" text"
211
  msgstr "Texto de \"Agregar a la Lista de deseos\""
212
 
213
- #: ../class.yith-wcwl-init.php:922 ../class.yith-wcwl-init.php:923
214
  msgid "Add to Wishlist"
215
  msgstr "Agregar a la Lista de deseos"
216
 
217
- #: ../class.yith-wcwl-init.php:928
218
  msgid "\"Add to Cart\" text"
219
  msgstr "Texto de \"Agregar al carrito\""
220
 
221
- #: ../class.yith-wcwl-init.php:930 ../class.yith-wcwl-init.php:931
222
  msgid "Add to Cart"
223
  msgstr "Agregar al carrito"
224
 
225
- #: ../class.yith-wcwl-init.php:936
226
  msgid "Show Unit price"
227
  msgstr "Mostrar precio por unidad"
228
 
229
- #: ../class.yith-wcwl-init.php:944
230
  msgid "Show \"Add to Cart\" button"
231
  msgstr "Mostrar el botón \"Agregar al carrito\""
232
 
233
- #: ../class.yith-wcwl-init.php:952
234
  msgid "Show Stock status"
235
  msgstr "Mostrar estado del stock"
236
 
237
- #: ../class.yith-wcwl-init.php:967
238
  msgid "Use buttons"
239
  msgstr "Usar botones"
240
 
241
- #: ../class.yith-wcwl-init.php:968
242
  msgid "Use buttons instead of a simple anchors."
243
  msgstr "Usar botones en lugar de anclas simples."
244
 
245
- #: ../class.yith-wcwl-init.php:975
246
  msgid "Custom CSS"
247
  msgstr "CSS personalizado"
248
 
249
- #: ../class.yith-wcwl-init.php:983
250
  msgid "Use theme style"
251
  msgstr "Usar el estilo del tema"
252
 
253
- #: ../class.yith-wcwl-init.php:984
254
  msgid "Use the theme style."
255
  msgstr "Usar el estilo del tema."
256
 
257
- #: ../class.yith-wcwl-init.php:991
258
  msgid "Buttons rounded corners"
259
  msgstr "Botones con ángulos redondeados"
260
 
261
- #: ../class.yith-wcwl-init.php:992
262
  msgid "Make buttons corner rounded"
263
  msgstr "Redondear los ángulos de los botones"
264
 
265
- #: ../class.yith-wcwl-init.php:999
266
  msgid "\"Add to Wishlist\" icon"
267
  msgstr "Ícono de \"Agregar a la Lista de deseos\""
268
 
269
- #: ../class.yith-wcwl-init.php:1000
270
  msgid "Add an icon to the \"Add to Wishlist\" button"
271
  msgstr "Agregar un ícono al botón de \"Agregar a la Lista de deseos\""
272
 
273
- #: ../class.yith-wcwl-init.php:1011
274
  msgid "\"Add to Cart\" icon"
275
  msgstr "Ícono de \"Agregar al carrito\""
276
 
277
- #: ../class.yith-wcwl-init.php:1012
278
  msgid "Add an icon to the \"Add to Cart\" button"
279
  msgstr "Agregar un ícono para el botón de \"Agregar al carrito\""
280
 
281
- #: ../class.yith-wcwl-init.php:1030
282
  msgid "Share on Facebook"
283
  msgstr "Compartir en Facebook"
284
 
285
- #: ../class.yith-wcwl-init.php:1037
286
  msgid "Tweet on Twitter"
287
  msgstr "Tuitear en Twitter"
288
 
289
- #: ../class.yith-wcwl-init.php:1044
290
  msgid "Pin on Pinterest"
291
  msgstr "Compartir en Pinterest"
292
 
293
- #: ../class.yith-wcwl-init.php:1051
294
  msgid "Share on Google+"
295
  msgstr "Compartir en Google+"
296
 
297
- #: ../class.yith-wcwl-init.php:1058
 
 
 
 
298
  msgid "Socials title"
299
  msgstr "Título de sociales"
300
 
301
- #: ../class.yith-wcwl-init.php:1066
302
  msgid "Socials text"
303
  msgstr "Texto de sociales"
304
 
305
- #: ../class.yith-wcwl-init.php:1067
306
  msgid ""
307
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
308
  "strong> where you want the URL of your wishlist to appear."
@@ -310,7 +314,7 @@ msgstr ""
310
  "Será usado por Facebook, Twitter y Pinterest. Usar <strong>%wishlist_url%</"
311
  "strong> donde quieras que aparezca la URL de tu lista de deseos."
312
 
313
- #: ../class.yith-wcwl-init.php:1075
314
  msgid "Socials image URL"
315
  msgstr "URL de las imágenes sociales"
316
 
@@ -318,35 +322,39 @@ msgstr "URL de las imágenes sociales"
318
  msgid "wishlist"
319
  msgstr "lista de deseos"
320
 
321
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
322
  #: ../yith-wcwl-ajax.php:47
323
  msgid "Product added!"
324
  msgstr "¡Agregado!"
325
 
326
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
327
  msgid "Browse Wishlist"
328
  msgstr "Ir a la Lista de deseos"
329
 
330
- #: ../class.yith-wcwl-ui.php:65
331
  msgid "The product is already in the wishlist!"
332
  msgstr "¡Este producto ya está en la lista de deseos!"
333
 
334
- #: ../class.yith-wcwl-ui.php:93
335
  msgid "Select options"
336
  msgstr "Selecciona opciones"
337
 
338
- #: ../class.yith-wcwl-ui.php:136
339
  msgid "Share on:"
340
  msgstr "Compartir en:"
341
 
342
- #: ../class.yith-wcwl-ui.php:140
343
  msgid "Facebook"
344
  msgstr ""
345
 
346
- #: ../class.yith-wcwl-ui.php:143
347
  msgid "Twitter"
348
  msgstr ""
349
 
 
 
 
 
350
  #: ../class.yith-wcwl.php:140
351
  msgid "Error occurred while adding product to wishlist."
352
  msgstr ""
@@ -374,36 +382,36 @@ msgstr ""
374
  "nuevamente, por favor."
375
 
376
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
377
- #: ../templates/wishlist.php:158
378
  msgid "No products were added to the wishlist"
379
  msgstr "Tu lista de deseos está vacía por el momento..."
380
 
381
- #: ../templates/wishlist.php:80
382
  msgid "Product Name"
383
  msgstr "Producto"
384
 
385
- #: ../templates/wishlist.php:81
386
  msgid "Unit Price"
387
  msgstr "Precio por unidad"
388
 
389
- #: ../templates/wishlist.php:82
390
  msgid "Stock Status"
391
  msgstr "Estado de stock"
392
 
393
  # Not literal but more friendly.
394
- #: ../templates/wishlist.php:104
395
  msgid "Remove this product"
396
  msgstr "Ya no lo quiero"
397
 
398
- #: ../templates/wishlist.php:124
399
  msgid "Free!"
400
  msgstr ""
401
 
402
- #: ../templates/wishlist.php:137
403
  msgid "Out of Stock"
404
  msgstr "No disponible por el momento"
405
 
406
- #: ../templates/wishlist.php:140
407
  msgid "In Stock"
408
  msgstr "¡Disponible!"
409
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
+ "POT-Creation-Date: 2014-09-16 16:15+0100\n"
5
+ "PO-Revision-Date: 2014-09-16 16:16+0100\n"
6
  "Last-Translator: YIThemes <support@yithemes.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: Español\n"
24
  "Perdón, pero no podemos agregarlo al carrito porque actualmente no tenemos "
25
  "en stock."
26
 
27
+ #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:859
28
  msgid "General Settings"
29
  msgstr "Configuraciones generales"
30
 
31
+ #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:965
32
  msgid "Styles"
33
  msgstr "Estilos"
34
 
35
+ #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1028
36
  msgid "Socials &amp; Share"
37
  msgstr "Sociales &amp; Compartir"
38
 
39
+ #: ../class.yith-wcwl-init.php:453
40
  msgid "Colors"
41
  msgstr "Colores"
42
 
43
+ #: ../class.yith-wcwl-init.php:483
44
  msgid "\"Add to Wishlist\" button background"
45
  msgstr "Fondo del botón \"Agregar a la lista de deseos\""
46
 
47
+ #: ../class.yith-wcwl-init.php:484
48
  msgid "\"Add to Wishlist\" button text"
49
  msgstr "Texto del botón \"Agregar a la lista de deseos\""
50
 
51
+ #: ../class.yith-wcwl-init.php:485
52
  msgid "\"Add to Wishlist\" button border"
53
  msgstr "Borde del botón \"Agregar a la lista de deseos\""
54
 
55
+ #: ../class.yith-wcwl-init.php:491
56
  msgid "\"Add to Wishlist\" button background (hover)"
57
  msgstr "Fondo del botón \"Agregar a la lista de deseos\" (hover)"
58
 
59
+ #: ../class.yith-wcwl-init.php:492
60
  msgid "\"Add to Wishlist\" button text (hover)"
61
  msgstr "Texto del botón \"Agregar a la lista de deseos\" (hover)"
62
 
63
+ #: ../class.yith-wcwl-init.php:493
64
  msgid "\"Add to Wishlist\" button border (hover)"
65
  msgstr "Borde del botón \"Agregar a la lista de deseos\" (hover)"
66
 
67
+ #: ../class.yith-wcwl-init.php:498
68
  msgid "\"Add to Cart\" button background"
69
  msgstr "Fondo del botón \"Agregar al carrito\""
70
 
71
+ #: ../class.yith-wcwl-init.php:499
72
  msgid "\"Add to Cart\" button text"
73
  msgstr "Texto del botón \"Agregar al carrito\""
74
 
75
+ #: ../class.yith-wcwl-init.php:500
76
  msgid "\"Add to Cart\" button border"
77
  msgstr "Borde del botón \"Agregar al carrito\""
78
 
79
+ #: ../class.yith-wcwl-init.php:506
80
  msgid "\"Add to Cart\" button background (hover)"
81
  msgstr "Fondo del botón \"Agregar al carrito\" (hover)"
82
 
83
+ #: ../class.yith-wcwl-init.php:507
84
  msgid "\"Add to Cart\" button text (hover)"
85
  msgstr "Texto del botón \"Agregar al carrito\" (hover)"
86
 
87
+ #: ../class.yith-wcwl-init.php:508
88
  msgid "\"Add to Cart\" button border (hover)"
89
  msgstr "Borde del botón \"Agregar al carrito\" (hover)"
90
 
91
+ #: ../class.yith-wcwl-init.php:513
92
  msgid "Wishlist table background"
93
  msgstr "Fondo de la tabla de la Lista de Deseos"
94
 
95
+ #: ../class.yith-wcwl-init.php:514
96
  msgid "Wishlist table text"
97
  msgstr "Texto de la tabla de la Lista de Deseos"
98
 
99
+ #: ../class.yith-wcwl-init.php:515
100
  msgid "Wishlist table border"
101
  msgstr "Borde de la tabla de la Lista de Deseos"
102
 
103
+ #: ../class.yith-wcwl-init.php:575
104
  msgid "Settings"
105
  msgstr "Configuraciones"
106
 
107
+ #: ../class.yith-wcwl-init.php:576
108
  msgid "Docs"
109
  msgstr "Documentación"
110
 
111
+ #: ../class.yith-wcwl-init.php:592
112
  msgid "Wishlist Page"
113
  msgstr "Lista de deseos"
114
 
115
+ #: ../class.yith-wcwl-init.php:593
116
  msgid "Page contents: [yith_wcwl_wishlist]"
117
  msgstr "Contenidos: [yith_wcwl_wishlist]"
118
 
119
+ #: ../class.yith-wcwl-init.php:862
120
  msgid "Enable YITH Wishlist"
121
  msgstr "Habilitar YITH Wishlist"
122
 
123
+ #: ../class.yith-wcwl-init.php:863
124
  #, fuzzy, php-format
125
  msgid ""
126
  "Enable all plugin features. <strong>Be sure to select a voice in the "
132
  "Páginas.</strong> También, por favor lee la <a href=\"%s\" target=\"_blank"
133
  "\">documentación</a> del plugin."
134
 
135
+ #: ../class.yith-wcwl-init.php:870
136
  msgid "Use cookies"
137
  msgstr "Usar cookies"
138
 
139
+ #: ../class.yith-wcwl-init.php:871
140
  msgid ""
141
  "Use cookies instead of sessions. With this feature, the wishlist will be "
142
  "available for each not logged user for 30 days. Use the filter "
148
  "Usa el filtro yith_wcwl_cookie_expiration_time para cambiar el tiempo de "
149
  "expiración de la cookie (necesita marca de tiempo)."
150
 
151
+ #: ../class.yith-wcwl-init.php:878
152
  msgid "Wishlist title"
153
  msgstr "Título de la Lista de deseos"
154
 
155
+ #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
156
+ #: ../class.yith-wcwl-init.php:1068 ../class.yith-wcwl-init.php:1069
157
  #, php-format
158
  msgid "My wishlist on %s"
159
  msgstr "Mi lista de deseos en %s"
160
 
161
+ #: ../class.yith-wcwl-init.php:890
162
  msgid "Position"
163
  msgstr "Posición"
164
 
165
+ #: ../class.yith-wcwl-init.php:891
166
  msgid ""
167
  "On variable products you can add it only After \"Add to Cart\" or use the "
168
  "shortcode [yith_wcwl_add_to_wishlist]."
170
  "En productos variables puedes agregarlo sólo Después de \"Agregar al carrito"
171
  "\" o usar el shortcode [yith_wcwl_add_to_wishlist]. "
172
 
173
+ #: ../class.yith-wcwl-init.php:897
174
  msgid "After \"Add to cart\""
175
  msgstr "Después de \"Agregar al carrito\""
176
 
177
+ #: ../class.yith-wcwl-init.php:898
178
  msgid "After thumbnails"
179
  msgstr "Después de las miniaturas"
180
 
181
+ #: ../class.yith-wcwl-init.php:899
182
  msgid "After summary"
183
  msgstr "Después del resúmen"
184
 
185
+ #: ../class.yith-wcwl-init.php:900
186
  msgid "Use shortcode"
187
  msgstr "Usar shortcode"
188
 
189
+ #: ../class.yith-wcwl-init.php:905
190
  msgid "Redirect to cart"
191
  msgstr "Redireccionar al carrito"
192
 
193
+ #: ../class.yith-wcwl-init.php:906
194
  msgid ""
195
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
196
  "page."
198
  "Redireccionar a la página del carrito si se presiona el botón \"Agregar al "
199
  "carrito\" en la página de la lista de deseos."
200
 
201
+ #: ../class.yith-wcwl-init.php:913
202
  msgid "Remove if added to the cart"
203
  msgstr "Eliminar después de agregar al carrito"
204
 
205
+ #: ../class.yith-wcwl-init.php:914
206
  msgid "Remove the product from the wishlist if is been added to the cart."
207
  msgstr "Eliminar el producto de la lista de deseos si fue agregado al carrito."
208
 
209
+ #: ../class.yith-wcwl-init.php:921
210
  msgid "\"Add to Wishlist\" text"
211
  msgstr "Texto de \"Agregar a la Lista de deseos\""
212
 
213
+ #: ../class.yith-wcwl-init.php:923 ../class.yith-wcwl-init.php:924
214
  msgid "Add to Wishlist"
215
  msgstr "Agregar a la Lista de deseos"
216
 
217
+ #: ../class.yith-wcwl-init.php:929
218
  msgid "\"Add to Cart\" text"
219
  msgstr "Texto de \"Agregar al carrito\""
220
 
221
+ #: ../class.yith-wcwl-init.php:931 ../class.yith-wcwl-init.php:932
222
  msgid "Add to Cart"
223
  msgstr "Agregar al carrito"
224
 
225
+ #: ../class.yith-wcwl-init.php:937
226
  msgid "Show Unit price"
227
  msgstr "Mostrar precio por unidad"
228
 
229
+ #: ../class.yith-wcwl-init.php:945
230
  msgid "Show \"Add to Cart\" button"
231
  msgstr "Mostrar el botón \"Agregar al carrito\""
232
 
233
+ #: ../class.yith-wcwl-init.php:953
234
  msgid "Show Stock status"
235
  msgstr "Mostrar estado del stock"
236
 
237
+ #: ../class.yith-wcwl-init.php:968
238
  msgid "Use buttons"
239
  msgstr "Usar botones"
240
 
241
+ #: ../class.yith-wcwl-init.php:969
242
  msgid "Use buttons instead of a simple anchors."
243
  msgstr "Usar botones en lugar de anclas simples."
244
 
245
+ #: ../class.yith-wcwl-init.php:976
246
  msgid "Custom CSS"
247
  msgstr "CSS personalizado"
248
 
249
+ #: ../class.yith-wcwl-init.php:984
250
  msgid "Use theme style"
251
  msgstr "Usar el estilo del tema"
252
 
253
+ #: ../class.yith-wcwl-init.php:985
254
  msgid "Use the theme style."
255
  msgstr "Usar el estilo del tema."
256
 
257
+ #: ../class.yith-wcwl-init.php:992
258
  msgid "Buttons rounded corners"
259
  msgstr "Botones con ángulos redondeados"
260
 
261
+ #: ../class.yith-wcwl-init.php:993
262
  msgid "Make buttons corner rounded"
263
  msgstr "Redondear los ángulos de los botones"
264
 
265
+ #: ../class.yith-wcwl-init.php:1000
266
  msgid "\"Add to Wishlist\" icon"
267
  msgstr "Ícono de \"Agregar a la Lista de deseos\""
268
 
269
+ #: ../class.yith-wcwl-init.php:1001
270
  msgid "Add an icon to the \"Add to Wishlist\" button"
271
  msgstr "Agregar un ícono al botón de \"Agregar a la Lista de deseos\""
272
 
273
+ #: ../class.yith-wcwl-init.php:1012
274
  msgid "\"Add to Cart\" icon"
275
  msgstr "Ícono de \"Agregar al carrito\""
276
 
277
+ #: ../class.yith-wcwl-init.php:1013
278
  msgid "Add an icon to the \"Add to Cart\" button"
279
  msgstr "Agregar un ícono para el botón de \"Agregar al carrito\""
280
 
281
+ #: ../class.yith-wcwl-init.php:1031
282
  msgid "Share on Facebook"
283
  msgstr "Compartir en Facebook"
284
 
285
+ #: ../class.yith-wcwl-init.php:1038
286
  msgid "Tweet on Twitter"
287
  msgstr "Tuitear en Twitter"
288
 
289
+ #: ../class.yith-wcwl-init.php:1045
290
  msgid "Pin on Pinterest"
291
  msgstr "Compartir en Pinterest"
292
 
293
+ #: ../class.yith-wcwl-init.php:1052
294
  msgid "Share on Google+"
295
  msgstr "Compartir en Google+"
296
 
297
+ #: ../class.yith-wcwl-init.php:1059
298
+ msgid "Share by Email"
299
+ msgstr ""
300
+
301
+ #: ../class.yith-wcwl-init.php:1066
302
  msgid "Socials title"
303
  msgstr "Título de sociales"
304
 
305
+ #: ../class.yith-wcwl-init.php:1074
306
  msgid "Socials text"
307
  msgstr "Texto de sociales"
308
 
309
+ #: ../class.yith-wcwl-init.php:1075
310
  msgid ""
311
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
312
  "strong> where you want the URL of your wishlist to appear."
314
  "Será usado por Facebook, Twitter y Pinterest. Usar <strong>%wishlist_url%</"
315
  "strong> donde quieras que aparezca la URL de tu lista de deseos."
316
 
317
+ #: ../class.yith-wcwl-init.php:1083
318
  msgid "Socials image URL"
319
  msgstr "URL de las imágenes sociales"
320
 
322
  msgid "wishlist"
323
  msgstr "lista de deseos"
324
 
325
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl.php:351
326
  #: ../yith-wcwl-ajax.php:47
327
  msgid "Product added!"
328
  msgstr "¡Agregado!"
329
 
330
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl-ui.php:68
331
  msgid "Browse Wishlist"
332
  msgstr "Ir a la Lista de deseos"
333
 
334
+ #: ../class.yith-wcwl-ui.php:68
335
  msgid "The product is already in the wishlist!"
336
  msgstr "¡Este producto ya está en la lista de deseos!"
337
 
338
+ #: ../class.yith-wcwl-ui.php:100
339
  msgid "Select options"
340
  msgstr "Selecciona opciones"
341
 
342
+ #: ../class.yith-wcwl-ui.php:145
343
  msgid "Share on:"
344
  msgstr "Compartir en:"
345
 
346
+ #: ../class.yith-wcwl-ui.php:149
347
  msgid "Facebook"
348
  msgstr ""
349
 
350
+ #: ../class.yith-wcwl-ui.php:152
351
  msgid "Twitter"
352
  msgstr ""
353
 
354
+ #: ../class.yith-wcwl-ui.php:161
355
+ msgid "email"
356
+ msgstr ""
357
+
358
  #: ../class.yith-wcwl.php:140
359
  msgid "Error occurred while adding product to wishlist."
360
  msgstr ""
382
  "nuevamente, por favor."
383
 
384
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
385
+ #: ../templates/wishlist.php:161
386
  msgid "No products were added to the wishlist"
387
  msgstr "Tu lista de deseos está vacía por el momento..."
388
 
389
+ #: ../templates/wishlist.php:82
390
  msgid "Product Name"
391
  msgstr "Producto"
392
 
393
+ #: ../templates/wishlist.php:83
394
  msgid "Unit Price"
395
  msgstr "Precio por unidad"
396
 
397
+ #: ../templates/wishlist.php:84
398
  msgid "Stock Status"
399
  msgstr "Estado de stock"
400
 
401
  # Not literal but more friendly.
402
+ #: ../templates/wishlist.php:107
403
  msgid "Remove this product"
404
  msgstr "Ya no lo quiero"
405
 
406
+ #: ../templates/wishlist.php:127
407
  msgid "Free!"
408
  msgstr ""
409
 
410
+ #: ../templates/wishlist.php:140
411
  msgid "Out of Stock"
412
  msgstr "No disponible por el momento"
413
 
414
+ #: ../templates/wishlist.php:143
415
  msgid "In Stock"
416
  msgstr "¡Disponible!"
417
 
languages/yit-es_MX.mo CHANGED
Binary file
languages/yit-es_MX.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-03-21 17:01+0100\n"
5
- "PO-Revision-Date: 2014-03-21 17:01+0100\n"
6
  "Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: en\n"
@@ -22,103 +22,103 @@ msgstr "Lista de deseos"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "No se ha podido agregar, el producto no cuenta con existencias."
24
 
25
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:858
26
  msgid "General Settings"
27
  msgstr "Ajustes Generales"
28
 
29
- #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:964
30
  msgid "Styles"
31
  msgstr "Estilos"
32
 
33
- #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1027
34
  msgid "Socials &amp; Share"
35
  msgstr "Compartir"
36
 
37
- #: ../class.yith-wcwl-init.php:452
38
  msgid "Colors"
39
  msgstr "Colores"
40
 
41
- #: ../class.yith-wcwl-init.php:482
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr "\"Agregar a Lista de deseos\" Color de fondo del boton"
44
 
45
- #: ../class.yith-wcwl-init.php:483
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr "\"Agregar a Lista de deseos\" texto del boton"
48
 
49
- #: ../class.yith-wcwl-init.php:484
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr "\"Agregar a Lista de deseos\" borde del boton"
52
 
53
- #: ../class.yith-wcwl-init.php:490
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr "\"Agregar a Lista de deseos\" fondo del boton (hover)"
56
 
57
- #: ../class.yith-wcwl-init.php:491
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr "\"Agregar a Lista de deseos\" texto del boton (hover)"
60
 
61
- #: ../class.yith-wcwl-init.php:492
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr "\"Agregar a Lista de deseos\" borde del boton (hover)"
64
 
65
- #: ../class.yith-wcwl-init.php:497
66
  msgid "\"Add to Cart\" button background"
67
  msgstr "\"Agregar al Carrito\" fondo del boton"
68
 
69
- #: ../class.yith-wcwl-init.php:498
70
  msgid "\"Add to Cart\" button text"
71
  msgstr "\"Agregar al Carrito\" texto del boton"
72
 
73
- #: ../class.yith-wcwl-init.php:499
74
  msgid "\"Add to Cart\" button border"
75
  msgstr "\"Agregar al Carrito\" borde del boton"
76
 
77
- #: ../class.yith-wcwl-init.php:505
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr "\"Agregar al Carrito\" fondo del boton"
80
 
81
- #: ../class.yith-wcwl-init.php:506
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr "\"Agregar al Carrito\" texto del boton (hover)"
84
 
85
- #: ../class.yith-wcwl-init.php:507
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr "\"Agregar al Carrito\" borde del boton(hover)"
88
 
89
- #: ../class.yith-wcwl-init.php:512
90
  msgid "Wishlist table background"
91
  msgstr "\"Agregar al Carrito\" texto del boton"
92
 
93
- #: ../class.yith-wcwl-init.php:513
94
  msgid "Wishlist table text"
95
  msgstr "Texto de la tabla de la Lista de deseos"
96
 
97
- #: ../class.yith-wcwl-init.php:514
98
  msgid "Wishlist table border"
99
  msgstr "Borde de la tabla de la Lista de deseos"
100
 
101
- #: ../class.yith-wcwl-init.php:574
102
  msgid "Settings"
103
  msgstr "Ajustes"
104
 
105
- #: ../class.yith-wcwl-init.php:575
106
  msgid "Docs"
107
  msgstr "Documentación"
108
 
109
- #: ../class.yith-wcwl-init.php:591
110
  msgid "Wishlist Page"
111
  msgstr "Página de la Lista de Deseos"
112
 
113
- #: ../class.yith-wcwl-init.php:592
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr ""
116
 
117
- #: ../class.yith-wcwl-init.php:861
118
  msgid "Enable YITH Wishlist"
119
  msgstr "Activar la Lista de deseos de YITH"
120
 
121
- #: ../class.yith-wcwl-init.php:862
122
  #, fuzzy, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -130,11 +130,11 @@ msgstr ""
130
  "Páginas.</strong>Por favor lea la <a href=\"%s\" target=\"_blank"
131
  "\">documentación</a>. del plugin"
132
 
133
- #: ../class.yith-wcwl-init.php:869
134
  msgid "Use cookies"
135
  msgstr "Usar cookies"
136
 
137
- #: ../class.yith-wcwl-init.php:870
138
  msgid ""
139
  "Use cookies instead of sessions. With this feature, the wishlist will be "
140
  "available for each not logged user for 30 days. Use the filter "
@@ -146,21 +146,21 @@ msgstr ""
146
  "el filtro yith_wcwl_cookie_expiration_time para cambiar el tiempo de "
147
  "expiración (se necesita usar timestamp)."
148
 
149
- #: ../class.yith-wcwl-init.php:877
150
  msgid "Wishlist title"
151
  msgstr "Título de la Lista de deseos"
152
 
153
- #: ../class.yith-wcwl-init.php:879 ../class.yith-wcwl-init.php:880
154
- #: ../class.yith-wcwl-init.php:1060 ../class.yith-wcwl-init.php:1061
155
  #, php-format
156
  msgid "My wishlist on %s"
157
  msgstr "My Lista de deseos en %s"
158
 
159
- #: ../class.yith-wcwl-init.php:889
160
  msgid "Position"
161
  msgstr "Posición"
162
 
163
- #: ../class.yith-wcwl-init.php:890
164
  msgid ""
165
  "On variable products you can add it only After \"Add to Cart\" or use the "
166
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -168,27 +168,27 @@ msgstr ""
168
  "En productos variables puedes agregarlos solo despues de \"Agregar al "
169
  "Carrito\" o usar el shortcode [yith_wcwl_add_to_wishlist]."
170
 
171
- #: ../class.yith-wcwl-init.php:896
172
  msgid "After \"Add to cart\""
173
  msgstr "Despued de \"Agregar al Carrito\""
174
 
175
- #: ../class.yith-wcwl-init.php:897
176
  msgid "After thumbnails"
177
  msgstr "Despues de las miniaturas"
178
 
179
- #: ../class.yith-wcwl-init.php:898
180
  msgid "After summary"
181
  msgstr "Despues del Resumen"
182
 
183
- #: ../class.yith-wcwl-init.php:899
184
  msgid "Use shortcode"
185
  msgstr "Usar shortcode"
186
 
187
- #: ../class.yith-wcwl-init.php:904
188
  msgid "Redirect to cart"
189
  msgstr "Redirreccionar al Carrito"
190
 
191
- #: ../class.yith-wcwl-init.php:905
192
  msgid ""
193
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
194
  "page."
@@ -196,112 +196,116 @@ msgstr ""
196
  "Redireccionar a la página del Carrito si el boton de \"Agregar al Carrito\" "
197
  "es presionado en la página de la Lista de deseos."
198
 
199
- #: ../class.yith-wcwl-init.php:912
200
  msgid "Remove if added to the cart"
201
  msgstr "Remover si es agregado al Carrito."
202
 
203
- #: ../class.yith-wcwl-init.php:913
204
  msgid "Remove the product from the wishlist if is been added to the cart."
205
  msgstr ""
206
  "Remover el producto de la Lista de deseos si ha sido agregado al Carrito."
207
 
208
- #: ../class.yith-wcwl-init.php:920
209
  msgid "\"Add to Wishlist\" text"
210
  msgstr "Testo de \"Agregar al Carrito\""
211
 
212
- #: ../class.yith-wcwl-init.php:922 ../class.yith-wcwl-init.php:923
213
  msgid "Add to Wishlist"
214
  msgstr "Agregar a la Lista de deseos"
215
 
216
- #: ../class.yith-wcwl-init.php:928
217
  msgid "\"Add to Cart\" text"
218
  msgstr "Texto de \"Agregar del Carrito\""
219
 
220
- #: ../class.yith-wcwl-init.php:930 ../class.yith-wcwl-init.php:931
221
  msgid "Add to Cart"
222
  msgstr "Agregar al Carrito"
223
 
224
- #: ../class.yith-wcwl-init.php:936
225
  msgid "Show Unit price"
226
  msgstr "Mostrar Precio unitario"
227
 
228
- #: ../class.yith-wcwl-init.php:944
229
  msgid "Show \"Add to Cart\" button"
230
  msgstr "Mostar el boton de \"Agregar al Carrito\" "
231
 
232
- #: ../class.yith-wcwl-init.php:952
233
  msgid "Show Stock status"
234
  msgstr "Mostar el estado del inventario"
235
 
236
- #: ../class.yith-wcwl-init.php:967
237
  msgid "Use buttons"
238
  msgstr "Usar botones"
239
 
240
- #: ../class.yith-wcwl-init.php:968
241
  msgid "Use buttons instead of a simple anchors."
242
  msgstr "Usar botones en lugar de un simple elnaces"
243
 
244
- #: ../class.yith-wcwl-init.php:975
245
  msgid "Custom CSS"
246
  msgstr "Css personalizado"
247
 
248
- #: ../class.yith-wcwl-init.php:983
249
  msgid "Use theme style"
250
  msgstr "Usar estilo del tema"
251
 
252
- #: ../class.yith-wcwl-init.php:984
253
  msgid "Use the theme style."
254
  msgstr "Usar el estilo del tema"
255
 
256
- #: ../class.yith-wcwl-init.php:991
257
  msgid "Buttons rounded corners"
258
  msgstr "Bordes redondeados para los botones"
259
 
260
- #: ../class.yith-wcwl-init.php:992
261
  msgid "Make buttons corner rounded"
262
  msgstr "Redondear los bordes de los botones"
263
 
264
- #: ../class.yith-wcwl-init.php:999
265
  msgid "\"Add to Wishlist\" icon"
266
  msgstr "Icono de \"Agregar a la Lista de deseos\""
267
 
268
- #: ../class.yith-wcwl-init.php:1000
269
  msgid "Add an icon to the \"Add to Wishlist\" button"
270
  msgstr "Agregar un icono para el boton de \"Agregar a la Lista de deseos\""
271
 
272
- #: ../class.yith-wcwl-init.php:1011
273
  msgid "\"Add to Cart\" icon"
274
  msgstr "Icono de \"Agregar al carrito\""
275
 
276
- #: ../class.yith-wcwl-init.php:1012
277
  msgid "Add an icon to the \"Add to Cart\" button"
278
  msgstr "Agregar un icono para el boton de \"Agregar al Carrito\""
279
 
280
- #: ../class.yith-wcwl-init.php:1030
281
  msgid "Share on Facebook"
282
  msgstr "Compartir en Facebook"
283
 
284
- #: ../class.yith-wcwl-init.php:1037
285
  msgid "Tweet on Twitter"
286
  msgstr "Tweet en Twitter"
287
 
288
- #: ../class.yith-wcwl-init.php:1044
289
  msgid "Pin on Pinterest"
290
  msgstr "Pin en Pinterest"
291
 
292
- #: ../class.yith-wcwl-init.php:1051
293
  msgid "Share on Google+"
294
  msgstr "Compartir en Google+"
295
 
296
- #: ../class.yith-wcwl-init.php:1058
 
 
 
 
297
  msgid "Socials title"
298
  msgstr "Tiítulo de Redes sociales"
299
 
300
- #: ../class.yith-wcwl-init.php:1066
301
  msgid "Socials text"
302
  msgstr "Texto de redes sociales"
303
 
304
- #: ../class.yith-wcwl-init.php:1067
305
  msgid ""
306
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
307
  "strong> where you want the URL of your wishlist to appear."
@@ -309,7 +313,7 @@ msgstr ""
309
  "Será usado por Facebook, Twitter y Pinterest. Usa <strong>%wishlist_url%</"
310
  "strong> donde quieras que la URL de tu Lista de deseos aparesca."
311
 
312
- #: ../class.yith-wcwl-init.php:1075
313
  msgid "Socials image URL"
314
  msgstr "URL de la imágen de las redes Sociales."
315
 
@@ -317,35 +321,39 @@ msgstr "URL de la imágen de las redes Sociales."
317
  msgid "wishlist"
318
  msgstr "Lista de deseos"
319
 
320
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
321
  #: ../yith-wcwl-ajax.php:47
322
  msgid "Product added!"
323
  msgstr "¡Producto agregado!"
324
 
325
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
326
  msgid "Browse Wishlist"
327
  msgstr "Ir a la Lista de deseos"
328
 
329
- #: ../class.yith-wcwl-ui.php:65
330
  msgid "The product is already in the wishlist!"
331
  msgstr "El producto ya se encuentra en la Lista de deseos!"
332
 
333
- #: ../class.yith-wcwl-ui.php:93
334
  msgid "Select options"
335
  msgstr "Opciones de selección."
336
 
337
- #: ../class.yith-wcwl-ui.php:136
338
  msgid "Share on:"
339
  msgstr "Compartir en:"
340
 
341
- #: ../class.yith-wcwl-ui.php:140
342
  msgid "Facebook"
343
  msgstr ""
344
 
345
- #: ../class.yith-wcwl-ui.php:143
346
  msgid "Twitter"
347
  msgstr ""
348
 
 
 
 
 
349
  #: ../class.yith-wcwl.php:140
350
  msgid "Error occurred while adding product to wishlist."
351
  msgstr "Ocurrió un erro mientras se agregaba el producto a la Lista"
@@ -367,35 +375,35 @@ msgid "Error. Unable to remove the product from the wishlist."
367
  msgstr "Error. No fue posible eliminar el producto de la Lista."
368
 
369
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
370
- #: ../templates/wishlist.php:158
371
  msgid "No products were added to the wishlist"
372
  msgstr "Aun no has agregado nada."
373
 
374
- #: ../templates/wishlist.php:80
375
  msgid "Product Name"
376
  msgstr "Nombre del producto"
377
 
378
- #: ../templates/wishlist.php:81
379
  msgid "Unit Price"
380
  msgstr "Precio unitario"
381
 
382
- #: ../templates/wishlist.php:82
383
  msgid "Stock Status"
384
  msgstr "Estado del inventario"
385
 
386
- #: ../templates/wishlist.php:104
387
  msgid "Remove this product"
388
  msgstr "Remover este producto"
389
 
390
- #: ../templates/wishlist.php:124
391
  msgid "Free!"
392
  msgstr "Gratis!"
393
 
394
- #: ../templates/wishlist.php:137
395
  msgid "Out of Stock"
396
  msgstr "Agotado"
397
 
398
- #: ../templates/wishlist.php:140
399
  msgid "In Stock"
400
  msgstr "Disponilbe."
401
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
+ "POT-Creation-Date: 2014-09-16 16:16+0100\n"
5
+ "PO-Revision-Date: 2014-09-16 16:16+0100\n"
6
  "Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: en\n"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "No se ha podido agregar, el producto no cuenta con existencias."
24
 
25
+ #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:859
26
  msgid "General Settings"
27
  msgstr "Ajustes Generales"
28
 
29
+ #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:965
30
  msgid "Styles"
31
  msgstr "Estilos"
32
 
33
+ #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1028
34
  msgid "Socials &amp; Share"
35
  msgstr "Compartir"
36
 
37
+ #: ../class.yith-wcwl-init.php:453
38
  msgid "Colors"
39
  msgstr "Colores"
40
 
41
+ #: ../class.yith-wcwl-init.php:483
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr "\"Agregar a Lista de deseos\" Color de fondo del boton"
44
 
45
+ #: ../class.yith-wcwl-init.php:484
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr "\"Agregar a Lista de deseos\" texto del boton"
48
 
49
+ #: ../class.yith-wcwl-init.php:485
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr "\"Agregar a Lista de deseos\" borde del boton"
52
 
53
+ #: ../class.yith-wcwl-init.php:491
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr "\"Agregar a Lista de deseos\" fondo del boton (hover)"
56
 
57
+ #: ../class.yith-wcwl-init.php:492
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr "\"Agregar a Lista de deseos\" texto del boton (hover)"
60
 
61
+ #: ../class.yith-wcwl-init.php:493
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr "\"Agregar a Lista de deseos\" borde del boton (hover)"
64
 
65
+ #: ../class.yith-wcwl-init.php:498
66
  msgid "\"Add to Cart\" button background"
67
  msgstr "\"Agregar al Carrito\" fondo del boton"
68
 
69
+ #: ../class.yith-wcwl-init.php:499
70
  msgid "\"Add to Cart\" button text"
71
  msgstr "\"Agregar al Carrito\" texto del boton"
72
 
73
+ #: ../class.yith-wcwl-init.php:500
74
  msgid "\"Add to Cart\" button border"
75
  msgstr "\"Agregar al Carrito\" borde del boton"
76
 
77
+ #: ../class.yith-wcwl-init.php:506
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr "\"Agregar al Carrito\" fondo del boton"
80
 
81
+ #: ../class.yith-wcwl-init.php:507
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr "\"Agregar al Carrito\" texto del boton (hover)"
84
 
85
+ #: ../class.yith-wcwl-init.php:508
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr "\"Agregar al Carrito\" borde del boton(hover)"
88
 
89
+ #: ../class.yith-wcwl-init.php:513
90
  msgid "Wishlist table background"
91
  msgstr "\"Agregar al Carrito\" texto del boton"
92
 
93
+ #: ../class.yith-wcwl-init.php:514
94
  msgid "Wishlist table text"
95
  msgstr "Texto de la tabla de la Lista de deseos"
96
 
97
+ #: ../class.yith-wcwl-init.php:515
98
  msgid "Wishlist table border"
99
  msgstr "Borde de la tabla de la Lista de deseos"
100
 
101
+ #: ../class.yith-wcwl-init.php:575
102
  msgid "Settings"
103
  msgstr "Ajustes"
104
 
105
+ #: ../class.yith-wcwl-init.php:576
106
  msgid "Docs"
107
  msgstr "Documentación"
108
 
109
+ #: ../class.yith-wcwl-init.php:592
110
  msgid "Wishlist Page"
111
  msgstr "Página de la Lista de Deseos"
112
 
113
+ #: ../class.yith-wcwl-init.php:593
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr ""
116
 
117
+ #: ../class.yith-wcwl-init.php:862
118
  msgid "Enable YITH Wishlist"
119
  msgstr "Activar la Lista de deseos de YITH"
120
 
121
+ #: ../class.yith-wcwl-init.php:863
122
  #, fuzzy, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
130
  "Páginas.</strong>Por favor lea la <a href=\"%s\" target=\"_blank"
131
  "\">documentación</a>. del plugin"
132
 
133
+ #: ../class.yith-wcwl-init.php:870
134
  msgid "Use cookies"
135
  msgstr "Usar cookies"
136
 
137
+ #: ../class.yith-wcwl-init.php:871
138
  msgid ""
139
  "Use cookies instead of sessions. With this feature, the wishlist will be "
140
  "available for each not logged user for 30 days. Use the filter "
146
  "el filtro yith_wcwl_cookie_expiration_time para cambiar el tiempo de "
147
  "expiración (se necesita usar timestamp)."
148
 
149
+ #: ../class.yith-wcwl-init.php:878
150
  msgid "Wishlist title"
151
  msgstr "Título de la Lista de deseos"
152
 
153
+ #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
154
+ #: ../class.yith-wcwl-init.php:1068 ../class.yith-wcwl-init.php:1069
155
  #, php-format
156
  msgid "My wishlist on %s"
157
  msgstr "My Lista de deseos en %s"
158
 
159
+ #: ../class.yith-wcwl-init.php:890
160
  msgid "Position"
161
  msgstr "Posición"
162
 
163
+ #: ../class.yith-wcwl-init.php:891
164
  msgid ""
165
  "On variable products you can add it only After \"Add to Cart\" or use the "
166
  "shortcode [yith_wcwl_add_to_wishlist]."
168
  "En productos variables puedes agregarlos solo despues de \"Agregar al "
169
  "Carrito\" o usar el shortcode [yith_wcwl_add_to_wishlist]."
170
 
171
+ #: ../class.yith-wcwl-init.php:897
172
  msgid "After \"Add to cart\""
173
  msgstr "Despued de \"Agregar al Carrito\""
174
 
175
+ #: ../class.yith-wcwl-init.php:898
176
  msgid "After thumbnails"
177
  msgstr "Despues de las miniaturas"
178
 
179
+ #: ../class.yith-wcwl-init.php:899
180
  msgid "After summary"
181
  msgstr "Despues del Resumen"
182
 
183
+ #: ../class.yith-wcwl-init.php:900
184
  msgid "Use shortcode"
185
  msgstr "Usar shortcode"
186
 
187
+ #: ../class.yith-wcwl-init.php:905
188
  msgid "Redirect to cart"
189
  msgstr "Redirreccionar al Carrito"
190
 
191
+ #: ../class.yith-wcwl-init.php:906
192
  msgid ""
193
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
194
  "page."
196
  "Redireccionar a la página del Carrito si el boton de \"Agregar al Carrito\" "
197
  "es presionado en la página de la Lista de deseos."
198
 
199
+ #: ../class.yith-wcwl-init.php:913
200
  msgid "Remove if added to the cart"
201
  msgstr "Remover si es agregado al Carrito."
202
 
203
+ #: ../class.yith-wcwl-init.php:914
204
  msgid "Remove the product from the wishlist if is been added to the cart."
205
  msgstr ""
206
  "Remover el producto de la Lista de deseos si ha sido agregado al Carrito."
207
 
208
+ #: ../class.yith-wcwl-init.php:921
209
  msgid "\"Add to Wishlist\" text"
210
  msgstr "Testo de \"Agregar al Carrito\""
211
 
212
+ #: ../class.yith-wcwl-init.php:923 ../class.yith-wcwl-init.php:924
213
  msgid "Add to Wishlist"
214
  msgstr "Agregar a la Lista de deseos"
215
 
216
+ #: ../class.yith-wcwl-init.php:929
217
  msgid "\"Add to Cart\" text"
218
  msgstr "Texto de \"Agregar del Carrito\""
219
 
220
+ #: ../class.yith-wcwl-init.php:931 ../class.yith-wcwl-init.php:932
221
  msgid "Add to Cart"
222
  msgstr "Agregar al Carrito"
223
 
224
+ #: ../class.yith-wcwl-init.php:937
225
  msgid "Show Unit price"
226
  msgstr "Mostrar Precio unitario"
227
 
228
+ #: ../class.yith-wcwl-init.php:945
229
  msgid "Show \"Add to Cart\" button"
230
  msgstr "Mostar el boton de \"Agregar al Carrito\" "
231
 
232
+ #: ../class.yith-wcwl-init.php:953
233
  msgid "Show Stock status"
234
  msgstr "Mostar el estado del inventario"
235
 
236
+ #: ../class.yith-wcwl-init.php:968
237
  msgid "Use buttons"
238
  msgstr "Usar botones"
239
 
240
+ #: ../class.yith-wcwl-init.php:969
241
  msgid "Use buttons instead of a simple anchors."
242
  msgstr "Usar botones en lugar de un simple elnaces"
243
 
244
+ #: ../class.yith-wcwl-init.php:976
245
  msgid "Custom CSS"
246
  msgstr "Css personalizado"
247
 
248
+ #: ../class.yith-wcwl-init.php:984
249
  msgid "Use theme style"
250
  msgstr "Usar estilo del tema"
251
 
252
+ #: ../class.yith-wcwl-init.php:985
253
  msgid "Use the theme style."
254
  msgstr "Usar el estilo del tema"
255
 
256
+ #: ../class.yith-wcwl-init.php:992
257
  msgid "Buttons rounded corners"
258
  msgstr "Bordes redondeados para los botones"
259
 
260
+ #: ../class.yith-wcwl-init.php:993
261
  msgid "Make buttons corner rounded"
262
  msgstr "Redondear los bordes de los botones"
263
 
264
+ #: ../class.yith-wcwl-init.php:1000
265
  msgid "\"Add to Wishlist\" icon"
266
  msgstr "Icono de \"Agregar a la Lista de deseos\""
267
 
268
+ #: ../class.yith-wcwl-init.php:1001
269
  msgid "Add an icon to the \"Add to Wishlist\" button"
270
  msgstr "Agregar un icono para el boton de \"Agregar a la Lista de deseos\""
271
 
272
+ #: ../class.yith-wcwl-init.php:1012
273
  msgid "\"Add to Cart\" icon"
274
  msgstr "Icono de \"Agregar al carrito\""
275
 
276
+ #: ../class.yith-wcwl-init.php:1013
277
  msgid "Add an icon to the \"Add to Cart\" button"
278
  msgstr "Agregar un icono para el boton de \"Agregar al Carrito\""
279
 
280
+ #: ../class.yith-wcwl-init.php:1031
281
  msgid "Share on Facebook"
282
  msgstr "Compartir en Facebook"
283
 
284
+ #: ../class.yith-wcwl-init.php:1038
285
  msgid "Tweet on Twitter"
286
  msgstr "Tweet en Twitter"
287
 
288
+ #: ../class.yith-wcwl-init.php:1045
289
  msgid "Pin on Pinterest"
290
  msgstr "Pin en Pinterest"
291
 
292
+ #: ../class.yith-wcwl-init.php:1052
293
  msgid "Share on Google+"
294
  msgstr "Compartir en Google+"
295
 
296
+ #: ../class.yith-wcwl-init.php:1059
297
+ msgid "Share by Email"
298
+ msgstr ""
299
+
300
+ #: ../class.yith-wcwl-init.php:1066
301
  msgid "Socials title"
302
  msgstr "Tiítulo de Redes sociales"
303
 
304
+ #: ../class.yith-wcwl-init.php:1074
305
  msgid "Socials text"
306
  msgstr "Texto de redes sociales"
307
 
308
+ #: ../class.yith-wcwl-init.php:1075
309
  msgid ""
310
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
311
  "strong> where you want the URL of your wishlist to appear."
313
  "Será usado por Facebook, Twitter y Pinterest. Usa <strong>%wishlist_url%</"
314
  "strong> donde quieras que la URL de tu Lista de deseos aparesca."
315
 
316
+ #: ../class.yith-wcwl-init.php:1083
317
  msgid "Socials image URL"
318
  msgstr "URL de la imágen de las redes Sociales."
319
 
321
  msgid "wishlist"
322
  msgstr "Lista de deseos"
323
 
324
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl.php:351
325
  #: ../yith-wcwl-ajax.php:47
326
  msgid "Product added!"
327
  msgstr "¡Producto agregado!"
328
 
329
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl-ui.php:68
330
  msgid "Browse Wishlist"
331
  msgstr "Ir a la Lista de deseos"
332
 
333
+ #: ../class.yith-wcwl-ui.php:68
334
  msgid "The product is already in the wishlist!"
335
  msgstr "El producto ya se encuentra en la Lista de deseos!"
336
 
337
+ #: ../class.yith-wcwl-ui.php:100
338
  msgid "Select options"
339
  msgstr "Opciones de selección."
340
 
341
+ #: ../class.yith-wcwl-ui.php:145
342
  msgid "Share on:"
343
  msgstr "Compartir en:"
344
 
345
+ #: ../class.yith-wcwl-ui.php:149
346
  msgid "Facebook"
347
  msgstr ""
348
 
349
+ #: ../class.yith-wcwl-ui.php:152
350
  msgid "Twitter"
351
  msgstr ""
352
 
353
+ #: ../class.yith-wcwl-ui.php:161
354
+ msgid "email"
355
+ msgstr ""
356
+
357
  #: ../class.yith-wcwl.php:140
358
  msgid "Error occurred while adding product to wishlist."
359
  msgstr "Ocurrió un erro mientras se agregaba el producto a la Lista"
375
  msgstr "Error. No fue posible eliminar el producto de la Lista."
376
 
377
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
378
+ #: ../templates/wishlist.php:161
379
  msgid "No products were added to the wishlist"
380
  msgstr "Aun no has agregado nada."
381
 
382
+ #: ../templates/wishlist.php:82
383
  msgid "Product Name"
384
  msgstr "Nombre del producto"
385
 
386
+ #: ../templates/wishlist.php:83
387
  msgid "Unit Price"
388
  msgstr "Precio unitario"
389
 
390
+ #: ../templates/wishlist.php:84
391
  msgid "Stock Status"
392
  msgstr "Estado del inventario"
393
 
394
+ #: ../templates/wishlist.php:107
395
  msgid "Remove this product"
396
  msgstr "Remover este producto"
397
 
398
+ #: ../templates/wishlist.php:127
399
  msgid "Free!"
400
  msgstr "Gratis!"
401
 
402
+ #: ../templates/wishlist.php:140
403
  msgid "Out of Stock"
404
  msgstr "Agotado"
405
 
406
+ #: ../templates/wishlist.php:143
407
  msgid "In Stock"
408
  msgstr "Disponilbe."
409
 
languages/yit-fr_FR.mo CHANGED
Binary file
languages/yit-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-21 17:01+0100\n"
6
- "PO-Revision-Date: 2014-03-21 17:01+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -26,103 +26,103 @@ msgstr "Wishlist"
26
  msgid "Cannot add to the cart as product is Out of Stock!"
27
  msgstr "Impossible d'ajouter au panier : ce produit n'est plus en stock."
28
 
29
- #: class.yith-wcwl-init.php:430 class.yith-wcwl-init.php:858
30
  msgid "General Settings"
31
  msgstr "Paramètres généraux"
32
 
33
- #: class.yith-wcwl-init.php:431 class.yith-wcwl-init.php:964
34
  msgid "Styles"
35
  msgstr "Styles"
36
 
37
- #: class.yith-wcwl-init.php:432 class.yith-wcwl-init.php:1027
38
  msgid "Socials &amp; Share"
39
  msgstr "Partage"
40
 
41
- #: class.yith-wcwl-init.php:452
42
  msgid "Colors"
43
  msgstr "Couleurs"
44
 
45
- #: class.yith-wcwl-init.php:482
46
  msgid "\"Add to Wishlist\" button background"
47
  msgstr "Fond du bouton \"Ajouter à la Wishlist\""
48
 
49
- #: class.yith-wcwl-init.php:483
50
  msgid "\"Add to Wishlist\" button text"
51
  msgstr "Texte du bouton \"Ajouter à la Wishlist\""
52
 
53
- #: class.yith-wcwl-init.php:484
54
  msgid "\"Add to Wishlist\" button border"
55
  msgstr "Bordure du bouton \"Ajouter à la Wishlist\""
56
 
57
- #: class.yith-wcwl-init.php:490
58
  msgid "\"Add to Wishlist\" button background (hover)"
59
  msgstr "Fond du bouton \"Ajouter à la Wishlist\" (survol)"
60
 
61
- #: class.yith-wcwl-init.php:491
62
  msgid "\"Add to Wishlist\" button text (hover)"
63
  msgstr "Texte du bouton \"Ajouter à la Wishlist\" (survol)"
64
 
65
- #: class.yith-wcwl-init.php:492
66
  msgid "\"Add to Wishlist\" button border (hover)"
67
  msgstr "Bordure du bouton \"Ajouter à la Wishlist\" (survol)"
68
 
69
- #: class.yith-wcwl-init.php:497
70
  msgid "\"Add to Cart\" button background"
71
  msgstr "Fond du bouton \"Ajouter au panier\""
72
 
73
- #: class.yith-wcwl-init.php:498
74
  msgid "\"Add to Cart\" button text"
75
  msgstr "Texte du bouton \"Ajouter au panier\""
76
 
77
- #: class.yith-wcwl-init.php:499
78
  msgid "\"Add to Cart\" button border"
79
  msgstr "Bordure du bouton \"Ajouter au panier\""
80
 
81
- #: class.yith-wcwl-init.php:505
82
  msgid "\"Add to Cart\" button background (hover)"
83
  msgstr "Fond du bouton \"Ajouter au panier\" (survol)"
84
 
85
- #: class.yith-wcwl-init.php:506
86
  msgid "\"Add to Cart\" button text (hover)"
87
  msgstr "Texte du bouton \"Ajouter au panier\" (survol)"
88
 
89
- #: class.yith-wcwl-init.php:507
90
  msgid "\"Add to Cart\" button border (hover)"
91
  msgstr "Bordure du bouton \"Ajouter au panier\" (hover)"
92
 
93
- #: class.yith-wcwl-init.php:512
94
  msgid "Wishlist table background"
95
  msgstr "Fond du tableau de la Wishlist"
96
 
97
- #: class.yith-wcwl-init.php:513
98
  msgid "Wishlist table text"
99
  msgstr "Texte du tableau de la Wishlist"
100
 
101
- #: class.yith-wcwl-init.php:514
102
  msgid "Wishlist table border"
103
  msgstr "Bordure du tableau de la Wishlist"
104
 
105
- #: class.yith-wcwl-init.php:574
106
  msgid "Settings"
107
  msgstr "Paramètres"
108
 
109
- #: class.yith-wcwl-init.php:575
110
  msgid "Docs"
111
  msgstr "Documentation"
112
 
113
- #: class.yith-wcwl-init.php:591
114
  msgid "Wishlist Page"
115
  msgstr "Page Wishlist"
116
 
117
- #: class.yith-wcwl-init.php:592
118
  msgid "Page contents: [yith_wcwl_wishlist]"
119
  msgstr "Contenu de la page : [yith_wcwl_wishlist]"
120
 
121
- #: class.yith-wcwl-init.php:861
122
  msgid "Enable YITH Wishlist"
123
  msgstr "Activer YITH Wishlist"
124
 
125
- #: class.yith-wcwl-init.php:862
126
  #, fuzzy, php-format
127
  msgid ""
128
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -134,11 +134,11 @@ msgstr ""
134
  "strong> Egalement, prenez le temps de lire la <a href=\"%s\" target=\"_blank"
135
  "\">documentation</a>."
136
 
137
- #: class.yith-wcwl-init.php:869
138
  msgid "Use cookies"
139
  msgstr "Utiliser des cookies"
140
 
141
- #: class.yith-wcwl-init.php:870
142
  msgid ""
143
  "Use cookies instead of sessions. With this feature, the wishlist will be "
144
  "available for each not logged user for 30 days. Use the filter "
@@ -150,21 +150,21 @@ msgstr ""
150
  "jours. Utilisez le filtre yith_wcwl_cookie_expiration_time pour changer la "
151
  "durée de validité (requiert un timestamp)"
152
 
153
- #: class.yith-wcwl-init.php:877
154
  msgid "Wishlist title"
155
  msgstr "Titre de la Wishlist"
156
 
157
- #: class.yith-wcwl-init.php:879 class.yith-wcwl-init.php:880
158
- #: class.yith-wcwl-init.php:1060 class.yith-wcwl-init.php:1061
159
  #, php-format
160
  msgid "My wishlist on %s"
161
  msgstr "Ma wishlist sur %s"
162
 
163
- #: class.yith-wcwl-init.php:889
164
  msgid "Position"
165
  msgstr "Position"
166
 
167
- #: class.yith-wcwl-init.php:890
168
  msgid ""
169
  "On variable products you can add it only After \"Add to Cart\" or use the "
170
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -172,27 +172,27 @@ msgstr ""
172
  "Pour les produits variables, vous pouver seulement l'ajouter après \"Ajouter "
173
  "au panier\" ou en utilisant le shortcode [yith_wcwl_add_to_wishlist]."
174
 
175
- #: class.yith-wcwl-init.php:896
176
  msgid "After \"Add to cart\""
177
  msgstr "Après \"Ajouter au panier\""
178
 
179
- #: class.yith-wcwl-init.php:897
180
  msgid "After thumbnails"
181
  msgstr "Après les images"
182
 
183
- #: class.yith-wcwl-init.php:898
184
  msgid "After summary"
185
  msgstr "Après le résumé"
186
 
187
- #: class.yith-wcwl-init.php:899
188
  msgid "Use shortcode"
189
  msgstr "Utiliser le shortcode"
190
 
191
- #: class.yith-wcwl-init.php:904
192
  msgid "Redirect to cart"
193
  msgstr "Rediriger vers le panier"
194
 
195
- #: class.yith-wcwl-init.php:905
196
  msgid ""
197
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
198
  "page."
@@ -200,111 +200,115 @@ msgstr ""
200
  "Rediriger vers le panier si on clique sur le bouton \"Ajouter au panier\" "
201
  "sur la page Wishlist."
202
 
203
- #: class.yith-wcwl-init.php:912
204
  msgid "Remove if added to the cart"
205
  msgstr "Supprimer si ajouté au panier"
206
 
207
- #: class.yith-wcwl-init.php:913
208
  msgid "Remove the product from the wishlist if is been added to the cart."
209
  msgstr "Supprimer le produit de la wishlist s'il a été ajouté au panier."
210
 
211
- #: class.yith-wcwl-init.php:920
212
  msgid "\"Add to Wishlist\" text"
213
  msgstr "Texte \"Ajouter à la wishlist\""
214
 
215
- #: class.yith-wcwl-init.php:922 class.yith-wcwl-init.php:923
216
  msgid "Add to Wishlist"
217
  msgstr "Ajouter à la wishlist"
218
 
219
- #: class.yith-wcwl-init.php:928
220
  msgid "\"Add to Cart\" text"
221
  msgstr "Texte \"Ajouter au panier\""
222
 
223
- #: class.yith-wcwl-init.php:930 class.yith-wcwl-init.php:931
224
  msgid "Add to Cart"
225
  msgstr "Ajouter au panier"
226
 
227
- #: class.yith-wcwl-init.php:936
228
  msgid "Show Unit price"
229
  msgstr "Voir le prix unitaire"
230
 
231
- #: class.yith-wcwl-init.php:944
232
  msgid "Show \"Add to Cart\" button"
233
  msgstr "Voir le bouton \"Ajouter au panier\""
234
 
235
- #: class.yith-wcwl-init.php:952
236
  msgid "Show Stock status"
237
  msgstr "Voir le statut du stock"
238
 
239
- #: class.yith-wcwl-init.php:967
240
  msgid "Use buttons"
241
  msgstr "Utiliser des boutons"
242
 
243
- #: class.yith-wcwl-init.php:968
244
  msgid "Use buttons instead of a simple anchors."
245
  msgstr "Utiliser des boutons à la place de simples liens"
246
 
247
- #: class.yith-wcwl-init.php:975
248
  msgid "Custom CSS"
249
  msgstr "CSS personnalisée"
250
 
251
- #: class.yith-wcwl-init.php:983
252
  msgid "Use theme style"
253
  msgstr "Utiliser le style du thème"
254
 
255
- #: class.yith-wcwl-init.php:984
256
  msgid "Use the theme style."
257
  msgstr "Utiliser le style du thème?"
258
 
259
- #: class.yith-wcwl-init.php:991
260
  msgid "Buttons rounded corners"
261
  msgstr "Boutons avec des coins arrondis"
262
 
263
- #: class.yith-wcwl-init.php:992
264
  msgid "Make buttons corner rounded"
265
  msgstr "Arrondir les coins des boutons"
266
 
267
- #: class.yith-wcwl-init.php:999
268
  msgid "\"Add to Wishlist\" icon"
269
  msgstr "Icône \"Ajouter à la wishlist\""
270
 
271
- #: class.yith-wcwl-init.php:1000
272
  msgid "Add an icon to the \"Add to Wishlist\" button"
273
  msgstr "Ajouter une icône au bouton \"Ajouter à la wishlist\""
274
 
275
- #: class.yith-wcwl-init.php:1011
276
  msgid "\"Add to Cart\" icon"
277
  msgstr "Icône \"Ajouter au panier\""
278
 
279
- #: class.yith-wcwl-init.php:1012
280
  msgid "Add an icon to the \"Add to Cart\" button"
281
  msgstr "Ajouter une icône au bouton \"Ajouter au panier\""
282
 
283
- #: class.yith-wcwl-init.php:1030
284
  msgid "Share on Facebook"
285
  msgstr "Partager sur Facebook"
286
 
287
- #: class.yith-wcwl-init.php:1037
288
  msgid "Tweet on Twitter"
289
  msgstr "Partager sur Twitter"
290
 
291
- #: class.yith-wcwl-init.php:1044
292
  msgid "Pin on Pinterest"
293
  msgstr "Partager sur Pinterest"
294
 
295
- #: class.yith-wcwl-init.php:1051
296
  msgid "Share on Google+"
297
  msgstr "Partager sur Google+"
298
 
299
- #: class.yith-wcwl-init.php:1058
 
 
 
 
300
  msgid "Socials title"
301
  msgstr "Titre pour les réseaux sociaux"
302
 
303
- #: class.yith-wcwl-init.php:1066
304
  msgid "Socials text"
305
  msgstr "Texte pour les réseaux sociaux"
306
 
307
- #: class.yith-wcwl-init.php:1067
308
  msgid ""
309
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
310
  "strong> where you want the URL of your wishlist to appear."
@@ -313,7 +317,7 @@ msgstr ""
313
  "%wishlist_url%</strong> à l'endroit où vous voulez faire apparaitre le lien "
314
  "vers votre wishlist."
315
 
316
- #: class.yith-wcwl-init.php:1075
317
  msgid "Socials image URL"
318
  msgstr "URL de l'image pour les réseaux sociaux"
319
 
@@ -322,34 +326,38 @@ msgctxt "page_slug"
322
  msgid "wishlist"
323
  msgstr "wishlist"
324
 
325
- #: class.yith-wcwl-ui.php:64 class.yith-wcwl.php:351 yith-wcwl-ajax.php:47
326
  msgid "Product added!"
327
  msgstr "Produit ajouté !"
328
 
329
- #: class.yith-wcwl-ui.php:64 class.yith-wcwl-ui.php:65
330
  msgid "Browse Wishlist"
331
  msgstr "Parcourir la wishlist"
332
 
333
- #: class.yith-wcwl-ui.php:65
334
  msgid "The product is already in the wishlist!"
335
  msgstr "Ce produit est dans votre wishlist"
336
 
337
- #: class.yith-wcwl-ui.php:93
338
  msgid "Select options"
339
  msgstr "Choisir les options"
340
 
341
- #: class.yith-wcwl-ui.php:136
342
  msgid "Share on:"
343
  msgstr "Partager sur :"
344
 
345
- #: class.yith-wcwl-ui.php:140
346
  msgid "Facebook"
347
  msgstr "Facebook"
348
 
349
- #: class.yith-wcwl-ui.php:143
350
  msgid "Twitter"
351
  msgstr "Twitter"
352
 
 
 
 
 
353
  #: class.yith-wcwl.php:140
354
  msgid "Error occurred while adding product to wishlist."
355
  msgstr "Une erreur est survenue lors de l'ajout du produit à la wishlist"
@@ -371,35 +379,35 @@ msgstr "Le produit a bien été supprimé"
371
  msgid "Error. Unable to remove the product from the wishlist."
372
  msgstr "Erreur : impossible de supprimer le produit de la wishlist"
373
 
374
- #: class.yith-wcwl.php:377 yith-wcwl-ajax.php:37 templates/wishlist.php:158
375
  msgid "No products were added to the wishlist"
376
  msgstr "Aucun produit dans votre wishlist"
377
 
378
- #: templates/wishlist.php:80
379
  msgid "Product Name"
380
  msgstr "Produit"
381
 
382
- #: templates/wishlist.php:81
383
  msgid "Unit Price"
384
  msgstr "Prix unitaire"
385
 
386
- #: templates/wishlist.php:82
387
  msgid "Stock Status"
388
  msgstr "Stock"
389
 
390
- #: templates/wishlist.php:104
391
  msgid "Remove this product"
392
  msgstr "Enlever ce produit"
393
 
394
- #: templates/wishlist.php:124
395
  msgid "Free!"
396
  msgstr ""
397
 
398
- #: templates/wishlist.php:137
399
  msgid "Out of Stock"
400
  msgstr "Epuisé"
401
 
402
- #: templates/wishlist.php:140
403
  msgid "In Stock"
404
  msgstr "En stock"
405
 
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Wishlist v1.0.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-09-16 16:16+0100\n"
6
+ "PO-Revision-Date: 2014-09-16 16:16+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
26
  msgid "Cannot add to the cart as product is Out of Stock!"
27
  msgstr "Impossible d'ajouter au panier : ce produit n'est plus en stock."
28
 
29
+ #: class.yith-wcwl-init.php:430 class.yith-wcwl-init.php:859
30
  msgid "General Settings"
31
  msgstr "Paramètres généraux"
32
 
33
+ #: class.yith-wcwl-init.php:431 class.yith-wcwl-init.php:965
34
  msgid "Styles"
35
  msgstr "Styles"
36
 
37
+ #: class.yith-wcwl-init.php:432 class.yith-wcwl-init.php:1028
38
  msgid "Socials &amp; Share"
39
  msgstr "Partage"
40
 
41
+ #: class.yith-wcwl-init.php:453
42
  msgid "Colors"
43
  msgstr "Couleurs"
44
 
45
+ #: class.yith-wcwl-init.php:483
46
  msgid "\"Add to Wishlist\" button background"
47
  msgstr "Fond du bouton \"Ajouter à la Wishlist\""
48
 
49
+ #: class.yith-wcwl-init.php:484
50
  msgid "\"Add to Wishlist\" button text"
51
  msgstr "Texte du bouton \"Ajouter à la Wishlist\""
52
 
53
+ #: class.yith-wcwl-init.php:485
54
  msgid "\"Add to Wishlist\" button border"
55
  msgstr "Bordure du bouton \"Ajouter à la Wishlist\""
56
 
57
+ #: class.yith-wcwl-init.php:491
58
  msgid "\"Add to Wishlist\" button background (hover)"
59
  msgstr "Fond du bouton \"Ajouter à la Wishlist\" (survol)"
60
 
61
+ #: class.yith-wcwl-init.php:492
62
  msgid "\"Add to Wishlist\" button text (hover)"
63
  msgstr "Texte du bouton \"Ajouter à la Wishlist\" (survol)"
64
 
65
+ #: class.yith-wcwl-init.php:493
66
  msgid "\"Add to Wishlist\" button border (hover)"
67
  msgstr "Bordure du bouton \"Ajouter à la Wishlist\" (survol)"
68
 
69
+ #: class.yith-wcwl-init.php:498
70
  msgid "\"Add to Cart\" button background"
71
  msgstr "Fond du bouton \"Ajouter au panier\""
72
 
73
+ #: class.yith-wcwl-init.php:499
74
  msgid "\"Add to Cart\" button text"
75
  msgstr "Texte du bouton \"Ajouter au panier\""
76
 
77
+ #: class.yith-wcwl-init.php:500
78
  msgid "\"Add to Cart\" button border"
79
  msgstr "Bordure du bouton \"Ajouter au panier\""
80
 
81
+ #: class.yith-wcwl-init.php:506
82
  msgid "\"Add to Cart\" button background (hover)"
83
  msgstr "Fond du bouton \"Ajouter au panier\" (survol)"
84
 
85
+ #: class.yith-wcwl-init.php:507
86
  msgid "\"Add to Cart\" button text (hover)"
87
  msgstr "Texte du bouton \"Ajouter au panier\" (survol)"
88
 
89
+ #: class.yith-wcwl-init.php:508
90
  msgid "\"Add to Cart\" button border (hover)"
91
  msgstr "Bordure du bouton \"Ajouter au panier\" (hover)"
92
 
93
+ #: class.yith-wcwl-init.php:513
94
  msgid "Wishlist table background"
95
  msgstr "Fond du tableau de la Wishlist"
96
 
97
+ #: class.yith-wcwl-init.php:514
98
  msgid "Wishlist table text"
99
  msgstr "Texte du tableau de la Wishlist"
100
 
101
+ #: class.yith-wcwl-init.php:515
102
  msgid "Wishlist table border"
103
  msgstr "Bordure du tableau de la Wishlist"
104
 
105
+ #: class.yith-wcwl-init.php:575
106
  msgid "Settings"
107
  msgstr "Paramètres"
108
 
109
+ #: class.yith-wcwl-init.php:576
110
  msgid "Docs"
111
  msgstr "Documentation"
112
 
113
+ #: class.yith-wcwl-init.php:592
114
  msgid "Wishlist Page"
115
  msgstr "Page Wishlist"
116
 
117
+ #: class.yith-wcwl-init.php:593
118
  msgid "Page contents: [yith_wcwl_wishlist]"
119
  msgstr "Contenu de la page : [yith_wcwl_wishlist]"
120
 
121
+ #: class.yith-wcwl-init.php:862
122
  msgid "Enable YITH Wishlist"
123
  msgstr "Activer YITH Wishlist"
124
 
125
+ #: class.yith-wcwl-init.php:863
126
  #, fuzzy, php-format
127
  msgid ""
128
  "Enable all plugin features. <strong>Be sure to select a voice in the "
134
  "strong> Egalement, prenez le temps de lire la <a href=\"%s\" target=\"_blank"
135
  "\">documentation</a>."
136
 
137
+ #: class.yith-wcwl-init.php:870
138
  msgid "Use cookies"
139
  msgstr "Utiliser des cookies"
140
 
141
+ #: class.yith-wcwl-init.php:871
142
  msgid ""
143
  "Use cookies instead of sessions. With this feature, the wishlist will be "
144
  "available for each not logged user for 30 days. Use the filter "
150
  "jours. Utilisez le filtre yith_wcwl_cookie_expiration_time pour changer la "
151
  "durée de validité (requiert un timestamp)"
152
 
153
+ #: class.yith-wcwl-init.php:878
154
  msgid "Wishlist title"
155
  msgstr "Titre de la Wishlist"
156
 
157
+ #: class.yith-wcwl-init.php:880 class.yith-wcwl-init.php:881
158
+ #: class.yith-wcwl-init.php:1068 class.yith-wcwl-init.php:1069
159
  #, php-format
160
  msgid "My wishlist on %s"
161
  msgstr "Ma wishlist sur %s"
162
 
163
+ #: class.yith-wcwl-init.php:890
164
  msgid "Position"
165
  msgstr "Position"
166
 
167
+ #: class.yith-wcwl-init.php:891
168
  msgid ""
169
  "On variable products you can add it only After \"Add to Cart\" or use the "
170
  "shortcode [yith_wcwl_add_to_wishlist]."
172
  "Pour les produits variables, vous pouver seulement l'ajouter après \"Ajouter "
173
  "au panier\" ou en utilisant le shortcode [yith_wcwl_add_to_wishlist]."
174
 
175
+ #: class.yith-wcwl-init.php:897
176
  msgid "After \"Add to cart\""
177
  msgstr "Après \"Ajouter au panier\""
178
 
179
+ #: class.yith-wcwl-init.php:898
180
  msgid "After thumbnails"
181
  msgstr "Après les images"
182
 
183
+ #: class.yith-wcwl-init.php:899
184
  msgid "After summary"
185
  msgstr "Après le résumé"
186
 
187
+ #: class.yith-wcwl-init.php:900
188
  msgid "Use shortcode"
189
  msgstr "Utiliser le shortcode"
190
 
191
+ #: class.yith-wcwl-init.php:905
192
  msgid "Redirect to cart"
193
  msgstr "Rediriger vers le panier"
194
 
195
+ #: class.yith-wcwl-init.php:906
196
  msgid ""
197
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
198
  "page."
200
  "Rediriger vers le panier si on clique sur le bouton \"Ajouter au panier\" "
201
  "sur la page Wishlist."
202
 
203
+ #: class.yith-wcwl-init.php:913
204
  msgid "Remove if added to the cart"
205
  msgstr "Supprimer si ajouté au panier"
206
 
207
+ #: class.yith-wcwl-init.php:914
208
  msgid "Remove the product from the wishlist if is been added to the cart."
209
  msgstr "Supprimer le produit de la wishlist s'il a été ajouté au panier."
210
 
211
+ #: class.yith-wcwl-init.php:921
212
  msgid "\"Add to Wishlist\" text"
213
  msgstr "Texte \"Ajouter à la wishlist\""
214
 
215
+ #: class.yith-wcwl-init.php:923 class.yith-wcwl-init.php:924
216
  msgid "Add to Wishlist"
217
  msgstr "Ajouter à la wishlist"
218
 
219
+ #: class.yith-wcwl-init.php:929
220
  msgid "\"Add to Cart\" text"
221
  msgstr "Texte \"Ajouter au panier\""
222
 
223
+ #: class.yith-wcwl-init.php:931 class.yith-wcwl-init.php:932
224
  msgid "Add to Cart"
225
  msgstr "Ajouter au panier"
226
 
227
+ #: class.yith-wcwl-init.php:937
228
  msgid "Show Unit price"
229
  msgstr "Voir le prix unitaire"
230
 
231
+ #: class.yith-wcwl-init.php:945
232
  msgid "Show \"Add to Cart\" button"
233
  msgstr "Voir le bouton \"Ajouter au panier\""
234
 
235
+ #: class.yith-wcwl-init.php:953
236
  msgid "Show Stock status"
237
  msgstr "Voir le statut du stock"
238
 
239
+ #: class.yith-wcwl-init.php:968
240
  msgid "Use buttons"
241
  msgstr "Utiliser des boutons"
242
 
243
+ #: class.yith-wcwl-init.php:969
244
  msgid "Use buttons instead of a simple anchors."
245
  msgstr "Utiliser des boutons à la place de simples liens"
246
 
247
+ #: class.yith-wcwl-init.php:976
248
  msgid "Custom CSS"
249
  msgstr "CSS personnalisée"
250
 
251
+ #: class.yith-wcwl-init.php:984
252
  msgid "Use theme style"
253
  msgstr "Utiliser le style du thème"
254
 
255
+ #: class.yith-wcwl-init.php:985
256
  msgid "Use the theme style."
257
  msgstr "Utiliser le style du thème?"
258
 
259
+ #: class.yith-wcwl-init.php:992
260
  msgid "Buttons rounded corners"
261
  msgstr "Boutons avec des coins arrondis"
262
 
263
+ #: class.yith-wcwl-init.php:993
264
  msgid "Make buttons corner rounded"
265
  msgstr "Arrondir les coins des boutons"
266
 
267
+ #: class.yith-wcwl-init.php:1000
268
  msgid "\"Add to Wishlist\" icon"
269
  msgstr "Icône \"Ajouter à la wishlist\""
270
 
271
+ #: class.yith-wcwl-init.php:1001
272
  msgid "Add an icon to the \"Add to Wishlist\" button"
273
  msgstr "Ajouter une icône au bouton \"Ajouter à la wishlist\""
274
 
275
+ #: class.yith-wcwl-init.php:1012
276
  msgid "\"Add to Cart\" icon"
277
  msgstr "Icône \"Ajouter au panier\""
278
 
279
+ #: class.yith-wcwl-init.php:1013
280
  msgid "Add an icon to the \"Add to Cart\" button"
281
  msgstr "Ajouter une icône au bouton \"Ajouter au panier\""
282
 
283
+ #: class.yith-wcwl-init.php:1031
284
  msgid "Share on Facebook"
285
  msgstr "Partager sur Facebook"
286
 
287
+ #: class.yith-wcwl-init.php:1038
288
  msgid "Tweet on Twitter"
289
  msgstr "Partager sur Twitter"
290
 
291
+ #: class.yith-wcwl-init.php:1045
292
  msgid "Pin on Pinterest"
293
  msgstr "Partager sur Pinterest"
294
 
295
+ #: class.yith-wcwl-init.php:1052
296
  msgid "Share on Google+"
297
  msgstr "Partager sur Google+"
298
 
299
+ #: class.yith-wcwl-init.php:1059
300
+ msgid "Share by Email"
301
+ msgstr ""
302
+
303
+ #: class.yith-wcwl-init.php:1066
304
  msgid "Socials title"
305
  msgstr "Titre pour les réseaux sociaux"
306
 
307
+ #: class.yith-wcwl-init.php:1074
308
  msgid "Socials text"
309
  msgstr "Texte pour les réseaux sociaux"
310
 
311
+ #: class.yith-wcwl-init.php:1075
312
  msgid ""
313
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
314
  "strong> where you want the URL of your wishlist to appear."
317
  "%wishlist_url%</strong> à l'endroit où vous voulez faire apparaitre le lien "
318
  "vers votre wishlist."
319
 
320
+ #: class.yith-wcwl-init.php:1083
321
  msgid "Socials image URL"
322
  msgstr "URL de l'image pour les réseaux sociaux"
323
 
326
  msgid "wishlist"
327
  msgstr "wishlist"
328
 
329
+ #: class.yith-wcwl-ui.php:67 class.yith-wcwl.php:351 yith-wcwl-ajax.php:47
330
  msgid "Product added!"
331
  msgstr "Produit ajouté !"
332
 
333
+ #: class.yith-wcwl-ui.php:67 class.yith-wcwl-ui.php:68
334
  msgid "Browse Wishlist"
335
  msgstr "Parcourir la wishlist"
336
 
337
+ #: class.yith-wcwl-ui.php:68
338
  msgid "The product is already in the wishlist!"
339
  msgstr "Ce produit est dans votre wishlist"
340
 
341
+ #: class.yith-wcwl-ui.php:100
342
  msgid "Select options"
343
  msgstr "Choisir les options"
344
 
345
+ #: class.yith-wcwl-ui.php:145
346
  msgid "Share on:"
347
  msgstr "Partager sur :"
348
 
349
+ #: class.yith-wcwl-ui.php:149
350
  msgid "Facebook"
351
  msgstr "Facebook"
352
 
353
+ #: class.yith-wcwl-ui.php:152
354
  msgid "Twitter"
355
  msgstr "Twitter"
356
 
357
+ #: class.yith-wcwl-ui.php:161
358
+ msgid "email"
359
+ msgstr ""
360
+
361
  #: class.yith-wcwl.php:140
362
  msgid "Error occurred while adding product to wishlist."
363
  msgstr "Une erreur est survenue lors de l'ajout du produit à la wishlist"
379
  msgid "Error. Unable to remove the product from the wishlist."
380
  msgstr "Erreur : impossible de supprimer le produit de la wishlist"
381
 
382
+ #: class.yith-wcwl.php:377 yith-wcwl-ajax.php:37 templates/wishlist.php:161
383
  msgid "No products were added to the wishlist"
384
  msgstr "Aucun produit dans votre wishlist"
385
 
386
+ #: templates/wishlist.php:82
387
  msgid "Product Name"
388
  msgstr "Produit"
389
 
390
+ #: templates/wishlist.php:83
391
  msgid "Unit Price"
392
  msgstr "Prix unitaire"
393
 
394
+ #: templates/wishlist.php:84
395
  msgid "Stock Status"
396
  msgstr "Stock"
397
 
398
+ #: templates/wishlist.php:107
399
  msgid "Remove this product"
400
  msgstr "Enlever ce produit"
401
 
402
+ #: templates/wishlist.php:127
403
  msgid "Free!"
404
  msgstr ""
405
 
406
+ #: templates/wishlist.php:140
407
  msgid "Out of Stock"
408
  msgstr "Epuisé"
409
 
410
+ #: templates/wishlist.php:143
411
  msgid "In Stock"
412
  msgstr "En stock"
413
 
languages/yit-he_IL.mo CHANGED
Binary file
languages/yit-he_IL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-03-21 17:01+0100\n"
5
- "PO-Revision-Date: 2014-03-21 17:02+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"
@@ -22,103 +22,103 @@ msgstr "רשימת משאלות"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "לא ניתן להוסיף את המוצר לסל כי הוא אינו קיים במלאי!"
24
 
25
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:858
26
  msgid "General Settings"
27
  msgstr "הגדרות כלליות"
28
 
29
- #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:964
30
  msgid "Styles"
31
  msgstr "סגנונות עיצוב"
32
 
33
- #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1027
34
  msgid "Socials &amp; Share"
35
  msgstr ""
36
 
37
- #: ../class.yith-wcwl-init.php:452
38
  msgid "Colors"
39
  msgstr "צבעים"
40
 
41
- #: ../class.yith-wcwl-init.php:482
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr ""
44
 
45
- #: ../class.yith-wcwl-init.php:483
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr ""
48
 
49
- #: ../class.yith-wcwl-init.php:484
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr ""
52
 
53
- #: ../class.yith-wcwl-init.php:490
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr ""
56
 
57
- #: ../class.yith-wcwl-init.php:491
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr ""
60
 
61
- #: ../class.yith-wcwl-init.php:492
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr ""
64
 
65
- #: ../class.yith-wcwl-init.php:497
66
  msgid "\"Add to Cart\" button background"
67
  msgstr ""
68
 
69
- #: ../class.yith-wcwl-init.php:498
70
  msgid "\"Add to Cart\" button text"
71
  msgstr ""
72
 
73
- #: ../class.yith-wcwl-init.php:499
74
  msgid "\"Add to Cart\" button border"
75
  msgstr ""
76
 
77
- #: ../class.yith-wcwl-init.php:505
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr ""
80
 
81
- #: ../class.yith-wcwl-init.php:506
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
84
 
85
- #: ../class.yith-wcwl-init.php:507
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr "\"הוסף לסל\" גבול כפתור (hover)"
88
 
89
- #: ../class.yith-wcwl-init.php:512
90
  msgid "Wishlist table background"
91
  msgstr "רקע טבלת הרשימה"
92
 
93
- #: ../class.yith-wcwl-init.php:513
94
  msgid "Wishlist table text"
95
  msgstr "טקסט בטבלת הרשימה"
96
 
97
- #: ../class.yith-wcwl-init.php:514
98
  msgid "Wishlist table border"
99
  msgstr "גבול טבלאות הרשימה"
100
 
101
- #: ../class.yith-wcwl-init.php:574
102
  msgid "Settings"
103
  msgstr "הגדרות"
104
 
105
- #: ../class.yith-wcwl-init.php:575
106
  msgid "Docs"
107
  msgstr "מסמכים"
108
 
109
- #: ../class.yith-wcwl-init.php:591
110
  msgid "Wishlist Page"
111
  msgstr "עמוד רשימת המשאלות"
112
 
113
- #: ../class.yith-wcwl-init.php:592
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr "תוכן העמוד: [yith_wcwl_wishlist]"
116
 
117
- #: ../class.yith-wcwl-init.php:861
118
  msgid "Enable YITH Wishlist"
119
  msgstr "אפשר שימוש ברשימת המשאלות של YITH"
120
 
121
- #: ../class.yith-wcwl-init.php:862
122
  #, fuzzy, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -129,11 +129,11 @@ msgstr ""
129
  "בהגדרות של WooCommerce &gt; Settings &gt; Pages.</strong> בנוסף, קרא את <a "
130
  "href=\"%s\" target=\"_blank\">הוראות השימוש</a> של התוסף."
131
 
132
- #: ../class.yith-wcwl-init.php:869
133
  msgid "Use cookies"
134
  msgstr ""
135
 
136
- #: ../class.yith-wcwl-init.php:870
137
  msgid ""
138
  "Use cookies instead of sessions. With this feature, the wishlist will be "
139
  "available for each not logged user for 30 days. Use the filter "
@@ -141,160 +141,164 @@ msgid ""
141
  "timestamp )."
142
  msgstr ""
143
 
144
- #: ../class.yith-wcwl-init.php:877
145
  msgid "Wishlist title"
146
  msgstr "כותרת רשימת משאלות"
147
 
148
- #: ../class.yith-wcwl-init.php:879 ../class.yith-wcwl-init.php:880
149
- #: ../class.yith-wcwl-init.php:1060 ../class.yith-wcwl-init.php:1061
150
  #, php-format
151
  msgid "My wishlist on %s"
152
  msgstr "רשימת המשאלות שלי ב-%s"
153
 
154
- #: ../class.yith-wcwl-init.php:889
155
  msgid "Position"
156
  msgstr "מיקום"
157
 
158
- #: ../class.yith-wcwl-init.php:890
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:896
165
  msgid "After \"Add to cart\""
166
  msgstr "לאחר \"הוספה לסל\""
167
 
168
- #: ../class.yith-wcwl-init.php:897
169
  msgid "After thumbnails"
170
  msgstr "אחרי התמונות המוקטנות"
171
 
172
- #: ../class.yith-wcwl-init.php:898
173
  msgid "After summary"
174
  msgstr "אחרי תיאור מוצר"
175
 
176
- #: ../class.yith-wcwl-init.php:899
177
  msgid "Use shortcode"
178
  msgstr "השתמש בקוד מקוצר"
179
 
180
- #: ../class.yith-wcwl-init.php:904
181
  msgid "Redirect to cart"
182
  msgstr "הפנייה לסל הקניות"
183
 
184
- #: ../class.yith-wcwl-init.php:905
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:912
191
  msgid "Remove if added to the cart"
192
  msgstr "הסר מהרשימה אם הוסף לסל"
193
 
194
- #: ../class.yith-wcwl-init.php:913
195
  msgid "Remove the product from the wishlist if is been added to the cart."
196
  msgstr "הסר את המוצר מהרשימה אם הוא הוסף לסל."
197
 
198
- #: ../class.yith-wcwl-init.php:920
199
  msgid "\"Add to Wishlist\" text"
200
  msgstr ""
201
 
202
- #: ../class.yith-wcwl-init.php:922 ../class.yith-wcwl-init.php:923
203
  msgid "Add to Wishlist"
204
  msgstr "הוסף לרשימת המשאלות"
205
 
206
- #: ../class.yith-wcwl-init.php:928
207
  msgid "\"Add to Cart\" text"
208
  msgstr ""
209
 
210
- #: ../class.yith-wcwl-init.php:930 ../class.yith-wcwl-init.php:931
211
  msgid "Add to Cart"
212
  msgstr "הוסף לסל"
213
 
214
- #: ../class.yith-wcwl-init.php:936
215
  #, fuzzy
216
  msgid "Show Unit price"
217
  msgstr "מחיר ליחידה"
218
 
219
- #: ../class.yith-wcwl-init.php:944
220
  #, fuzzy
221
  msgid "Show \"Add to Cart\" button"
222
  msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
223
 
224
- #: ../class.yith-wcwl-init.php:952
225
  #, fuzzy
226
  msgid "Show Stock status"
227
  msgstr "מצב מלאי"
228
 
229
- #: ../class.yith-wcwl-init.php:967
230
  msgid "Use buttons"
231
  msgstr "השתמש בכפתורים"
232
 
233
- #: ../class.yith-wcwl-init.php:968
234
  msgid "Use buttons instead of a simple anchors."
235
  msgstr "השתמש בכפתורים במקום קישורים רגילים."
236
 
237
- #: ../class.yith-wcwl-init.php:975
238
  msgid "Custom CSS"
239
  msgstr "הכנס שורות CSS משלך"
240
 
241
- #: ../class.yith-wcwl-init.php:983
242
  msgid "Use theme style"
243
  msgstr "השתמש בעיצוב של התבנית שלך"
244
 
245
- #: ../class.yith-wcwl-init.php:984
246
  msgid "Use the theme style."
247
  msgstr "השתמש בעיצוב של תבנית האתר."
248
 
249
- #: ../class.yith-wcwl-init.php:991
250
  msgid "Buttons rounded corners"
251
  msgstr "כפתורים עם פינות מעוגלות"
252
 
253
- #: ../class.yith-wcwl-init.php:992
254
  msgid "Make buttons corner rounded"
255
  msgstr "הצג את הכפתורים עם פינות מעוגלות"
256
 
257
- #: ../class.yith-wcwl-init.php:999
258
  msgid "\"Add to Wishlist\" icon"
259
  msgstr ""
260
 
261
- #: ../class.yith-wcwl-init.php:1000
262
  msgid "Add an icon to the \"Add to Wishlist\" button"
263
  msgstr ""
264
 
265
- #: ../class.yith-wcwl-init.php:1011
266
  msgid "\"Add to Cart\" icon"
267
  msgstr ""
268
 
269
- #: ../class.yith-wcwl-init.php:1012
270
  msgid "Add an icon to the \"Add to Cart\" button"
271
  msgstr ""
272
 
273
- #: ../class.yith-wcwl-init.php:1030
274
  msgid "Share on Facebook"
275
  msgstr "שתף בפייסבוק"
276
 
277
- #: ../class.yith-wcwl-init.php:1037
278
  msgid "Tweet on Twitter"
279
  msgstr ""
280
 
281
- #: ../class.yith-wcwl-init.php:1044
282
  msgid "Pin on Pinterest"
283
  msgstr ""
284
 
285
- #: ../class.yith-wcwl-init.php:1051
286
  msgid "Share on Google+"
287
  msgstr "שתף בגוגל+"
288
 
289
- #: ../class.yith-wcwl-init.php:1058
290
- msgid "Socials title"
291
  msgstr ""
292
 
293
  #: ../class.yith-wcwl-init.php:1066
 
 
 
 
294
  msgid "Socials text"
295
  msgstr ""
296
 
297
- #: ../class.yith-wcwl-init.php:1067
298
  msgid ""
299
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
300
  "strong> where you want the URL of your wishlist to appear."
@@ -302,7 +306,7 @@ msgstr ""
302
  "יעשה שימוש על ידי Facebook, Twitter וגם Pinterest. השתמש ב-<strong>"
303
  "%wishlist_url%</strong> היכן שתרצה את ה-URL של רשימת המשאלות שלך שיופיע."
304
 
305
- #: ../class.yith-wcwl-init.php:1075
306
  msgid "Socials image URL"
307
  msgstr ""
308
 
@@ -310,35 +314,39 @@ msgstr ""
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 "ארעה שגיאה בזמן הוספת המוצר לרשימה."
@@ -360,35 +368,35 @@ msgid "Error. Unable to remove the product from the wishlist."
360
  msgstr "שגיאה. לא הצלחנו להסיר את המוצר מרשימת המשאלות."
361
 
362
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
363
- #: ../templates/wishlist.php:158
364
  msgid "No products were added to the wishlist"
365
  msgstr "אין מוצרים ברשימת המשאלות שלך."
366
 
367
- #: ../templates/wishlist.php:80
368
  msgid "Product Name"
369
  msgstr "שם המוצר"
370
 
371
- #: ../templates/wishlist.php:81
372
  msgid "Unit Price"
373
  msgstr "מחיר ליחידה"
374
 
375
- #: ../templates/wishlist.php:82
376
  msgid "Stock Status"
377
  msgstr "מצב מלאי"
378
 
379
- #: ../templates/wishlist.php:104
380
  msgid "Remove this product"
381
  msgstr "הסרת מוצר מהרשימה"
382
 
383
- #: ../templates/wishlist.php:124
384
  msgid "Free!"
385
  msgstr ""
386
 
387
- #: ../templates/wishlist.php:137
388
  msgid "Out of Stock"
389
  msgstr "לא קיים במלאי"
390
 
391
- #: ../templates/wishlist.php:140
392
  msgid "In Stock"
393
  msgstr "קיים במלאי"
394
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
+ "POT-Creation-Date: 2014-09-16 16:16+0100\n"
5
+ "PO-Revision-Date: 2014-09-16 16:16+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"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "לא ניתן להוסיף את המוצר לסל כי הוא אינו קיים במלאי!"
24
 
25
+ #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:859
26
  msgid "General Settings"
27
  msgstr "הגדרות כלליות"
28
 
29
+ #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:965
30
  msgid "Styles"
31
  msgstr "סגנונות עיצוב"
32
 
33
+ #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1028
34
  msgid "Socials &amp; Share"
35
  msgstr ""
36
 
37
+ #: ../class.yith-wcwl-init.php:453
38
  msgid "Colors"
39
  msgstr "צבעים"
40
 
41
+ #: ../class.yith-wcwl-init.php:483
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr ""
44
 
45
+ #: ../class.yith-wcwl-init.php:484
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr ""
48
 
49
+ #: ../class.yith-wcwl-init.php:485
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr ""
52
 
53
+ #: ../class.yith-wcwl-init.php:491
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr ""
56
 
57
+ #: ../class.yith-wcwl-init.php:492
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr ""
60
 
61
+ #: ../class.yith-wcwl-init.php:493
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr ""
64
 
65
+ #: ../class.yith-wcwl-init.php:498
66
  msgid "\"Add to Cart\" button background"
67
  msgstr ""
68
 
69
+ #: ../class.yith-wcwl-init.php:499
70
  msgid "\"Add to Cart\" button text"
71
  msgstr ""
72
 
73
+ #: ../class.yith-wcwl-init.php:500
74
  msgid "\"Add to Cart\" button border"
75
  msgstr ""
76
 
77
+ #: ../class.yith-wcwl-init.php:506
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr ""
80
 
81
+ #: ../class.yith-wcwl-init.php:507
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
84
 
85
+ #: ../class.yith-wcwl-init.php:508
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr "\"הוסף לסל\" גבול כפתור (hover)"
88
 
89
+ #: ../class.yith-wcwl-init.php:513
90
  msgid "Wishlist table background"
91
  msgstr "רקע טבלת הרשימה"
92
 
93
+ #: ../class.yith-wcwl-init.php:514
94
  msgid "Wishlist table text"
95
  msgstr "טקסט בטבלת הרשימה"
96
 
97
+ #: ../class.yith-wcwl-init.php:515
98
  msgid "Wishlist table border"
99
  msgstr "גבול טבלאות הרשימה"
100
 
101
+ #: ../class.yith-wcwl-init.php:575
102
  msgid "Settings"
103
  msgstr "הגדרות"
104
 
105
+ #: ../class.yith-wcwl-init.php:576
106
  msgid "Docs"
107
  msgstr "מסמכים"
108
 
109
+ #: ../class.yith-wcwl-init.php:592
110
  msgid "Wishlist Page"
111
  msgstr "עמוד רשימת המשאלות"
112
 
113
+ #: ../class.yith-wcwl-init.php:593
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr "תוכן העמוד: [yith_wcwl_wishlist]"
116
 
117
+ #: ../class.yith-wcwl-init.php:862
118
  msgid "Enable YITH Wishlist"
119
  msgstr "אפשר שימוש ברשימת המשאלות של YITH"
120
 
121
+ #: ../class.yith-wcwl-init.php:863
122
  #, fuzzy, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
129
  "בהגדרות של WooCommerce &gt; Settings &gt; Pages.</strong> בנוסף, קרא את <a "
130
  "href=\"%s\" target=\"_blank\">הוראות השימוש</a> של התוסף."
131
 
132
+ #: ../class.yith-wcwl-init.php:870
133
  msgid "Use cookies"
134
  msgstr ""
135
 
136
+ #: ../class.yith-wcwl-init.php:871
137
  msgid ""
138
  "Use cookies instead of sessions. With this feature, the wishlist will be "
139
  "available for each not logged user for 30 days. Use the filter "
141
  "timestamp )."
142
  msgstr ""
143
 
144
+ #: ../class.yith-wcwl-init.php:878
145
  msgid "Wishlist title"
146
  msgstr "כותרת רשימת משאלות"
147
 
148
+ #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
149
+ #: ../class.yith-wcwl-init.php:1068 ../class.yith-wcwl-init.php:1069
150
  #, php-format
151
  msgid "My wishlist on %s"
152
  msgstr "רשימת המשאלות שלי ב-%s"
153
 
154
+ #: ../class.yith-wcwl-init.php:890
155
  msgid "Position"
156
  msgstr "מיקום"
157
 
158
+ #: ../class.yith-wcwl-init.php:891
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:897
165
  msgid "After \"Add to cart\""
166
  msgstr "לאחר \"הוספה לסל\""
167
 
168
+ #: ../class.yith-wcwl-init.php:898
169
  msgid "After thumbnails"
170
  msgstr "אחרי התמונות המוקטנות"
171
 
172
+ #: ../class.yith-wcwl-init.php:899
173
  msgid "After summary"
174
  msgstr "אחרי תיאור מוצר"
175
 
176
+ #: ../class.yith-wcwl-init.php:900
177
  msgid "Use shortcode"
178
  msgstr "השתמש בקוד מקוצר"
179
 
180
+ #: ../class.yith-wcwl-init.php:905
181
  msgid "Redirect to cart"
182
  msgstr "הפנייה לסל הקניות"
183
 
184
+ #: ../class.yith-wcwl-init.php:906
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:913
191
  msgid "Remove if added to the cart"
192
  msgstr "הסר מהרשימה אם הוסף לסל"
193
 
194
+ #: ../class.yith-wcwl-init.php:914
195
  msgid "Remove the product from the wishlist if is been added to the cart."
196
  msgstr "הסר את המוצר מהרשימה אם הוא הוסף לסל."
197
 
198
+ #: ../class.yith-wcwl-init.php:921
199
  msgid "\"Add to Wishlist\" text"
200
  msgstr ""
201
 
202
+ #: ../class.yith-wcwl-init.php:923 ../class.yith-wcwl-init.php:924
203
  msgid "Add to Wishlist"
204
  msgstr "הוסף לרשימת המשאלות"
205
 
206
+ #: ../class.yith-wcwl-init.php:929
207
  msgid "\"Add to Cart\" text"
208
  msgstr ""
209
 
210
+ #: ../class.yith-wcwl-init.php:931 ../class.yith-wcwl-init.php:932
211
  msgid "Add to Cart"
212
  msgstr "הוסף לסל"
213
 
214
+ #: ../class.yith-wcwl-init.php:937
215
  #, fuzzy
216
  msgid "Show Unit price"
217
  msgstr "מחיר ליחידה"
218
 
219
+ #: ../class.yith-wcwl-init.php:945
220
  #, fuzzy
221
  msgid "Show \"Add to Cart\" button"
222
  msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
223
 
224
+ #: ../class.yith-wcwl-init.php:953
225
  #, fuzzy
226
  msgid "Show Stock status"
227
  msgstr "מצב מלאי"
228
 
229
+ #: ../class.yith-wcwl-init.php:968
230
  msgid "Use buttons"
231
  msgstr "השתמש בכפתורים"
232
 
233
+ #: ../class.yith-wcwl-init.php:969
234
  msgid "Use buttons instead of a simple anchors."
235
  msgstr "השתמש בכפתורים במקום קישורים רגילים."
236
 
237
+ #: ../class.yith-wcwl-init.php:976
238
  msgid "Custom CSS"
239
  msgstr "הכנס שורות CSS משלך"
240
 
241
+ #: ../class.yith-wcwl-init.php:984
242
  msgid "Use theme style"
243
  msgstr "השתמש בעיצוב של התבנית שלך"
244
 
245
+ #: ../class.yith-wcwl-init.php:985
246
  msgid "Use the theme style."
247
  msgstr "השתמש בעיצוב של תבנית האתר."
248
 
249
+ #: ../class.yith-wcwl-init.php:992
250
  msgid "Buttons rounded corners"
251
  msgstr "כפתורים עם פינות מעוגלות"
252
 
253
+ #: ../class.yith-wcwl-init.php:993
254
  msgid "Make buttons corner rounded"
255
  msgstr "הצג את הכפתורים עם פינות מעוגלות"
256
 
257
+ #: ../class.yith-wcwl-init.php:1000
258
  msgid "\"Add to Wishlist\" icon"
259
  msgstr ""
260
 
261
+ #: ../class.yith-wcwl-init.php:1001
262
  msgid "Add an icon to the \"Add to Wishlist\" button"
263
  msgstr ""
264
 
265
+ #: ../class.yith-wcwl-init.php:1012
266
  msgid "\"Add to Cart\" icon"
267
  msgstr ""
268
 
269
+ #: ../class.yith-wcwl-init.php:1013
270
  msgid "Add an icon to the \"Add to Cart\" button"
271
  msgstr ""
272
 
273
+ #: ../class.yith-wcwl-init.php:1031
274
  msgid "Share on Facebook"
275
  msgstr "שתף בפייסבוק"
276
 
277
+ #: ../class.yith-wcwl-init.php:1038
278
  msgid "Tweet on Twitter"
279
  msgstr ""
280
 
281
+ #: ../class.yith-wcwl-init.php:1045
282
  msgid "Pin on Pinterest"
283
  msgstr ""
284
 
285
+ #: ../class.yith-wcwl-init.php:1052
286
  msgid "Share on Google+"
287
  msgstr "שתף בגוגל+"
288
 
289
+ #: ../class.yith-wcwl-init.php:1059
290
+ msgid "Share by Email"
291
  msgstr ""
292
 
293
  #: ../class.yith-wcwl-init.php:1066
294
+ msgid "Socials title"
295
+ msgstr ""
296
+
297
+ #: ../class.yith-wcwl-init.php:1074
298
  msgid "Socials text"
299
  msgstr ""
300
 
301
+ #: ../class.yith-wcwl-init.php:1075
302
  msgid ""
303
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
304
  "strong> where you want the URL of your wishlist to appear."
306
  "יעשה שימוש על ידי Facebook, Twitter וגם Pinterest. השתמש ב-<strong>"
307
  "%wishlist_url%</strong> היכן שתרצה את ה-URL של רשימת המשאלות שלך שיופיע."
308
 
309
+ #: ../class.yith-wcwl-init.php:1083
310
  msgid "Socials image URL"
311
  msgstr ""
312
 
314
  msgid "wishlist"
315
  msgstr "רשימת משאלות"
316
 
317
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl.php:351
318
  #: ../yith-wcwl-ajax.php:47
319
  msgid "Product added!"
320
  msgstr "המוצר נשמר!"
321
 
322
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl-ui.php:68
323
  msgid "Browse Wishlist"
324
  msgstr "צפה ברשימת השמורים שלך"
325
 
326
+ #: ../class.yith-wcwl-ui.php:68
327
  msgid "The product is already in the wishlist!"
328
  msgstr "המוצר נשמר."
329
 
330
+ #: ../class.yith-wcwl-ui.php:100
331
  msgid "Select options"
332
  msgstr "בחירת דגם"
333
 
334
+ #: ../class.yith-wcwl-ui.php:145
335
  msgid "Share on:"
336
  msgstr "שתף ברשת:"
337
 
338
+ #: ../class.yith-wcwl-ui.php:149
339
  msgid "Facebook"
340
  msgstr "פייסבוק"
341
 
342
+ #: ../class.yith-wcwl-ui.php:152
343
  msgid "Twitter"
344
  msgstr "טוויטר"
345
 
346
+ #: ../class.yith-wcwl-ui.php:161
347
+ msgid "email"
348
+ msgstr ""
349
+
350
  #: ../class.yith-wcwl.php:140
351
  msgid "Error occurred while adding product to wishlist."
352
  msgstr "ארעה שגיאה בזמן הוספת המוצר לרשימה."
368
  msgstr "שגיאה. לא הצלחנו להסיר את המוצר מרשימת המשאלות."
369
 
370
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
371
+ #: ../templates/wishlist.php:161
372
  msgid "No products were added to the wishlist"
373
  msgstr "אין מוצרים ברשימת המשאלות שלך."
374
 
375
+ #: ../templates/wishlist.php:82
376
  msgid "Product Name"
377
  msgstr "שם המוצר"
378
 
379
+ #: ../templates/wishlist.php:83
380
  msgid "Unit Price"
381
  msgstr "מחיר ליחידה"
382
 
383
+ #: ../templates/wishlist.php:84
384
  msgid "Stock Status"
385
  msgstr "מצב מלאי"
386
 
387
+ #: ../templates/wishlist.php:107
388
  msgid "Remove this product"
389
  msgstr "הסרת מוצר מהרשימה"
390
 
391
+ #: ../templates/wishlist.php:127
392
  msgid "Free!"
393
  msgstr ""
394
 
395
+ #: ../templates/wishlist.php:140
396
  msgid "Out of Stock"
397
  msgstr "לא קיים במלאי"
398
 
399
+ #: ../templates/wishlist.php:143
400
  msgid "In Stock"
401
  msgstr "קיים במלאי"
402
 
languages/yit-it_IT.mo CHANGED
Binary file
languages/yit-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Wishlist v1.0.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-21 17:02+0100\n"
6
- "PO-Revision-Date: 2014-03-21 17:02+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"
@@ -29,128 +29,128 @@ msgid "Cannot add to the cart as product is Out of Stock!"
29
  msgstr "Prodotto non disponibile! Impossibile aggiungerlo nel carrello"
30
 
31
  # @ yit
32
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:858
33
  msgid "General Settings"
34
  msgstr "Impostazioni"
35
 
36
  # @ yit
37
- #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:964
38
  msgid "Styles"
39
  msgstr "Stili"
40
 
41
  # @ yit
42
- #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1027
43
  msgid "Socials &amp; Share"
44
  msgstr "Social & Condivisione"
45
 
46
  # @ yit
47
- #: ../class.yith-wcwl-init.php:452
48
  msgid "Colors"
49
  msgstr "Colori"
50
 
51
  # @ yit
52
- #: ../class.yith-wcwl-init.php:482
53
  msgid "\"Add to Wishlist\" button background"
54
  msgstr "Sfondo del pulsante \"Aggiungi alla lista dei desideri\""
55
 
56
  # @ yit
57
- #: ../class.yith-wcwl-init.php:483
58
  msgid "\"Add to Wishlist\" button text"
59
  msgstr "Testo del pulsante \"Aggiungi alla lista dei desideri\""
60
 
61
  # @ yit
62
- #: ../class.yith-wcwl-init.php:484
63
  msgid "\"Add to Wishlist\" button border"
64
  msgstr "Bordo del pulsante \"Aggiungi alla lista dei desideri\""
65
 
66
  # @ yit
67
- #: ../class.yith-wcwl-init.php:490
68
  msgid "\"Add to Wishlist\" button background (hover)"
69
  msgstr ""
70
  "Colore di sfondo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
71
 
72
  # @ yit
73
- #: ../class.yith-wcwl-init.php:491
74
  msgid "\"Add to Wishlist\" button text (hover)"
75
  msgstr "Colore testo per \"Aggiungi alla lista dei desideri\" pulsante (hover)"
76
 
77
  # @ yit
78
- #: ../class.yith-wcwl-init.php:492
79
  msgid "\"Add to Wishlist\" button border (hover)"
80
  msgstr "Colore bordo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
81
 
82
  # @ yit
83
- #: ../class.yith-wcwl-init.php:497
84
  msgid "\"Add to Cart\" button background"
85
  msgstr "Sfondo del pulsante\"Aggiungi al carrello\""
86
 
87
  # @ yit
88
- #: ../class.yith-wcwl-init.php:498
89
  msgid "\"Add to Cart\" button text"
90
  msgstr "Testo del pulsante\"Aggiungi al carrello\""
91
 
92
  # @ yit
93
- #: ../class.yith-wcwl-init.php:499
94
  msgid "\"Add to Cart\" button border"
95
  msgstr "Bordo del pulsante\"Aggiungi al carrello\""
96
 
97
  # @ yit
98
- #: ../class.yith-wcwl-init.php:505
99
  msgid "\"Add to Cart\" button background (hover)"
100
  msgstr "Colore di sfondo per \"Aggiungi al carrello\" pulsante (hover)"
101
 
102
  # @ yit
103
- #: ../class.yith-wcwl-init.php:506
104
  msgid "\"Add to Cart\" button text (hover)"
105
  msgstr "Colore testo per \"Aggiungi al carrello\" pulsante (hover)"
106
 
107
  # @ yit
108
- #: ../class.yith-wcwl-init.php:507
109
  msgid "\"Add to Cart\" button border (hover)"
110
  msgstr "Colore bordo per \"Aggiungi al carrello\" pulsante (hover)"
111
 
112
  # @ yit
113
- #: ../class.yith-wcwl-init.php:512
114
  msgid "Wishlist table background"
115
  msgstr "Sfondo della tabella lista dei desideri"
116
 
117
  # @ yit
118
- #: ../class.yith-wcwl-init.php:513
119
  msgid "Wishlist table text"
120
  msgstr "Testo della tabella lista dei desideri"
121
 
122
  # @ yit
123
- #: ../class.yith-wcwl-init.php:514
124
  msgid "Wishlist table border"
125
  msgstr "Bordo della tabella lista dei desideri"
126
 
127
  # @ yit
128
- #: ../class.yith-wcwl-init.php:574
129
  msgid "Settings"
130
  msgstr "Impostazioni"
131
 
132
  # @ yit
133
- #: ../class.yith-wcwl-init.php:575
134
  msgid "Docs"
135
  msgstr "Documenti"
136
 
137
  # @ yit
138
- #: ../class.yith-wcwl-init.php:591
139
  msgid "Wishlist Page"
140
  msgstr "Lista dei desideri"
141
 
142
  # @ yit
143
- #: ../class.yith-wcwl-init.php:592
144
  msgid "Page contents: [yith_wcwl_wishlist]"
145
  msgstr "Contenuto della pagina: [yith_wcwl_wishlist]"
146
 
147
  # @ yit
148
- #: ../class.yith-wcwl-init.php:861
149
  msgid "Enable YITH Wishlist"
150
  msgstr "Abilita YITH WooCommerce Wishlist"
151
 
152
  # @ yit
153
- #: ../class.yith-wcwl-init.php:862
154
  #, fuzzy, php-format
155
  msgid ""
156
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -163,12 +163,12 @@ msgstr ""
163
  "a> del plugin."
164
 
165
  # @ yit
166
- #: ../class.yith-wcwl-init.php:869
167
  msgid "Use cookies"
168
  msgstr "Utilizza cookie"
169
 
170
  # @ yit
171
- #: ../class.yith-wcwl-init.php:870
172
  msgid ""
173
  "Use cookies instead of sessions. With this feature, the wishlist will be "
174
  "available for each not logged user for 30 days. Use the filter "
@@ -181,24 +181,24 @@ msgstr ""
181
  "durata del cookie ( in timestamp )"
182
 
183
  # @ yit
184
- #: ../class.yith-wcwl-init.php:877
185
  msgid "Wishlist title"
186
  msgstr "Titolo della lista dei desideri"
187
 
188
  # @ yit
189
- #: ../class.yith-wcwl-init.php:879 ../class.yith-wcwl-init.php:880
190
- #: ../class.yith-wcwl-init.php:1060 ../class.yith-wcwl-init.php:1061
191
  #, php-format
192
  msgid "My wishlist on %s"
193
  msgstr "La mia lista dei desideri su %s"
194
 
195
  # @ yit
196
- #: ../class.yith-wcwl-init.php:889
197
  msgid "Position"
198
  msgstr "Posizione"
199
 
200
  # @ yit
201
- #: ../class.yith-wcwl-init.php:890
202
  msgid ""
203
  "On variable products you can add it only After \"Add to Cart\" or use the "
204
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -207,32 +207,32 @@ msgstr ""
207
  "\" o utilizzare lo shortcode [yith_wcwl_add_to_wishlist]."
208
 
209
  # @ yit
210
- #: ../class.yith-wcwl-init.php:896
211
  msgid "After \"Add to cart\""
212
  msgstr "Dopo \"Aggiungi al Carrello\""
213
 
214
  # @ yit
215
- #: ../class.yith-wcwl-init.php:897
216
  msgid "After thumbnails"
217
  msgstr "Dopo le thumbnail"
218
 
219
  # @ yit
220
- #: ../class.yith-wcwl-init.php:898
221
  msgid "After summary"
222
  msgstr "Dopo la descrizione"
223
 
224
  # @ yit
225
- #: ../class.yith-wcwl-init.php:899
226
  msgid "Use shortcode"
227
  msgstr "Utilizza lo shortcode"
228
 
229
  # @ yit
230
- #: ../class.yith-wcwl-init.php:904
231
  msgid "Redirect to cart"
232
  msgstr "Reindirizza al carrello"
233
 
234
  # @ yit
235
- #: ../class.yith-wcwl-init.php:905
236
  msgid ""
237
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
238
  "page."
@@ -241,141 +241,145 @@ msgstr ""
241
  "bottone \"Aggiungi al carrello\" "
242
 
243
  # @ yit
244
- #: ../class.yith-wcwl-init.php:912
245
  msgid "Remove if added to the cart"
246
  msgstr "Rimuovi se aggiunto al carrello"
247
 
248
  # @ yit
249
- #: ../class.yith-wcwl-init.php:913
250
  msgid "Remove the product from the wishlist if is been added to the cart."
251
  msgstr ""
252
  "Quando un prodotto viene aggiunto al carrello, viene rimosso dalla lista dei "
253
  "desideri."
254
 
255
  # @ yit
256
- #: ../class.yith-wcwl-init.php:920
257
  msgid "\"Add to Wishlist\" text"
258
  msgstr "Testo del pulsante\"Aggiungi alla lista dei desideri\""
259
 
260
  # @ yit
261
- #: ../class.yith-wcwl-init.php:922 ../class.yith-wcwl-init.php:923
262
  msgid "Add to Wishlist"
263
  msgstr "Aggiungi alla lista dei desideri"
264
 
265
  # @ yit
266
- #: ../class.yith-wcwl-init.php:928
267
  msgid "\"Add to Cart\" text"
268
  msgstr "Testo del pulsante\"Aggiungi al carrello\""
269
 
270
  # @ yit
271
- #: ../class.yith-wcwl-init.php:930 ../class.yith-wcwl-init.php:931
272
  msgid "Add to Cart"
273
  msgstr "Aggiungi al Carrello"
274
 
275
  # @ yit
276
- #: ../class.yith-wcwl-init.php:936
277
  #, fuzzy
278
  msgid "Show Unit price"
279
  msgstr "Prezzo Unitario"
280
 
281
  # @ yit
282
- #: ../class.yith-wcwl-init.php:944
283
  msgid "Show \"Add to Cart\" button"
284
  msgstr "Mostra il pulsante \"Aggiungi al carrello\""
285
 
286
  # @ yit
287
- #: ../class.yith-wcwl-init.php:952
288
  #, fuzzy
289
  msgid "Show Stock status"
290
  msgstr "Disponibilitá"
291
 
292
  # @ yit
293
- #: ../class.yith-wcwl-init.php:967
294
  msgid "Use buttons"
295
  msgstr "Usa pulsanti"
296
 
297
  # @ yit
298
- #: ../class.yith-wcwl-init.php:968
299
  msgid "Use buttons instead of a simple anchors."
300
  msgstr "Utilizza dei pulsanti al posto delle ancore"
301
 
302
  # @ yit
303
- #: ../class.yith-wcwl-init.php:975
304
  msgid "Custom CSS"
305
  msgstr "CSS personalizzato"
306
 
307
  # @ yit
308
- #: ../class.yith-wcwl-init.php:983
309
  msgid "Use theme style"
310
  msgstr "Usa stile del tema"
311
 
312
  # @ yit
313
- #: ../class.yith-wcwl-init.php:984
314
  msgid "Use the theme style."
315
  msgstr "Usa lo stile del tema."
316
 
317
  # @ yit
318
- #: ../class.yith-wcwl-init.php:991
319
  msgid "Buttons rounded corners"
320
  msgstr "Pulsanti con bordi arrotondati"
321
 
322
  # @ yit
323
- #: ../class.yith-wcwl-init.php:992
324
  msgid "Make buttons corner rounded"
325
  msgstr "Arrotonda i bordi dei pulsanti"
326
 
327
  # @ yit
328
- #: ../class.yith-wcwl-init.php:999
329
  msgid "\"Add to Wishlist\" icon"
330
  msgstr "Icona \"Aggiungi alla lista dei desideri\""
331
 
332
  # @ yit
333
- #: ../class.yith-wcwl-init.php:1000
334
  msgid "Add an icon to the \"Add to Wishlist\" button"
335
  msgstr "Aggiungi un'icona al pulsante \"Aggiungi alla lista dei desideri\""
336
 
337
  # @ yit
338
- #: ../class.yith-wcwl-init.php:1011
339
  msgid "\"Add to Cart\" icon"
340
  msgstr "Icona \"Aggiungi al carrello\""
341
 
342
  # @ yit
343
- #: ../class.yith-wcwl-init.php:1012
344
  msgid "Add an icon to the \"Add to Cart\" button"
345
  msgstr "Aggiunge un'icona al pulsante \"Aggiungi al carrello\""
346
 
347
  # @ yit
348
- #: ../class.yith-wcwl-init.php:1030
349
  msgid "Share on Facebook"
350
  msgstr "Condivi su Facebook"
351
 
352
  # @ yit
353
- #: ../class.yith-wcwl-init.php:1037
354
  msgid "Tweet on Twitter"
355
  msgstr "Condividi su Twitter"
356
 
357
  # @ yit
358
- #: ../class.yith-wcwl-init.php:1044
359
  msgid "Pin on Pinterest"
360
  msgstr "Pin su Pinterest"
361
 
362
  # @ yit
363
- #: ../class.yith-wcwl-init.php:1051
364
  msgid "Share on Google+"
365
  msgstr "Condividi su Google+"
366
 
 
 
 
 
367
  # @ yit
368
- #: ../class.yith-wcwl-init.php:1058
369
  msgid "Socials title"
370
  msgstr "Titolo dei social"
371
 
372
  # @ yit
373
- #: ../class.yith-wcwl-init.php:1066
374
  msgid "Socials text"
375
  msgstr "Testo dei social"
376
 
377
  # @ yit
378
- #: ../class.yith-wcwl-init.php:1067
379
  msgid ""
380
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
381
  "strong> where you want the URL of your wishlist to appear."
@@ -384,7 +388,7 @@ msgstr ""
384
  "%wishlist_url%</strong> dove vuoi che appaia l'URL della lista dei desideri."
385
 
386
  # @ yit
387
- #: ../class.yith-wcwl-init.php:1075
388
  msgid "Socials image URL"
389
  msgstr "URL immagine social"
390
 
@@ -395,41 +399,45 @@ msgid "wishlist"
395
  msgstr ""
396
 
397
  # @ yit
398
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
399
  #: ../yith-wcwl-ajax.php:47
400
  msgid "Product added!"
401
  msgstr "Prodotto aggiunto!"
402
 
403
  # @ yit
404
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
405
  msgid "Browse Wishlist"
406
  msgstr "Esplora la lista dei desideri"
407
 
408
  # @ yit
409
- #: ../class.yith-wcwl-ui.php:65
410
  msgid "The product is already in the wishlist!"
411
  msgstr "Il prodotto é giá nella lista dei desideri!"
412
 
413
  # @ yit
414
- #: ../class.yith-wcwl-ui.php:93
415
  msgid "Select options"
416
  msgstr "Seleziona opzioni"
417
 
418
  # @ yit
419
- #: ../class.yith-wcwl-ui.php:136
420
  msgid "Share on:"
421
  msgstr "Condividi su:"
422
 
423
  # @ yit
424
- #: ../class.yith-wcwl-ui.php:140
425
  msgid "Facebook"
426
  msgstr "Facebook"
427
 
428
  # @ yit
429
- #: ../class.yith-wcwl-ui.php:143
430
  msgid "Twitter"
431
  msgstr "Twitter"
432
 
 
 
 
 
433
  # @ yit
434
  #: ../class.yith-wcwl.php:140
435
  msgid "Error occurred while adding product to wishlist."
@@ -457,41 +465,41 @@ msgstr "Errore. Impossibile rimuovere il prodotto dalla lista dei desideri."
457
 
458
  # @ yit
459
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
460
- #: ../templates/wishlist.php:158
461
  msgid "No products were added to the wishlist"
462
  msgstr "Nessun prodotto nella lista dei desideri"
463
 
464
  # @ yit
465
- #: ../templates/wishlist.php:80
466
  msgid "Product Name"
467
  msgstr "Nome del Prodotto"
468
 
469
  # @ yit
470
- #: ../templates/wishlist.php:81
471
  msgid "Unit Price"
472
  msgstr "Prezzo Unitario"
473
 
474
  # @ yit
475
- #: ../templates/wishlist.php:82
476
  msgid "Stock Status"
477
  msgstr "Disponibilitá"
478
 
479
  # @ yit
480
- #: ../templates/wishlist.php:104
481
  msgid "Remove this product"
482
  msgstr "Rimuovi questo prodotto"
483
 
484
- #: ../templates/wishlist.php:124
485
  msgid "Free!"
486
  msgstr ""
487
 
488
  # @ yit
489
- #: ../templates/wishlist.php:137
490
  msgid "Out of Stock"
491
  msgstr "Non disponibile"
492
 
493
  # @ yit
494
- #: ../templates/wishlist.php:140
495
  msgid "In Stock"
496
  msgstr "Disponibile"
497
 
2
  msgstr ""
3
  "Project-Id-Version: YITH WooCommerce Wishlist v1.0.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-09-16 16:16+0100\n"
6
+ "PO-Revision-Date: 2014-09-16 16:16+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"
29
  msgstr "Prodotto non disponibile! Impossibile aggiungerlo nel carrello"
30
 
31
  # @ yit
32
+ #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:859
33
  msgid "General Settings"
34
  msgstr "Impostazioni"
35
 
36
  # @ yit
37
+ #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:965
38
  msgid "Styles"
39
  msgstr "Stili"
40
 
41
  # @ yit
42
+ #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1028
43
  msgid "Socials &amp; Share"
44
  msgstr "Social & Condivisione"
45
 
46
  # @ yit
47
+ #: ../class.yith-wcwl-init.php:453
48
  msgid "Colors"
49
  msgstr "Colori"
50
 
51
  # @ yit
52
+ #: ../class.yith-wcwl-init.php:483
53
  msgid "\"Add to Wishlist\" button background"
54
  msgstr "Sfondo del pulsante \"Aggiungi alla lista dei desideri\""
55
 
56
  # @ yit
57
+ #: ../class.yith-wcwl-init.php:484
58
  msgid "\"Add to Wishlist\" button text"
59
  msgstr "Testo del pulsante \"Aggiungi alla lista dei desideri\""
60
 
61
  # @ yit
62
+ #: ../class.yith-wcwl-init.php:485
63
  msgid "\"Add to Wishlist\" button border"
64
  msgstr "Bordo del pulsante \"Aggiungi alla lista dei desideri\""
65
 
66
  # @ yit
67
+ #: ../class.yith-wcwl-init.php:491
68
  msgid "\"Add to Wishlist\" button background (hover)"
69
  msgstr ""
70
  "Colore di sfondo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
71
 
72
  # @ yit
73
+ #: ../class.yith-wcwl-init.php:492
74
  msgid "\"Add to Wishlist\" button text (hover)"
75
  msgstr "Colore testo per \"Aggiungi alla lista dei desideri\" pulsante (hover)"
76
 
77
  # @ yit
78
+ #: ../class.yith-wcwl-init.php:493
79
  msgid "\"Add to Wishlist\" button border (hover)"
80
  msgstr "Colore bordo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
81
 
82
  # @ yit
83
+ #: ../class.yith-wcwl-init.php:498
84
  msgid "\"Add to Cart\" button background"
85
  msgstr "Sfondo del pulsante\"Aggiungi al carrello\""
86
 
87
  # @ yit
88
+ #: ../class.yith-wcwl-init.php:499
89
  msgid "\"Add to Cart\" button text"
90
  msgstr "Testo del pulsante\"Aggiungi al carrello\""
91
 
92
  # @ yit
93
+ #: ../class.yith-wcwl-init.php:500
94
  msgid "\"Add to Cart\" button border"
95
  msgstr "Bordo del pulsante\"Aggiungi al carrello\""
96
 
97
  # @ yit
98
+ #: ../class.yith-wcwl-init.php:506
99
  msgid "\"Add to Cart\" button background (hover)"
100
  msgstr "Colore di sfondo per \"Aggiungi al carrello\" pulsante (hover)"
101
 
102
  # @ yit
103
+ #: ../class.yith-wcwl-init.php:507
104
  msgid "\"Add to Cart\" button text (hover)"
105
  msgstr "Colore testo per \"Aggiungi al carrello\" pulsante (hover)"
106
 
107
  # @ yit
108
+ #: ../class.yith-wcwl-init.php:508
109
  msgid "\"Add to Cart\" button border (hover)"
110
  msgstr "Colore bordo per \"Aggiungi al carrello\" pulsante (hover)"
111
 
112
  # @ yit
113
+ #: ../class.yith-wcwl-init.php:513
114
  msgid "Wishlist table background"
115
  msgstr "Sfondo della tabella lista dei desideri"
116
 
117
  # @ yit
118
+ #: ../class.yith-wcwl-init.php:514
119
  msgid "Wishlist table text"
120
  msgstr "Testo della tabella lista dei desideri"
121
 
122
  # @ yit
123
+ #: ../class.yith-wcwl-init.php:515
124
  msgid "Wishlist table border"
125
  msgstr "Bordo della tabella lista dei desideri"
126
 
127
  # @ yit
128
+ #: ../class.yith-wcwl-init.php:575
129
  msgid "Settings"
130
  msgstr "Impostazioni"
131
 
132
  # @ yit
133
+ #: ../class.yith-wcwl-init.php:576
134
  msgid "Docs"
135
  msgstr "Documenti"
136
 
137
  # @ yit
138
+ #: ../class.yith-wcwl-init.php:592
139
  msgid "Wishlist Page"
140
  msgstr "Lista dei desideri"
141
 
142
  # @ yit
143
+ #: ../class.yith-wcwl-init.php:593
144
  msgid "Page contents: [yith_wcwl_wishlist]"
145
  msgstr "Contenuto della pagina: [yith_wcwl_wishlist]"
146
 
147
  # @ yit
148
+ #: ../class.yith-wcwl-init.php:862
149
  msgid "Enable YITH Wishlist"
150
  msgstr "Abilita YITH WooCommerce Wishlist"
151
 
152
  # @ yit
153
+ #: ../class.yith-wcwl-init.php:863
154
  #, fuzzy, php-format
155
  msgid ""
156
  "Enable all plugin features. <strong>Be sure to select a voice in the "
163
  "a> del plugin."
164
 
165
  # @ yit
166
+ #: ../class.yith-wcwl-init.php:870
167
  msgid "Use cookies"
168
  msgstr "Utilizza cookie"
169
 
170
  # @ yit
171
+ #: ../class.yith-wcwl-init.php:871
172
  msgid ""
173
  "Use cookies instead of sessions. With this feature, the wishlist will be "
174
  "available for each not logged user for 30 days. Use the filter "
181
  "durata del cookie ( in timestamp )"
182
 
183
  # @ yit
184
+ #: ../class.yith-wcwl-init.php:878
185
  msgid "Wishlist title"
186
  msgstr "Titolo della lista dei desideri"
187
 
188
  # @ yit
189
+ #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
190
+ #: ../class.yith-wcwl-init.php:1068 ../class.yith-wcwl-init.php:1069
191
  #, php-format
192
  msgid "My wishlist on %s"
193
  msgstr "La mia lista dei desideri su %s"
194
 
195
  # @ yit
196
+ #: ../class.yith-wcwl-init.php:890
197
  msgid "Position"
198
  msgstr "Posizione"
199
 
200
  # @ yit
201
+ #: ../class.yith-wcwl-init.php:891
202
  msgid ""
203
  "On variable products you can add it only After \"Add to Cart\" or use the "
204
  "shortcode [yith_wcwl_add_to_wishlist]."
207
  "\" o utilizzare lo shortcode [yith_wcwl_add_to_wishlist]."
208
 
209
  # @ yit
210
+ #: ../class.yith-wcwl-init.php:897
211
  msgid "After \"Add to cart\""
212
  msgstr "Dopo \"Aggiungi al Carrello\""
213
 
214
  # @ yit
215
+ #: ../class.yith-wcwl-init.php:898
216
  msgid "After thumbnails"
217
  msgstr "Dopo le thumbnail"
218
 
219
  # @ yit
220
+ #: ../class.yith-wcwl-init.php:899
221
  msgid "After summary"
222
  msgstr "Dopo la descrizione"
223
 
224
  # @ yit
225
+ #: ../class.yith-wcwl-init.php:900
226
  msgid "Use shortcode"
227
  msgstr "Utilizza lo shortcode"
228
 
229
  # @ yit
230
+ #: ../class.yith-wcwl-init.php:905
231
  msgid "Redirect to cart"
232
  msgstr "Reindirizza al carrello"
233
 
234
  # @ yit
235
+ #: ../class.yith-wcwl-init.php:906
236
  msgid ""
237
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
238
  "page."
241
  "bottone \"Aggiungi al carrello\" "
242
 
243
  # @ yit
244
+ #: ../class.yith-wcwl-init.php:913
245
  msgid "Remove if added to the cart"
246
  msgstr "Rimuovi se aggiunto al carrello"
247
 
248
  # @ yit
249
+ #: ../class.yith-wcwl-init.php:914
250
  msgid "Remove the product from the wishlist if is been added to the cart."
251
  msgstr ""
252
  "Quando un prodotto viene aggiunto al carrello, viene rimosso dalla lista dei "
253
  "desideri."
254
 
255
  # @ yit
256
+ #: ../class.yith-wcwl-init.php:921
257
  msgid "\"Add to Wishlist\" text"
258
  msgstr "Testo del pulsante\"Aggiungi alla lista dei desideri\""
259
 
260
  # @ yit
261
+ #: ../class.yith-wcwl-init.php:923 ../class.yith-wcwl-init.php:924
262
  msgid "Add to Wishlist"
263
  msgstr "Aggiungi alla lista dei desideri"
264
 
265
  # @ yit
266
+ #: ../class.yith-wcwl-init.php:929
267
  msgid "\"Add to Cart\" text"
268
  msgstr "Testo del pulsante\"Aggiungi al carrello\""
269
 
270
  # @ yit
271
+ #: ../class.yith-wcwl-init.php:931 ../class.yith-wcwl-init.php:932
272
  msgid "Add to Cart"
273
  msgstr "Aggiungi al Carrello"
274
 
275
  # @ yit
276
+ #: ../class.yith-wcwl-init.php:937
277
  #, fuzzy
278
  msgid "Show Unit price"
279
  msgstr "Prezzo Unitario"
280
 
281
  # @ yit
282
+ #: ../class.yith-wcwl-init.php:945
283
  msgid "Show \"Add to Cart\" button"
284
  msgstr "Mostra il pulsante \"Aggiungi al carrello\""
285
 
286
  # @ yit
287
+ #: ../class.yith-wcwl-init.php:953
288
  #, fuzzy
289
  msgid "Show Stock status"
290
  msgstr "Disponibilitá"
291
 
292
  # @ yit
293
+ #: ../class.yith-wcwl-init.php:968
294
  msgid "Use buttons"
295
  msgstr "Usa pulsanti"
296
 
297
  # @ yit
298
+ #: ../class.yith-wcwl-init.php:969
299
  msgid "Use buttons instead of a simple anchors."
300
  msgstr "Utilizza dei pulsanti al posto delle ancore"
301
 
302
  # @ yit
303
+ #: ../class.yith-wcwl-init.php:976
304
  msgid "Custom CSS"
305
  msgstr "CSS personalizzato"
306
 
307
  # @ yit
308
+ #: ../class.yith-wcwl-init.php:984
309
  msgid "Use theme style"
310
  msgstr "Usa stile del tema"
311
 
312
  # @ yit
313
+ #: ../class.yith-wcwl-init.php:985
314
  msgid "Use the theme style."
315
  msgstr "Usa lo stile del tema."
316
 
317
  # @ yit
318
+ #: ../class.yith-wcwl-init.php:992
319
  msgid "Buttons rounded corners"
320
  msgstr "Pulsanti con bordi arrotondati"
321
 
322
  # @ yit
323
+ #: ../class.yith-wcwl-init.php:993
324
  msgid "Make buttons corner rounded"
325
  msgstr "Arrotonda i bordi dei pulsanti"
326
 
327
  # @ yit
328
+ #: ../class.yith-wcwl-init.php:1000
329
  msgid "\"Add to Wishlist\" icon"
330
  msgstr "Icona \"Aggiungi alla lista dei desideri\""
331
 
332
  # @ yit
333
+ #: ../class.yith-wcwl-init.php:1001
334
  msgid "Add an icon to the \"Add to Wishlist\" button"
335
  msgstr "Aggiungi un'icona al pulsante \"Aggiungi alla lista dei desideri\""
336
 
337
  # @ yit
338
+ #: ../class.yith-wcwl-init.php:1012
339
  msgid "\"Add to Cart\" icon"
340
  msgstr "Icona \"Aggiungi al carrello\""
341
 
342
  # @ yit
343
+ #: ../class.yith-wcwl-init.php:1013
344
  msgid "Add an icon to the \"Add to Cart\" button"
345
  msgstr "Aggiunge un'icona al pulsante \"Aggiungi al carrello\""
346
 
347
  # @ yit
348
+ #: ../class.yith-wcwl-init.php:1031
349
  msgid "Share on Facebook"
350
  msgstr "Condivi su Facebook"
351
 
352
  # @ yit
353
+ #: ../class.yith-wcwl-init.php:1038
354
  msgid "Tweet on Twitter"
355
  msgstr "Condividi su Twitter"
356
 
357
  # @ yit
358
+ #: ../class.yith-wcwl-init.php:1045
359
  msgid "Pin on Pinterest"
360
  msgstr "Pin su Pinterest"
361
 
362
  # @ yit
363
+ #: ../class.yith-wcwl-init.php:1052
364
  msgid "Share on Google+"
365
  msgstr "Condividi su Google+"
366
 
367
+ #: ../class.yith-wcwl-init.php:1059
368
+ msgid "Share by Email"
369
+ msgstr ""
370
+
371
  # @ yit
372
+ #: ../class.yith-wcwl-init.php:1066
373
  msgid "Socials title"
374
  msgstr "Titolo dei social"
375
 
376
  # @ yit
377
+ #: ../class.yith-wcwl-init.php:1074
378
  msgid "Socials text"
379
  msgstr "Testo dei social"
380
 
381
  # @ yit
382
+ #: ../class.yith-wcwl-init.php:1075
383
  msgid ""
384
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
385
  "strong> where you want the URL of your wishlist to appear."
388
  "%wishlist_url%</strong> dove vuoi che appaia l'URL della lista dei desideri."
389
 
390
  # @ yit
391
+ #: ../class.yith-wcwl-init.php:1083
392
  msgid "Socials image URL"
393
  msgstr "URL immagine social"
394
 
399
  msgstr ""
400
 
401
  # @ yit
402
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl.php:351
403
  #: ../yith-wcwl-ajax.php:47
404
  msgid "Product added!"
405
  msgstr "Prodotto aggiunto!"
406
 
407
  # @ yit
408
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl-ui.php:68
409
  msgid "Browse Wishlist"
410
  msgstr "Esplora la lista dei desideri"
411
 
412
  # @ yit
413
+ #: ../class.yith-wcwl-ui.php:68
414
  msgid "The product is already in the wishlist!"
415
  msgstr "Il prodotto é giá nella lista dei desideri!"
416
 
417
  # @ yit
418
+ #: ../class.yith-wcwl-ui.php:100
419
  msgid "Select options"
420
  msgstr "Seleziona opzioni"
421
 
422
  # @ yit
423
+ #: ../class.yith-wcwl-ui.php:145
424
  msgid "Share on:"
425
  msgstr "Condividi su:"
426
 
427
  # @ yit
428
+ #: ../class.yith-wcwl-ui.php:149
429
  msgid "Facebook"
430
  msgstr "Facebook"
431
 
432
  # @ yit
433
+ #: ../class.yith-wcwl-ui.php:152
434
  msgid "Twitter"
435
  msgstr "Twitter"
436
 
437
+ #: ../class.yith-wcwl-ui.php:161
438
+ msgid "email"
439
+ msgstr ""
440
+
441
  # @ yit
442
  #: ../class.yith-wcwl.php:140
443
  msgid "Error occurred while adding product to wishlist."
465
 
466
  # @ yit
467
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
468
+ #: ../templates/wishlist.php:161
469
  msgid "No products were added to the wishlist"
470
  msgstr "Nessun prodotto nella lista dei desideri"
471
 
472
  # @ yit
473
+ #: ../templates/wishlist.php:82
474
  msgid "Product Name"
475
  msgstr "Nome del Prodotto"
476
 
477
  # @ yit
478
+ #: ../templates/wishlist.php:83
479
  msgid "Unit Price"
480
  msgstr "Prezzo Unitario"
481
 
482
  # @ yit
483
+ #: ../templates/wishlist.php:84
484
  msgid "Stock Status"
485
  msgstr "Disponibilitá"
486
 
487
  # @ yit
488
+ #: ../templates/wishlist.php:107
489
  msgid "Remove this product"
490
  msgstr "Rimuovi questo prodotto"
491
 
492
+ #: ../templates/wishlist.php:127
493
  msgid "Free!"
494
  msgstr ""
495
 
496
  # @ yit
497
+ #: ../templates/wishlist.php:140
498
  msgid "Out of Stock"
499
  msgstr "Non disponibile"
500
 
501
  # @ yit
502
+ #: ../templates/wishlist.php:143
503
  msgid "In Stock"
504
  msgstr "Disponibile"
505
 
languages/yit-pt_BR.mo CHANGED
Binary file
languages/yit-pt_BR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-03-21 17:02+0100\n"
5
- "PO-Revision-Date: 2014-03-21 17:02+0100\n"
6
  "Last-Translator: YIThemes <support@yithemes.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: English\n"
@@ -22,103 +22,103 @@ msgstr "Lista de Desejos"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "Não foi possível adicionar ao carrinho. O produto esta esgotado."
24
 
25
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:858
26
  msgid "General Settings"
27
  msgstr "Opções gerais"
28
 
29
- #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:964
30
  msgid "Styles"
31
  msgstr "Estilos"
32
 
33
- #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1027
34
  msgid "Socials &amp; Share"
35
  msgstr "Social &amp; Compartilhamento"
36
 
37
- #: ../class.yith-wcwl-init.php:452
38
  msgid "Colors"
39
  msgstr "Cores"
40
 
41
- #: ../class.yith-wcwl-init.php:482
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr "Fundo do botão \"Adicionar aos meus desejos\""
44
 
45
- #: ../class.yith-wcwl-init.php:483
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr "Texto do botão \"Adicionar aos meus desejos\""
48
 
49
- #: ../class.yith-wcwl-init.php:484
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr "Borda do botão \"Adicionar aos meus desejos\""
52
 
53
- #: ../class.yith-wcwl-init.php:490
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr "Fundo do botão \"Adicionar aos meus desejos\" (Hover)"
56
 
57
- #: ../class.yith-wcwl-init.php:491
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr "Texto do botão \"Adicionar aos meus desejos\" (Hover)"
60
 
61
- #: ../class.yith-wcwl-init.php:492
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr "Borda do botão \"Adicionar aos meus desejos\" (hover)"
64
 
65
- #: ../class.yith-wcwl-init.php:497
66
  msgid "\"Add to Cart\" button background"
67
  msgstr "Fundo do do botão \"Adicionar ao carrinho \""
68
 
69
- #: ../class.yith-wcwl-init.php:498
70
  msgid "\"Add to Cart\" button text"
71
  msgstr "Texto do botão \"Adicionar ao carrinho \""
72
 
73
- #: ../class.yith-wcwl-init.php:499
74
  msgid "\"Add to Cart\" button border"
75
  msgstr "Borda do do botão \"Adicionar ao carrinho \""
76
 
77
- #: ../class.yith-wcwl-init.php:505
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr "Fundo do botão \"Adicionar ao carrinho \" (hover)"
80
 
81
- #: ../class.yith-wcwl-init.php:506
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr "Texto do botão \"Adicionar ao carrinho \" (hover)"
84
 
85
- #: ../class.yith-wcwl-init.php:507
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr "Borda do botão \"Adicionar ao carrinho \" (hover)"
88
 
89
- #: ../class.yith-wcwl-init.php:512
90
  msgid "Wishlist table background"
91
  msgstr "Fundo da tabela de desejos"
92
 
93
- #: ../class.yith-wcwl-init.php:513
94
  msgid "Wishlist table text"
95
  msgstr "Texto da tabela de desejos"
96
 
97
- #: ../class.yith-wcwl-init.php:514
98
  msgid "Wishlist table border"
99
  msgstr "Borda da tabela de desejos"
100
 
101
- #: ../class.yith-wcwl-init.php:574
102
  msgid "Settings"
103
  msgstr "Configurações"
104
 
105
- #: ../class.yith-wcwl-init.php:575
106
  msgid "Docs"
107
  msgstr "Documentos"
108
 
109
- #: ../class.yith-wcwl-init.php:591
110
  msgid "Wishlist Page"
111
  msgstr "Meus desejos"
112
 
113
- #: ../class.yith-wcwl-init.php:592
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr "Conteúdo da página: [yith_wcwl_wishlist]"
116
 
117
- #: ../class.yith-wcwl-init.php:861
118
  msgid "Enable YITH Wishlist"
119
  msgstr "Ativar Lista de Desejos"
120
 
121
- #: ../class.yith-wcwl-init.php:862
122
  #, fuzzy, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -128,11 +128,11 @@ msgstr ""
128
  "Ativar todas opções. <strong> Saiba que a página de desejos é selecionada na "
129
  "seção Páginas. </strong>. <a href=\"%s\" target=\"_blank\">Documentação</a>."
130
 
131
- #: ../class.yith-wcwl-init.php:869
132
  msgid "Use cookies"
133
  msgstr "Usar cookies"
134
 
135
- #: ../class.yith-wcwl-init.php:870
136
  msgid ""
137
  "Use cookies instead of sessions. With this feature, the wishlist will be "
138
  "available for each not logged user for 30 days. Use the filter "
@@ -142,21 +142,21 @@ msgstr ""
142
  "Usar cookies ao invés de sessões. Com essa opção, a lista de desejos vai "
143
  "estar disponível para todos os usuários não logados por até 30 dias. "
144
 
145
- #: ../class.yith-wcwl-init.php:877
146
  msgid "Wishlist title"
147
  msgstr "Titulo da lista de desejos"
148
 
149
- #: ../class.yith-wcwl-init.php:879 ../class.yith-wcwl-init.php:880
150
- #: ../class.yith-wcwl-init.php:1060 ../class.yith-wcwl-init.php:1061
151
  #, php-format
152
  msgid "My wishlist on %s"
153
  msgstr "Minha lista de desejos em %s"
154
 
155
- #: ../class.yith-wcwl-init.php:889
156
  msgid "Position"
157
  msgstr "Posição"
158
 
159
- #: ../class.yith-wcwl-init.php:890
160
  msgid ""
161
  "On variable products you can add it only After \"Add to Cart\" or use the "
162
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -164,27 +164,27 @@ msgstr ""
164
  "Em produtos variáveis você pode adicionar isto somenteapós \"Adcionar ao "
165
  "Carrinho\" ou usar o shortcode [yith_wcwl_add_to_wishlist]."
166
 
167
- #: ../class.yith-wcwl-init.php:896
168
  msgid "After \"Add to cart\""
169
  msgstr "Após \" Adicionar ao carrinho \""
170
 
171
- #: ../class.yith-wcwl-init.php:897
172
  msgid "After thumbnails"
173
  msgstr "Após miniaturas"
174
 
175
- #: ../class.yith-wcwl-init.php:898
176
  msgid "After summary"
177
  msgstr "Após sumário"
178
 
179
- #: ../class.yith-wcwl-init.php:899
180
  msgid "Use shortcode"
181
  msgstr "Usar shortcode"
182
 
183
- #: ../class.yith-wcwl-init.php:904
184
  msgid "Redirect to cart"
185
  msgstr "Redirecionar para o carrinho"
186
 
187
- #: ../class.yith-wcwl-init.php:905
188
  msgid ""
189
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
190
  "page."
@@ -192,115 +192,119 @@ msgstr ""
192
  "Redirecionar para a página de carrinho se o botão \" Adcionar ao carrinho \" "
193
  "estiver clicado na página de lista de desejos."
194
 
195
- #: ../class.yith-wcwl-init.php:912
196
  msgid "Remove if added to the cart"
197
  msgstr "Remover se adcionado ao carrinho"
198
 
199
- #: ../class.yith-wcwl-init.php:913
200
  msgid "Remove the product from the wishlist if is been added to the cart."
201
  msgstr ""
202
  "Remover o produto da lista, se a mesma tiver sido adicionada ao carrinho."
203
 
204
- #: ../class.yith-wcwl-init.php:920
205
  msgid "\"Add to Wishlist\" text"
206
  msgstr "Texto \" Adcionar a Lista de Desejos\""
207
 
208
- #: ../class.yith-wcwl-init.php:922 ../class.yith-wcwl-init.php:923
209
  msgid "Add to Wishlist"
210
  msgstr "Adicionar aos meus desejos"
211
 
212
- #: ../class.yith-wcwl-init.php:928
213
  msgid "\"Add to Cart\" text"
214
  msgstr "Texto \" Adicionar ao Carrinho\""
215
 
216
- #: ../class.yith-wcwl-init.php:930 ../class.yith-wcwl-init.php:931
217
  msgid "Add to Cart"
218
  msgstr "Adcionar ao Carrinho"
219
 
220
- #: ../class.yith-wcwl-init.php:936
221
  #, fuzzy
222
  msgid "Show Unit price"
223
  msgstr "Preço unitário"
224
 
225
- #: ../class.yith-wcwl-init.php:944
226
  #, fuzzy
227
  msgid "Show \"Add to Cart\" button"
228
  msgstr "Texto do botão \"Adicionar ao carrinho \""
229
 
230
- #: ../class.yith-wcwl-init.php:952
231
  #, fuzzy
232
  msgid "Show Stock status"
233
  msgstr "Status do estoque"
234
 
235
- #: ../class.yith-wcwl-init.php:967
236
  msgid "Use buttons"
237
  msgstr "Usar botões"
238
 
239
- #: ../class.yith-wcwl-init.php:968
240
  msgid "Use buttons instead of a simple anchors."
241
  msgstr "Usar botões ao invés de simples âncoras."
242
 
243
- #: ../class.yith-wcwl-init.php:975
244
  msgid "Custom CSS"
245
  msgstr "CSS Customizado"
246
 
247
- #: ../class.yith-wcwl-init.php:983
248
  msgid "Use theme style"
249
  msgstr "Usar estilo do tema"
250
 
251
- #: ../class.yith-wcwl-init.php:984
252
  msgid "Use the theme style."
253
  msgstr "Usar o estilo do tema."
254
 
255
- #: ../class.yith-wcwl-init.php:991
256
  msgid "Buttons rounded corners"
257
  msgstr "Botões com cantos arredondados"
258
 
259
- #: ../class.yith-wcwl-init.php:992
260
  msgid "Make buttons corner rounded"
261
  msgstr "Faça botões do canto arredondado"
262
 
263
- #: ../class.yith-wcwl-init.php:999
264
  msgid "\"Add to Wishlist\" icon"
265
  msgstr "Ícone \"Adcionar aos meus desejos\" "
266
 
267
- #: ../class.yith-wcwl-init.php:1000
268
  msgid "Add an icon to the \"Add to Wishlist\" button"
269
  msgstr "Adicionar um ícone ao botão \"Adcionar aos meus desejos\""
270
 
271
- #: ../class.yith-wcwl-init.php:1011
272
  msgid "\"Add to Cart\" icon"
273
  msgstr "Ícone \"Adicionar ao Carrinho\""
274
 
275
- #: ../class.yith-wcwl-init.php:1012
276
  msgid "Add an icon to the \"Add to Cart\" button"
277
  msgstr "Adicionar um ícone ao botão \"Adcionar ao carrinho\""
278
 
279
- #: ../class.yith-wcwl-init.php:1030
280
  msgid "Share on Facebook"
281
  msgstr "Compartilhar no Facebook"
282
 
283
- #: ../class.yith-wcwl-init.php:1037
284
  msgid "Tweet on Twitter"
285
  msgstr "Tweetar no Twitter"
286
 
287
- #: ../class.yith-wcwl-init.php:1044
288
  msgid "Pin on Pinterest"
289
  msgstr ""
290
 
291
- #: ../class.yith-wcwl-init.php:1051
292
  msgid "Share on Google+"
293
  msgstr "Comparilhar no Google+"
294
 
295
- #: ../class.yith-wcwl-init.php:1058
 
 
 
 
296
  msgid "Socials title"
297
  msgstr "Título Mídias Sociais"
298
 
299
- #: ../class.yith-wcwl-init.php:1066
300
  msgid "Socials text"
301
  msgstr "Texto Mídias Sociais"
302
 
303
- #: ../class.yith-wcwl-init.php:1067
304
  msgid ""
305
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
306
  "strong> where you want the URL of your wishlist to appear."
@@ -308,7 +312,7 @@ msgstr ""
308
  "Vai ser usado por Facebook, Twitter e Pinterest. Use <strong>%wishlist_url%</"
309
  "strong> "
310
 
311
- #: ../class.yith-wcwl-init.php:1075
312
  msgid "Socials image URL"
313
  msgstr "Url para compartilhamento"
314
 
@@ -316,35 +320,39 @@ msgstr "Url para compartilhamento"
316
  msgid "wishlist"
317
  msgstr "lista de desejos"
318
 
319
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
320
  #: ../yith-wcwl-ajax.php:47
321
  msgid "Product added!"
322
  msgstr "Produto adicionado!"
323
 
324
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
325
  msgid "Browse Wishlist"
326
  msgstr "Veja sua lista de desejos!"
327
 
328
- #: ../class.yith-wcwl-ui.php:65
329
  msgid "The product is already in the wishlist!"
330
  msgstr "Esse produto já se encontra na sua lista de desejos!"
331
 
332
- #: ../class.yith-wcwl-ui.php:93
333
  msgid "Select options"
334
  msgstr "Selecione as opções"
335
 
336
- #: ../class.yith-wcwl-ui.php:136
337
  msgid "Share on:"
338
  msgstr "Compartilhar em:"
339
 
340
- #: ../class.yith-wcwl-ui.php:140
341
  msgid "Facebook"
342
  msgstr "Facebook"
343
 
344
- #: ../class.yith-wcwl-ui.php:143
345
  msgid "Twitter"
346
  msgstr "Twitter"
347
 
 
 
 
 
348
  #: ../class.yith-wcwl.php:140
349
  msgid "Error occurred while adding product to wishlist."
350
  msgstr "Oops! Ocorreu um erro ao adicionar o produto à lista de desejos."
@@ -366,35 +374,35 @@ msgid "Error. Unable to remove the product from the wishlist."
366
  msgstr "Erro. Não foi possível remover o produto da lista de desejos."
367
 
368
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
369
- #: ../templates/wishlist.php:158
370
  msgid "No products were added to the wishlist"
371
  msgstr "Nenhum produto foi adicionado à lista de desejos"
372
 
373
- #: ../templates/wishlist.php:80
374
  msgid "Product Name"
375
  msgstr "Nome do Produto"
376
 
377
- #: ../templates/wishlist.php:81
378
  msgid "Unit Price"
379
  msgstr "Preço unitário"
380
 
381
- #: ../templates/wishlist.php:82
382
  msgid "Stock Status"
383
  msgstr "Status do estoque"
384
 
385
- #: ../templates/wishlist.php:104
386
  msgid "Remove this product"
387
  msgstr "Remover este produto"
388
 
389
- #: ../templates/wishlist.php:124
390
  msgid "Free!"
391
  msgstr ""
392
 
393
- #: ../templates/wishlist.php:137
394
  msgid "Out of Stock"
395
  msgstr "Sem estoque"
396
 
397
- #: ../templates/wishlist.php:140
398
  msgid "In Stock"
399
  msgstr "Em estoque"
400
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
+ "POT-Creation-Date: 2014-09-16 16:16+0100\n"
5
+ "PO-Revision-Date: 2014-09-16 16:16+0100\n"
6
  "Last-Translator: YIThemes <support@yithemes.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: English\n"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "Não foi possível adicionar ao carrinho. O produto esta esgotado."
24
 
25
+ #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:859
26
  msgid "General Settings"
27
  msgstr "Opções gerais"
28
 
29
+ #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:965
30
  msgid "Styles"
31
  msgstr "Estilos"
32
 
33
+ #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1028
34
  msgid "Socials &amp; Share"
35
  msgstr "Social &amp; Compartilhamento"
36
 
37
+ #: ../class.yith-wcwl-init.php:453
38
  msgid "Colors"
39
  msgstr "Cores"
40
 
41
+ #: ../class.yith-wcwl-init.php:483
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr "Fundo do botão \"Adicionar aos meus desejos\""
44
 
45
+ #: ../class.yith-wcwl-init.php:484
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr "Texto do botão \"Adicionar aos meus desejos\""
48
 
49
+ #: ../class.yith-wcwl-init.php:485
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr "Borda do botão \"Adicionar aos meus desejos\""
52
 
53
+ #: ../class.yith-wcwl-init.php:491
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr "Fundo do botão \"Adicionar aos meus desejos\" (Hover)"
56
 
57
+ #: ../class.yith-wcwl-init.php:492
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr "Texto do botão \"Adicionar aos meus desejos\" (Hover)"
60
 
61
+ #: ../class.yith-wcwl-init.php:493
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr "Borda do botão \"Adicionar aos meus desejos\" (hover)"
64
 
65
+ #: ../class.yith-wcwl-init.php:498
66
  msgid "\"Add to Cart\" button background"
67
  msgstr "Fundo do do botão \"Adicionar ao carrinho \""
68
 
69
+ #: ../class.yith-wcwl-init.php:499
70
  msgid "\"Add to Cart\" button text"
71
  msgstr "Texto do botão \"Adicionar ao carrinho \""
72
 
73
+ #: ../class.yith-wcwl-init.php:500
74
  msgid "\"Add to Cart\" button border"
75
  msgstr "Borda do do botão \"Adicionar ao carrinho \""
76
 
77
+ #: ../class.yith-wcwl-init.php:506
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr "Fundo do botão \"Adicionar ao carrinho \" (hover)"
80
 
81
+ #: ../class.yith-wcwl-init.php:507
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr "Texto do botão \"Adicionar ao carrinho \" (hover)"
84
 
85
+ #: ../class.yith-wcwl-init.php:508
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr "Borda do botão \"Adicionar ao carrinho \" (hover)"
88
 
89
+ #: ../class.yith-wcwl-init.php:513
90
  msgid "Wishlist table background"
91
  msgstr "Fundo da tabela de desejos"
92
 
93
+ #: ../class.yith-wcwl-init.php:514
94
  msgid "Wishlist table text"
95
  msgstr "Texto da tabela de desejos"
96
 
97
+ #: ../class.yith-wcwl-init.php:515
98
  msgid "Wishlist table border"
99
  msgstr "Borda da tabela de desejos"
100
 
101
+ #: ../class.yith-wcwl-init.php:575
102
  msgid "Settings"
103
  msgstr "Configurações"
104
 
105
+ #: ../class.yith-wcwl-init.php:576
106
  msgid "Docs"
107
  msgstr "Documentos"
108
 
109
+ #: ../class.yith-wcwl-init.php:592
110
  msgid "Wishlist Page"
111
  msgstr "Meus desejos"
112
 
113
+ #: ../class.yith-wcwl-init.php:593
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr "Conteúdo da página: [yith_wcwl_wishlist]"
116
 
117
+ #: ../class.yith-wcwl-init.php:862
118
  msgid "Enable YITH Wishlist"
119
  msgstr "Ativar Lista de Desejos"
120
 
121
+ #: ../class.yith-wcwl-init.php:863
122
  #, fuzzy, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
128
  "Ativar todas opções. <strong> Saiba que a página de desejos é selecionada na "
129
  "seção Páginas. </strong>. <a href=\"%s\" target=\"_blank\">Documentação</a>."
130
 
131
+ #: ../class.yith-wcwl-init.php:870
132
  msgid "Use cookies"
133
  msgstr "Usar cookies"
134
 
135
+ #: ../class.yith-wcwl-init.php:871
136
  msgid ""
137
  "Use cookies instead of sessions. With this feature, the wishlist will be "
138
  "available for each not logged user for 30 days. Use the filter "
142
  "Usar cookies ao invés de sessões. Com essa opção, a lista de desejos vai "
143
  "estar disponível para todos os usuários não logados por até 30 dias. "
144
 
145
+ #: ../class.yith-wcwl-init.php:878
146
  msgid "Wishlist title"
147
  msgstr "Titulo da lista de desejos"
148
 
149
+ #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
150
+ #: ../class.yith-wcwl-init.php:1068 ../class.yith-wcwl-init.php:1069
151
  #, php-format
152
  msgid "My wishlist on %s"
153
  msgstr "Minha lista de desejos em %s"
154
 
155
+ #: ../class.yith-wcwl-init.php:890
156
  msgid "Position"
157
  msgstr "Posição"
158
 
159
+ #: ../class.yith-wcwl-init.php:891
160
  msgid ""
161
  "On variable products you can add it only After \"Add to Cart\" or use the "
162
  "shortcode [yith_wcwl_add_to_wishlist]."
164
  "Em produtos variáveis você pode adicionar isto somenteapós \"Adcionar ao "
165
  "Carrinho\" ou usar o shortcode [yith_wcwl_add_to_wishlist]."
166
 
167
+ #: ../class.yith-wcwl-init.php:897
168
  msgid "After \"Add to cart\""
169
  msgstr "Após \" Adicionar ao carrinho \""
170
 
171
+ #: ../class.yith-wcwl-init.php:898
172
  msgid "After thumbnails"
173
  msgstr "Após miniaturas"
174
 
175
+ #: ../class.yith-wcwl-init.php:899
176
  msgid "After summary"
177
  msgstr "Após sumário"
178
 
179
+ #: ../class.yith-wcwl-init.php:900
180
  msgid "Use shortcode"
181
  msgstr "Usar shortcode"
182
 
183
+ #: ../class.yith-wcwl-init.php:905
184
  msgid "Redirect to cart"
185
  msgstr "Redirecionar para o carrinho"
186
 
187
+ #: ../class.yith-wcwl-init.php:906
188
  msgid ""
189
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
190
  "page."
192
  "Redirecionar para a página de carrinho se o botão \" Adcionar ao carrinho \" "
193
  "estiver clicado na página de lista de desejos."
194
 
195
+ #: ../class.yith-wcwl-init.php:913
196
  msgid "Remove if added to the cart"
197
  msgstr "Remover se adcionado ao carrinho"
198
 
199
+ #: ../class.yith-wcwl-init.php:914
200
  msgid "Remove the product from the wishlist if is been added to the cart."
201
  msgstr ""
202
  "Remover o produto da lista, se a mesma tiver sido adicionada ao carrinho."
203
 
204
+ #: ../class.yith-wcwl-init.php:921
205
  msgid "\"Add to Wishlist\" text"
206
  msgstr "Texto \" Adcionar a Lista de Desejos\""
207
 
208
+ #: ../class.yith-wcwl-init.php:923 ../class.yith-wcwl-init.php:924
209
  msgid "Add to Wishlist"
210
  msgstr "Adicionar aos meus desejos"
211
 
212
+ #: ../class.yith-wcwl-init.php:929
213
  msgid "\"Add to Cart\" text"
214
  msgstr "Texto \" Adicionar ao Carrinho\""
215
 
216
+ #: ../class.yith-wcwl-init.php:931 ../class.yith-wcwl-init.php:932
217
  msgid "Add to Cart"
218
  msgstr "Adcionar ao Carrinho"
219
 
220
+ #: ../class.yith-wcwl-init.php:937
221
  #, fuzzy
222
  msgid "Show Unit price"
223
  msgstr "Preço unitário"
224
 
225
+ #: ../class.yith-wcwl-init.php:945
226
  #, fuzzy
227
  msgid "Show \"Add to Cart\" button"
228
  msgstr "Texto do botão \"Adicionar ao carrinho \""
229
 
230
+ #: ../class.yith-wcwl-init.php:953
231
  #, fuzzy
232
  msgid "Show Stock status"
233
  msgstr "Status do estoque"
234
 
235
+ #: ../class.yith-wcwl-init.php:968
236
  msgid "Use buttons"
237
  msgstr "Usar botões"
238
 
239
+ #: ../class.yith-wcwl-init.php:969
240
  msgid "Use buttons instead of a simple anchors."
241
  msgstr "Usar botões ao invés de simples âncoras."
242
 
243
+ #: ../class.yith-wcwl-init.php:976
244
  msgid "Custom CSS"
245
  msgstr "CSS Customizado"
246
 
247
+ #: ../class.yith-wcwl-init.php:984
248
  msgid "Use theme style"
249
  msgstr "Usar estilo do tema"
250
 
251
+ #: ../class.yith-wcwl-init.php:985
252
  msgid "Use the theme style."
253
  msgstr "Usar o estilo do tema."
254
 
255
+ #: ../class.yith-wcwl-init.php:992
256
  msgid "Buttons rounded corners"
257
  msgstr "Botões com cantos arredondados"
258
 
259
+ #: ../class.yith-wcwl-init.php:993
260
  msgid "Make buttons corner rounded"
261
  msgstr "Faça botões do canto arredondado"
262
 
263
+ #: ../class.yith-wcwl-init.php:1000
264
  msgid "\"Add to Wishlist\" icon"
265
  msgstr "Ícone \"Adcionar aos meus desejos\" "
266
 
267
+ #: ../class.yith-wcwl-init.php:1001
268
  msgid "Add an icon to the \"Add to Wishlist\" button"
269
  msgstr "Adicionar um ícone ao botão \"Adcionar aos meus desejos\""
270
 
271
+ #: ../class.yith-wcwl-init.php:1012
272
  msgid "\"Add to Cart\" icon"
273
  msgstr "Ícone \"Adicionar ao Carrinho\""
274
 
275
+ #: ../class.yith-wcwl-init.php:1013
276
  msgid "Add an icon to the \"Add to Cart\" button"
277
  msgstr "Adicionar um ícone ao botão \"Adcionar ao carrinho\""
278
 
279
+ #: ../class.yith-wcwl-init.php:1031
280
  msgid "Share on Facebook"
281
  msgstr "Compartilhar no Facebook"
282
 
283
+ #: ../class.yith-wcwl-init.php:1038
284
  msgid "Tweet on Twitter"
285
  msgstr "Tweetar no Twitter"
286
 
287
+ #: ../class.yith-wcwl-init.php:1045
288
  msgid "Pin on Pinterest"
289
  msgstr ""
290
 
291
+ #: ../class.yith-wcwl-init.php:1052
292
  msgid "Share on Google+"
293
  msgstr "Comparilhar no Google+"
294
 
295
+ #: ../class.yith-wcwl-init.php:1059
296
+ msgid "Share by Email"
297
+ msgstr ""
298
+
299
+ #: ../class.yith-wcwl-init.php:1066
300
  msgid "Socials title"
301
  msgstr "Título Mídias Sociais"
302
 
303
+ #: ../class.yith-wcwl-init.php:1074
304
  msgid "Socials text"
305
  msgstr "Texto Mídias Sociais"
306
 
307
+ #: ../class.yith-wcwl-init.php:1075
308
  msgid ""
309
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
310
  "strong> where you want the URL of your wishlist to appear."
312
  "Vai ser usado por Facebook, Twitter e Pinterest. Use <strong>%wishlist_url%</"
313
  "strong> "
314
 
315
+ #: ../class.yith-wcwl-init.php:1083
316
  msgid "Socials image URL"
317
  msgstr "Url para compartilhamento"
318
 
320
  msgid "wishlist"
321
  msgstr "lista de desejos"
322
 
323
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl.php:351
324
  #: ../yith-wcwl-ajax.php:47
325
  msgid "Product added!"
326
  msgstr "Produto adicionado!"
327
 
328
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl-ui.php:68
329
  msgid "Browse Wishlist"
330
  msgstr "Veja sua lista de desejos!"
331
 
332
+ #: ../class.yith-wcwl-ui.php:68
333
  msgid "The product is already in the wishlist!"
334
  msgstr "Esse produto já se encontra na sua lista de desejos!"
335
 
336
+ #: ../class.yith-wcwl-ui.php:100
337
  msgid "Select options"
338
  msgstr "Selecione as opções"
339
 
340
+ #: ../class.yith-wcwl-ui.php:145
341
  msgid "Share on:"
342
  msgstr "Compartilhar em:"
343
 
344
+ #: ../class.yith-wcwl-ui.php:149
345
  msgid "Facebook"
346
  msgstr "Facebook"
347
 
348
+ #: ../class.yith-wcwl-ui.php:152
349
  msgid "Twitter"
350
  msgstr "Twitter"
351
 
352
+ #: ../class.yith-wcwl-ui.php:161
353
+ msgid "email"
354
+ msgstr ""
355
+
356
  #: ../class.yith-wcwl.php:140
357
  msgid "Error occurred while adding product to wishlist."
358
  msgstr "Oops! Ocorreu um erro ao adicionar o produto à lista de desejos."
374
  msgstr "Erro. Não foi possível remover o produto da lista de desejos."
375
 
376
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
377
+ #: ../templates/wishlist.php:161
378
  msgid "No products were added to the wishlist"
379
  msgstr "Nenhum produto foi adicionado à lista de desejos"
380
 
381
+ #: ../templates/wishlist.php:82
382
  msgid "Product Name"
383
  msgstr "Nome do Produto"
384
 
385
+ #: ../templates/wishlist.php:83
386
  msgid "Unit Price"
387
  msgstr "Preço unitário"
388
 
389
+ #: ../templates/wishlist.php:84
390
  msgid "Stock Status"
391
  msgstr "Status do estoque"
392
 
393
+ #: ../templates/wishlist.php:107
394
  msgid "Remove this product"
395
  msgstr "Remover este produto"
396
 
397
+ #: ../templates/wishlist.php:127
398
  msgid "Free!"
399
  msgstr ""
400
 
401
+ #: ../templates/wishlist.php:140
402
  msgid "Out of Stock"
403
  msgstr "Sem estoque"
404
 
405
+ #: ../templates/wishlist.php:143
406
  msgid "In Stock"
407
  msgstr "Em estoque"
408
 
languages/yit-tr_TR.mo ADDED
Binary file
languages/yit-tr_TR.po ADDED
@@ -0,0 +1,468 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2014-09-16 16:16+0100\n"
6
+ "PO-Revision-Date: 2014-09-16 16:16+0100\n"
7
+ "Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
8
+ "Language-Team: Caner Öncel (@egonomik) <caneroncel@gmail.com>\n"
9
+ "Language: tr_TR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\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-Generator: Poedit 1.5.5\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: class.yith-wcwl-init.php:114 class.yith-wcwl-install.php:137
23
+ msgid "Wishlist"
24
+ msgstr "İstek Listesi"
25
+
26
+ #: class.yith-wcwl-init.php:365
27
+ msgid "Cannot add to the cart as product is Out of Stock!"
28
+ msgstr "Stokta bulunmayan ürünler istek listesine eklenemez!"
29
+
30
+ #: class.yith-wcwl-init.php:430 class.yith-wcwl-init.php:859
31
+ msgid "General Settings"
32
+ msgstr "Genel Ayarlar"
33
+
34
+ #: class.yith-wcwl-init.php:431 class.yith-wcwl-init.php:965
35
+ msgid "Styles"
36
+ msgstr "Stiller"
37
+
38
+ #: class.yith-wcwl-init.php:432 class.yith-wcwl-init.php:1028
39
+ msgid "Socials &amp; Share"
40
+ msgstr "Sosyal &amp; Paylaşım"
41
+
42
+ #: class.yith-wcwl-init.php:453
43
+ msgid "Colors"
44
+ msgstr "Renkler"
45
+
46
+ #: class.yith-wcwl-init.php:483
47
+ msgid "\"Add to Wishlist\" button background"
48
+ msgstr "\"İstek Listeme Ekle\" buton arkaplanı"
49
+
50
+ #: class.yith-wcwl-init.php:484
51
+ msgid "\"Add to Wishlist\" button text"
52
+ msgstr "\"İstek Listeme Ekle\" buton metni"
53
+
54
+ #: class.yith-wcwl-init.php:485
55
+ msgid "\"Add to Wishlist\" button border"
56
+ msgstr "\"İstek Listeme Ekle\" buton kenarlığı"
57
+
58
+ #: class.yith-wcwl-init.php:491
59
+ msgid "\"Add to Wishlist\" button background (hover)"
60
+ msgstr "\"İstek Listeme Ekle\" buton arkaplanı (üzerine gelindiğinde)"
61
+
62
+ #: class.yith-wcwl-init.php:492
63
+ msgid "\"Add to Wishlist\" button text (hover)"
64
+ msgstr "\"İstek Listeme Ekle\" buton metni (üzerine gelindiğinde)"
65
+
66
+ #: class.yith-wcwl-init.php:493
67
+ msgid "\"Add to Wishlist\" button border (hover)"
68
+ msgstr "\"İstek Listeme Ekle\" buton kenarlığı (üzerine gelindiğinde)"
69
+
70
+ #: class.yith-wcwl-init.php:498
71
+ msgid "\"Add to Cart\" button background"
72
+ msgstr "\"Sepete Ekle\" buton arkaplanı"
73
+
74
+ #: class.yith-wcwl-init.php:499
75
+ msgid "\"Add to Cart\" button text"
76
+ msgstr "\"Sepete Ekle\" buton metni"
77
+
78
+ #: class.yith-wcwl-init.php:500
79
+ msgid "\"Add to Cart\" button border"
80
+ msgstr "\"Sepete Ekle\" buton kenarlığı"
81
+
82
+ #: class.yith-wcwl-init.php:506
83
+ msgid "\"Add to Cart\" button background (hover)"
84
+ msgstr "\"Sepete Ekle\" buton arkaplanı (üzerine gelindiğinde)"
85
+
86
+ #: class.yith-wcwl-init.php:507
87
+ msgid "\"Add to Cart\" button text (hover)"
88
+ msgstr "\"Sepete Ekle\" buton metni (üzerine gelindiğinde)"
89
+
90
+ #: class.yith-wcwl-init.php:508
91
+ msgid "\"Add to Cart\" button border (hover)"
92
+ msgstr "\"Sepete Ekle\" buton kenarlığı (üzerine gelindiğinde)"
93
+
94
+ #: class.yith-wcwl-init.php:513
95
+ msgid "Wishlist table background"
96
+ msgstr "İstek listesi tablo arkaplanı"
97
+
98
+ #: class.yith-wcwl-init.php:514
99
+ msgid "Wishlist table text"
100
+ msgstr "İstek listesi tablo metni"
101
+
102
+ #: class.yith-wcwl-init.php:515
103
+ msgid "Wishlist table border"
104
+ msgstr "İstek listesi tablo kenar çizgisi"
105
+
106
+ #: class.yith-wcwl-init.php:575
107
+ msgid "Settings"
108
+ msgstr "Ayarlar"
109
+
110
+ #: class.yith-wcwl-init.php:576
111
+ msgid "Docs"
112
+ msgstr "Dökümanlar"
113
+
114
+ #: class.yith-wcwl-init.php:592
115
+ msgid "Wishlist Page"
116
+ msgstr "İstek Listesi Sayfası"
117
+
118
+ #: class.yith-wcwl-init.php:593
119
+ msgid "Page contents: [yith_wcwl_wishlist]"
120
+ msgstr "Sayfa içeriği: [yith_wcwl_wishlist]"
121
+
122
+ #: class.yith-wcwl-init.php:862
123
+ msgid "Enable YITH Wishlist"
124
+ msgstr "YITH İstek Listesi Etkin"
125
+
126
+ #: class.yith-wcwl-init.php:863
127
+ #, php-format
128
+ msgid ""
129
+ "Enable all plugin features. <strong>Be sure to select a voice in the "
130
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
131
+ "\" target=\"_blank\">documentation</a>."
132
+ msgstr ""
133
+
134
+ #: class.yith-wcwl-init.php:870
135
+ msgid "Use cookies"
136
+ msgstr "Çerezleri kullan"
137
+
138
+ #: class.yith-wcwl-init.php:871
139
+ msgid ""
140
+ "Use cookies instead of sessions. With this feature, the wishlist will be "
141
+ "available for each not logged user for 30 days. Use the filter "
142
+ "yith_wcwl_cookie_expiration_time to change the expiration time ( needs "
143
+ "timestamp )."
144
+ msgstr ""
145
+
146
+ #: class.yith-wcwl-init.php:878
147
+ msgid "Wishlist title"
148
+ msgstr "İstek listesi başlığı"
149
+
150
+ #: class.yith-wcwl-init.php:880 class.yith-wcwl-init.php:881
151
+ #: class.yith-wcwl-init.php:1068 class.yith-wcwl-init.php:1069
152
+ #, php-format
153
+ msgid "My wishlist on %s"
154
+ msgstr "%s üzerinde istek listem"
155
+
156
+ #: class.yith-wcwl-init.php:890
157
+ msgid "Position"
158
+ msgstr "Pozisyon"
159
+
160
+ #: class.yith-wcwl-init.php:891
161
+ msgid ""
162
+ "On variable products you can add it only After \"Add to Cart\" or use the "
163
+ "shortcode [yith_wcwl_add_to_wishlist]."
164
+ msgstr ""
165
+
166
+ #: class.yith-wcwl-init.php:897
167
+ msgid "After \"Add to cart\""
168
+ msgstr "\"Sepete Ekle\"den sonra"
169
+
170
+ #: class.yith-wcwl-init.php:898
171
+ msgid "After thumbnails"
172
+ msgstr "Küçük resimlerden sonra"
173
+
174
+ #: class.yith-wcwl-init.php:899
175
+ msgid "After summary"
176
+ msgstr "Özet bilgisinden sonra"
177
+
178
+ #: class.yith-wcwl-init.php:900
179
+ msgid "Use shortcode"
180
+ msgstr "Kısa kod kullan"
181
+
182
+ #: class.yith-wcwl-init.php:905
183
+ msgid "Redirect to cart"
184
+ msgstr "Sepete yönlendir"
185
+
186
+ #: class.yith-wcwl-init.php:906
187
+ msgid ""
188
+ "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
189
+ "page."
190
+ msgstr ""
191
+ "Eğer istek listesindeki bir ürün için \"Sepete Ekle\" butonuna tıklanırsa "
192
+ "sepet sayfasına git."
193
+
194
+ #: class.yith-wcwl-init.php:913
195
+ msgid "Remove if added to the cart"
196
+ msgstr "Sepete eklenmişse kaldır"
197
+
198
+ #: class.yith-wcwl-init.php:914
199
+ msgid "Remove the product from the wishlist if is been added to the cart."
200
+ msgstr "Eğer ürün sepete eklenirse istek listesinden kaldır."
201
+
202
+ #: class.yith-wcwl-init.php:921
203
+ msgid "\"Add to Wishlist\" text"
204
+ msgstr "\"İstek Listeme Ekle\" metni"
205
+
206
+ #: class.yith-wcwl-init.php:923 class.yith-wcwl-init.php:924
207
+ msgid "Add to Wishlist"
208
+ msgstr "İstek Listeme Ekle"
209
+
210
+ #: class.yith-wcwl-init.php:929
211
+ msgid "\"Add to Cart\" text"
212
+ msgstr "\"Sepete Ekle\" metni"
213
+
214
+ #: class.yith-wcwl-init.php:931 class.yith-wcwl-init.php:932
215
+ msgid "Add to Cart"
216
+ msgstr "Sepete Ekle"
217
+
218
+ #: class.yith-wcwl-init.php:937
219
+ msgid "Show Unit price"
220
+ msgstr "Birim Fiyatını Göster"
221
+
222
+ #: class.yith-wcwl-init.php:945
223
+ msgid "Show \"Add to Cart\" button"
224
+ msgstr "\"Sepete Ekle\" butonunu göster"
225
+
226
+ #: class.yith-wcwl-init.php:953
227
+ msgid "Show Stock status"
228
+ msgstr "Stok durumunu göster"
229
+
230
+ #: class.yith-wcwl-init.php:968
231
+ msgid "Use buttons"
232
+ msgstr "Butonları kullan"
233
+
234
+ #: class.yith-wcwl-init.php:969
235
+ msgid "Use buttons instead of a simple anchors."
236
+ msgstr "Basit bağlantılar yerine buton kullanın."
237
+
238
+ #: class.yith-wcwl-init.php:976
239
+ msgid "Custom CSS"
240
+ msgstr "Özel CSS"
241
+
242
+ #: class.yith-wcwl-init.php:984
243
+ msgid "Use theme style"
244
+ msgstr "Tema stilini kullan"
245
+
246
+ #: class.yith-wcwl-init.php:985
247
+ msgid "Use the theme style."
248
+ msgstr "Tema stilini kullan."
249
+
250
+ #: class.yith-wcwl-init.php:992
251
+ msgid "Buttons rounded corners"
252
+ msgstr "Yuvarlak köşeli butonlar"
253
+
254
+ #: class.yith-wcwl-init.php:993
255
+ msgid "Make buttons corner rounded"
256
+ msgstr "Butonların köşelerini yuvarlaklaştır"
257
+
258
+ #: class.yith-wcwl-init.php:1000
259
+ msgid "\"Add to Wishlist\" icon"
260
+ msgstr "\"İstek Listeme Ekle\" simgesi"
261
+
262
+ #: class.yith-wcwl-init.php:1001
263
+ msgid "Add an icon to the \"Add to Wishlist\" button"
264
+ msgstr "\"İstek Listeme Ekle\" butonuna bir simge ekleyin"
265
+
266
+ #: class.yith-wcwl-init.php:1012
267
+ msgid "\"Add to Cart\" icon"
268
+ msgstr "\"Sepete Ekle\" simgesi"
269
+
270
+ #: class.yith-wcwl-init.php:1013
271
+ msgid "Add an icon to the \"Add to Cart\" button"
272
+ msgstr "\"Sepete Ekle\" butonuna bir simge ekleyin"
273
+
274
+ #: class.yith-wcwl-init.php:1031
275
+ msgid "Share on Facebook"
276
+ msgstr "Facebook'ta Paylaş"
277
+
278
+ #: class.yith-wcwl-init.php:1038
279
+ msgid "Tweet on Twitter"
280
+ msgstr "Twitter'da Tweetle"
281
+
282
+ #: class.yith-wcwl-init.php:1045
283
+ msgid "Pin on Pinterest"
284
+ msgstr "Pinterest'te Pinle"
285
+
286
+ #: class.yith-wcwl-init.php:1052
287
+ msgid "Share on Google+"
288
+ msgstr "Google+'da Paylaş"
289
+
290
+ #: class.yith-wcwl-init.php:1059
291
+ msgid "Share by Email"
292
+ msgstr ""
293
+
294
+ #: class.yith-wcwl-init.php:1066
295
+ msgid "Socials title"
296
+ msgstr "Sosyal medya başlığı"
297
+
298
+ #: class.yith-wcwl-init.php:1074
299
+ msgid "Socials text"
300
+ msgstr "Sosyal medya metni"
301
+
302
+ #: class.yith-wcwl-init.php:1075
303
+ msgid ""
304
+ "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
305
+ "strong> where you want the URL of your wishlist to appear."
306
+ msgstr ""
307
+ "Facebook, Twitter ve Pinterest için kullanılacak. İstek listesinin "
308
+ "görünmesini istediğiniz yer için <strong>%wishlist_url%</strong> URL'ini "
309
+ "kullanın."
310
+
311
+ #: class.yith-wcwl-init.php:1083
312
+ msgid "Socials image URL"
313
+ msgstr "Sosyal medya resim URL'i"
314
+
315
+ #: class.yith-wcwl-install.php:136
316
+ msgctxt "page_slug"
317
+ msgid "wishlist"
318
+ msgstr "istek-listem"
319
+
320
+ #: class.yith-wcwl-ui.php:67 class.yith-wcwl.php:351 yith-wcwl-ajax.php:47
321
+ msgid "Product added!"
322
+ msgstr "Ürün eklendi!"
323
+
324
+ #: class.yith-wcwl-ui.php:67 class.yith-wcwl-ui.php:68
325
+ msgid "Browse Wishlist"
326
+ msgstr "İstek Listesini Görüntüle"
327
+
328
+ #: class.yith-wcwl-ui.php:68
329
+ msgid "The product is already in the wishlist!"
330
+ msgstr "Ürün zaten istek listenizde bulunuyor!"
331
+
332
+ #: class.yith-wcwl-ui.php:100
333
+ msgid "Select options"
334
+ msgstr "Seçenekler"
335
+
336
+ #: class.yith-wcwl-ui.php:145
337
+ msgid "Share on:"
338
+ msgstr "Paylaşım seçenekleri:"
339
+
340
+ #: class.yith-wcwl-ui.php:149
341
+ msgid "Facebook"
342
+ msgstr "Facebook"
343
+
344
+ #: class.yith-wcwl-ui.php:152
345
+ msgid "Twitter"
346
+ msgstr "Twitter"
347
+
348
+ #: class.yith-wcwl-ui.php:161
349
+ msgid "email"
350
+ msgstr ""
351
+
352
+ #: class.yith-wcwl.php:140
353
+ msgid "Error occurred while adding product to wishlist."
354
+ msgstr "Ürün istek listenize eklenirken bir hata meydana geldi."
355
+
356
+ #: class.yith-wcwl.php:162
357
+ msgid "Error occurred while removing product from wishlist"
358
+ msgstr "Ürün istek listenizden kaldırılırken bir hata meydana geldi."
359
+
360
+ #: class.yith-wcwl.php:353 yith-wcwl-ajax.php:49
361
+ msgid "Product already in the wishlist."
362
+ msgstr "Ürün zaten istek listenizde."
363
+
364
+ #: class.yith-wcwl.php:370 yith-wcwl-ajax.php:30
365
+ msgid "Product successfully removed."
366
+ msgstr "Ürün başarıyla kaldırıldı."
367
+
368
+ #: class.yith-wcwl.php:373 yith-wcwl-ajax.php:33
369
+ msgid "Error. Unable to remove the product from the wishlist."
370
+ msgstr "Hata. Ürün istek listenizden kaldırılamadı. "
371
+
372
+ #: class.yith-wcwl.php:377 yith-wcwl-ajax.php:37 templates/wishlist.php:161
373
+ msgid "No products were added to the wishlist"
374
+ msgstr "İstek listesinde herhangi bir ürün bulunmuyor"
375
+
376
+ #: templates/wishlist.php:82
377
+ msgid "Product Name"
378
+ msgstr "Ürün Adı"
379
+
380
+ #: templates/wishlist.php:83
381
+ msgid "Unit Price"
382
+ msgstr "Birim Fiyatı"
383
+
384
+ #: templates/wishlist.php:84
385
+ msgid "Stock Status"
386
+ msgstr "Stok Durumu"
387
+
388
+ #: templates/wishlist.php:107
389
+ msgid "Remove this product"
390
+ msgstr "Bu ürünü kaldır"
391
+
392
+ #: templates/wishlist.php:127
393
+ msgid "Free!"
394
+ msgstr "Ücretsiz!"
395
+
396
+ #: templates/wishlist.php:140
397
+ msgid "Out of Stock"
398
+ msgstr "Stok Dışı"
399
+
400
+ #: templates/wishlist.php:143
401
+ msgid "In Stock"
402
+ msgstr "Stokta"
403
+
404
+ #: yit-common/yith-panel.php:406
405
+ msgid "Select a date"
406
+ msgstr "Tarih Seçimi"
407
+
408
+ #: yit-common/yith-panel.php:407
409
+ msgid "Hours"
410
+ msgstr "Saat"
411
+
412
+ #: yit-common/yith-panel.php:408 yit-common/yith-panel.php:409
413
+ msgid "Minutes"
414
+ msgstr "Dakika"
415
+
416
+ #: yit-common/yith-panel.php:417
417
+ msgid "Upload"
418
+ msgstr "Yükle"
419
+
420
+ #: yit-common/yith-panel.php:444
421
+ msgid "px"
422
+ msgstr "px"
423
+
424
+ #: yit-common/yith-panel.php:445
425
+ msgid "em"
426
+ msgstr "em"
427
+
428
+ #: yit-common/yith-panel.php:446
429
+ msgid "pt"
430
+ msgstr "pt"
431
+
432
+ #: yit-common/yith-panel.php:447
433
+ msgid "rem"
434
+ msgstr "rem"
435
+
436
+ #: yit-common/yith-panel.php:457
437
+ msgid "Select a font family"
438
+ msgstr "Font ailesi seçimi"
439
+
440
+ #: yit-common/yith-panel.php:465
441
+ msgid "Regular"
442
+ msgstr "Normal"
443
+
444
+ #: yit-common/yith-panel.php:466
445
+ msgid "Bold"
446
+ msgstr "Kalın"
447
+
448
+ #: yit-common/yith-panel.php:467
449
+ msgid "Extra bold"
450
+ msgstr "Ekstra kalın"
451
+
452
+ #: yit-common/yith-panel.php:468
453
+ msgid "Italic"
454
+ msgstr "İtalik"
455
+
456
+ #: yit-common/yith-panel.php:469
457
+ msgid "Italic bold"
458
+ msgstr "İtalik Kalın"
459
+
460
+ #: yit-common/yith-panel.php:481
461
+ msgid "Click to preview"
462
+ msgstr "Önizleme için tıklayın"
463
+
464
+ #~ msgid "View Cart &rarr;"
465
+ #~ msgstr "Warenkorb ansehen"
466
+
467
+ #~ msgid "Product successfully added to the cart."
468
+ #~ msgstr "Produkt erfolgreich im Warenkorb eingefügt "
languages/yit-uk_UA.mo CHANGED
Binary file
languages/yit-uk_UA.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-03-21 17:02+0100\n"
5
- "PO-Revision-Date: 2014-03-21 17:02+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"
@@ -22,103 +22,103 @@ msgstr ""
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:858
26
  msgid "General Settings"
27
  msgstr ""
28
 
29
- #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:964
30
  msgid "Styles"
31
  msgstr ""
32
 
33
- #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1027
34
  msgid "Socials &amp; Share"
35
  msgstr ""
36
 
37
- #: ../class.yith-wcwl-init.php:452
38
  msgid "Colors"
39
  msgstr ""
40
 
41
- #: ../class.yith-wcwl-init.php:482
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr ""
44
 
45
- #: ../class.yith-wcwl-init.php:483
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr ""
48
 
49
- #: ../class.yith-wcwl-init.php:484
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr ""
52
 
53
- #: ../class.yith-wcwl-init.php:490
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr ""
56
 
57
- #: ../class.yith-wcwl-init.php:491
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr ""
60
 
61
- #: ../class.yith-wcwl-init.php:492
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr ""
64
 
65
- #: ../class.yith-wcwl-init.php:497
66
  msgid "\"Add to Cart\" button background"
67
  msgstr "\"Додати в кошик\" button background"
68
 
69
- #: ../class.yith-wcwl-init.php:498
70
  msgid "\"Add to Cart\" button text"
71
  msgstr "\"Додати в кошик\" button text"
72
 
73
- #: ../class.yith-wcwl-init.php:499
74
  msgid "\"Add to Cart\" button border"
75
  msgstr "\"Додати в кошик\" button border"
76
 
77
- #: ../class.yith-wcwl-init.php:505
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr "\"Додати в кошик\" button background (hover)"
80
 
81
- #: ../class.yith-wcwl-init.php:506
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr "\"Додати в кошик\" button text (hover)"
84
 
85
- #: ../class.yith-wcwl-init.php:507
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr "\"Додати в кошик\" button border (hover)"
88
 
89
- #: ../class.yith-wcwl-init.php:512
90
  msgid "Wishlist table background"
91
  msgstr ""
92
 
93
- #: ../class.yith-wcwl-init.php:513
94
  msgid "Wishlist table text"
95
  msgstr ""
96
 
97
- #: ../class.yith-wcwl-init.php:514
98
  msgid "Wishlist table border"
99
  msgstr ""
100
 
101
- #: ../class.yith-wcwl-init.php:574
102
  msgid "Settings"
103
  msgstr ""
104
 
105
- #: ../class.yith-wcwl-init.php:575
106
  msgid "Docs"
107
  msgstr ""
108
 
109
- #: ../class.yith-wcwl-init.php:591
110
  msgid "Wishlist Page"
111
  msgstr ""
112
 
113
- #: ../class.yith-wcwl-init.php:592
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr ""
116
 
117
- #: ../class.yith-wcwl-init.php:861
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
- #: ../class.yith-wcwl-init.php:862
122
  #, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -126,11 +126,11 @@ msgid ""
126
  "\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
- #: ../class.yith-wcwl-init.php:869
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
- #: ../class.yith-wcwl-init.php:870
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
@@ -138,166 +138,170 @@ msgid ""
138
  "timestamp )."
139
  msgstr ""
140
 
141
- #: ../class.yith-wcwl-init.php:877
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
- #: ../class.yith-wcwl-init.php:879 ../class.yith-wcwl-init.php:880
146
- #: ../class.yith-wcwl-init.php:1060 ../class.yith-wcwl-init.php:1061
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr "Мій обраний список в %s"
150
 
151
- #: ../class.yith-wcwl-init.php:889
152
  msgid "Position"
153
  msgstr ""
154
 
155
- #: ../class.yith-wcwl-init.php:890
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:896
162
  msgid "After \"Add to cart\""
163
  msgstr "After \"Додати в кошик\""
164
 
165
- #: ../class.yith-wcwl-init.php:897
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
- #: ../class.yith-wcwl-init.php:898
170
  msgid "After summary"
171
  msgstr ""
172
 
173
- #: ../class.yith-wcwl-init.php:899
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
- #: ../class.yith-wcwl-init.php:904
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
- #: ../class.yith-wcwl-init.php:905
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:912
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
- #: ../class.yith-wcwl-init.php:913
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
- #: ../class.yith-wcwl-init.php:920
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
- #: ../class.yith-wcwl-init.php:922 ../class.yith-wcwl-init.php:923
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
- #: ../class.yith-wcwl-init.php:928
204
  msgid "\"Add to Cart\" text"
205
  msgstr "\"Додати в кошик\" text"
206
 
207
- #: ../class.yith-wcwl-init.php:930 ../class.yith-wcwl-init.php:931
208
  msgid "Add to Cart"
209
  msgstr "Додати в кошик"
210
 
211
- #: ../class.yith-wcwl-init.php:936
212
  #, fuzzy
213
  msgid "Show Unit price"
214
  msgstr "Ціна"
215
 
216
- #: ../class.yith-wcwl-init.php:944
217
  #, fuzzy
218
  msgid "Show \"Add to Cart\" button"
219
  msgstr "\"Додати в кошик\" button text"
220
 
221
- #: ../class.yith-wcwl-init.php:952
222
  #, fuzzy
223
  msgid "Show Stock status"
224
  msgstr "Наявність на складі"
225
 
226
- #: ../class.yith-wcwl-init.php:967
227
  msgid "Use buttons"
228
  msgstr ""
229
 
230
- #: ../class.yith-wcwl-init.php:968
231
  msgid "Use buttons instead of a simple anchors."
232
  msgstr ""
233
 
234
- #: ../class.yith-wcwl-init.php:975
235
  msgid "Custom CSS"
236
  msgstr ""
237
 
238
- #: ../class.yith-wcwl-init.php:983
239
  msgid "Use theme style"
240
  msgstr ""
241
 
242
- #: ../class.yith-wcwl-init.php:984
243
  msgid "Use the theme style."
244
  msgstr ""
245
 
246
- #: ../class.yith-wcwl-init.php:991
247
  msgid "Buttons rounded corners"
248
  msgstr ""
249
 
250
- #: ../class.yith-wcwl-init.php:992
251
  msgid "Make buttons corner rounded"
252
  msgstr ""
253
 
254
- #: ../class.yith-wcwl-init.php:999
255
  msgid "\"Add to Wishlist\" icon"
256
  msgstr ""
257
 
258
- #: ../class.yith-wcwl-init.php:1000
259
  msgid "Add an icon to the \"Add to Wishlist\" button"
260
  msgstr ""
261
 
262
- #: ../class.yith-wcwl-init.php:1011
263
  msgid "\"Add to Cart\" icon"
264
  msgstr "\"Додати в кошик\" icon"
265
 
266
- #: ../class.yith-wcwl-init.php:1012
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:1030
271
  msgid "Share on Facebook"
272
  msgstr ""
273
 
274
- #: ../class.yith-wcwl-init.php:1037
275
  msgid "Tweet on Twitter"
276
  msgstr ""
277
 
278
- #: ../class.yith-wcwl-init.php:1044
279
  msgid "Pin on Pinterest"
280
  msgstr ""
281
 
282
- #: ../class.yith-wcwl-init.php:1051
283
  msgid "Share on Google+"
284
  msgstr ""
285
 
286
- #: ../class.yith-wcwl-init.php:1058
287
- msgid "Socials title"
288
  msgstr ""
289
 
290
  #: ../class.yith-wcwl-init.php:1066
 
 
 
 
291
  msgid "Socials text"
292
  msgstr ""
293
 
294
- #: ../class.yith-wcwl-init.php:1067
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:1075
301
  msgid "Socials image URL"
302
  msgstr ""
303
 
@@ -305,35 +309,39 @@ msgstr ""
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 ""
@@ -355,35 +363,35 @@ msgid "Error. Unable to remove the product from the wishlist."
355
  msgstr ""
356
 
357
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
358
- #: ../templates/wishlist.php:158
359
  msgid "No products were added to the wishlist"
360
  msgstr "Немає доданих продуктів до вибраного"
361
 
362
- #: ../templates/wishlist.php:80
363
  msgid "Product Name"
364
  msgstr "Назва продукту"
365
 
366
- #: ../templates/wishlist.php:81
367
  msgid "Unit Price"
368
  msgstr "Ціна"
369
 
370
- #: ../templates/wishlist.php:82
371
  msgid "Stock Status"
372
  msgstr "Наявність на складі"
373
 
374
- #: ../templates/wishlist.php:104
375
  msgid "Remove this product"
376
  msgstr ""
377
 
378
- #: ../templates/wishlist.php:124
379
  msgid "Free!"
380
  msgstr ""
381
 
382
- #: ../templates/wishlist.php:137
383
  msgid "Out of Stock"
384
  msgstr ""
385
 
386
- #: ../templates/wishlist.php:140
387
  msgid "In Stock"
388
  msgstr "в наявності"
389
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
+ "POT-Creation-Date: 2014-09-16 16:16+0100\n"
5
+ "PO-Revision-Date: 2014-09-16 16:16+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"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
+ #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:859
26
  msgid "General Settings"
27
  msgstr ""
28
 
29
+ #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:965
30
  msgid "Styles"
31
  msgstr ""
32
 
33
+ #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1028
34
  msgid "Socials &amp; Share"
35
  msgstr ""
36
 
37
+ #: ../class.yith-wcwl-init.php:453
38
  msgid "Colors"
39
  msgstr ""
40
 
41
+ #: ../class.yith-wcwl-init.php:483
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr ""
44
 
45
+ #: ../class.yith-wcwl-init.php:484
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr ""
48
 
49
+ #: ../class.yith-wcwl-init.php:485
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr ""
52
 
53
+ #: ../class.yith-wcwl-init.php:491
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr ""
56
 
57
+ #: ../class.yith-wcwl-init.php:492
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr ""
60
 
61
+ #: ../class.yith-wcwl-init.php:493
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr ""
64
 
65
+ #: ../class.yith-wcwl-init.php:498
66
  msgid "\"Add to Cart\" button background"
67
  msgstr "\"Додати в кошик\" button background"
68
 
69
+ #: ../class.yith-wcwl-init.php:499
70
  msgid "\"Add to Cart\" button text"
71
  msgstr "\"Додати в кошик\" button text"
72
 
73
+ #: ../class.yith-wcwl-init.php:500
74
  msgid "\"Add to Cart\" button border"
75
  msgstr "\"Додати в кошик\" button border"
76
 
77
+ #: ../class.yith-wcwl-init.php:506
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr "\"Додати в кошик\" button background (hover)"
80
 
81
+ #: ../class.yith-wcwl-init.php:507
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr "\"Додати в кошик\" button text (hover)"
84
 
85
+ #: ../class.yith-wcwl-init.php:508
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr "\"Додати в кошик\" button border (hover)"
88
 
89
+ #: ../class.yith-wcwl-init.php:513
90
  msgid "Wishlist table background"
91
  msgstr ""
92
 
93
+ #: ../class.yith-wcwl-init.php:514
94
  msgid "Wishlist table text"
95
  msgstr ""
96
 
97
+ #: ../class.yith-wcwl-init.php:515
98
  msgid "Wishlist table border"
99
  msgstr ""
100
 
101
+ #: ../class.yith-wcwl-init.php:575
102
  msgid "Settings"
103
  msgstr ""
104
 
105
+ #: ../class.yith-wcwl-init.php:576
106
  msgid "Docs"
107
  msgstr ""
108
 
109
+ #: ../class.yith-wcwl-init.php:592
110
  msgid "Wishlist Page"
111
  msgstr ""
112
 
113
+ #: ../class.yith-wcwl-init.php:593
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr ""
116
 
117
+ #: ../class.yith-wcwl-init.php:862
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
+ #: ../class.yith-wcwl-init.php:863
122
  #, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
126
  "\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
+ #: ../class.yith-wcwl-init.php:870
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
+ #: ../class.yith-wcwl-init.php:871
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
138
  "timestamp )."
139
  msgstr ""
140
 
141
+ #: ../class.yith-wcwl-init.php:878
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
+ #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
146
+ #: ../class.yith-wcwl-init.php:1068 ../class.yith-wcwl-init.php:1069
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr "Мій обраний список в %s"
150
 
151
+ #: ../class.yith-wcwl-init.php:890
152
  msgid "Position"
153
  msgstr ""
154
 
155
+ #: ../class.yith-wcwl-init.php:891
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:897
162
  msgid "After \"Add to cart\""
163
  msgstr "After \"Додати в кошик\""
164
 
165
+ #: ../class.yith-wcwl-init.php:898
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
+ #: ../class.yith-wcwl-init.php:899
170
  msgid "After summary"
171
  msgstr ""
172
 
173
+ #: ../class.yith-wcwl-init.php:900
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
+ #: ../class.yith-wcwl-init.php:905
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
+ #: ../class.yith-wcwl-init.php:906
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:913
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
+ #: ../class.yith-wcwl-init.php:914
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
+ #: ../class.yith-wcwl-init.php:921
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
+ #: ../class.yith-wcwl-init.php:923 ../class.yith-wcwl-init.php:924
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
+ #: ../class.yith-wcwl-init.php:929
204
  msgid "\"Add to Cart\" text"
205
  msgstr "\"Додати в кошик\" text"
206
 
207
+ #: ../class.yith-wcwl-init.php:931 ../class.yith-wcwl-init.php:932
208
  msgid "Add to Cart"
209
  msgstr "Додати в кошик"
210
 
211
+ #: ../class.yith-wcwl-init.php:937
212
  #, fuzzy
213
  msgid "Show Unit price"
214
  msgstr "Ціна"
215
 
216
+ #: ../class.yith-wcwl-init.php:945
217
  #, fuzzy
218
  msgid "Show \"Add to Cart\" button"
219
  msgstr "\"Додати в кошик\" button text"
220
 
221
+ #: ../class.yith-wcwl-init.php:953
222
  #, fuzzy
223
  msgid "Show Stock status"
224
  msgstr "Наявність на складі"
225
 
226
+ #: ../class.yith-wcwl-init.php:968
227
  msgid "Use buttons"
228
  msgstr ""
229
 
230
+ #: ../class.yith-wcwl-init.php:969
231
  msgid "Use buttons instead of a simple anchors."
232
  msgstr ""
233
 
234
+ #: ../class.yith-wcwl-init.php:976
235
  msgid "Custom CSS"
236
  msgstr ""
237
 
238
+ #: ../class.yith-wcwl-init.php:984
239
  msgid "Use theme style"
240
  msgstr ""
241
 
242
+ #: ../class.yith-wcwl-init.php:985
243
  msgid "Use the theme style."
244
  msgstr ""
245
 
246
+ #: ../class.yith-wcwl-init.php:992
247
  msgid "Buttons rounded corners"
248
  msgstr ""
249
 
250
+ #: ../class.yith-wcwl-init.php:993
251
  msgid "Make buttons corner rounded"
252
  msgstr ""
253
 
254
+ #: ../class.yith-wcwl-init.php:1000
255
  msgid "\"Add to Wishlist\" icon"
256
  msgstr ""
257
 
258
+ #: ../class.yith-wcwl-init.php:1001
259
  msgid "Add an icon to the \"Add to Wishlist\" button"
260
  msgstr ""
261
 
262
+ #: ../class.yith-wcwl-init.php:1012
263
  msgid "\"Add to Cart\" icon"
264
  msgstr "\"Додати в кошик\" icon"
265
 
266
+ #: ../class.yith-wcwl-init.php:1013
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:1031
271
  msgid "Share on Facebook"
272
  msgstr ""
273
 
274
+ #: ../class.yith-wcwl-init.php:1038
275
  msgid "Tweet on Twitter"
276
  msgstr ""
277
 
278
+ #: ../class.yith-wcwl-init.php:1045
279
  msgid "Pin on Pinterest"
280
  msgstr ""
281
 
282
+ #: ../class.yith-wcwl-init.php:1052
283
  msgid "Share on Google+"
284
  msgstr ""
285
 
286
+ #: ../class.yith-wcwl-init.php:1059
287
+ msgid "Share by Email"
288
  msgstr ""
289
 
290
  #: ../class.yith-wcwl-init.php:1066
291
+ msgid "Socials title"
292
+ msgstr ""
293
+
294
+ #: ../class.yith-wcwl-init.php:1074
295
  msgid "Socials text"
296
  msgstr ""
297
 
298
+ #: ../class.yith-wcwl-init.php:1075
299
  msgid ""
300
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
301
  "strong> where you want the URL of your wishlist to appear."
302
  msgstr ""
303
 
304
+ #: ../class.yith-wcwl-init.php:1083
305
  msgid "Socials image URL"
306
  msgstr ""
307
 
309
  msgid "wishlist"
310
  msgstr ""
311
 
312
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl.php:351
313
  #: ../yith-wcwl-ajax.php:47
314
  msgid "Product added!"
315
  msgstr ""
316
 
317
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl-ui.php:68
318
  msgid "Browse Wishlist"
319
  msgstr ""
320
 
321
+ #: ../class.yith-wcwl-ui.php:68
322
  msgid "The product is already in the wishlist!"
323
  msgstr ""
324
 
325
+ #: ../class.yith-wcwl-ui.php:100
326
  msgid "Select options"
327
  msgstr ""
328
 
329
+ #: ../class.yith-wcwl-ui.php:145
330
  msgid "Share on:"
331
  msgstr "Поширити в:"
332
 
333
+ #: ../class.yith-wcwl-ui.php:149
334
  msgid "Facebook"
335
  msgstr ""
336
 
337
+ #: ../class.yith-wcwl-ui.php:152
338
  msgid "Twitter"
339
  msgstr ""
340
 
341
+ #: ../class.yith-wcwl-ui.php:161
342
+ msgid "email"
343
+ msgstr ""
344
+
345
  #: ../class.yith-wcwl.php:140
346
  msgid "Error occurred while adding product to wishlist."
347
  msgstr ""
363
  msgstr ""
364
 
365
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
366
+ #: ../templates/wishlist.php:161
367
  msgid "No products were added to the wishlist"
368
  msgstr "Немає доданих продуктів до вибраного"
369
 
370
+ #: ../templates/wishlist.php:82
371
  msgid "Product Name"
372
  msgstr "Назва продукту"
373
 
374
+ #: ../templates/wishlist.php:83
375
  msgid "Unit Price"
376
  msgstr "Ціна"
377
 
378
+ #: ../templates/wishlist.php:84
379
  msgid "Stock Status"
380
  msgstr "Наявність на складі"
381
 
382
+ #: ../templates/wishlist.php:107
383
  msgid "Remove this product"
384
  msgstr ""
385
 
386
+ #: ../templates/wishlist.php:127
387
  msgid "Free!"
388
  msgstr ""
389
 
390
+ #: ../templates/wishlist.php:140
391
  msgid "Out of Stock"
392
  msgstr ""
393
 
394
+ #: ../templates/wishlist.php:143
395
  msgid "In Stock"
396
  msgstr "в наявності"
397
 
languages/yit.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-03-21 17:01+0100\n"
5
- "PO-Revision-Date: 2014-03-21 17:01+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"
@@ -22,103 +22,103 @@ msgstr ""
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:858
26
  msgid "General Settings"
27
  msgstr ""
28
 
29
- #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:964
30
  msgid "Styles"
31
  msgstr ""
32
 
33
- #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1027
34
  msgid "Socials &amp; Share"
35
  msgstr ""
36
 
37
- #: ../class.yith-wcwl-init.php:452
38
  msgid "Colors"
39
  msgstr ""
40
 
41
- #: ../class.yith-wcwl-init.php:482
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr ""
44
 
45
- #: ../class.yith-wcwl-init.php:483
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr ""
48
 
49
- #: ../class.yith-wcwl-init.php:484
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr ""
52
 
53
- #: ../class.yith-wcwl-init.php:490
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr ""
56
 
57
- #: ../class.yith-wcwl-init.php:491
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr ""
60
 
61
- #: ../class.yith-wcwl-init.php:492
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr ""
64
 
65
- #: ../class.yith-wcwl-init.php:497
66
  msgid "\"Add to Cart\" button background"
67
  msgstr ""
68
 
69
- #: ../class.yith-wcwl-init.php:498
70
  msgid "\"Add to Cart\" button text"
71
  msgstr ""
72
 
73
- #: ../class.yith-wcwl-init.php:499
74
  msgid "\"Add to Cart\" button border"
75
  msgstr ""
76
 
77
- #: ../class.yith-wcwl-init.php:505
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr ""
80
 
81
- #: ../class.yith-wcwl-init.php:506
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr ""
84
 
85
- #: ../class.yith-wcwl-init.php:507
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr ""
88
 
89
- #: ../class.yith-wcwl-init.php:512
90
  msgid "Wishlist table background"
91
  msgstr ""
92
 
93
- #: ../class.yith-wcwl-init.php:513
94
  msgid "Wishlist table text"
95
  msgstr ""
96
 
97
- #: ../class.yith-wcwl-init.php:514
98
  msgid "Wishlist table border"
99
  msgstr ""
100
 
101
- #: ../class.yith-wcwl-init.php:574
102
  msgid "Settings"
103
  msgstr ""
104
 
105
- #: ../class.yith-wcwl-init.php:575
106
  msgid "Docs"
107
  msgstr ""
108
 
109
- #: ../class.yith-wcwl-init.php:591
110
  msgid "Wishlist Page"
111
  msgstr ""
112
 
113
- #: ../class.yith-wcwl-init.php:592
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr ""
116
 
117
- #: ../class.yith-wcwl-init.php:861
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
- #: ../class.yith-wcwl-init.php:862
122
  #, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
@@ -126,11 +126,11 @@ msgid ""
126
  "\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
- #: ../class.yith-wcwl-init.php:869
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
- #: ../class.yith-wcwl-init.php:870
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
@@ -138,163 +138,167 @@ msgid ""
138
  "timestamp )."
139
  msgstr ""
140
 
141
- #: ../class.yith-wcwl-init.php:877
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
- #: ../class.yith-wcwl-init.php:879 ../class.yith-wcwl-init.php:880
146
- #: ../class.yith-wcwl-init.php:1060 ../class.yith-wcwl-init.php:1061
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr ""
150
 
151
- #: ../class.yith-wcwl-init.php:889
152
  msgid "Position"
153
  msgstr ""
154
 
155
- #: ../class.yith-wcwl-init.php:890
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:896
162
  msgid "After \"Add to cart\""
163
  msgstr ""
164
 
165
- #: ../class.yith-wcwl-init.php:897
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
- #: ../class.yith-wcwl-init.php:898
170
  msgid "After summary"
171
  msgstr ""
172
 
173
- #: ../class.yith-wcwl-init.php:899
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
- #: ../class.yith-wcwl-init.php:904
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
- #: ../class.yith-wcwl-init.php:905
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:912
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
- #: ../class.yith-wcwl-init.php:913
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
- #: ../class.yith-wcwl-init.php:920
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
- #: ../class.yith-wcwl-init.php:922 ../class.yith-wcwl-init.php:923
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
- #: ../class.yith-wcwl-init.php:928
204
  msgid "\"Add to Cart\" text"
205
  msgstr ""
206
 
207
- #: ../class.yith-wcwl-init.php:930 ../class.yith-wcwl-init.php:931
208
  msgid "Add to Cart"
209
  msgstr ""
210
 
211
- #: ../class.yith-wcwl-init.php:936
212
  msgid "Show Unit price"
213
  msgstr ""
214
 
215
- #: ../class.yith-wcwl-init.php:944
216
  msgid "Show \"Add to Cart\" button"
217
  msgstr ""
218
 
219
- #: ../class.yith-wcwl-init.php:952
220
  msgid "Show Stock status"
221
  msgstr ""
222
 
223
- #: ../class.yith-wcwl-init.php:967
224
  msgid "Use buttons"
225
  msgstr ""
226
 
227
- #: ../class.yith-wcwl-init.php:968
228
  msgid "Use buttons instead of a simple anchors."
229
  msgstr ""
230
 
231
- #: ../class.yith-wcwl-init.php:975
232
  msgid "Custom CSS"
233
  msgstr ""
234
 
235
- #: ../class.yith-wcwl-init.php:983
236
  msgid "Use theme style"
237
  msgstr ""
238
 
239
- #: ../class.yith-wcwl-init.php:984
240
  msgid "Use the theme style."
241
  msgstr ""
242
 
243
- #: ../class.yith-wcwl-init.php:991
244
  msgid "Buttons rounded corners"
245
  msgstr ""
246
 
247
- #: ../class.yith-wcwl-init.php:992
248
  msgid "Make buttons corner rounded"
249
  msgstr ""
250
 
251
- #: ../class.yith-wcwl-init.php:999
252
  msgid "\"Add to Wishlist\" icon"
253
  msgstr ""
254
 
255
- #: ../class.yith-wcwl-init.php:1000
256
  msgid "Add an icon to the \"Add to Wishlist\" button"
257
  msgstr ""
258
 
259
- #: ../class.yith-wcwl-init.php:1011
260
  msgid "\"Add to Cart\" icon"
261
  msgstr ""
262
 
263
- #: ../class.yith-wcwl-init.php:1012
264
  msgid "Add an icon to the \"Add to Cart\" button"
265
  msgstr ""
266
 
267
- #: ../class.yith-wcwl-init.php:1030
268
  msgid "Share on Facebook"
269
  msgstr ""
270
 
271
- #: ../class.yith-wcwl-init.php:1037
272
  msgid "Tweet on Twitter"
273
  msgstr ""
274
 
275
- #: ../class.yith-wcwl-init.php:1044
276
  msgid "Pin on Pinterest"
277
  msgstr ""
278
 
279
- #: ../class.yith-wcwl-init.php:1051
280
  msgid "Share on Google+"
281
  msgstr ""
282
 
283
- #: ../class.yith-wcwl-init.php:1058
284
- msgid "Socials title"
285
  msgstr ""
286
 
287
  #: ../class.yith-wcwl-init.php:1066
 
 
 
 
288
  msgid "Socials text"
289
  msgstr ""
290
 
291
- #: ../class.yith-wcwl-init.php:1067
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:1075
298
  msgid "Socials image URL"
299
  msgstr ""
300
 
@@ -302,35 +306,39 @@ msgstr ""
302
  msgid "wishlist"
303
  msgstr ""
304
 
305
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl.php:351
306
  #: ../yith-wcwl-ajax.php:47
307
  msgid "Product added!"
308
  msgstr ""
309
 
310
- #: ../class.yith-wcwl-ui.php:64 ../class.yith-wcwl-ui.php:65
311
  msgid "Browse Wishlist"
312
  msgstr ""
313
 
314
- #: ../class.yith-wcwl-ui.php:65
315
  msgid "The product is already in the wishlist!"
316
  msgstr ""
317
 
318
- #: ../class.yith-wcwl-ui.php:93
319
  msgid "Select options"
320
  msgstr ""
321
 
322
- #: ../class.yith-wcwl-ui.php:136
323
  msgid "Share on:"
324
  msgstr ""
325
 
326
- #: ../class.yith-wcwl-ui.php:140
327
  msgid "Facebook"
328
  msgstr ""
329
 
330
- #: ../class.yith-wcwl-ui.php:143
331
  msgid "Twitter"
332
  msgstr ""
333
 
 
 
 
 
334
  #: ../class.yith-wcwl.php:140
335
  msgid "Error occurred while adding product to wishlist."
336
  msgstr ""
@@ -352,35 +360,35 @@ msgid "Error. Unable to remove the product from the wishlist."
352
  msgstr ""
353
 
354
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
355
- #: ../templates/wishlist.php:158
356
  msgid "No products were added to the wishlist"
357
  msgstr ""
358
 
359
- #: ../templates/wishlist.php:80
360
  msgid "Product Name"
361
  msgstr ""
362
 
363
- #: ../templates/wishlist.php:81
364
  msgid "Unit Price"
365
  msgstr ""
366
 
367
- #: ../templates/wishlist.php:82
368
  msgid "Stock Status"
369
  msgstr ""
370
 
371
- #: ../templates/wishlist.php:104
372
  msgid "Remove this product"
373
  msgstr ""
374
 
375
- #: ../templates/wishlist.php:124
376
  msgid "Free!"
377
  msgstr ""
378
 
379
- #: ../templates/wishlist.php:137
380
  msgid "Out of Stock"
381
  msgstr ""
382
 
383
- #: ../templates/wishlist.php:140
384
  msgid "In Stock"
385
  msgstr ""
386
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
+ "POT-Creation-Date: 2014-09-16 16:15+0100\n"
5
+ "PO-Revision-Date: 2014-09-16 16:15+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"
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
+ #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:859
26
  msgid "General Settings"
27
  msgstr ""
28
 
29
+ #: ../class.yith-wcwl-init.php:431 ../class.yith-wcwl-init.php:965
30
  msgid "Styles"
31
  msgstr ""
32
 
33
+ #: ../class.yith-wcwl-init.php:432 ../class.yith-wcwl-init.php:1028
34
  msgid "Socials &amp; Share"
35
  msgstr ""
36
 
37
+ #: ../class.yith-wcwl-init.php:453
38
  msgid "Colors"
39
  msgstr ""
40
 
41
+ #: ../class.yith-wcwl-init.php:483
42
  msgid "\"Add to Wishlist\" button background"
43
  msgstr ""
44
 
45
+ #: ../class.yith-wcwl-init.php:484
46
  msgid "\"Add to Wishlist\" button text"
47
  msgstr ""
48
 
49
+ #: ../class.yith-wcwl-init.php:485
50
  msgid "\"Add to Wishlist\" button border"
51
  msgstr ""
52
 
53
+ #: ../class.yith-wcwl-init.php:491
54
  msgid "\"Add to Wishlist\" button background (hover)"
55
  msgstr ""
56
 
57
+ #: ../class.yith-wcwl-init.php:492
58
  msgid "\"Add to Wishlist\" button text (hover)"
59
  msgstr ""
60
 
61
+ #: ../class.yith-wcwl-init.php:493
62
  msgid "\"Add to Wishlist\" button border (hover)"
63
  msgstr ""
64
 
65
+ #: ../class.yith-wcwl-init.php:498
66
  msgid "\"Add to Cart\" button background"
67
  msgstr ""
68
 
69
+ #: ../class.yith-wcwl-init.php:499
70
  msgid "\"Add to Cart\" button text"
71
  msgstr ""
72
 
73
+ #: ../class.yith-wcwl-init.php:500
74
  msgid "\"Add to Cart\" button border"
75
  msgstr ""
76
 
77
+ #: ../class.yith-wcwl-init.php:506
78
  msgid "\"Add to Cart\" button background (hover)"
79
  msgstr ""
80
 
81
+ #: ../class.yith-wcwl-init.php:507
82
  msgid "\"Add to Cart\" button text (hover)"
83
  msgstr ""
84
 
85
+ #: ../class.yith-wcwl-init.php:508
86
  msgid "\"Add to Cart\" button border (hover)"
87
  msgstr ""
88
 
89
+ #: ../class.yith-wcwl-init.php:513
90
  msgid "Wishlist table background"
91
  msgstr ""
92
 
93
+ #: ../class.yith-wcwl-init.php:514
94
  msgid "Wishlist table text"
95
  msgstr ""
96
 
97
+ #: ../class.yith-wcwl-init.php:515
98
  msgid "Wishlist table border"
99
  msgstr ""
100
 
101
+ #: ../class.yith-wcwl-init.php:575
102
  msgid "Settings"
103
  msgstr ""
104
 
105
+ #: ../class.yith-wcwl-init.php:576
106
  msgid "Docs"
107
  msgstr ""
108
 
109
+ #: ../class.yith-wcwl-init.php:592
110
  msgid "Wishlist Page"
111
  msgstr ""
112
 
113
+ #: ../class.yith-wcwl-init.php:593
114
  msgid "Page contents: [yith_wcwl_wishlist]"
115
  msgstr ""
116
 
117
+ #: ../class.yith-wcwl-init.php:862
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
+ #: ../class.yith-wcwl-init.php:863
122
  #, php-format
123
  msgid ""
124
  "Enable all plugin features. <strong>Be sure to select a voice in the "
126
  "\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
+ #: ../class.yith-wcwl-init.php:870
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
+ #: ../class.yith-wcwl-init.php:871
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
138
  "timestamp )."
139
  msgstr ""
140
 
141
+ #: ../class.yith-wcwl-init.php:878
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
+ #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
146
+ #: ../class.yith-wcwl-init.php:1068 ../class.yith-wcwl-init.php:1069
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr ""
150
 
151
+ #: ../class.yith-wcwl-init.php:890
152
  msgid "Position"
153
  msgstr ""
154
 
155
+ #: ../class.yith-wcwl-init.php:891
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:897
162
  msgid "After \"Add to cart\""
163
  msgstr ""
164
 
165
+ #: ../class.yith-wcwl-init.php:898
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
+ #: ../class.yith-wcwl-init.php:899
170
  msgid "After summary"
171
  msgstr ""
172
 
173
+ #: ../class.yith-wcwl-init.php:900
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
+ #: ../class.yith-wcwl-init.php:905
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
+ #: ../class.yith-wcwl-init.php:906
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:913
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
+ #: ../class.yith-wcwl-init.php:914
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
+ #: ../class.yith-wcwl-init.php:921
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
+ #: ../class.yith-wcwl-init.php:923 ../class.yith-wcwl-init.php:924
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
+ #: ../class.yith-wcwl-init.php:929
204
  msgid "\"Add to Cart\" text"
205
  msgstr ""
206
 
207
+ #: ../class.yith-wcwl-init.php:931 ../class.yith-wcwl-init.php:932
208
  msgid "Add to Cart"
209
  msgstr ""
210
 
211
+ #: ../class.yith-wcwl-init.php:937
212
  msgid "Show Unit price"
213
  msgstr ""
214
 
215
+ #: ../class.yith-wcwl-init.php:945
216
  msgid "Show \"Add to Cart\" button"
217
  msgstr ""
218
 
219
+ #: ../class.yith-wcwl-init.php:953
220
  msgid "Show Stock status"
221
  msgstr ""
222
 
223
+ #: ../class.yith-wcwl-init.php:968
224
  msgid "Use buttons"
225
  msgstr ""
226
 
227
+ #: ../class.yith-wcwl-init.php:969
228
  msgid "Use buttons instead of a simple anchors."
229
  msgstr ""
230
 
231
+ #: ../class.yith-wcwl-init.php:976
232
  msgid "Custom CSS"
233
  msgstr ""
234
 
235
+ #: ../class.yith-wcwl-init.php:984
236
  msgid "Use theme style"
237
  msgstr ""
238
 
239
+ #: ../class.yith-wcwl-init.php:985
240
  msgid "Use the theme style."
241
  msgstr ""
242
 
243
+ #: ../class.yith-wcwl-init.php:992
244
  msgid "Buttons rounded corners"
245
  msgstr ""
246
 
247
+ #: ../class.yith-wcwl-init.php:993
248
  msgid "Make buttons corner rounded"
249
  msgstr ""
250
 
251
+ #: ../class.yith-wcwl-init.php:1000
252
  msgid "\"Add to Wishlist\" icon"
253
  msgstr ""
254
 
255
+ #: ../class.yith-wcwl-init.php:1001
256
  msgid "Add an icon to the \"Add to Wishlist\" button"
257
  msgstr ""
258
 
259
+ #: ../class.yith-wcwl-init.php:1012
260
  msgid "\"Add to Cart\" icon"
261
  msgstr ""
262
 
263
+ #: ../class.yith-wcwl-init.php:1013
264
  msgid "Add an icon to the \"Add to Cart\" button"
265
  msgstr ""
266
 
267
+ #: ../class.yith-wcwl-init.php:1031
268
  msgid "Share on Facebook"
269
  msgstr ""
270
 
271
+ #: ../class.yith-wcwl-init.php:1038
272
  msgid "Tweet on Twitter"
273
  msgstr ""
274
 
275
+ #: ../class.yith-wcwl-init.php:1045
276
  msgid "Pin on Pinterest"
277
  msgstr ""
278
 
279
+ #: ../class.yith-wcwl-init.php:1052
280
  msgid "Share on Google+"
281
  msgstr ""
282
 
283
+ #: ../class.yith-wcwl-init.php:1059
284
+ msgid "Share by Email"
285
  msgstr ""
286
 
287
  #: ../class.yith-wcwl-init.php:1066
288
+ msgid "Socials title"
289
+ msgstr ""
290
+
291
+ #: ../class.yith-wcwl-init.php:1074
292
  msgid "Socials text"
293
  msgstr ""
294
 
295
+ #: ../class.yith-wcwl-init.php:1075
296
  msgid ""
297
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
298
  "strong> where you want the URL of your wishlist to appear."
299
  msgstr ""
300
 
301
+ #: ../class.yith-wcwl-init.php:1083
302
  msgid "Socials image URL"
303
  msgstr ""
304
 
306
  msgid "wishlist"
307
  msgstr ""
308
 
309
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl.php:351
310
  #: ../yith-wcwl-ajax.php:47
311
  msgid "Product added!"
312
  msgstr ""
313
 
314
+ #: ../class.yith-wcwl-ui.php:67 ../class.yith-wcwl-ui.php:68
315
  msgid "Browse Wishlist"
316
  msgstr ""
317
 
318
+ #: ../class.yith-wcwl-ui.php:68
319
  msgid "The product is already in the wishlist!"
320
  msgstr ""
321
 
322
+ #: ../class.yith-wcwl-ui.php:100
323
  msgid "Select options"
324
  msgstr ""
325
 
326
+ #: ../class.yith-wcwl-ui.php:145
327
  msgid "Share on:"
328
  msgstr ""
329
 
330
+ #: ../class.yith-wcwl-ui.php:149
331
  msgid "Facebook"
332
  msgstr ""
333
 
334
+ #: ../class.yith-wcwl-ui.php:152
335
  msgid "Twitter"
336
  msgstr ""
337
 
338
+ #: ../class.yith-wcwl-ui.php:161
339
+ msgid "email"
340
+ msgstr ""
341
+
342
  #: ../class.yith-wcwl.php:140
343
  msgid "Error occurred while adding product to wishlist."
344
  msgstr ""
360
  msgstr ""
361
 
362
  #: ../class.yith-wcwl.php:377 ../yith-wcwl-ajax.php:37
363
+ #: ../templates/wishlist.php:161
364
  msgid "No products were added to the wishlist"
365
  msgstr ""
366
 
367
+ #: ../templates/wishlist.php:82
368
  msgid "Product Name"
369
  msgstr ""
370
 
371
+ #: ../templates/wishlist.php:83
372
  msgid "Unit Price"
373
  msgstr ""
374
 
375
+ #: ../templates/wishlist.php:84
376
  msgid "Stock Status"
377
  msgstr ""
378
 
379
+ #: ../templates/wishlist.php:107
380
  msgid "Remove this product"
381
  msgstr ""
382
 
383
+ #: ../templates/wishlist.php:127
384
  msgid "Free!"
385
  msgstr ""
386
 
387
+ #: ../templates/wishlist.php:140
388
  msgid "Out of Stock"
389
  msgstr ""
390
 
391
+ #: ../templates/wishlist.php:143
392
  msgid "In Stock"
393
  msgstr ""
394
 
templates/wishlist.php CHANGED
@@ -67,6 +67,8 @@ if( function_exists('wc_print_notices') ) {
67
  do_action( 'yith_wcwl_before_wishlist_title' );
68
 
69
  $wishlist_title = get_option( 'yith_wcwl_wishlist_title' );
 
 
70
  if( !empty( $wishlist_title ) )
71
  { echo apply_filters( 'yith_wcwl_wishlist_title', '<h2>' . $wishlist_title . '</h2>' ); }
72
 
67
  do_action( 'yith_wcwl_before_wishlist_title' );
68
 
69
  $wishlist_title = get_option( 'yith_wcwl_wishlist_title' );
70
+ $wishlist_title = function_exists( 'icl_translate' ) ? icl_translate( 'Plugins', 'plugin_yit_wishlist_title_text', $wishlist_title ) : $wishlist_title;
71
+
72
  if( !empty( $wishlist_title ) )
73
  { echo apply_filters( 'yith_wcwl_wishlist_title', '<h2>' . $wishlist_title . '</h2>' ); }
74
 
yit-common/yit-functions.php CHANGED
@@ -6,9 +6,11 @@
6
  * @version 0.0.1
7
  */
8
 
9
- if( !defined('YITH_FUNCTIONS')) {
10
- define( 'YITH_FUNCTIONS', true);
11
- }
 
 
12
 
13
  if ( ! function_exists( 'yit_is_woocommerce_active' ) ) {
14
  /**
6
  * @version 0.0.1
7
  */
8
 
9
+ define( 'YITH_FUNCTIONS', true);
10
+
11
+ /* === Include Common Framework File === */
12
+ require_once( 'google_fonts.php' );
13
+ require_once( 'yith-panel.php' );
14
 
15
  if ( ! function_exists( 'yit_is_woocommerce_active' ) ) {
16
  /**