YITH WooCommerce Wishlist - Version 1.1.2

Version Description

  • Fixed: Warnings when Show Stock Status is disabled
  • Fixed: Restored page options on WooCommerce 2.1.x
Download this release

Release Info

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

Code changes from version 1.1.1 to 1.1.2

README.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: yithemes
4
  Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
5
  Requires at least: 3.5.1
6
  Tested up to: 3.8.1
7
- Stable tag: 1.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -75,6 +75,11 @@ Yes, you can change the colors of background, text and border or apply a custom
75
 
76
  == Changelog ==
77
 
 
 
 
 
 
78
  = 1.1.1 =
79
 
80
  * Fixed: Inability to unistall plugin
4
  Tags: wishlist, woocommerce, products, themes, yit, e-commerce, shop
5
  Requires at least: 3.5.1
6
  Tested up to: 3.8.1
7
+ Stable tag: 1.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
75
 
76
  == Changelog ==
77
 
78
+ = 1.1.2 =
79
+
80
+ * Fixed: Warnings when Show Stock Status is disabled
81
+ * Fixed: Restored page options on WooCommerce 2.1.x
82
+
83
  = 1.1.1 =
84
 
85
  * Fixed: Inability to unistall plugin
add-to-cart.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  // Handles all ajax requests pertaining to this plugin
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  // Handles all ajax requests pertaining to this plugin
assets/css/admin.css CHANGED
@@ -3,7 +3,7 @@
3
  *
4
  * @author Your Inspiration Themes
5
  * @package YITH WooCommerce Wishlist
6
- * @version 1.1.1
7
  */
8
 
9
  #yith_wcwl_styles .color_box {
3
  *
4
  * @author Your Inspiration Themes
5
  * @package YITH WooCommerce Wishlist
6
+ * @version 1.1.2
7
  */
8
 
9
  #yith_wcwl_styles .color_box {
assets/css/style.css CHANGED
@@ -3,7 +3,7 @@
3
  *
4
  * @author Your Inspiration Themes
5
  * @package YITH WooCommerce Wishlist
6
- * @version 1.1.1
7
  */
8
 
9
 
3
  *
4
  * @author Your Inspiration Themes
5
  * @package YITH WooCommerce Wishlist
6
+ * @version 1.1.2
7
  */
8
 
9
 
class.yith-wcwl-init.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  if ( ! defined( 'YITH_WCWL' ) ) {
@@ -24,7 +24,7 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
24
  * @var string
25
  * @since 1.0.0
26
  */
27
- public $version = '1.1.1';
28
 
29
  /**
30
  * Plugin database version
@@ -104,6 +104,13 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
104
  define( 'YITH_WCWL_VERSION', $this->version );
105
  define( 'YITH_WCWL_DB_VERSION', $this->db_version );
106
 
 
 
 
 
 
 
 
107
  $this->tab = __( 'Wishlist', 'yit' );
108
  $this->options = $this->_plugin_options();
109
 
@@ -118,15 +125,20 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
118
  $this->install();
119
  }
120
 
 
 
121
  add_action( 'init', array( $this, 'init' ), 0 );
122
  add_action( 'admin_init', array( $this, 'load_admin_style' ) );
123
 
124
  add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_tab_woocommerce' ), 30 );
125
- add_filter( 'woocommerce_page_settings', array( $this, 'add_page_setting_woocommerce' ) );
126
  add_action( 'woocommerce_update_options_yith_wcwl', array( $this, 'update_options' ) );
127
  add_action( 'woocommerce_settings_tabs_yith_wcwl', array( $this, 'print_plugin_options' ) );
128
  add_filter( 'plugin_action_links_' . plugin_basename( plugin_basename( dirname( __FILE__ ) . '/init.php' ) ), array( $this, 'action_links' ) );
129
 
 
 
 
 
130
  if ( get_option( 'yith_wcwl_enabled' ) == 'yes' ) {
131
  add_action( 'wp_head', array( $this, 'add_button' ) );
132
  add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles_and_stuffs' ) );
@@ -380,17 +392,7 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
380
  public function add_page_setting_woocommerce( $settings ) {
381
  unset( $settings[count( $settings ) - 1] );
382
 
383
- $settings[] = array(
384
- 'name' => __( 'Wishlist Page', 'yit' ),
385
- 'desc' => __( 'Page contents: [yith_wcwl_wishlist]', 'yit' ),
386
- 'id' => 'yith_wcwl_wishlist_page_id',
387
- 'type' => 'single_select_page',
388
- 'std' => '', // for woocommerce < 2.0
389
- 'default' => '', // for woocommerce >= 2.0
390
- 'class' => 'chosen_select_nostd',
391
- 'css' => 'min-width:300px;',
392
- 'desc_tip' => false,
393
- );
394
 
395
  $settings[] = array( 'type' => 'sectionend', 'id' => 'page_options' );
396
 
@@ -576,6 +578,28 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
576
  return array_merge( $plugin_links, $links );
577
  }
578
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
579
 
580
  /**
581
  * Print the banner
@@ -816,12 +840,26 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
816
 
817
  ksort( $icons );
818
 
819
- $options['general_settings'] = array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
820
  array( 'name' => __( 'General Settings', 'yit' ), 'type' => 'title', 'desc' => '', 'id' => 'yith_wcwl_general_settings' ),
821
 
822
  array(
823
  'name' => __( 'Enable YITH Wishlist', 'yit' ),
824
- 'desc' => sprintf( __( 'Enable all plugin features. <strong>Be sure that the wishlist page is selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read the plugin <a href="%s" target="_blank">documentation</a>.', 'yit' ), esc_url( $this->doc_url ) ),
825
  'id' => 'yith_wcwl_enabled',
826
  'std' => 'yes', // for woocommerce < 2.0
827
  'default' => 'yes', // for woocommerce >= 2.0
@@ -842,7 +880,11 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
842
  'default' => sprintf( __( 'My wishlist on %s', 'yit' ), get_bloginfo( 'name' ) ), // for woocommerce >= 2.0
843
  'type' => 'text',
844
  'css' => 'min-width:300px;',
845
- ),
 
 
 
 
846
  array(
847
  'name' => __( 'Position', 'yit' ),
848
  'desc' => __( 'On variable products you can add it only After "Add to Cart" or use the shortcode [yith_wcwl_add_to_wishlist].', 'yit' ),
@@ -1041,6 +1083,15 @@ if ( ! class_exists( 'YITH_WCWL_Init' ) ) {
1041
  array( 'type' => 'sectionend', 'id' => 'yith_wcwl_styles' )
1042
  );
1043
 
 
 
 
 
 
 
 
 
 
1044
  return apply_filters( 'yith_wcwl_tab_options', $options );
1045
  }
1046
  }
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  if ( ! defined( 'YITH_WCWL' ) ) {
24
  * @var string
25
  * @since 1.0.0
26
  */
27
+ public $version = '1.1.2';
28
 
29
  /**
30
  * Plugin database version
104
  define( 'YITH_WCWL_VERSION', $this->version );
105
  define( 'YITH_WCWL_DB_VERSION', $this->db_version );
106
 
107
+ /**
108
+ * Support to WC 2.0.x
109
+ */
110
+ global $woocommerce;
111
+
112
+ $is_woocommerce_2_0 = version_compare( preg_replace( '/-beta-([0-9]+)/', '', $woocommerce->version ), '2.1', '<' );
113
+
114
  $this->tab = __( 'Wishlist', 'yit' );
115
  $this->options = $this->_plugin_options();
116
 
125
  $this->install();
126
  }
127
 
128
+
129
+
130
  add_action( 'init', array( $this, 'init' ), 0 );
131
  add_action( 'admin_init', array( $this, 'load_admin_style' ) );
132
 
133
  add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_tab_woocommerce' ), 30 );
 
134
  add_action( 'woocommerce_update_options_yith_wcwl', array( $this, 'update_options' ) );
135
  add_action( 'woocommerce_settings_tabs_yith_wcwl', array( $this, 'print_plugin_options' ) );
136
  add_filter( 'plugin_action_links_' . plugin_basename( plugin_basename( dirname( __FILE__ ) . '/init.php' ) ), array( $this, 'action_links' ) );
137
 
138
+ if( $is_woocommerce_2_0 ) {
139
+ add_filter( 'woocommerce_page_settings', array( $this, 'add_page_setting_woocommerce' ) );
140
+ }
141
+
142
  if ( get_option( 'yith_wcwl_enabled' ) == 'yes' ) {
143
  add_action( 'wp_head', array( $this, 'add_button' ) );
144
  add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles_and_stuffs' ) );
392
  public function add_page_setting_woocommerce( $settings ) {
393
  unset( $settings[count( $settings ) - 1] );
394
 
395
+ $setting[] = $this->get_wcwl_page_option();
 
 
 
 
 
 
 
 
 
 
396
 
397
  $settings[] = array( 'type' => 'sectionend', 'id' => 'page_options' );
398
 
578
  return array_merge( $plugin_links, $links );
579
  }
580
 
581
+ /**
582
+ * Return the option to add the wishlist page
583
+ *
584
+ * @access public
585
+ * @return mxied array
586
+ * @since 1.1.2
587
+ */
588
+ public function get_wcwl_page_option(){
589
+
590
+ return array(
591
+ 'name' => __( 'Wishlist Page', 'yit' ),
592
+ 'desc' => __( 'Page contents: [yith_wcwl_wishlist]', 'yit' ),
593
+ 'id' => 'yith_wcwl_wishlist_page_id',
594
+ 'type' => 'single_select_page',
595
+ 'std' => '', // for woocommerce < 2.0
596
+ 'default' => '', // for woocommerce >= 2.0
597
+ 'class' => 'chosen_select_nostd',
598
+ 'css' => 'min-width:300px;',
599
+ 'desc_tip' => false,
600
+ );
601
+ }
602
+
603
 
604
  /**
605
  * Print the banner
840
 
841
  ksort( $icons );
842
 
843
+ global $woocommerce;
844
+
845
+ $is_woocommerce_2_0 =version_compare( preg_replace( '/-beta-([0-9]+)/', '', $woocommerce->version ), '2.1', '<' );
846
+
847
+ $options['general_settings'] = array();
848
+
849
+ if( $is_woocommerce_2_0 ){
850
+
851
+ $settings_page = 'WooCommerce &gt; Settings &gt; Pages' ;
852
+ }else{
853
+ $settings_page = 'in this settings page';
854
+ }
855
+
856
+ $general_settings_start = array(
857
+
858
  array( 'name' => __( 'General Settings', 'yit' ), 'type' => 'title', 'desc' => '', 'id' => 'yith_wcwl_general_settings' ),
859
 
860
  array(
861
  'name' => __( 'Enable YITH Wishlist', 'yit' ),
862
+ 'desc' => sprintf( __( 'Enable all plugin features. <strong>Be sure to select a voice in the wishlist page menu in %s.</strong> Also, please read the plugin <a href="%s" target="_blank">documentation</a>.', 'yit' ), $settings_page, esc_url( $this->doc_url ) ),
863
  'id' => 'yith_wcwl_enabled',
864
  'std' => 'yes', // for woocommerce < 2.0
865
  'default' => 'yes', // for woocommerce >= 2.0
880
  'default' => sprintf( __( 'My wishlist on %s', 'yit' ), get_bloginfo( 'name' ) ), // for woocommerce >= 2.0
881
  'type' => 'text',
882
  'css' => 'min-width:300px;',
883
+ )
884
+ );
885
+
886
+
887
+ $general_settings_end = array(
888
  array(
889
  'name' => __( 'Position', 'yit' ),
890
  'desc' => __( 'On variable products you can add it only After "Add to Cart" or use the shortcode [yith_wcwl_add_to_wishlist].', 'yit' ),
1083
  array( 'type' => 'sectionend', 'id' => 'yith_wcwl_styles' )
1084
  );
1085
 
1086
+ if( $is_woocommerce_2_0 ) {
1087
+
1088
+ $options['general_settings'] = array_merge( $general_settings_start, $general_settings_end );
1089
+
1090
+ }else{
1091
+
1092
+ $options['general_settings'] = array_merge( $general_settings_start, array( $this->get_wcwl_page_option() ), $general_settings_end );
1093
+ }
1094
+
1095
  return apply_filters( 'yith_wcwl_tab_options', $options );
1096
  }
1097
  }
class.yith-wcwl-install.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
class.yith-wcwl-shortcode.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
class.yith-wcwl-ui.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
class.yith-wcwl.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
functions.yith-wcwl.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  if ( !defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly
init.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: YITH WooCommerce Wishlist
4
  * Plugin URI: http://yithemes.com/
5
  * Description: YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce.
6
- * Version: 1.1.1
7
  * Author: Your Inspiration Themes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yit
@@ -11,7 +11,7 @@
11
  *
12
  * @author Your Inspiration Themes
13
  * @package YITH WooCommerce Wishlist
14
- * @version 1.1.1
15
  */
16
  /* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
17
 
3
  * Plugin Name: YITH WooCommerce Wishlist
4
  * Plugin URI: http://yithemes.com/
5
  * Description: YITH WooCommerce Wishlist allows you to add Wishlist functionality to your e-commerce.
6
+ * Version: 1.1.2
7
  * Author: Your Inspiration Themes
8
  * Author URI: http://yithemes.com/
9
  * Text Domain: yit
11
  *
12
  * @author Your Inspiration Themes
13
  * @package YITH WooCommerce Wishlist
14
+ * @version 1.1.2
15
  */
16
  /* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
17
 
languages/default.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-02-26 15:55+0100\n"
5
- "PO-Revision-Date: 2014-02-26 15:56+0100\n"
6
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: English\n"
@@ -14,123 +14,123 @@ msgstr ""
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
- #: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr ""
20
 
21
- #: ../class.yith-wcwl-init.php:353
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
- #: ../class.yith-wcwl-init.php:384
26
- msgid "Wishlist Page"
27
- msgstr ""
28
-
29
- #: ../class.yith-wcwl-init.php:385
30
- msgid "Page contents: [yith_wcwl_wishlist]"
31
- msgstr ""
32
-
33
- #: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
34
  msgid "General Settings"
35
  msgstr ""
36
 
37
- #: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
38
  msgid "Styles"
39
  msgstr ""
40
 
41
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
42
  msgid "Socials &amp; Share"
43
  msgstr ""
44
 
45
- #: ../class.yith-wcwl-init.php:450
46
  msgid "Colors"
47
  msgstr ""
48
 
49
- #: ../class.yith-wcwl-init.php:480
50
  msgid "\"Add to Wishlist\" button background"
51
  msgstr ""
52
 
53
- #: ../class.yith-wcwl-init.php:481
54
  msgid "\"Add to Wishlist\" button text"
55
  msgstr ""
56
 
57
- #: ../class.yith-wcwl-init.php:482
58
  msgid "\"Add to Wishlist\" button border"
59
  msgstr ""
60
 
61
- #: ../class.yith-wcwl-init.php:488
62
  msgid "\"Add to Wishlist\" button background (hover)"
63
  msgstr ""
64
 
65
- #: ../class.yith-wcwl-init.php:489
66
  msgid "\"Add to Wishlist\" button text (hover)"
67
  msgstr ""
68
 
69
- #: ../class.yith-wcwl-init.php:490
70
  msgid "\"Add to Wishlist\" button border (hover)"
71
  msgstr ""
72
 
73
- #: ../class.yith-wcwl-init.php:495
74
  msgid "\"Add to Cart\" button background"
75
  msgstr ""
76
 
77
- #: ../class.yith-wcwl-init.php:496
78
  msgid "\"Add to Cart\" button text"
79
  msgstr ""
80
 
81
- #: ../class.yith-wcwl-init.php:497
82
  msgid "\"Add to Cart\" button border"
83
  msgstr ""
84
 
85
- #: ../class.yith-wcwl-init.php:503
86
  msgid "\"Add to Cart\" button background (hover)"
87
  msgstr ""
88
 
89
- #: ../class.yith-wcwl-init.php:504
90
  msgid "\"Add to Cart\" button text (hover)"
91
  msgstr ""
92
 
93
- #: ../class.yith-wcwl-init.php:505
94
  msgid "\"Add to Cart\" button border (hover)"
95
  msgstr ""
96
 
97
- #: ../class.yith-wcwl-init.php:510
98
  msgid "Wishlist table background"
99
  msgstr ""
100
 
101
- #: ../class.yith-wcwl-init.php:511
102
  msgid "Wishlist table text"
103
  msgstr ""
104
 
105
- #: ../class.yith-wcwl-init.php:512
106
  msgid "Wishlist table border"
107
  msgstr ""
108
 
109
- #: ../class.yith-wcwl-init.php:572
110
  msgid "Settings"
111
  msgstr ""
112
 
113
- #: ../class.yith-wcwl-init.php:573
114
  msgid "Docs"
115
  msgstr ""
116
 
117
- #: ../class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
- #: ../class.yith-wcwl-init.php:824
122
  #, php-format
123
  msgid ""
124
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
125
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
126
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
- #: ../class.yith-wcwl-init.php:831
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
- #: ../class.yith-wcwl-init.php:832
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
@@ -138,163 +138,163 @@ msgid ""
138
  "timestamp )."
139
  msgstr ""
140
 
141
- #: ../class.yith-wcwl-init.php:839
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
- #: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
146
- #: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr ""
150
 
151
- #: ../class.yith-wcwl-init.php:847
152
  msgid "Position"
153
  msgstr ""
154
 
155
- #: ../class.yith-wcwl-init.php:848
156
  msgid ""
157
  "On variable products you can add it only After \"Add to Cart\" or use the "
158
  "shortcode [yith_wcwl_add_to_wishlist]."
159
  msgstr ""
160
 
161
- #: ../class.yith-wcwl-init.php:854
162
  msgid "After \"Add to cart\""
163
  msgstr ""
164
 
165
- #: ../class.yith-wcwl-init.php:855
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
- #: ../class.yith-wcwl-init.php:856
170
  msgid "After summary"
171
  msgstr ""
172
 
173
- #: ../class.yith-wcwl-init.php:857
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
- #: ../class.yith-wcwl-init.php:862
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
- #: ../class.yith-wcwl-init.php:863
182
  msgid ""
183
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
184
  "page."
185
  msgstr ""
186
 
187
- #: ../class.yith-wcwl-init.php:870
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
- #: ../class.yith-wcwl-init.php:871
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
- #: ../class.yith-wcwl-init.php:878
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
- #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
- #: ../class.yith-wcwl-init.php:886
204
  msgid "\"Add to Cart\" text"
205
  msgstr ""
206
 
207
- #: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
208
  msgid "Add to Cart"
209
  msgstr ""
210
 
211
- #: ../class.yith-wcwl-init.php:894
212
  msgid "Show Unit price"
213
  msgstr ""
214
 
215
- #: ../class.yith-wcwl-init.php:902
216
  msgid "Show \"Add to Cart\" button"
217
  msgstr ""
218
 
219
- #: ../class.yith-wcwl-init.php:910
220
  msgid "Show Stock status"
221
  msgstr ""
222
 
223
- #: ../class.yith-wcwl-init.php:925
224
  msgid "Use buttons"
225
  msgstr ""
226
 
227
- #: ../class.yith-wcwl-init.php:926
228
  msgid "Use buttons instead of a simple anchors."
229
  msgstr ""
230
 
231
- #: ../class.yith-wcwl-init.php:933
232
  msgid "Custom CSS"
233
  msgstr ""
234
 
235
- #: ../class.yith-wcwl-init.php:941
236
  msgid "Use theme style"
237
  msgstr ""
238
 
239
- #: ../class.yith-wcwl-init.php:942
240
  msgid "Use the theme style."
241
  msgstr ""
242
 
243
- #: ../class.yith-wcwl-init.php:949
244
  msgid "Buttons rounded corners"
245
  msgstr ""
246
 
247
- #: ../class.yith-wcwl-init.php:950
248
  msgid "Make buttons corner rounded"
249
  msgstr ""
250
 
251
- #: ../class.yith-wcwl-init.php:957
252
  msgid "\"Add to Wishlist\" icon"
253
  msgstr ""
254
 
255
- #: ../class.yith-wcwl-init.php:958
256
  msgid "Add an icon to the \"Add to Wishlist\" button"
257
  msgstr ""
258
 
259
- #: ../class.yith-wcwl-init.php:969
260
  msgid "\"Add to Cart\" icon"
261
  msgstr ""
262
 
263
- #: ../class.yith-wcwl-init.php:970
264
  msgid "Add an icon to the \"Add to Cart\" button"
265
  msgstr ""
266
 
267
- #: ../class.yith-wcwl-init.php:988
268
  msgid "Share on Facebook"
269
  msgstr ""
270
 
271
- #: ../class.yith-wcwl-init.php:995
272
  msgid "Tweet on Twitter"
273
  msgstr ""
274
 
275
- #: ../class.yith-wcwl-init.php:1002
276
  msgid "Pin on Pinterest"
277
  msgstr ""
278
 
279
- #: ../class.yith-wcwl-init.php:1009
280
  msgid "Share on Google+"
281
  msgstr ""
282
 
283
- #: ../class.yith-wcwl-init.php:1016
284
  msgid "Socials title"
285
  msgstr ""
286
 
287
- #: ../class.yith-wcwl-init.php:1024
288
  msgid "Socials text"
289
  msgstr ""
290
 
291
- #: ../class.yith-wcwl-init.php:1025
292
  msgid ""
293
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
294
  "strong> where you want the URL of your wishlist to appear."
295
  msgstr ""
296
 
297
- #: ../class.yith-wcwl-init.php:1033
298
  msgid "Socials image URL"
299
  msgstr ""
300
 
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"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../class.yith-wcwl-init.php:114 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr ""
20
 
21
+ #: ../class.yith-wcwl-init.php:365
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 "
125
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
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
  "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
 
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-02-26 15:56+0100\n"
6
- "PO-Revision-Date: 2014-02-26 15:56+0100\n"
7
  "Last-Translator: YIThemes <support@yithemes.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -18,129 +18,129 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.5\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: class.yith-wcwl-init.php:107 class.yith-wcwl-install.php:137
22
  msgid "Wishlist"
23
  msgstr "Wunschliste"
24
 
25
- #: class.yith-wcwl-init.php:353
26
  msgid "Cannot add to the cart as product is Out of Stock!"
27
  msgstr ""
28
  "Gewähltes Produkt ist nicht mehr im Sortiment und kann daher nicht im "
29
  "Warenkorb eingefügt werden. "
30
 
31
- #: class.yith-wcwl-init.php:384
32
- msgid "Wishlist Page"
33
- msgstr "Wunschlistenseite"
34
-
35
- #: class.yith-wcwl-init.php:385
36
- msgid "Page contents: [yith_wcwl_wishlist]"
37
- msgstr "Seiteninhalt: [yith_wcwl_wishlist]"
38
-
39
- #: class.yith-wcwl-init.php:428 class.yith-wcwl-init.php:820
40
  msgid "General Settings"
41
  msgstr "Allgemeine Einstellungen"
42
 
43
- #: class.yith-wcwl-init.php:429 class.yith-wcwl-init.php:922
44
  msgid "Styles"
45
  msgstr "Style"
46
 
47
- #: class.yith-wcwl-init.php:430 class.yith-wcwl-init.php:985
48
  msgid "Socials &amp; Share"
49
  msgstr "Soziale Netzwerke; Teilen"
50
 
51
- #: class.yith-wcwl-init.php:450
52
  msgid "Colors"
53
  msgstr "Farben"
54
 
55
- #: class.yith-wcwl-init.php:480
56
  msgid "\"Add to Wishlist\" button background"
57
  msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund"
58
 
59
- #: class.yith-wcwl-init.php:481
60
  msgid "\"Add to Wishlist\" button text"
61
  msgstr "\"Zu Wunschliste hinzufügen\" Button Text"
62
 
63
- #: class.yith-wcwl-init.php:482
64
  msgid "\"Add to Wishlist\" button border"
65
  msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen"
66
 
67
- #: class.yith-wcwl-init.php:488
68
  msgid "\"Add to Wishlist\" button background (hover)"
69
  msgstr "\"Zu Wunschliste hinzufügen\" Button Hintergrund (hover)"
70
 
71
- #: class.yith-wcwl-init.php:489
72
  msgid "\"Add to Wishlist\" button text (hover)"
73
  msgstr "\"Zu Wunschliste hinzufügen\" Button Text (hover)"
74
 
75
- #: class.yith-wcwl-init.php:490
76
  msgid "\"Add to Wishlist\" button border (hover)"
77
  msgstr "\"Zu Wunschliste hinzufügen\" Button Rahmen (hover)"
78
 
79
- #: class.yith-wcwl-init.php:495
80
  msgid "\"Add to Cart\" button background"
81
  msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund"
82
 
83
- #: class.yith-wcwl-init.php:496
84
  msgid "\"Add to Cart\" button text"
85
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
86
 
87
- #: class.yith-wcwl-init.php:497
88
  msgid "\"Add to Cart\" button border"
89
  msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen"
90
 
91
- #: class.yith-wcwl-init.php:503
92
  msgid "\"Add to Cart\" button background (hover)"
93
  msgstr "\"Zu Warenkorb hinzufügen\" Button Hintergrund (hover)"
94
 
95
- #: class.yith-wcwl-init.php:504
96
  msgid "\"Add to Cart\" button text (hover)"
97
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text (hover)"
98
 
99
- #: class.yith-wcwl-init.php:505
100
  msgid "\"Add to Cart\" button border (hover)"
101
  msgstr "\"Zu Warenkorb hinzufügen\" Button Rahmen (hover)"
102
 
103
- #: class.yith-wcwl-init.php:510
104
  msgid "Wishlist table background"
105
  msgstr "Wunschliste Tabellenhintergrund"
106
 
107
- #: class.yith-wcwl-init.php:511
108
  msgid "Wishlist table text"
109
  msgstr "Wunschliste Tabellentext"
110
 
111
- #: class.yith-wcwl-init.php:512
112
  msgid "Wishlist table border"
113
  msgstr "Wunschliste Tabellenrahmen"
114
 
115
- #: class.yith-wcwl-init.php:572
116
  msgid "Settings"
117
  msgstr "Einstellungen"
118
 
119
- #: class.yith-wcwl-init.php:573
120
  msgid "Docs"
121
  msgstr "Dokumentation"
122
 
123
- #: class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
124
  msgid "Enable YITH Wishlist"
125
  msgstr "Aktiviere YITH Wunschliste"
126
 
127
- #: class.yith-wcwl-init.php:824
128
- #, php-format
129
  msgid ""
130
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
131
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
132
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
133
  msgstr ""
134
  "Aktiviere alle Plugin-Einstellungen <strong>Stellen Sie sicher, dass die "
135
  "Wunschlisten-Seite in den WooCommerce &gt; Einstellungen &gt; Seiten "
136
  "markiert ist.</strong> Bitte lesen Sie die Plugin- <a href=\"%s\" target="
137
  "\"_blank\">Hinweise</a>."
138
 
139
- #: class.yith-wcwl-init.php:831
140
  msgid "Use cookies"
141
  msgstr "Cookies verwenden"
142
 
143
- #: class.yith-wcwl-init.php:832
144
  msgid ""
145
  "Use cookies instead of sessions. With this feature, the wishlist will be "
146
  "available for each not logged user for 30 days. Use the filter "
@@ -152,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:839
156
  msgid "Wishlist title"
157
  msgstr "Wunschlistentitel"
158
 
159
- #: class.yith-wcwl-init.php:841 class.yith-wcwl-init.php:842
160
- #: class.yith-wcwl-init.php:1018 class.yith-wcwl-init.php:1019
161
  #, php-format
162
  msgid "My wishlist on %s"
163
  msgstr "Meine Wunschliste von %s"
164
 
165
- #: class.yith-wcwl-init.php:847
166
  msgid "Position"
167
  msgstr "Position"
168
 
169
- #: class.yith-wcwl-init.php:848
170
  msgid ""
171
  "On variable products you can add it only After \"Add to Cart\" or use the "
172
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -174,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:854
178
  msgid "After \"Add to cart\""
179
  msgstr "Nach \"Add to cart\""
180
 
181
- #: class.yith-wcwl-init.php:855
182
  msgid "After thumbnails"
183
  msgstr "Nach Thumbnails (Miniaturbilder)"
184
 
185
- #: class.yith-wcwl-init.php:856
186
  msgid "After summary"
187
  msgstr "Nach Zusammenfassung"
188
 
189
- #: class.yith-wcwl-init.php:857
190
  msgid "Use shortcode"
191
  msgstr "Shortcode verwenden"
192
 
193
- #: class.yith-wcwl-init.php:862
194
  msgid "Redirect to cart"
195
  msgstr "Weiterleiten zum Warenkorb"
196
 
197
- #: class.yith-wcwl-init.php:863
198
  msgid ""
199
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
200
  "page."
@@ -202,115 +202,115 @@ msgstr ""
202
  "Zum Warenkorb weiterleiten, wenn \"Add to cart\" Button auf der "
203
  "Wunschlistenseite angeklickt wurde"
204
 
205
- #: class.yith-wcwl-init.php:870
206
  msgid "Remove if added to the cart"
207
  msgstr "Entfernen, wenn Produkt zum Warenkorb hinzugefügt wurde"
208
 
209
- #: class.yith-wcwl-init.php:871
210
  msgid "Remove the product from the wishlist if is been added to the cart."
211
  msgstr ""
212
  "Produkt von der Wunschliste enfernen, wenn es zum Warenkorb hinzugefügt wurde"
213
 
214
- #: class.yith-wcwl-init.php:878
215
  msgid "\"Add to Wishlist\" text"
216
  msgstr "\"Zu Wunschliste hinzufügen\" Text"
217
 
218
- #: class.yith-wcwl-init.php:880 class.yith-wcwl-init.php:881
219
  msgid "Add to Wishlist"
220
  msgstr "Zu Wunschliste hinzufügen"
221
 
222
- #: class.yith-wcwl-init.php:886
223
  msgid "\"Add to Cart\" text"
224
  msgstr "\"Auf die Wunschliste setzen\" Text"
225
 
226
- #: class.yith-wcwl-init.php:888 class.yith-wcwl-init.php:889
227
  msgid "Add to Cart"
228
  msgstr "Zum Warenkorb hinzufügen"
229
 
230
- #: class.yith-wcwl-init.php:894
231
  #, fuzzy
232
  msgid "Show Unit price"
233
  msgstr "Preis"
234
 
235
- #: class.yith-wcwl-init.php:902
236
  #, fuzzy
237
  msgid "Show \"Add to Cart\" button"
238
  msgstr "\"Zu Warenkorb hinzufügen\" Button Text"
239
 
240
- #: class.yith-wcwl-init.php:910
241
  #, fuzzy
242
  msgid "Show Stock status"
243
  msgstr "Lagerstatus"
244
 
245
- #: class.yith-wcwl-init.php:925
246
  msgid "Use buttons"
247
  msgstr "Buttons verwenden"
248
 
249
- #: class.yith-wcwl-init.php:926
250
  msgid "Use buttons instead of a simple anchors."
251
  msgstr "Buttons anstatt von einfachen Anchors verwenden"
252
 
253
- #: class.yith-wcwl-init.php:933
254
  msgid "Custom CSS"
255
  msgstr "Benutzerdefiniertes CSS"
256
 
257
- #: class.yith-wcwl-init.php:941
258
  msgid "Use theme style"
259
  msgstr "Theme Design verwenden"
260
 
261
- #: class.yith-wcwl-init.php:942
262
  msgid "Use the theme style."
263
  msgstr "Theme Design verwenden"
264
 
265
- #: class.yith-wcwl-init.php:949
266
  msgid "Buttons rounded corners"
267
  msgstr "Button mit abgerundeten Ecken"
268
 
269
- #: class.yith-wcwl-init.php:950
270
  msgid "Make buttons corner rounded"
271
  msgstr "Button mit abgerundeten Ecken nutzen"
272
 
273
- #: class.yith-wcwl-init.php:957
274
  msgid "\"Add to Wishlist\" icon"
275
  msgstr "\"Zur Wunschliste hinzufügen\" Icon"
276
 
277
- #: class.yith-wcwl-init.php:958
278
  msgid "Add an icon to the \"Add to Wishlist\" button"
279
  msgstr "Ein Icon zu \"Auf die Wunschliste setzen\" Button verwenden"
280
 
281
- #: class.yith-wcwl-init.php:969
282
  msgid "\"Add to Cart\" icon"
283
  msgstr "\"In den Warenkoeb\" Icon"
284
 
285
- #: class.yith-wcwl-init.php:970
286
  msgid "Add an icon to the \"Add to Cart\" button"
287
  msgstr "Ein \"In den Warenkorb\"- Icon hinzufügen"
288
 
289
- #: class.yith-wcwl-init.php:988
290
  msgid "Share on Facebook"
291
  msgstr "Auf Facebook teilen"
292
 
293
- #: class.yith-wcwl-init.php:995
294
  msgid "Tweet on Twitter"
295
  msgstr "Auf Twitter tweeten"
296
 
297
- #: class.yith-wcwl-init.php:1002
298
  msgid "Pin on Pinterest"
299
  msgstr "Auf Pinterest pinnen"
300
 
301
- #: class.yith-wcwl-init.php:1009
302
  msgid "Share on Google+"
303
  msgstr "Bei Google+ teilen"
304
 
305
- #: class.yith-wcwl-init.php:1016
306
  msgid "Socials title"
307
  msgstr "Soziale Netzwerke-Titel"
308
 
309
- #: class.yith-wcwl-init.php:1024
310
  msgid "Socials text"
311
  msgstr "Soziale Netzwerke Text"
312
 
313
- #: class.yith-wcwl-init.php:1025
314
  msgid ""
315
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
316
  "strong> where you want the URL of your wishlist to appear."
@@ -318,7 +318,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:1033
322
  msgid "Socials image URL"
323
  msgstr "Soziale Netzwerke Bild URL"
324
 
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"
18
  "X-Generator: Poedit 1.5.5\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: class.yith-wcwl-init.php:114 class.yith-wcwl-install.php:137
22
  msgid "Wishlist"
23
  msgstr "Wunschliste"
24
 
25
+ #: class.yith-wcwl-init.php:365
26
  msgid "Cannot add to the cart as product is Out of Stock!"
27
  msgstr ""
28
  "Gewähltes Produkt ist nicht mehr im Sortiment und kann daher nicht im "
29
  "Warenkorb eingefügt werden. "
30
 
31
+ #: class.yith-wcwl-init.php: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 "
131
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
132
+ "\" target=\"_blank\">documentation</a>."
133
  msgstr ""
134
  "Aktiviere alle Plugin-Einstellungen <strong>Stellen Sie sicher, dass die "
135
  "Wunschlisten-Seite in den WooCommerce &gt; Einstellungen &gt; Seiten "
136
  "markiert ist.</strong> Bitte lesen Sie die Plugin- <a href=\"%s\" target="
137
  "\"_blank\">Hinweise</a>."
138
 
139
+ #: class.yith-wcwl-init.php: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
  "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
  "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
  "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
  "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
 
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-02-26 15:56+0100\n"
5
- "PO-Revision-Date: 2014-02-26 15:56+0100\n"
6
  "Last-Translator: YIThemes <support@yithemes.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: Español\n"
@@ -14,129 +14,129 @@ msgstr ""
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
- #: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr "Lista de deseos"
20
 
21
- #: ../class.yith-wcwl-init.php:353
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
  "Perdón, pero no podemos agregarlo al carrito porque actualmente no tenemos "
25
  "en stock."
26
 
27
- #: ../class.yith-wcwl-init.php:384
28
- msgid "Wishlist Page"
29
- msgstr "Lista de deseos"
30
-
31
- #: ../class.yith-wcwl-init.php:385
32
- msgid "Page contents: [yith_wcwl_wishlist]"
33
- msgstr "Contenidos: [yith_wcwl_wishlist]"
34
-
35
- #: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
36
  msgid "General Settings"
37
  msgstr "Configuraciones generales"
38
 
39
- #: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
40
  msgid "Styles"
41
  msgstr "Estilos"
42
 
43
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
44
  msgid "Socials &amp; Share"
45
  msgstr "Sociales &amp; Compartir"
46
 
47
- #: ../class.yith-wcwl-init.php:450
48
  msgid "Colors"
49
  msgstr "Colores"
50
 
51
- #: ../class.yith-wcwl-init.php:480
52
  msgid "\"Add to Wishlist\" button background"
53
  msgstr "Fondo del botón \"Agregar a la lista de deseos\""
54
 
55
- #: ../class.yith-wcwl-init.php:481
56
  msgid "\"Add to Wishlist\" button text"
57
  msgstr "Texto del botón \"Agregar a la lista de deseos\""
58
 
59
- #: ../class.yith-wcwl-init.php:482
60
  msgid "\"Add to Wishlist\" button border"
61
  msgstr "Borde del botón \"Agregar a la lista de deseos\""
62
 
63
- #: ../class.yith-wcwl-init.php:488
64
  msgid "\"Add to Wishlist\" button background (hover)"
65
  msgstr "Fondo del botón \"Agregar a la lista de deseos\" (hover)"
66
 
67
- #: ../class.yith-wcwl-init.php:489
68
  msgid "\"Add to Wishlist\" button text (hover)"
69
  msgstr "Texto del botón \"Agregar a la lista de deseos\" (hover)"
70
 
71
- #: ../class.yith-wcwl-init.php:490
72
  msgid "\"Add to Wishlist\" button border (hover)"
73
  msgstr "Borde del botón \"Agregar a la lista de deseos\" (hover)"
74
 
75
- #: ../class.yith-wcwl-init.php:495
76
  msgid "\"Add to Cart\" button background"
77
  msgstr "Fondo del botón \"Agregar al carrito\""
78
 
79
- #: ../class.yith-wcwl-init.php:496
80
  msgid "\"Add to Cart\" button text"
81
  msgstr "Texto del botón \"Agregar al carrito\""
82
 
83
- #: ../class.yith-wcwl-init.php:497
84
  msgid "\"Add to Cart\" button border"
85
  msgstr "Borde del botón \"Agregar al carrito\""
86
 
87
- #: ../class.yith-wcwl-init.php:503
88
  msgid "\"Add to Cart\" button background (hover)"
89
  msgstr "Fondo del botón \"Agregar al carrito\" (hover)"
90
 
91
- #: ../class.yith-wcwl-init.php:504
92
  msgid "\"Add to Cart\" button text (hover)"
93
  msgstr "Texto del botón \"Agregar al carrito\" (hover)"
94
 
95
- #: ../class.yith-wcwl-init.php:505
96
  msgid "\"Add to Cart\" button border (hover)"
97
  msgstr "Borde del botón \"Agregar al carrito\" (hover)"
98
 
99
- #: ../class.yith-wcwl-init.php:510
100
  msgid "Wishlist table background"
101
  msgstr "Fondo de la tabla de la Lista de Deseos"
102
 
103
- #: ../class.yith-wcwl-init.php:511
104
  msgid "Wishlist table text"
105
  msgstr "Texto de la tabla de la Lista de Deseos"
106
 
107
- #: ../class.yith-wcwl-init.php:512
108
  msgid "Wishlist table border"
109
  msgstr "Borde de la tabla de la Lista de Deseos"
110
 
111
- #: ../class.yith-wcwl-init.php:572
112
  msgid "Settings"
113
  msgstr "Configuraciones"
114
 
115
- #: ../class.yith-wcwl-init.php:573
116
  msgid "Docs"
117
  msgstr "Documentación"
118
 
119
- #: ../class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
120
  msgid "Enable YITH Wishlist"
121
  msgstr "Habilitar YITH Wishlist"
122
 
123
- #: ../class.yith-wcwl-init.php:824
124
- #, php-format
125
  msgid ""
126
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
127
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
128
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
129
  msgstr ""
130
  "Habilitar todas las opciones del plugin. <strong> Asegúrate de que la página "
131
  "de la Lista de Deseos esté seleccionada en WooCommerce &gt; Ajustes &gt; "
132
  "Páginas.</strong> También, por favor lee la <a href=\"%s\" target=\"_blank"
133
  "\">documentación</a> del plugin."
134
 
135
- #: ../class.yith-wcwl-init.php:831
136
  msgid "Use cookies"
137
  msgstr "Usar cookies"
138
 
139
- #: ../class.yith-wcwl-init.php:832
140
  msgid ""
141
  "Use cookies instead of sessions. With this feature, the wishlist will be "
142
  "available for each not logged user for 30 days. Use the filter "
@@ -148,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:839
152
  msgid "Wishlist title"
153
  msgstr "Título de la Lista de deseos"
154
 
155
- #: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
156
- #: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
157
  #, php-format
158
  msgid "My wishlist on %s"
159
  msgstr "Mi lista de deseos en %s"
160
 
161
- #: ../class.yith-wcwl-init.php:847
162
  msgid "Position"
163
  msgstr "Posición"
164
 
165
- #: ../class.yith-wcwl-init.php:848
166
  msgid ""
167
  "On variable products you can add it only After \"Add to Cart\" or use the "
168
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -170,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:854
174
  msgid "After \"Add to cart\""
175
  msgstr "Después de \"Agregar al carrito\""
176
 
177
- #: ../class.yith-wcwl-init.php:855
178
  msgid "After thumbnails"
179
  msgstr "Después de las miniaturas"
180
 
181
- #: ../class.yith-wcwl-init.php:856
182
  msgid "After summary"
183
  msgstr "Después del resúmen"
184
 
185
- #: ../class.yith-wcwl-init.php:857
186
  msgid "Use shortcode"
187
  msgstr "Usar shortcode"
188
 
189
- #: ../class.yith-wcwl-init.php:862
190
  msgid "Redirect to cart"
191
  msgstr "Redireccionar al carrito"
192
 
193
- #: ../class.yith-wcwl-init.php:863
194
  msgid ""
195
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
196
  "page."
@@ -198,111 +198,111 @@ msgstr ""
198
  "Redireccionar a la página del carrito si se presiona el botón \"Agregar al "
199
  "carrito\" en la página de la lista de deseos."
200
 
201
- #: ../class.yith-wcwl-init.php:870
202
  msgid "Remove if added to the cart"
203
  msgstr "Eliminar después de agregar al carrito"
204
 
205
- #: ../class.yith-wcwl-init.php:871
206
  msgid "Remove the product from the wishlist if is been added to the cart."
207
  msgstr "Eliminar el producto de la lista de deseos si fue agregado al carrito."
208
 
209
- #: ../class.yith-wcwl-init.php:878
210
  msgid "\"Add to Wishlist\" text"
211
  msgstr "Texto de \"Agregar a la Lista de deseos\""
212
 
213
- #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
214
  msgid "Add to Wishlist"
215
  msgstr "Agregar a la Lista de deseos"
216
 
217
- #: ../class.yith-wcwl-init.php:886
218
  msgid "\"Add to Cart\" text"
219
  msgstr "Texto de \"Agregar al carrito\""
220
 
221
- #: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
222
  msgid "Add to Cart"
223
  msgstr "Agregar al carrito"
224
 
225
- #: ../class.yith-wcwl-init.php:894
226
  msgid "Show Unit price"
227
  msgstr "Mostrar precio por unidad"
228
 
229
- #: ../class.yith-wcwl-init.php:902
230
  msgid "Show \"Add to Cart\" button"
231
  msgstr "Mostrar el botón \"Agregar al carrito\""
232
 
233
- #: ../class.yith-wcwl-init.php:910
234
  msgid "Show Stock status"
235
  msgstr "Mostrar estado del stock"
236
 
237
- #: ../class.yith-wcwl-init.php:925
238
  msgid "Use buttons"
239
  msgstr "Usar botones"
240
 
241
- #: ../class.yith-wcwl-init.php:926
242
  msgid "Use buttons instead of a simple anchors."
243
  msgstr "Usar botones en lugar de anclas simples."
244
 
245
- #: ../class.yith-wcwl-init.php:933
246
  msgid "Custom CSS"
247
  msgstr "CSS personalizado"
248
 
249
- #: ../class.yith-wcwl-init.php:941
250
  msgid "Use theme style"
251
  msgstr "Usar el estilo del tema"
252
 
253
- #: ../class.yith-wcwl-init.php:942
254
  msgid "Use the theme style."
255
  msgstr "Usar el estilo del tema."
256
 
257
- #: ../class.yith-wcwl-init.php:949
258
  msgid "Buttons rounded corners"
259
  msgstr "Botones con ángulos redondeados"
260
 
261
- #: ../class.yith-wcwl-init.php:950
262
  msgid "Make buttons corner rounded"
263
  msgstr "Redondear los ángulos de los botones"
264
 
265
- #: ../class.yith-wcwl-init.php:957
266
  msgid "\"Add to Wishlist\" icon"
267
  msgstr "Ícono de \"Agregar a la Lista de deseos\""
268
 
269
- #: ../class.yith-wcwl-init.php:958
270
  msgid "Add an icon to the \"Add to Wishlist\" button"
271
  msgstr "Agregar un ícono al botón de \"Agregar a la Lista de deseos\""
272
 
273
- #: ../class.yith-wcwl-init.php:969
274
  msgid "\"Add to Cart\" icon"
275
  msgstr "Ícono de \"Agregar al carrito\""
276
 
277
- #: ../class.yith-wcwl-init.php:970
278
  msgid "Add an icon to the \"Add to Cart\" button"
279
  msgstr "Agregar un ícono para el botón de \"Agregar al carrito\""
280
 
281
- #: ../class.yith-wcwl-init.php:988
282
  msgid "Share on Facebook"
283
  msgstr "Compartir en Facebook"
284
 
285
- #: ../class.yith-wcwl-init.php:995
286
  msgid "Tweet on Twitter"
287
  msgstr "Tuitear en Twitter"
288
 
289
- #: ../class.yith-wcwl-init.php:1002
290
  msgid "Pin on Pinterest"
291
  msgstr "Compartir en Pinterest"
292
 
293
- #: ../class.yith-wcwl-init.php:1009
294
  msgid "Share on Google+"
295
  msgstr "Compartir en Google+"
296
 
297
- #: ../class.yith-wcwl-init.php:1016
298
  msgid "Socials title"
299
  msgstr "Título de sociales"
300
 
301
- #: ../class.yith-wcwl-init.php:1024
302
  msgid "Socials text"
303
  msgstr "Texto de sociales"
304
 
305
- #: ../class.yith-wcwl-init.php:1025
306
  msgid ""
307
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
308
  "strong> where you want the URL of your wishlist to appear."
@@ -310,7 +310,7 @@ msgstr ""
310
  "Será usado por Facebook, Twitter y Pinterest. Usar <strong>%wishlist_url%</"
311
  "strong> donde quieras que aparezca la URL de tu lista de deseos."
312
 
313
- #: ../class.yith-wcwl-init.php:1033
314
  msgid "Socials image URL"
315
  msgstr "URL de las imágenes sociales"
316
 
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"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../class.yith-wcwl-init.php:114 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr "Lista de deseos"
20
 
21
+ #: ../class.yith-wcwl-init.php:365
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
  "Perdón, pero no podemos agregarlo al carrito porque actualmente no tenemos "
25
  "en stock."
26
 
27
+ #: ../class.yith-wcwl-init.php: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 "
127
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
128
+ "\" target=\"_blank\">documentation</a>."
129
  msgstr ""
130
  "Habilitar todas las opciones del plugin. <strong> Asegúrate de que la página "
131
  "de la Lista de Deseos esté seleccionada en WooCommerce &gt; Ajustes &gt; "
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
  "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
  "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
  "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
  "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
 
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-02-26 15:56+0100\n"
5
- "PO-Revision-Date: 2014-02-26 15:56+0100\n"
6
  "Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: en\n"
@@ -14,127 +14,127 @@ msgstr ""
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
- #: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr "Lista de deseos"
20
 
21
- #: ../class.yith-wcwl-init.php:353
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "No se ha podido agregar, el producto no cuenta con existencias."
24
 
25
- #: ../class.yith-wcwl-init.php:384
26
- msgid "Wishlist Page"
27
- msgstr "Página de la Lista de Deseos"
28
-
29
- #: ../class.yith-wcwl-init.php:385
30
- msgid "Page contents: [yith_wcwl_wishlist]"
31
- msgstr ""
32
-
33
- #: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
34
  msgid "General Settings"
35
  msgstr "Ajustes Generales"
36
 
37
- #: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
38
  msgid "Styles"
39
  msgstr "Estilos"
40
 
41
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
42
  msgid "Socials &amp; Share"
43
  msgstr "Compartir"
44
 
45
- #: ../class.yith-wcwl-init.php:450
46
  msgid "Colors"
47
  msgstr "Colores"
48
 
49
- #: ../class.yith-wcwl-init.php:480
50
  msgid "\"Add to Wishlist\" button background"
51
  msgstr "\"Agregar a Lista de deseos\" Color de fondo del boton"
52
 
53
- #: ../class.yith-wcwl-init.php:481
54
  msgid "\"Add to Wishlist\" button text"
55
  msgstr "\"Agregar a Lista de deseos\" texto del boton"
56
 
57
- #: ../class.yith-wcwl-init.php:482
58
  msgid "\"Add to Wishlist\" button border"
59
  msgstr "\"Agregar a Lista de deseos\" borde del boton"
60
 
61
- #: ../class.yith-wcwl-init.php:488
62
  msgid "\"Add to Wishlist\" button background (hover)"
63
  msgstr "\"Agregar a Lista de deseos\" fondo del boton (hover)"
64
 
65
- #: ../class.yith-wcwl-init.php:489
66
  msgid "\"Add to Wishlist\" button text (hover)"
67
  msgstr "\"Agregar a Lista de deseos\" texto del boton (hover)"
68
 
69
- #: ../class.yith-wcwl-init.php:490
70
  msgid "\"Add to Wishlist\" button border (hover)"
71
  msgstr "\"Agregar a Lista de deseos\" borde del boton (hover)"
72
 
73
- #: ../class.yith-wcwl-init.php:495
74
  msgid "\"Add to Cart\" button background"
75
  msgstr "\"Agregar al Carrito\" fondo del boton"
76
 
77
- #: ../class.yith-wcwl-init.php:496
78
  msgid "\"Add to Cart\" button text"
79
  msgstr "\"Agregar al Carrito\" texto del boton"
80
 
81
- #: ../class.yith-wcwl-init.php:497
82
  msgid "\"Add to Cart\" button border"
83
  msgstr "\"Agregar al Carrito\" borde del boton"
84
 
85
- #: ../class.yith-wcwl-init.php:503
86
  msgid "\"Add to Cart\" button background (hover)"
87
  msgstr "\"Agregar al Carrito\" fondo del boton"
88
 
89
- #: ../class.yith-wcwl-init.php:504
90
  msgid "\"Add to Cart\" button text (hover)"
91
  msgstr "\"Agregar al Carrito\" texto del boton (hover)"
92
 
93
- #: ../class.yith-wcwl-init.php:505
94
  msgid "\"Add to Cart\" button border (hover)"
95
  msgstr "\"Agregar al Carrito\" borde del boton(hover)"
96
 
97
- #: ../class.yith-wcwl-init.php:510
98
  msgid "Wishlist table background"
99
  msgstr "\"Agregar al Carrito\" texto del boton"
100
 
101
- #: ../class.yith-wcwl-init.php:511
102
  msgid "Wishlist table text"
103
  msgstr "Texto de la tabla de la Lista de deseos"
104
 
105
- #: ../class.yith-wcwl-init.php:512
106
  msgid "Wishlist table border"
107
  msgstr "Borde de la tabla de la Lista de deseos"
108
 
109
- #: ../class.yith-wcwl-init.php:572
110
  msgid "Settings"
111
  msgstr "Ajustes"
112
 
113
- #: ../class.yith-wcwl-init.php:573
114
  msgid "Docs"
115
  msgstr "Documentación"
116
 
117
- #: ../class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
118
  msgid "Enable YITH Wishlist"
119
  msgstr "Activar la Lista de deseos de YITH"
120
 
121
- #: ../class.yith-wcwl-init.php:824
122
- #, php-format
123
  msgid ""
124
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
125
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
126
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
  "Activar todas las características del plugin <strong>Aseguráte que la página "
129
  "de la Lista de deseos esté seleccionada enWooCommerce &gt; Ajustes &gt; "
130
  "Páginas.</strong>Por favor lea la <a href=\"%s\" target=\"_blank"
131
  "\">documentación</a>. del plugin"
132
 
133
- #: ../class.yith-wcwl-init.php:831
134
  msgid "Use cookies"
135
  msgstr "Usar cookies"
136
 
137
- #: ../class.yith-wcwl-init.php:832
138
  msgid ""
139
  "Use cookies instead of sessions. With this feature, the wishlist will be "
140
  "available for each not logged user for 30 days. Use the filter "
@@ -146,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:839
150
  msgid "Wishlist title"
151
  msgstr "Título de la Lista de deseos"
152
 
153
- #: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
154
- #: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
155
  #, php-format
156
  msgid "My wishlist on %s"
157
  msgstr "My Lista de deseos en %s"
158
 
159
- #: ../class.yith-wcwl-init.php:847
160
  msgid "Position"
161
  msgstr "Posición"
162
 
163
- #: ../class.yith-wcwl-init.php:848
164
  msgid ""
165
  "On variable products you can add it only After \"Add to Cart\" or use the "
166
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -168,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:854
172
  msgid "After \"Add to cart\""
173
  msgstr "Despued de \"Agregar al Carrito\""
174
 
175
- #: ../class.yith-wcwl-init.php:855
176
  msgid "After thumbnails"
177
  msgstr "Despues de las miniaturas"
178
 
179
- #: ../class.yith-wcwl-init.php:856
180
  msgid "After summary"
181
  msgstr "Despues del Resumen"
182
 
183
- #: ../class.yith-wcwl-init.php:857
184
  msgid "Use shortcode"
185
  msgstr "Usar shortcode"
186
 
187
- #: ../class.yith-wcwl-init.php:862
188
  msgid "Redirect to cart"
189
  msgstr "Redirreccionar al Carrito"
190
 
191
- #: ../class.yith-wcwl-init.php:863
192
  msgid ""
193
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
194
  "page."
@@ -196,112 +196,112 @@ msgstr ""
196
  "Redireccionar a la página del Carrito si el boton de \"Agregar al Carrito\" "
197
  "es presionado en la página de la Lista de deseos."
198
 
199
- #: ../class.yith-wcwl-init.php:870
200
  msgid "Remove if added to the cart"
201
  msgstr "Remover si es agregado al Carrito."
202
 
203
- #: ../class.yith-wcwl-init.php:871
204
  msgid "Remove the product from the wishlist if is been added to the cart."
205
  msgstr ""
206
  "Remover el producto de la Lista de deseos si ha sido agregado al Carrito."
207
 
208
- #: ../class.yith-wcwl-init.php:878
209
  msgid "\"Add to Wishlist\" text"
210
  msgstr "Testo de \"Agregar al Carrito\""
211
 
212
- #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
213
  msgid "Add to Wishlist"
214
  msgstr "Agregar a la Lista de deseos"
215
 
216
- #: ../class.yith-wcwl-init.php:886
217
  msgid "\"Add to Cart\" text"
218
  msgstr "Texto de \"Agregar del Carrito\""
219
 
220
- #: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
221
  msgid "Add to Cart"
222
  msgstr "Agregar al Carrito"
223
 
224
- #: ../class.yith-wcwl-init.php:894
225
  msgid "Show Unit price"
226
  msgstr "Mostrar Precio unitario"
227
 
228
- #: ../class.yith-wcwl-init.php:902
229
  msgid "Show \"Add to Cart\" button"
230
  msgstr "Mostar el boton de \"Agregar al Carrito\" "
231
 
232
- #: ../class.yith-wcwl-init.php:910
233
  msgid "Show Stock status"
234
  msgstr "Mostar el estado del inventario"
235
 
236
- #: ../class.yith-wcwl-init.php:925
237
  msgid "Use buttons"
238
  msgstr "Usar botones"
239
 
240
- #: ../class.yith-wcwl-init.php:926
241
  msgid "Use buttons instead of a simple anchors."
242
  msgstr "Usar botones en lugar de un simple elnaces"
243
 
244
- #: ../class.yith-wcwl-init.php:933
245
  msgid "Custom CSS"
246
  msgstr "Css personalizado"
247
 
248
- #: ../class.yith-wcwl-init.php:941
249
  msgid "Use theme style"
250
  msgstr "Usar estilo del tema"
251
 
252
- #: ../class.yith-wcwl-init.php:942
253
  msgid "Use the theme style."
254
  msgstr "Usar el estilo del tema"
255
 
256
- #: ../class.yith-wcwl-init.php:949
257
  msgid "Buttons rounded corners"
258
  msgstr "Bordes redondeados para los botones"
259
 
260
- #: ../class.yith-wcwl-init.php:950
261
  msgid "Make buttons corner rounded"
262
  msgstr "Redondear los bordes de los botones"
263
 
264
- #: ../class.yith-wcwl-init.php:957
265
  msgid "\"Add to Wishlist\" icon"
266
  msgstr "Icono de \"Agregar a la Lista de deseos\""
267
 
268
- #: ../class.yith-wcwl-init.php:958
269
  msgid "Add an icon to the \"Add to Wishlist\" button"
270
  msgstr "Agregar un icono para el boton de \"Agregar a la Lista de deseos\""
271
 
272
- #: ../class.yith-wcwl-init.php:969
273
  msgid "\"Add to Cart\" icon"
274
  msgstr "Icono de \"Agregar al carrito\""
275
 
276
- #: ../class.yith-wcwl-init.php:970
277
  msgid "Add an icon to the \"Add to Cart\" button"
278
  msgstr "Agregar un icono para el boton de \"Agregar al Carrito\""
279
 
280
- #: ../class.yith-wcwl-init.php:988
281
  msgid "Share on Facebook"
282
  msgstr "Compartir en Facebook"
283
 
284
- #: ../class.yith-wcwl-init.php:995
285
  msgid "Tweet on Twitter"
286
  msgstr "Tweet en Twitter"
287
 
288
- #: ../class.yith-wcwl-init.php:1002
289
  msgid "Pin on Pinterest"
290
  msgstr "Pin en Pinterest"
291
 
292
- #: ../class.yith-wcwl-init.php:1009
293
  msgid "Share on Google+"
294
  msgstr "Compartir en Google+"
295
 
296
- #: ../class.yith-wcwl-init.php:1016
297
  msgid "Socials title"
298
  msgstr "Tiítulo de Redes sociales"
299
 
300
- #: ../class.yith-wcwl-init.php:1024
301
  msgid "Socials text"
302
  msgstr "Texto de redes sociales"
303
 
304
- #: ../class.yith-wcwl-init.php:1025
305
  msgid ""
306
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
307
  "strong> where you want the URL of your wishlist to appear."
@@ -309,7 +309,7 @@ msgstr ""
309
  "Será usado por Facebook, Twitter y Pinterest. Usa <strong>%wishlist_url%</"
310
  "strong> donde quieras que la URL de tu Lista de deseos aparesca."
311
 
312
- #: ../class.yith-wcwl-init.php:1033
313
  msgid "Socials image URL"
314
  msgstr "URL de la imágen de las redes Sociales."
315
 
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"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../class.yith-wcwl-init.php:114 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr "Lista de deseos"
20
 
21
+ #: ../class.yith-wcwl-init.php:365
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 "
125
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
126
+ "\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
  "Activar todas las características del plugin <strong>Aseguráte que la página "
129
  "de la Lista de deseos esté seleccionada enWooCommerce &gt; Ajustes &gt; "
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
  "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
  "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
  "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
  "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
 
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-02-26 15:56+0100\n"
6
- "PO-Revision-Date: 2014-02-26 15:56+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -18,127 +18,127 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.5\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: class.yith-wcwl-init.php:107 class.yith-wcwl-install.php:137
22
  msgid "Wishlist"
23
  msgstr "Wishlist"
24
 
25
- #: class.yith-wcwl-init.php:353
26
  msgid "Cannot add to the cart as product is Out of Stock!"
27
  msgstr "Impossible d'ajouter au panier : ce produit n'est plus en stock."
28
 
29
- #: class.yith-wcwl-init.php:384
30
- msgid "Wishlist Page"
31
- msgstr "Page Wishlist"
32
-
33
- #: class.yith-wcwl-init.php:385
34
- msgid "Page contents: [yith_wcwl_wishlist]"
35
- msgstr "Contenu de la page : [yith_wcwl_wishlist]"
36
-
37
- #: class.yith-wcwl-init.php:428 class.yith-wcwl-init.php:820
38
  msgid "General Settings"
39
  msgstr "Paramètres généraux"
40
 
41
- #: class.yith-wcwl-init.php:429 class.yith-wcwl-init.php:922
42
  msgid "Styles"
43
  msgstr "Styles"
44
 
45
- #: class.yith-wcwl-init.php:430 class.yith-wcwl-init.php:985
46
  msgid "Socials &amp; Share"
47
  msgstr "Partage"
48
 
49
- #: class.yith-wcwl-init.php:450
50
  msgid "Colors"
51
  msgstr "Couleurs"
52
 
53
- #: class.yith-wcwl-init.php:480
54
  msgid "\"Add to Wishlist\" button background"
55
  msgstr "Fond du bouton \"Ajouter à la Wishlist\""
56
 
57
- #: class.yith-wcwl-init.php:481
58
  msgid "\"Add to Wishlist\" button text"
59
  msgstr "Texte du bouton \"Ajouter à la Wishlist\""
60
 
61
- #: class.yith-wcwl-init.php:482
62
  msgid "\"Add to Wishlist\" button border"
63
  msgstr "Bordure du bouton \"Ajouter à la Wishlist\""
64
 
65
- #: class.yith-wcwl-init.php:488
66
  msgid "\"Add to Wishlist\" button background (hover)"
67
  msgstr "Fond du bouton \"Ajouter à la Wishlist\" (survol)"
68
 
69
- #: class.yith-wcwl-init.php:489
70
  msgid "\"Add to Wishlist\" button text (hover)"
71
  msgstr "Texte du bouton \"Ajouter à la Wishlist\" (survol)"
72
 
73
- #: class.yith-wcwl-init.php:490
74
  msgid "\"Add to Wishlist\" button border (hover)"
75
  msgstr "Bordure du bouton \"Ajouter à la Wishlist\" (survol)"
76
 
77
- #: class.yith-wcwl-init.php:495
78
  msgid "\"Add to Cart\" button background"
79
  msgstr "Fond du bouton \"Ajouter au panier\""
80
 
81
- #: class.yith-wcwl-init.php:496
82
  msgid "\"Add to Cart\" button text"
83
  msgstr "Texte du bouton \"Ajouter au panier\""
84
 
85
- #: class.yith-wcwl-init.php:497
86
  msgid "\"Add to Cart\" button border"
87
  msgstr "Bordure du bouton \"Ajouter au panier\""
88
 
89
- #: class.yith-wcwl-init.php:503
90
  msgid "\"Add to Cart\" button background (hover)"
91
  msgstr "Fond du bouton \"Ajouter au panier\" (survol)"
92
 
93
- #: class.yith-wcwl-init.php:504
94
  msgid "\"Add to Cart\" button text (hover)"
95
  msgstr "Texte du bouton \"Ajouter au panier\" (survol)"
96
 
97
- #: class.yith-wcwl-init.php:505
98
  msgid "\"Add to Cart\" button border (hover)"
99
  msgstr "Bordure du bouton \"Ajouter au panier\" (hover)"
100
 
101
- #: class.yith-wcwl-init.php:510
102
  msgid "Wishlist table background"
103
  msgstr "Fond du tableau de la Wishlist"
104
 
105
- #: class.yith-wcwl-init.php:511
106
  msgid "Wishlist table text"
107
  msgstr "Texte du tableau de la Wishlist"
108
 
109
- #: class.yith-wcwl-init.php:512
110
  msgid "Wishlist table border"
111
  msgstr "Bordure du tableau de la Wishlist"
112
 
113
- #: class.yith-wcwl-init.php:572
114
  msgid "Settings"
115
  msgstr "Paramètres"
116
 
117
- #: class.yith-wcwl-init.php:573
118
  msgid "Docs"
119
  msgstr "Documentation"
120
 
121
- #: class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
122
  msgid "Enable YITH Wishlist"
123
  msgstr "Activer YITH Wishlist"
124
 
125
- #: class.yith-wcwl-init.php:824
126
- #, php-format
127
  msgid ""
128
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
129
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
130
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
131
  msgstr ""
132
  "Activer toutes les fonctionnalités. <strong>Assurez-vous que la page "
133
  "Wishlist est sélectionnée dans WooCommerce &gt; Réglages &gt; Pages.</"
134
  "strong> Egalement, prenez le temps de lire la <a href=\"%s\" target=\"_blank"
135
  "\">documentation</a>."
136
 
137
- #: class.yith-wcwl-init.php:831
138
  msgid "Use cookies"
139
  msgstr "Utiliser des cookies"
140
 
141
- #: class.yith-wcwl-init.php:832
142
  msgid ""
143
  "Use cookies instead of sessions. With this feature, the wishlist will be "
144
  "available for each not logged user for 30 days. Use the filter "
@@ -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:839
154
  msgid "Wishlist title"
155
  msgstr "Titre de la Wishlist"
156
 
157
- #: class.yith-wcwl-init.php:841 class.yith-wcwl-init.php:842
158
- #: class.yith-wcwl-init.php:1018 class.yith-wcwl-init.php:1019
159
  #, php-format
160
  msgid "My wishlist on %s"
161
  msgstr "Ma wishlist sur %s"
162
 
163
- #: class.yith-wcwl-init.php:847
164
  msgid "Position"
165
  msgstr "Position"
166
 
167
- #: class.yith-wcwl-init.php:848
168
  msgid ""
169
  "On variable products you can add it only After \"Add to Cart\" or use the "
170
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -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:854
176
  msgid "After \"Add to cart\""
177
  msgstr "Après \"Ajouter au panier\""
178
 
179
- #: class.yith-wcwl-init.php:855
180
  msgid "After thumbnails"
181
  msgstr "Après les images"
182
 
183
- #: class.yith-wcwl-init.php:856
184
  msgid "After summary"
185
  msgstr "Après le résumé"
186
 
187
- #: class.yith-wcwl-init.php:857
188
  msgid "Use shortcode"
189
  msgstr "Utiliser le shortcode"
190
 
191
- #: class.yith-wcwl-init.php:862
192
  msgid "Redirect to cart"
193
  msgstr "Rediriger vers le panier"
194
 
195
- #: class.yith-wcwl-init.php:863
196
  msgid ""
197
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
198
  "page."
@@ -200,111 +200,111 @@ msgstr ""
200
  "Rediriger vers le panier si on clique sur le bouton \"Ajouter au panier\" "
201
  "sur la page Wishlist."
202
 
203
- #: class.yith-wcwl-init.php:870
204
  msgid "Remove if added to the cart"
205
  msgstr "Supprimer si ajouté au panier"
206
 
207
- #: class.yith-wcwl-init.php:871
208
  msgid "Remove the product from the wishlist if is been added to the cart."
209
  msgstr "Supprimer le produit de la wishlist s'il a été ajouté au panier."
210
 
211
- #: class.yith-wcwl-init.php:878
212
  msgid "\"Add to Wishlist\" text"
213
  msgstr "Texte \"Ajouter à la wishlist\""
214
 
215
- #: class.yith-wcwl-init.php:880 class.yith-wcwl-init.php:881
216
  msgid "Add to Wishlist"
217
  msgstr "Ajouter à la wishlist"
218
 
219
- #: class.yith-wcwl-init.php:886
220
  msgid "\"Add to Cart\" text"
221
  msgstr "Texte \"Ajouter au panier\""
222
 
223
- #: class.yith-wcwl-init.php:888 class.yith-wcwl-init.php:889
224
  msgid "Add to Cart"
225
  msgstr "Ajouter au panier"
226
 
227
- #: class.yith-wcwl-init.php:894
228
  msgid "Show Unit price"
229
  msgstr "Voir le prix unitaire"
230
 
231
- #: class.yith-wcwl-init.php:902
232
  msgid "Show \"Add to Cart\" button"
233
  msgstr "Voir le bouton \"Ajouter au panier\""
234
 
235
- #: class.yith-wcwl-init.php:910
236
  msgid "Show Stock status"
237
  msgstr "Voir le statut du stock"
238
 
239
- #: class.yith-wcwl-init.php:925
240
  msgid "Use buttons"
241
  msgstr "Utiliser des boutons"
242
 
243
- #: class.yith-wcwl-init.php:926
244
  msgid "Use buttons instead of a simple anchors."
245
  msgstr "Utiliser des boutons à la place de simples liens"
246
 
247
- #: class.yith-wcwl-init.php:933
248
  msgid "Custom CSS"
249
  msgstr "CSS personnalisée"
250
 
251
- #: class.yith-wcwl-init.php:941
252
  msgid "Use theme style"
253
  msgstr "Utiliser le style du thème"
254
 
255
- #: class.yith-wcwl-init.php:942
256
  msgid "Use the theme style."
257
  msgstr "Utiliser le style du thème?"
258
 
259
- #: class.yith-wcwl-init.php:949
260
  msgid "Buttons rounded corners"
261
  msgstr "Boutons avec des coins arrondis"
262
 
263
- #: class.yith-wcwl-init.php:950
264
  msgid "Make buttons corner rounded"
265
  msgstr "Arrondir les coins des boutons"
266
 
267
- #: class.yith-wcwl-init.php:957
268
  msgid "\"Add to Wishlist\" icon"
269
  msgstr "Icône \"Ajouter à la wishlist\""
270
 
271
- #: class.yith-wcwl-init.php:958
272
  msgid "Add an icon to the \"Add to Wishlist\" button"
273
  msgstr "Ajouter une icône au bouton \"Ajouter à la wishlist\""
274
 
275
- #: class.yith-wcwl-init.php:969
276
  msgid "\"Add to Cart\" icon"
277
  msgstr "Icône \"Ajouter au panier\""
278
 
279
- #: class.yith-wcwl-init.php:970
280
  msgid "Add an icon to the \"Add to Cart\" button"
281
  msgstr "Ajouter une icône au bouton \"Ajouter au panier\""
282
 
283
- #: class.yith-wcwl-init.php:988
284
  msgid "Share on Facebook"
285
  msgstr "Partager sur Facebook"
286
 
287
- #: class.yith-wcwl-init.php:995
288
  msgid "Tweet on Twitter"
289
  msgstr "Partager sur Twitter"
290
 
291
- #: class.yith-wcwl-init.php:1002
292
  msgid "Pin on Pinterest"
293
  msgstr "Partager sur Pinterest"
294
 
295
- #: class.yith-wcwl-init.php:1009
296
  msgid "Share on Google+"
297
  msgstr "Partager sur Google+"
298
 
299
- #: class.yith-wcwl-init.php:1016
300
  msgid "Socials title"
301
  msgstr "Titre pour les réseaux sociaux"
302
 
303
- #: class.yith-wcwl-init.php:1024
304
  msgid "Socials text"
305
  msgstr "Texte pour les réseaux sociaux"
306
 
307
- #: class.yith-wcwl-init.php:1025
308
  msgid ""
309
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
310
  "strong> where you want the URL of your wishlist to appear."
@@ -313,7 +313,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:1033
317
  msgid "Socials image URL"
318
  msgstr "URL de l'image pour les réseaux sociaux"
319
 
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"
18
  "X-Generator: Poedit 1.5.5\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: class.yith-wcwl-init.php:114 class.yith-wcwl-install.php:137
22
  msgid "Wishlist"
23
  msgstr "Wishlist"
24
 
25
+ #: class.yith-wcwl-init.php:365
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 "
129
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
130
+ "\" target=\"_blank\">documentation</a>."
131
  msgstr ""
132
  "Activer toutes les fonctionnalités. <strong>Assurez-vous que la page "
133
  "Wishlist est sélectionnée dans WooCommerce &gt; Réglages &gt; Pages.</"
134
  "strong> Egalement, prenez le temps de lire la <a href=\"%s\" target=\"_blank"
135
  "\">documentation</a>."
136
 
137
+ #: class.yith-wcwl-init.php: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
  "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
  "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
  "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
  "%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
 
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-02-26 15:56+0100\n"
5
- "PO-Revision-Date: 2014-02-26 15:56+0100\n"
6
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: English\n"
@@ -14,126 +14,126 @@ msgstr ""
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
- #: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr "רשימת משאלות"
20
 
21
- #: ../class.yith-wcwl-init.php:353
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "לא ניתן להוסיף את המוצר לסל כי הוא אינו קיים במלאי!"
24
 
25
- #: ../class.yith-wcwl-init.php:384
26
- msgid "Wishlist Page"
27
- msgstr "עמוד רשימת המשאלות"
28
-
29
- #: ../class.yith-wcwl-init.php:385
30
- msgid "Page contents: [yith_wcwl_wishlist]"
31
- msgstr "תוכן העמוד: [yith_wcwl_wishlist]"
32
-
33
- #: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
34
  msgid "General Settings"
35
  msgstr "הגדרות כלליות"
36
 
37
- #: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
38
  msgid "Styles"
39
  msgstr "סגנונות עיצוב"
40
 
41
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
42
  msgid "Socials &amp; Share"
43
  msgstr ""
44
 
45
- #: ../class.yith-wcwl-init.php:450
46
  msgid "Colors"
47
  msgstr "צבעים"
48
 
49
- #: ../class.yith-wcwl-init.php:480
50
  msgid "\"Add to Wishlist\" button background"
51
  msgstr ""
52
 
53
- #: ../class.yith-wcwl-init.php:481
54
  msgid "\"Add to Wishlist\" button text"
55
  msgstr ""
56
 
57
- #: ../class.yith-wcwl-init.php:482
58
  msgid "\"Add to Wishlist\" button border"
59
  msgstr ""
60
 
61
- #: ../class.yith-wcwl-init.php:488
62
  msgid "\"Add to Wishlist\" button background (hover)"
63
  msgstr ""
64
 
65
- #: ../class.yith-wcwl-init.php:489
66
  msgid "\"Add to Wishlist\" button text (hover)"
67
  msgstr ""
68
 
69
- #: ../class.yith-wcwl-init.php:490
70
  msgid "\"Add to Wishlist\" button border (hover)"
71
  msgstr ""
72
 
73
- #: ../class.yith-wcwl-init.php:495
74
  msgid "\"Add to Cart\" button background"
75
  msgstr ""
76
 
77
- #: ../class.yith-wcwl-init.php:496
78
  msgid "\"Add to Cart\" button text"
79
  msgstr ""
80
 
81
- #: ../class.yith-wcwl-init.php:497
82
  msgid "\"Add to Cart\" button border"
83
  msgstr ""
84
 
85
- #: ../class.yith-wcwl-init.php:503
86
  msgid "\"Add to Cart\" button background (hover)"
87
  msgstr ""
88
 
89
- #: ../class.yith-wcwl-init.php:504
90
  msgid "\"Add to Cart\" button text (hover)"
91
  msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
92
 
93
- #: ../class.yith-wcwl-init.php:505
94
  msgid "\"Add to Cart\" button border (hover)"
95
  msgstr "\"הוסף לסל\" גבול כפתור (hover)"
96
 
97
- #: ../class.yith-wcwl-init.php:510
98
  msgid "Wishlist table background"
99
  msgstr "רקע טבלת הרשימה"
100
 
101
- #: ../class.yith-wcwl-init.php:511
102
  msgid "Wishlist table text"
103
  msgstr "טקסט בטבלת הרשימה"
104
 
105
- #: ../class.yith-wcwl-init.php:512
106
  msgid "Wishlist table border"
107
  msgstr "גבול טבלאות הרשימה"
108
 
109
- #: ../class.yith-wcwl-init.php:572
110
  msgid "Settings"
111
  msgstr "הגדרות"
112
 
113
- #: ../class.yith-wcwl-init.php:573
114
  msgid "Docs"
115
  msgstr "מסמכים"
116
 
117
- #: ../class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
118
  msgid "Enable YITH Wishlist"
119
  msgstr "אפשר שימוש ברשימת המשאלות של YITH"
120
 
121
- #: ../class.yith-wcwl-init.php:824
122
- #, php-format
123
  msgid ""
124
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
125
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
126
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
  "אפשר את כל התוכנות של התוסף. <strong>בדוק שעמוד רשימת המשאלות קיים ונבחר "
129
  "בהגדרות של WooCommerce &gt; Settings &gt; Pages.</strong> בנוסף, קרא את <a "
130
  "href=\"%s\" target=\"_blank\">הוראות השימוש</a> של התוסף."
131
 
132
- #: ../class.yith-wcwl-init.php:831
133
  msgid "Use cookies"
134
  msgstr ""
135
 
136
- #: ../class.yith-wcwl-init.php:832
137
  msgid ""
138
  "Use cookies instead of sessions. With this feature, the wishlist will be "
139
  "available for each not logged user for 30 days. Use the filter "
@@ -141,160 +141,160 @@ msgid ""
141
  "timestamp )."
142
  msgstr ""
143
 
144
- #: ../class.yith-wcwl-init.php:839
145
  msgid "Wishlist title"
146
  msgstr "כותרת רשימת משאלות"
147
 
148
- #: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
149
- #: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
150
  #, php-format
151
  msgid "My wishlist on %s"
152
  msgstr "רשימת המשאלות שלי ב-%s"
153
 
154
- #: ../class.yith-wcwl-init.php:847
155
  msgid "Position"
156
  msgstr "מיקום"
157
 
158
- #: ../class.yith-wcwl-init.php:848
159
  msgid ""
160
  "On variable products you can add it only After \"Add to Cart\" or use the "
161
  "shortcode [yith_wcwl_add_to_wishlist]."
162
  msgstr ""
163
 
164
- #: ../class.yith-wcwl-init.php:854
165
  msgid "After \"Add to cart\""
166
  msgstr "לאחר \"הוספה לסל\""
167
 
168
- #: ../class.yith-wcwl-init.php:855
169
  msgid "After thumbnails"
170
  msgstr "אחרי התמונות המוקטנות"
171
 
172
- #: ../class.yith-wcwl-init.php:856
173
  msgid "After summary"
174
  msgstr "אחרי תיאור מוצר"
175
 
176
- #: ../class.yith-wcwl-init.php:857
177
  msgid "Use shortcode"
178
  msgstr "השתמש בקוד מקוצר"
179
 
180
- #: ../class.yith-wcwl-init.php:862
181
  msgid "Redirect to cart"
182
  msgstr "הפנייה לסל הקניות"
183
 
184
- #: ../class.yith-wcwl-init.php:863
185
  msgid ""
186
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
187
  "page."
188
  msgstr ""
189
 
190
- #: ../class.yith-wcwl-init.php:870
191
  msgid "Remove if added to the cart"
192
  msgstr "הסר מהרשימה אם הוסף לסל"
193
 
194
- #: ../class.yith-wcwl-init.php:871
195
  msgid "Remove the product from the wishlist if is been added to the cart."
196
  msgstr "הסר את המוצר מהרשימה אם הוא הוסף לסל."
197
 
198
- #: ../class.yith-wcwl-init.php:878
199
  msgid "\"Add to Wishlist\" text"
200
  msgstr ""
201
 
202
- #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
203
  msgid "Add to Wishlist"
204
  msgstr "הוסף לרשימת המשאלות"
205
 
206
- #: ../class.yith-wcwl-init.php:886
207
  msgid "\"Add to Cart\" text"
208
  msgstr ""
209
 
210
- #: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
211
  msgid "Add to Cart"
212
  msgstr "הוסף לסל"
213
 
214
- #: ../class.yith-wcwl-init.php:894
215
  #, fuzzy
216
  msgid "Show Unit price"
217
  msgstr "מחיר ליחידה"
218
 
219
- #: ../class.yith-wcwl-init.php:902
220
  #, fuzzy
221
  msgid "Show \"Add to Cart\" button"
222
  msgstr "\"הוסף לסל\" כפתור טקסט (hover)"
223
 
224
- #: ../class.yith-wcwl-init.php:910
225
  #, fuzzy
226
  msgid "Show Stock status"
227
  msgstr "מצב מלאי"
228
 
229
- #: ../class.yith-wcwl-init.php:925
230
  msgid "Use buttons"
231
  msgstr "השתמש בכפתורים"
232
 
233
- #: ../class.yith-wcwl-init.php:926
234
  msgid "Use buttons instead of a simple anchors."
235
  msgstr "השתמש בכפתורים במקום קישורים רגילים."
236
 
237
- #: ../class.yith-wcwl-init.php:933
238
  msgid "Custom CSS"
239
  msgstr "הכנס שורות CSS משלך"
240
 
241
- #: ../class.yith-wcwl-init.php:941
242
  msgid "Use theme style"
243
  msgstr "השתמש בעיצוב של התבנית שלך"
244
 
245
- #: ../class.yith-wcwl-init.php:942
246
  msgid "Use the theme style."
247
  msgstr "השתמש בעיצוב של תבנית האתר."
248
 
249
- #: ../class.yith-wcwl-init.php:949
250
  msgid "Buttons rounded corners"
251
  msgstr "כפתורים עם פינות מעוגלות"
252
 
253
- #: ../class.yith-wcwl-init.php:950
254
  msgid "Make buttons corner rounded"
255
  msgstr "הצג את הכפתורים עם פינות מעוגלות"
256
 
257
- #: ../class.yith-wcwl-init.php:957
258
  msgid "\"Add to Wishlist\" icon"
259
  msgstr ""
260
 
261
- #: ../class.yith-wcwl-init.php:958
262
  msgid "Add an icon to the \"Add to Wishlist\" button"
263
  msgstr ""
264
 
265
- #: ../class.yith-wcwl-init.php:969
266
  msgid "\"Add to Cart\" icon"
267
  msgstr ""
268
 
269
- #: ../class.yith-wcwl-init.php:970
270
  msgid "Add an icon to the \"Add to Cart\" button"
271
  msgstr ""
272
 
273
- #: ../class.yith-wcwl-init.php:988
274
  msgid "Share on Facebook"
275
  msgstr "שתף בפייסבוק"
276
 
277
- #: ../class.yith-wcwl-init.php:995
278
  msgid "Tweet on Twitter"
279
  msgstr ""
280
 
281
- #: ../class.yith-wcwl-init.php:1002
282
  msgid "Pin on Pinterest"
283
  msgstr ""
284
 
285
- #: ../class.yith-wcwl-init.php:1009
286
  msgid "Share on Google+"
287
  msgstr "שתף בגוגל+"
288
 
289
- #: ../class.yith-wcwl-init.php:1016
290
  msgid "Socials title"
291
  msgstr ""
292
 
293
- #: ../class.yith-wcwl-init.php:1024
294
  msgid "Socials text"
295
  msgstr ""
296
 
297
- #: ../class.yith-wcwl-init.php:1025
298
  msgid ""
299
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
300
  "strong> where you want the URL of your wishlist to appear."
@@ -302,7 +302,7 @@ msgstr ""
302
  "יעשה שימוש על ידי Facebook, Twitter וגם Pinterest. השתמש ב-<strong>"
303
  "%wishlist_url%</strong> היכן שתרצה את ה-URL של רשימת המשאלות שלך שיופיע."
304
 
305
- #: ../class.yith-wcwl-init.php:1033
306
  msgid "Socials image URL"
307
  msgstr ""
308
 
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"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../class.yith-wcwl-init.php:114 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr "רשימת משאלות"
20
 
21
+ #: ../class.yith-wcwl-init.php:365
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 "
125
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
126
+ "\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
  "אפשר את כל התוכנות של התוסף. <strong>בדוק שעמוד רשימת המשאלות קיים ונבחר "
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
  "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
  "יעשה שימוש על ידי 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
 
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-02-26 15:56+0100\n"
6
- "PO-Revision-Date: 2014-02-26 15:57+0100\n"
7
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
8
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -19,143 +19,143 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
  # @ yit
22
- #: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
23
  msgid "Wishlist"
24
  msgstr "Lista dei desideri"
25
 
26
  # @ yit
27
- #: ../class.yith-wcwl-init.php:353
28
  msgid "Cannot add to the cart as product is Out of Stock!"
29
  msgstr "Prodotto non disponibile! Impossibile aggiungerlo nel carrello"
30
 
31
  # @ yit
32
- #: ../class.yith-wcwl-init.php:384
33
- msgid "Wishlist Page"
34
- msgstr "Lista dei desideri"
35
-
36
- # @ yit
37
- #: ../class.yith-wcwl-init.php:385
38
- msgid "Page contents: [yith_wcwl_wishlist]"
39
- msgstr "Contenuto della pagina: [yith_wcwl_wishlist]"
40
-
41
- # @ yit
42
- #: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
43
  msgid "General Settings"
44
  msgstr "Impostazioni"
45
 
46
  # @ yit
47
- #: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
48
  msgid "Styles"
49
  msgstr "Stili"
50
 
51
  # @ yit
52
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
53
  msgid "Socials &amp; Share"
54
  msgstr "Social & Condivisione"
55
 
56
  # @ yit
57
- #: ../class.yith-wcwl-init.php:450
58
  msgid "Colors"
59
  msgstr "Colori"
60
 
61
  # @ yit
62
- #: ../class.yith-wcwl-init.php:480
63
  msgid "\"Add to Wishlist\" button background"
64
  msgstr "Sfondo del pulsante \"Aggiungi alla lista dei desideri\""
65
 
66
  # @ yit
67
- #: ../class.yith-wcwl-init.php:481
68
  msgid "\"Add to Wishlist\" button text"
69
  msgstr "Testo del pulsante \"Aggiungi alla lista dei desideri\""
70
 
71
  # @ yit
72
- #: ../class.yith-wcwl-init.php:482
73
  msgid "\"Add to Wishlist\" button border"
74
  msgstr "Bordo del pulsante \"Aggiungi alla lista dei desideri\""
75
 
76
  # @ yit
77
- #: ../class.yith-wcwl-init.php:488
78
  msgid "\"Add to Wishlist\" button background (hover)"
79
  msgstr ""
80
  "Colore di sfondo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
81
 
82
  # @ yit
83
- #: ../class.yith-wcwl-init.php:489
84
  msgid "\"Add to Wishlist\" button text (hover)"
85
  msgstr "Colore testo per \"Aggiungi alla lista dei desideri\" pulsante (hover)"
86
 
87
  # @ yit
88
- #: ../class.yith-wcwl-init.php:490
89
  msgid "\"Add to Wishlist\" button border (hover)"
90
  msgstr "Colore bordo per \"Aggiungi alla lista dei desideri\"pulsante (hover)"
91
 
92
  # @ yit
93
- #: ../class.yith-wcwl-init.php:495
94
  msgid "\"Add to Cart\" button background"
95
  msgstr "Sfondo del pulsante\"Aggiungi al carrello\""
96
 
97
  # @ yit
98
- #: ../class.yith-wcwl-init.php:496
99
  msgid "\"Add to Cart\" button text"
100
  msgstr "Testo del pulsante\"Aggiungi al carrello\""
101
 
102
  # @ yit
103
- #: ../class.yith-wcwl-init.php:497
104
  msgid "\"Add to Cart\" button border"
105
  msgstr "Bordo del pulsante\"Aggiungi al carrello\""
106
 
107
  # @ yit
108
- #: ../class.yith-wcwl-init.php:503
109
  msgid "\"Add to Cart\" button background (hover)"
110
  msgstr "Colore di sfondo per \"Aggiungi al carrello\" pulsante (hover)"
111
 
112
  # @ yit
113
- #: ../class.yith-wcwl-init.php:504
114
  msgid "\"Add to Cart\" button text (hover)"
115
  msgstr "Colore testo per \"Aggiungi al carrello\" pulsante (hover)"
116
 
117
  # @ yit
118
- #: ../class.yith-wcwl-init.php:505
119
  msgid "\"Add to Cart\" button border (hover)"
120
  msgstr "Colore bordo per \"Aggiungi al carrello\" pulsante (hover)"
121
 
122
  # @ yit
123
- #: ../class.yith-wcwl-init.php:510
124
  msgid "Wishlist table background"
125
  msgstr "Sfondo della tabella lista dei desideri"
126
 
127
  # @ yit
128
- #: ../class.yith-wcwl-init.php:511
129
  msgid "Wishlist table text"
130
  msgstr "Testo della tabella lista dei desideri"
131
 
132
  # @ yit
133
- #: ../class.yith-wcwl-init.php:512
134
  msgid "Wishlist table border"
135
  msgstr "Bordo della tabella lista dei desideri"
136
 
137
  # @ yit
138
- #: ../class.yith-wcwl-init.php:572
139
  msgid "Settings"
140
  msgstr "Impostazioni"
141
 
142
  # @ yit
143
- #: ../class.yith-wcwl-init.php:573
144
  msgid "Docs"
145
  msgstr "Documenti"
146
 
147
  # @ yit
148
- #: ../class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
 
 
149
  msgid "Enable YITH Wishlist"
150
  msgstr "Abilita YITH WooCommerce Wishlist"
151
 
152
  # @ yit
153
- #: ../class.yith-wcwl-init.php:824
154
- #, php-format
155
  msgid ""
156
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
157
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
158
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
159
  msgstr ""
160
  "Abilita le caratteristiche del plugin. <strong>Accertati che la pagina "
161
  "wishlist sia selezionata su Woocommerce &gt; Impostazioni &gt; Pagine</"
@@ -163,12 +163,12 @@ msgstr ""
163
  "a> del plugin."
164
 
165
  # @ yit
166
- #: ../class.yith-wcwl-init.php:831
167
  msgid "Use cookies"
168
  msgstr "Utilizza cookie"
169
 
170
  # @ yit
171
- #: ../class.yith-wcwl-init.php:832
172
  msgid ""
173
  "Use cookies instead of sessions. With this feature, the wishlist will be "
174
  "available for each not logged user for 30 days. Use the filter "
@@ -181,24 +181,24 @@ msgstr ""
181
  "durata del cookie ( in timestamp )"
182
 
183
  # @ yit
184
- #: ../class.yith-wcwl-init.php:839
185
  msgid "Wishlist title"
186
  msgstr "Titolo della lista dei desideri"
187
 
188
  # @ yit
189
- #: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
190
- #: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
191
  #, php-format
192
  msgid "My wishlist on %s"
193
  msgstr "La mia lista dei desideri su %s"
194
 
195
  # @ yit
196
- #: ../class.yith-wcwl-init.php:847
197
  msgid "Position"
198
  msgstr "Posizione"
199
 
200
  # @ yit
201
- #: ../class.yith-wcwl-init.php:848
202
  msgid ""
203
  "On variable products you can add it only After \"Add to Cart\" or use the "
204
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -207,32 +207,32 @@ msgstr ""
207
  "\" o utilizzare lo shortcode [yith_wcwl_add_to_wishlist]."
208
 
209
  # @ yit
210
- #: ../class.yith-wcwl-init.php:854
211
  msgid "After \"Add to cart\""
212
  msgstr "Dopo \"Aggiungi al Carrello\""
213
 
214
  # @ yit
215
- #: ../class.yith-wcwl-init.php:855
216
  msgid "After thumbnails"
217
  msgstr "Dopo le thumbnail"
218
 
219
  # @ yit
220
- #: ../class.yith-wcwl-init.php:856
221
  msgid "After summary"
222
  msgstr "Dopo la descrizione"
223
 
224
  # @ yit
225
- #: ../class.yith-wcwl-init.php:857
226
  msgid "Use shortcode"
227
  msgstr "Utilizza lo shortcode"
228
 
229
  # @ yit
230
- #: ../class.yith-wcwl-init.php:862
231
  msgid "Redirect to cart"
232
  msgstr "Reindirizza al carrello"
233
 
234
  # @ yit
235
- #: ../class.yith-wcwl-init.php:863
236
  msgid ""
237
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
238
  "page."
@@ -241,141 +241,141 @@ msgstr ""
241
  "bottone \"Aggiungi al carrello\" "
242
 
243
  # @ yit
244
- #: ../class.yith-wcwl-init.php:870
245
  msgid "Remove if added to the cart"
246
  msgstr "Rimuovi se aggiunto al carrello"
247
 
248
  # @ yit
249
- #: ../class.yith-wcwl-init.php:871
250
  msgid "Remove the product from the wishlist if is been added to the cart."
251
  msgstr ""
252
  "Quando un prodotto viene aggiunto al carrello, viene rimosso dalla lista dei "
253
  "desideri."
254
 
255
  # @ yit
256
- #: ../class.yith-wcwl-init.php:878
257
  msgid "\"Add to Wishlist\" text"
258
  msgstr "Testo del pulsante\"Aggiungi alla lista dei desideri\""
259
 
260
  # @ yit
261
- #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
262
  msgid "Add to Wishlist"
263
  msgstr "Aggiungi alla lista dei desideri"
264
 
265
  # @ yit
266
- #: ../class.yith-wcwl-init.php:886
267
  msgid "\"Add to Cart\" text"
268
  msgstr "Testo del pulsante\"Aggiungi al carrello\""
269
 
270
  # @ yit
271
- #: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
272
  msgid "Add to Cart"
273
  msgstr "Aggiungi al Carrello"
274
 
275
  # @ yit
276
- #: ../class.yith-wcwl-init.php:894
277
  #, fuzzy
278
  msgid "Show Unit price"
279
  msgstr "Prezzo Unitario"
280
 
281
  # @ yit
282
- #: ../class.yith-wcwl-init.php:902
283
  msgid "Show \"Add to Cart\" button"
284
  msgstr "Mostra il pulsante \"Aggiungi al carrello\""
285
 
286
  # @ yit
287
- #: ../class.yith-wcwl-init.php:910
288
  #, fuzzy
289
  msgid "Show Stock status"
290
  msgstr "Disponibilitá"
291
 
292
  # @ yit
293
- #: ../class.yith-wcwl-init.php:925
294
  msgid "Use buttons"
295
  msgstr "Usa pulsanti"
296
 
297
  # @ yit
298
- #: ../class.yith-wcwl-init.php:926
299
  msgid "Use buttons instead of a simple anchors."
300
  msgstr "Utilizza dei pulsanti al posto delle ancore"
301
 
302
  # @ yit
303
- #: ../class.yith-wcwl-init.php:933
304
  msgid "Custom CSS"
305
  msgstr "CSS personalizzato"
306
 
307
  # @ yit
308
- #: ../class.yith-wcwl-init.php:941
309
  msgid "Use theme style"
310
  msgstr "Usa stile del tema"
311
 
312
  # @ yit
313
- #: ../class.yith-wcwl-init.php:942
314
  msgid "Use the theme style."
315
  msgstr "Usa lo stile del tema."
316
 
317
  # @ yit
318
- #: ../class.yith-wcwl-init.php:949
319
  msgid "Buttons rounded corners"
320
  msgstr "Pulsanti con bordi arrotondati"
321
 
322
  # @ yit
323
- #: ../class.yith-wcwl-init.php:950
324
  msgid "Make buttons corner rounded"
325
  msgstr "Arrotonda i bordi dei pulsanti"
326
 
327
  # @ yit
328
- #: ../class.yith-wcwl-init.php:957
329
  msgid "\"Add to Wishlist\" icon"
330
  msgstr "Icona \"Aggiungi alla lista dei desideri\""
331
 
332
  # @ yit
333
- #: ../class.yith-wcwl-init.php:958
334
  msgid "Add an icon to the \"Add to Wishlist\" button"
335
  msgstr "Aggiungi un'icona al pulsante \"Aggiungi alla lista dei desideri\""
336
 
337
  # @ yit
338
- #: ../class.yith-wcwl-init.php:969
339
  msgid "\"Add to Cart\" icon"
340
  msgstr "Icona \"Aggiungi al carrello\""
341
 
342
  # @ yit
343
- #: ../class.yith-wcwl-init.php:970
344
  msgid "Add an icon to the \"Add to Cart\" button"
345
  msgstr "Aggiunge un'icona al pulsante \"Aggiungi al carrello\""
346
 
347
  # @ yit
348
- #: ../class.yith-wcwl-init.php:988
349
  msgid "Share on Facebook"
350
  msgstr "Condivi su Facebook"
351
 
352
  # @ yit
353
- #: ../class.yith-wcwl-init.php:995
354
  msgid "Tweet on Twitter"
355
  msgstr "Condividi su Twitter"
356
 
357
  # @ yit
358
- #: ../class.yith-wcwl-init.php:1002
359
  msgid "Pin on Pinterest"
360
  msgstr "Pin su Pinterest"
361
 
362
  # @ yit
363
- #: ../class.yith-wcwl-init.php:1009
364
  msgid "Share on Google+"
365
  msgstr "Condividi su Google+"
366
 
367
  # @ yit
368
- #: ../class.yith-wcwl-init.php:1016
369
  msgid "Socials title"
370
  msgstr "Titolo dei social"
371
 
372
  # @ yit
373
- #: ../class.yith-wcwl-init.php:1024
374
  msgid "Socials text"
375
  msgstr "Testo dei social"
376
 
377
  # @ yit
378
- #: ../class.yith-wcwl-init.php:1025
379
  msgid ""
380
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
381
  "strong> where you want the URL of your wishlist to appear."
@@ -384,7 +384,7 @@ msgstr ""
384
  "%wishlist_url%</strong> dove vuoi che appaia l'URL della lista dei desideri."
385
 
386
  # @ yit
387
- #: ../class.yith-wcwl-init.php:1033
388
  msgid "Socials image URL"
389
  msgstr "URL immagine social"
390
 
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"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
  # @ yit
22
+ #: ../class.yith-wcwl-init.php:114 ../class.yith-wcwl-install.php:137
23
  msgid "Wishlist"
24
  msgstr "Lista dei desideri"
25
 
26
  # @ yit
27
+ #: ../class.yith-wcwl-init.php:365
28
  msgid "Cannot add to the cart as product is Out of Stock!"
29
  msgstr "Prodotto non disponibile! Impossibile aggiungerlo nel carrello"
30
 
31
  # @ yit
32
+ #: ../class.yith-wcwl-init.php: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 "
157
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
158
+ "\" target=\"_blank\">documentation</a>."
159
  msgstr ""
160
  "Abilita le caratteristiche del plugin. <strong>Accertati che la pagina "
161
  "wishlist sia selezionata su Woocommerce &gt; Impostazioni &gt; Pagine</"
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
  "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
  "\" 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
  "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
  "%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
 
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-02-26 15:57+0100\n"
5
- "PO-Revision-Date: 2014-02-26 15:57+0100\n"
6
  "Last-Translator: YIThemes <support@yithemes.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: English\n"
@@ -14,125 +14,125 @@ msgstr ""
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
- #: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr "Lista de Desejos"
20
 
21
- #: ../class.yith-wcwl-init.php:353
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr "Não foi possível adicionar ao carrinho. O produto esta esgotado."
24
 
25
- #: ../class.yith-wcwl-init.php:384
26
- msgid "Wishlist Page"
27
- msgstr "Meus desejos"
28
-
29
- #: ../class.yith-wcwl-init.php:385
30
- msgid "Page contents: [yith_wcwl_wishlist]"
31
- msgstr "Conteúdo da página: [yith_wcwl_wishlist]"
32
-
33
- #: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
34
  msgid "General Settings"
35
  msgstr "Opções gerais"
36
 
37
- #: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
38
  msgid "Styles"
39
  msgstr "Estilos"
40
 
41
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
42
  msgid "Socials &amp; Share"
43
  msgstr "Social &amp; Compartilhamento"
44
 
45
- #: ../class.yith-wcwl-init.php:450
46
  msgid "Colors"
47
  msgstr "Cores"
48
 
49
- #: ../class.yith-wcwl-init.php:480
50
  msgid "\"Add to Wishlist\" button background"
51
  msgstr "Fundo do botão \"Adicionar aos meus desejos\""
52
 
53
- #: ../class.yith-wcwl-init.php:481
54
  msgid "\"Add to Wishlist\" button text"
55
  msgstr "Texto do botão \"Adicionar aos meus desejos\""
56
 
57
- #: ../class.yith-wcwl-init.php:482
58
  msgid "\"Add to Wishlist\" button border"
59
  msgstr "Borda do botão \"Adicionar aos meus desejos\""
60
 
61
- #: ../class.yith-wcwl-init.php:488
62
  msgid "\"Add to Wishlist\" button background (hover)"
63
  msgstr "Fundo do botão \"Adicionar aos meus desejos\" (Hover)"
64
 
65
- #: ../class.yith-wcwl-init.php:489
66
  msgid "\"Add to Wishlist\" button text (hover)"
67
  msgstr "Texto do botão \"Adicionar aos meus desejos\" (Hover)"
68
 
69
- #: ../class.yith-wcwl-init.php:490
70
  msgid "\"Add to Wishlist\" button border (hover)"
71
  msgstr "Borda do botão \"Adicionar aos meus desejos\" (hover)"
72
 
73
- #: ../class.yith-wcwl-init.php:495
74
  msgid "\"Add to Cart\" button background"
75
  msgstr "Fundo do do botão \"Adicionar ao carrinho \""
76
 
77
- #: ../class.yith-wcwl-init.php:496
78
  msgid "\"Add to Cart\" button text"
79
  msgstr "Texto do botão \"Adicionar ao carrinho \""
80
 
81
- #: ../class.yith-wcwl-init.php:497
82
  msgid "\"Add to Cart\" button border"
83
  msgstr "Borda do do botão \"Adicionar ao carrinho \""
84
 
85
- #: ../class.yith-wcwl-init.php:503
86
  msgid "\"Add to Cart\" button background (hover)"
87
  msgstr "Fundo do botão \"Adicionar ao carrinho \" (hover)"
88
 
89
- #: ../class.yith-wcwl-init.php:504
90
  msgid "\"Add to Cart\" button text (hover)"
91
  msgstr "Texto do botão \"Adicionar ao carrinho \" (hover)"
92
 
93
- #: ../class.yith-wcwl-init.php:505
94
  msgid "\"Add to Cart\" button border (hover)"
95
  msgstr "Borda do botão \"Adicionar ao carrinho \" (hover)"
96
 
97
- #: ../class.yith-wcwl-init.php:510
98
  msgid "Wishlist table background"
99
  msgstr "Fundo da tabela de desejos"
100
 
101
- #: ../class.yith-wcwl-init.php:511
102
  msgid "Wishlist table text"
103
  msgstr "Texto da tabela de desejos"
104
 
105
- #: ../class.yith-wcwl-init.php:512
106
  msgid "Wishlist table border"
107
  msgstr "Borda da tabela de desejos"
108
 
109
- #: ../class.yith-wcwl-init.php:572
110
  msgid "Settings"
111
  msgstr "Configurações"
112
 
113
- #: ../class.yith-wcwl-init.php:573
114
  msgid "Docs"
115
  msgstr "Documentos"
116
 
117
- #: ../class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
118
  msgid "Enable YITH Wishlist"
119
  msgstr "Ativar Lista de Desejos"
120
 
121
- #: ../class.yith-wcwl-init.php:824
122
- #, php-format
123
  msgid ""
124
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
125
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
126
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
127
  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:831
132
  msgid "Use cookies"
133
  msgstr "Usar cookies"
134
 
135
- #: ../class.yith-wcwl-init.php:832
136
  msgid ""
137
  "Use cookies instead of sessions. With this feature, the wishlist will be "
138
  "available for each not logged user for 30 days. Use the filter "
@@ -142,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:839
146
  msgid "Wishlist title"
147
  msgstr "Titulo da lista de desejos"
148
 
149
- #: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
150
- #: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
151
  #, php-format
152
  msgid "My wishlist on %s"
153
  msgstr "Minha lista de desejos em %s"
154
 
155
- #: ../class.yith-wcwl-init.php:847
156
  msgid "Position"
157
  msgstr "Posição"
158
 
159
- #: ../class.yith-wcwl-init.php:848
160
  msgid ""
161
  "On variable products you can add it only After \"Add to Cart\" or use the "
162
  "shortcode [yith_wcwl_add_to_wishlist]."
@@ -164,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:854
168
  msgid "After \"Add to cart\""
169
  msgstr "Após \" Adicionar ao carrinho \""
170
 
171
- #: ../class.yith-wcwl-init.php:855
172
  msgid "After thumbnails"
173
  msgstr "Após miniaturas"
174
 
175
- #: ../class.yith-wcwl-init.php:856
176
  msgid "After summary"
177
  msgstr "Após sumário"
178
 
179
- #: ../class.yith-wcwl-init.php:857
180
  msgid "Use shortcode"
181
  msgstr "Usar shortcode"
182
 
183
- #: ../class.yith-wcwl-init.php:862
184
  msgid "Redirect to cart"
185
  msgstr "Redirecionar para o carrinho"
186
 
187
- #: ../class.yith-wcwl-init.php:863
188
  msgid ""
189
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
190
  "page."
@@ -192,115 +192,115 @@ 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:870
196
  msgid "Remove if added to the cart"
197
  msgstr "Remover se adcionado ao carrinho"
198
 
199
- #: ../class.yith-wcwl-init.php:871
200
  msgid "Remove the product from the wishlist if is been added to the cart."
201
  msgstr ""
202
  "Remover o produto da lista, se a mesma tiver sido adicionada ao carrinho."
203
 
204
- #: ../class.yith-wcwl-init.php:878
205
  msgid "\"Add to Wishlist\" text"
206
  msgstr "Texto \" Adcionar a Lista de Desejos\""
207
 
208
- #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
209
  msgid "Add to Wishlist"
210
  msgstr "Adicionar aos meus desejos"
211
 
212
- #: ../class.yith-wcwl-init.php:886
213
  msgid "\"Add to Cart\" text"
214
  msgstr "Texto \" Adicionar ao Carrinho\""
215
 
216
- #: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
217
  msgid "Add to Cart"
218
  msgstr "Adcionar ao Carrinho"
219
 
220
- #: ../class.yith-wcwl-init.php:894
221
  #, fuzzy
222
  msgid "Show Unit price"
223
  msgstr "Preço unitário"
224
 
225
- #: ../class.yith-wcwl-init.php:902
226
  #, fuzzy
227
  msgid "Show \"Add to Cart\" button"
228
  msgstr "Texto do botão \"Adicionar ao carrinho \""
229
 
230
- #: ../class.yith-wcwl-init.php:910
231
  #, fuzzy
232
  msgid "Show Stock status"
233
  msgstr "Status do estoque"
234
 
235
- #: ../class.yith-wcwl-init.php:925
236
  msgid "Use buttons"
237
  msgstr "Usar botões"
238
 
239
- #: ../class.yith-wcwl-init.php:926
240
  msgid "Use buttons instead of a simple anchors."
241
  msgstr "Usar botões ao invés de simples âncoras."
242
 
243
- #: ../class.yith-wcwl-init.php:933
244
  msgid "Custom CSS"
245
  msgstr "CSS Customizado"
246
 
247
- #: ../class.yith-wcwl-init.php:941
248
  msgid "Use theme style"
249
  msgstr "Usar estilo do tema"
250
 
251
- #: ../class.yith-wcwl-init.php:942
252
  msgid "Use the theme style."
253
  msgstr "Usar o estilo do tema."
254
 
255
- #: ../class.yith-wcwl-init.php:949
256
  msgid "Buttons rounded corners"
257
  msgstr "Botões com cantos arredondados"
258
 
259
- #: ../class.yith-wcwl-init.php:950
260
  msgid "Make buttons corner rounded"
261
  msgstr "Faça botões do canto arredondado"
262
 
263
- #: ../class.yith-wcwl-init.php:957
264
  msgid "\"Add to Wishlist\" icon"
265
  msgstr "Ícone \"Adcionar aos meus desejos\" "
266
 
267
- #: ../class.yith-wcwl-init.php:958
268
  msgid "Add an icon to the \"Add to Wishlist\" button"
269
  msgstr "Adicionar um ícone ao botão \"Adcionar aos meus desejos\""
270
 
271
- #: ../class.yith-wcwl-init.php:969
272
  msgid "\"Add to Cart\" icon"
273
  msgstr "Ícone \"Adicionar ao Carrinho\""
274
 
275
- #: ../class.yith-wcwl-init.php:970
276
  msgid "Add an icon to the \"Add to Cart\" button"
277
  msgstr "Adicionar um ícone ao botão \"Adcionar ao carrinho\""
278
 
279
- #: ../class.yith-wcwl-init.php:988
280
  msgid "Share on Facebook"
281
  msgstr "Compartilhar no Facebook"
282
 
283
- #: ../class.yith-wcwl-init.php:995
284
  msgid "Tweet on Twitter"
285
  msgstr "Tweetar no Twitter"
286
 
287
- #: ../class.yith-wcwl-init.php:1002
288
  msgid "Pin on Pinterest"
289
  msgstr ""
290
 
291
- #: ../class.yith-wcwl-init.php:1009
292
  msgid "Share on Google+"
293
  msgstr "Comparilhar no Google+"
294
 
295
- #: ../class.yith-wcwl-init.php:1016
296
  msgid "Socials title"
297
  msgstr "Título Mídias Sociais"
298
 
299
- #: ../class.yith-wcwl-init.php:1024
300
  msgid "Socials text"
301
  msgstr "Texto Mídias Sociais"
302
 
303
- #: ../class.yith-wcwl-init.php:1025
304
  msgid ""
305
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
306
  "strong> where you want the URL of your wishlist to appear."
@@ -308,7 +308,7 @@ msgstr ""
308
  "Vai ser usado por Facebook, Twitter e Pinterest. Use <strong>%wishlist_url%</"
309
  "strong> "
310
 
311
- #: ../class.yith-wcwl-init.php:1033
312
  msgid "Socials image URL"
313
  msgstr "Url para compartilhamento"
314
 
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"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../class.yith-wcwl-init.php:114 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr "Lista de Desejos"
20
 
21
+ #: ../class.yith-wcwl-init.php:365
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 "
125
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
126
+ "\" target=\"_blank\">documentation</a>."
127
  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
  "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
  "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
  "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
  "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
 
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-02-26 15:57+0100\n"
5
- "PO-Revision-Date: 2014-02-26 15:57+0100\n"
6
  "Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: English\n"
@@ -14,123 +14,123 @@ msgstr ""
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
- #: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr ""
20
 
21
- #: ../class.yith-wcwl-init.php:353
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
- #: ../class.yith-wcwl-init.php:384
26
- msgid "Wishlist Page"
27
- msgstr ""
28
-
29
- #: ../class.yith-wcwl-init.php:385
30
- msgid "Page contents: [yith_wcwl_wishlist]"
31
- msgstr ""
32
-
33
- #: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
34
  msgid "General Settings"
35
  msgstr ""
36
 
37
- #: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
38
  msgid "Styles"
39
  msgstr ""
40
 
41
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
42
  msgid "Socials &amp; Share"
43
  msgstr ""
44
 
45
- #: ../class.yith-wcwl-init.php:450
46
  msgid "Colors"
47
  msgstr ""
48
 
49
- #: ../class.yith-wcwl-init.php:480
50
  msgid "\"Add to Wishlist\" button background"
51
  msgstr ""
52
 
53
- #: ../class.yith-wcwl-init.php:481
54
  msgid "\"Add to Wishlist\" button text"
55
  msgstr ""
56
 
57
- #: ../class.yith-wcwl-init.php:482
58
  msgid "\"Add to Wishlist\" button border"
59
  msgstr ""
60
 
61
- #: ../class.yith-wcwl-init.php:488
62
  msgid "\"Add to Wishlist\" button background (hover)"
63
  msgstr ""
64
 
65
- #: ../class.yith-wcwl-init.php:489
66
  msgid "\"Add to Wishlist\" button text (hover)"
67
  msgstr ""
68
 
69
- #: ../class.yith-wcwl-init.php:490
70
  msgid "\"Add to Wishlist\" button border (hover)"
71
  msgstr ""
72
 
73
- #: ../class.yith-wcwl-init.php:495
74
  msgid "\"Add to Cart\" button background"
75
  msgstr "\"Додати в кошик\" button background"
76
 
77
- #: ../class.yith-wcwl-init.php:496
78
  msgid "\"Add to Cart\" button text"
79
  msgstr "\"Додати в кошик\" button text"
80
 
81
- #: ../class.yith-wcwl-init.php:497
82
  msgid "\"Add to Cart\" button border"
83
  msgstr "\"Додати в кошик\" button border"
84
 
85
- #: ../class.yith-wcwl-init.php:503
86
  msgid "\"Add to Cart\" button background (hover)"
87
  msgstr "\"Додати в кошик\" button background (hover)"
88
 
89
- #: ../class.yith-wcwl-init.php:504
90
  msgid "\"Add to Cart\" button text (hover)"
91
  msgstr "\"Додати в кошик\" button text (hover)"
92
 
93
- #: ../class.yith-wcwl-init.php:505
94
  msgid "\"Add to Cart\" button border (hover)"
95
  msgstr "\"Додати в кошик\" button border (hover)"
96
 
97
- #: ../class.yith-wcwl-init.php:510
98
  msgid "Wishlist table background"
99
  msgstr ""
100
 
101
- #: ../class.yith-wcwl-init.php:511
102
  msgid "Wishlist table text"
103
  msgstr ""
104
 
105
- #: ../class.yith-wcwl-init.php:512
106
  msgid "Wishlist table border"
107
  msgstr ""
108
 
109
- #: ../class.yith-wcwl-init.php:572
110
  msgid "Settings"
111
  msgstr ""
112
 
113
- #: ../class.yith-wcwl-init.php:573
114
  msgid "Docs"
115
  msgstr ""
116
 
117
- #: ../class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
- #: ../class.yith-wcwl-init.php:824
122
  #, php-format
123
  msgid ""
124
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
125
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
126
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
- #: ../class.yith-wcwl-init.php:831
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
- #: ../class.yith-wcwl-init.php:832
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
@@ -138,166 +138,166 @@ msgid ""
138
  "timestamp )."
139
  msgstr ""
140
 
141
- #: ../class.yith-wcwl-init.php:839
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
- #: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
146
- #: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr "Мій обраний список в %s"
150
 
151
- #: ../class.yith-wcwl-init.php:847
152
  msgid "Position"
153
  msgstr ""
154
 
155
- #: ../class.yith-wcwl-init.php:848
156
  msgid ""
157
  "On variable products you can add it only After \"Add to Cart\" or use the "
158
  "shortcode [yith_wcwl_add_to_wishlist]."
159
  msgstr ""
160
 
161
- #: ../class.yith-wcwl-init.php:854
162
  msgid "After \"Add to cart\""
163
  msgstr "After \"Додати в кошик\""
164
 
165
- #: ../class.yith-wcwl-init.php:855
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
- #: ../class.yith-wcwl-init.php:856
170
  msgid "After summary"
171
  msgstr ""
172
 
173
- #: ../class.yith-wcwl-init.php:857
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
- #: ../class.yith-wcwl-init.php:862
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
- #: ../class.yith-wcwl-init.php:863
182
  msgid ""
183
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
184
  "page."
185
  msgstr ""
186
 
187
- #: ../class.yith-wcwl-init.php:870
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
- #: ../class.yith-wcwl-init.php:871
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
- #: ../class.yith-wcwl-init.php:878
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
- #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
- #: ../class.yith-wcwl-init.php:886
204
  msgid "\"Add to Cart\" text"
205
  msgstr "\"Додати в кошик\" text"
206
 
207
- #: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
208
  msgid "Add to Cart"
209
  msgstr "Додати в кошик"
210
 
211
- #: ../class.yith-wcwl-init.php:894
212
  #, fuzzy
213
  msgid "Show Unit price"
214
  msgstr "Ціна"
215
 
216
- #: ../class.yith-wcwl-init.php:902
217
  #, fuzzy
218
  msgid "Show \"Add to Cart\" button"
219
  msgstr "\"Додати в кошик\" button text"
220
 
221
- #: ../class.yith-wcwl-init.php:910
222
  #, fuzzy
223
  msgid "Show Stock status"
224
  msgstr "Наявність на складі"
225
 
226
- #: ../class.yith-wcwl-init.php:925
227
  msgid "Use buttons"
228
  msgstr ""
229
 
230
- #: ../class.yith-wcwl-init.php:926
231
  msgid "Use buttons instead of a simple anchors."
232
  msgstr ""
233
 
234
- #: ../class.yith-wcwl-init.php:933
235
  msgid "Custom CSS"
236
  msgstr ""
237
 
238
- #: ../class.yith-wcwl-init.php:941
239
  msgid "Use theme style"
240
  msgstr ""
241
 
242
- #: ../class.yith-wcwl-init.php:942
243
  msgid "Use the theme style."
244
  msgstr ""
245
 
246
- #: ../class.yith-wcwl-init.php:949
247
  msgid "Buttons rounded corners"
248
  msgstr ""
249
 
250
- #: ../class.yith-wcwl-init.php:950
251
  msgid "Make buttons corner rounded"
252
  msgstr ""
253
 
254
- #: ../class.yith-wcwl-init.php:957
255
  msgid "\"Add to Wishlist\" icon"
256
  msgstr ""
257
 
258
- #: ../class.yith-wcwl-init.php:958
259
  msgid "Add an icon to the \"Add to Wishlist\" button"
260
  msgstr ""
261
 
262
- #: ../class.yith-wcwl-init.php:969
263
  msgid "\"Add to Cart\" icon"
264
  msgstr "\"Додати в кошик\" icon"
265
 
266
- #: ../class.yith-wcwl-init.php:970
267
  msgid "Add an icon to the \"Add to Cart\" button"
268
  msgstr "Add an icon to the \"Додати в кошик\" button"
269
 
270
- #: ../class.yith-wcwl-init.php:988
271
  msgid "Share on Facebook"
272
  msgstr ""
273
 
274
- #: ../class.yith-wcwl-init.php:995
275
  msgid "Tweet on Twitter"
276
  msgstr ""
277
 
278
- #: ../class.yith-wcwl-init.php:1002
279
  msgid "Pin on Pinterest"
280
  msgstr ""
281
 
282
- #: ../class.yith-wcwl-init.php:1009
283
  msgid "Share on Google+"
284
  msgstr ""
285
 
286
- #: ../class.yith-wcwl-init.php:1016
287
  msgid "Socials title"
288
  msgstr ""
289
 
290
- #: ../class.yith-wcwl-init.php:1024
291
  msgid "Socials text"
292
  msgstr ""
293
 
294
- #: ../class.yith-wcwl-init.php:1025
295
  msgid ""
296
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
297
  "strong> where you want the URL of your wishlist to appear."
298
  msgstr ""
299
 
300
- #: ../class.yith-wcwl-init.php:1033
301
  msgid "Socials image URL"
302
  msgstr ""
303
 
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"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../class.yith-wcwl-init.php:114 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr ""
20
 
21
+ #: ../class.yith-wcwl-init.php:365
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 "
125
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
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
  "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
 
languages/yit.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YITH WCWL\n"
4
- "POT-Creation-Date: 2014-02-26 15:55+0100\n"
5
- "PO-Revision-Date: 2014-02-26 15:56+0100\n"
6
  "Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
7
  "Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
8
  "Language: English\n"
@@ -14,123 +14,123 @@ msgstr ""
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
- #: ../class.yith-wcwl-init.php:107 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr ""
20
 
21
- #: ../class.yith-wcwl-init.php:353
22
  msgid "Cannot add to the cart as product is Out of Stock!"
23
  msgstr ""
24
 
25
- #: ../class.yith-wcwl-init.php:384
26
- msgid "Wishlist Page"
27
- msgstr ""
28
-
29
- #: ../class.yith-wcwl-init.php:385
30
- msgid "Page contents: [yith_wcwl_wishlist]"
31
- msgstr ""
32
-
33
- #: ../class.yith-wcwl-init.php:428 ../class.yith-wcwl-init.php:820
34
  msgid "General Settings"
35
  msgstr ""
36
 
37
- #: ../class.yith-wcwl-init.php:429 ../class.yith-wcwl-init.php:922
38
  msgid "Styles"
39
  msgstr ""
40
 
41
- #: ../class.yith-wcwl-init.php:430 ../class.yith-wcwl-init.php:985
42
  msgid "Socials &amp; Share"
43
  msgstr ""
44
 
45
- #: ../class.yith-wcwl-init.php:450
46
  msgid "Colors"
47
  msgstr ""
48
 
49
- #: ../class.yith-wcwl-init.php:480
50
  msgid "\"Add to Wishlist\" button background"
51
  msgstr ""
52
 
53
- #: ../class.yith-wcwl-init.php:481
54
  msgid "\"Add to Wishlist\" button text"
55
  msgstr ""
56
 
57
- #: ../class.yith-wcwl-init.php:482
58
  msgid "\"Add to Wishlist\" button border"
59
  msgstr ""
60
 
61
- #: ../class.yith-wcwl-init.php:488
62
  msgid "\"Add to Wishlist\" button background (hover)"
63
  msgstr ""
64
 
65
- #: ../class.yith-wcwl-init.php:489
66
  msgid "\"Add to Wishlist\" button text (hover)"
67
  msgstr ""
68
 
69
- #: ../class.yith-wcwl-init.php:490
70
  msgid "\"Add to Wishlist\" button border (hover)"
71
  msgstr ""
72
 
73
- #: ../class.yith-wcwl-init.php:495
74
  msgid "\"Add to Cart\" button background"
75
  msgstr ""
76
 
77
- #: ../class.yith-wcwl-init.php:496
78
  msgid "\"Add to Cart\" button text"
79
  msgstr ""
80
 
81
- #: ../class.yith-wcwl-init.php:497
82
  msgid "\"Add to Cart\" button border"
83
  msgstr ""
84
 
85
- #: ../class.yith-wcwl-init.php:503
86
  msgid "\"Add to Cart\" button background (hover)"
87
  msgstr ""
88
 
89
- #: ../class.yith-wcwl-init.php:504
90
  msgid "\"Add to Cart\" button text (hover)"
91
  msgstr ""
92
 
93
- #: ../class.yith-wcwl-init.php:505
94
  msgid "\"Add to Cart\" button border (hover)"
95
  msgstr ""
96
 
97
- #: ../class.yith-wcwl-init.php:510
98
  msgid "Wishlist table background"
99
  msgstr ""
100
 
101
- #: ../class.yith-wcwl-init.php:511
102
  msgid "Wishlist table text"
103
  msgstr ""
104
 
105
- #: ../class.yith-wcwl-init.php:512
106
  msgid "Wishlist table border"
107
  msgstr ""
108
 
109
- #: ../class.yith-wcwl-init.php:572
110
  msgid "Settings"
111
  msgstr ""
112
 
113
- #: ../class.yith-wcwl-init.php:573
114
  msgid "Docs"
115
  msgstr ""
116
 
117
- #: ../class.yith-wcwl-init.php:823
 
 
 
 
 
 
 
 
118
  msgid "Enable YITH Wishlist"
119
  msgstr ""
120
 
121
- #: ../class.yith-wcwl-init.php:824
122
  #, php-format
123
  msgid ""
124
- "Enable all plugin features. <strong>Be sure that the wishlist page is "
125
- "selected in WooCommerce &gt; Settings &gt; Pages.</strong> Also, please read "
126
- "the plugin <a href=\"%s\" target=\"_blank\">documentation</a>."
127
  msgstr ""
128
 
129
- #: ../class.yith-wcwl-init.php:831
130
  msgid "Use cookies"
131
  msgstr ""
132
 
133
- #: ../class.yith-wcwl-init.php:832
134
  msgid ""
135
  "Use cookies instead of sessions. With this feature, the wishlist will be "
136
  "available for each not logged user for 30 days. Use the filter "
@@ -138,163 +138,163 @@ msgid ""
138
  "timestamp )."
139
  msgstr ""
140
 
141
- #: ../class.yith-wcwl-init.php:839
142
  msgid "Wishlist title"
143
  msgstr ""
144
 
145
- #: ../class.yith-wcwl-init.php:841 ../class.yith-wcwl-init.php:842
146
- #: ../class.yith-wcwl-init.php:1018 ../class.yith-wcwl-init.php:1019
147
  #, php-format
148
  msgid "My wishlist on %s"
149
  msgstr ""
150
 
151
- #: ../class.yith-wcwl-init.php:847
152
  msgid "Position"
153
  msgstr ""
154
 
155
- #: ../class.yith-wcwl-init.php:848
156
  msgid ""
157
  "On variable products you can add it only After \"Add to Cart\" or use the "
158
  "shortcode [yith_wcwl_add_to_wishlist]."
159
  msgstr ""
160
 
161
- #: ../class.yith-wcwl-init.php:854
162
  msgid "After \"Add to cart\""
163
  msgstr ""
164
 
165
- #: ../class.yith-wcwl-init.php:855
166
  msgid "After thumbnails"
167
  msgstr ""
168
 
169
- #: ../class.yith-wcwl-init.php:856
170
  msgid "After summary"
171
  msgstr ""
172
 
173
- #: ../class.yith-wcwl-init.php:857
174
  msgid "Use shortcode"
175
  msgstr ""
176
 
177
- #: ../class.yith-wcwl-init.php:862
178
  msgid "Redirect to cart"
179
  msgstr ""
180
 
181
- #: ../class.yith-wcwl-init.php:863
182
  msgid ""
183
  "Redirect to cart page if \"Add to cart\" button is clicked in the wishlist "
184
  "page."
185
  msgstr ""
186
 
187
- #: ../class.yith-wcwl-init.php:870
188
  msgid "Remove if added to the cart"
189
  msgstr ""
190
 
191
- #: ../class.yith-wcwl-init.php:871
192
  msgid "Remove the product from the wishlist if is been added to the cart."
193
  msgstr ""
194
 
195
- #: ../class.yith-wcwl-init.php:878
196
  msgid "\"Add to Wishlist\" text"
197
  msgstr ""
198
 
199
- #: ../class.yith-wcwl-init.php:880 ../class.yith-wcwl-init.php:881
200
  msgid "Add to Wishlist"
201
  msgstr ""
202
 
203
- #: ../class.yith-wcwl-init.php:886
204
  msgid "\"Add to Cart\" text"
205
  msgstr ""
206
 
207
- #: ../class.yith-wcwl-init.php:888 ../class.yith-wcwl-init.php:889
208
  msgid "Add to Cart"
209
  msgstr ""
210
 
211
- #: ../class.yith-wcwl-init.php:894
212
  msgid "Show Unit price"
213
  msgstr ""
214
 
215
- #: ../class.yith-wcwl-init.php:902
216
  msgid "Show \"Add to Cart\" button"
217
  msgstr ""
218
 
219
- #: ../class.yith-wcwl-init.php:910
220
  msgid "Show Stock status"
221
  msgstr ""
222
 
223
- #: ../class.yith-wcwl-init.php:925
224
  msgid "Use buttons"
225
  msgstr ""
226
 
227
- #: ../class.yith-wcwl-init.php:926
228
  msgid "Use buttons instead of a simple anchors."
229
  msgstr ""
230
 
231
- #: ../class.yith-wcwl-init.php:933
232
  msgid "Custom CSS"
233
  msgstr ""
234
 
235
- #: ../class.yith-wcwl-init.php:941
236
  msgid "Use theme style"
237
  msgstr ""
238
 
239
- #: ../class.yith-wcwl-init.php:942
240
  msgid "Use the theme style."
241
  msgstr ""
242
 
243
- #: ../class.yith-wcwl-init.php:949
244
  msgid "Buttons rounded corners"
245
  msgstr ""
246
 
247
- #: ../class.yith-wcwl-init.php:950
248
  msgid "Make buttons corner rounded"
249
  msgstr ""
250
 
251
- #: ../class.yith-wcwl-init.php:957
252
  msgid "\"Add to Wishlist\" icon"
253
  msgstr ""
254
 
255
- #: ../class.yith-wcwl-init.php:958
256
  msgid "Add an icon to the \"Add to Wishlist\" button"
257
  msgstr ""
258
 
259
- #: ../class.yith-wcwl-init.php:969
260
  msgid "\"Add to Cart\" icon"
261
  msgstr ""
262
 
263
- #: ../class.yith-wcwl-init.php:970
264
  msgid "Add an icon to the \"Add to Cart\" button"
265
  msgstr ""
266
 
267
- #: ../class.yith-wcwl-init.php:988
268
  msgid "Share on Facebook"
269
  msgstr ""
270
 
271
- #: ../class.yith-wcwl-init.php:995
272
  msgid "Tweet on Twitter"
273
  msgstr ""
274
 
275
- #: ../class.yith-wcwl-init.php:1002
276
  msgid "Pin on Pinterest"
277
  msgstr ""
278
 
279
- #: ../class.yith-wcwl-init.php:1009
280
  msgid "Share on Google+"
281
  msgstr ""
282
 
283
- #: ../class.yith-wcwl-init.php:1016
284
  msgid "Socials title"
285
  msgstr ""
286
 
287
- #: ../class.yith-wcwl-init.php:1024
288
  msgid "Socials text"
289
  msgstr ""
290
 
291
- #: ../class.yith-wcwl-init.php:1025
292
  msgid ""
293
  "Will be used by Facebook, Twitter and Pinterest. Use <strong>%wishlist_url%</"
294
  "strong> where you want the URL of your wishlist to appear."
295
  msgstr ""
296
 
297
- #: ../class.yith-wcwl-init.php:1033
298
  msgid "Socials image URL"
299
  msgstr ""
300
 
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"
14
  "X-Poedit-Basepath: ./\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../class.yith-wcwl-init.php:114 ../class.yith-wcwl-install.php:137
18
  msgid "Wishlist"
19
  msgstr ""
20
 
21
+ #: ../class.yith-wcwl-init.php:365
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 "
125
+ "wishlist page menu in %s.</strong> Also, please read the plugin <a href=\"%s"
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
  "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
 
templates/share.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  global $yith_wcwl;
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  global $yith_wcwl;
templates/wishlist.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  global $wpdb, $yith_wcwl, $woocommerce;
@@ -144,8 +144,8 @@ if( function_exists('wc_print_notices') ) {
144
  <?php endif ?>
145
  <?php if( get_option( 'yith_wcwl_add_to_cart_show' ) == 'yes' ) : ?>
146
  <td class="product-add-to-cart">
147
- <?php if($stock_status!='Out'): ?>
148
- <?php echo YITH_WCWL_UI::add_to_cart_button( $values['prod_id'], $availability['class'] ) ?>
149
  <?php endif ?>
150
  </td>
151
  <?php endif ?>
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  global $wpdb, $yith_wcwl, $woocommerce;
144
  <?php endif ?>
145
  <?php if( get_option( 'yith_wcwl_add_to_cart_show' ) == 'yes' ) : ?>
146
  <td class="product-add-to-cart">
147
+ <?php if(isset($stock_status) && $stock_status != 'Out'): ?>
148
+ <?php echo YITH_WCWL_UI::add_to_cart_button( $values['prod_id'], isset($availability['class']) ); ?>
149
  <?php endif ?>
150
  </td>
151
  <?php endif ?>
uninstall.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  // If uninstall not called from WordPress exit
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YITH WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  // If uninstall not called from WordPress exit
yith-wcwl-ajax.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YIHT WooCommerce Wishlist
7
- * @version 1.1.1
8
  */
9
 
10
  /**
4
  *
5
  * @author Your Inspiration Themes
6
  * @package YIHT WooCommerce Wishlist
7
+ * @version 1.1.2
8
  */
9
 
10
  /**