Version Description
- Fixes: Shortcode compare
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Compare |
Version | 1.2.2 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.2.2
- README.txt +6 -3
- class.yith-woocompare-frontend.php +5 -3
- init.php +2 -2
- languages/default.po +46 -42
- languages/yit.pot +46 -42
README.txt
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
Contributors: yithemes
|
4 |
Tags: woocommerce, compare, compare products, product compare, widget
|
5 |
Requires at least: 3.5.1
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -21,7 +21,7 @@ You can also add a simple widget with the list of products the users have added,
|
|
21 |
Also you can simply customize the compare table with your style, by editing the specific template.
|
22 |
|
23 |
Working demos are available here:
|
24 |
-
**[LIVE DEMO 1](http://
|
25 |
|
26 |
|
27 |
Full documentation is available [here](http://yithemes.com/docs-plugins/yith_woocommerce_compare/).
|
@@ -82,6 +82,9 @@ Yes, you can sort the fields in the compare table. You can do it in Woocommerce
|
|
82 |
3. The settings of plugin
|
83 |
|
84 |
== Changelog ==
|
|
|
|
|
|
|
85 |
|
86 |
= 1.2.1 =
|
87 |
|
3 |
Contributors: yithemes
|
4 |
Tags: woocommerce, compare, compare products, product compare, widget
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 4.1
|
7 |
+
Stable tag: 1.2.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
21 |
Also you can simply customize the compare table with your style, by editing the specific template.
|
22 |
|
23 |
Working demos are available here:
|
24 |
+
**[LIVE DEMO 1](http://preview.yithemes.com/room09/shop/)** - **[LIVE DEMO 2](http://preview.yithemes.com/bazar/shop/)**
|
25 |
|
26 |
|
27 |
Full documentation is available [here](http://yithemes.com/docs-plugins/yith_woocommerce_compare/).
|
82 |
3. The settings of plugin
|
83 |
|
84 |
== Changelog ==
|
85 |
+
= 1.2.2 =
|
86 |
+
|
87 |
+
* Fixes: Shortcode compare
|
88 |
|
89 |
= 1.2.1 =
|
90 |
|
class.yith-woocompare-frontend.php
CHANGED
@@ -334,10 +334,12 @@ if( !class_exists( 'YITH_Woocompare_Frontend' ) ) {
|
|
334 |
|
335 |
$is_button = !isset( $button_or_link ) || !$button_or_link ? get_option( 'yith_woocompare_is_button' ) : $button_or_link;
|
336 |
|
337 |
-
$button_text
|
338 |
-
|
|
|
|
|
339 |
|
340 |
-
printf( '<a href="%s" class="%s" data-product_id="%d">%s</a>', $this->add_product_url( $product_id ), 'compare' . ( $is_button == 'button' ? ' button' : '' ), $product_id,
|
341 |
}
|
342 |
|
343 |
/**
|
334 |
|
335 |
$is_button = !isset( $button_or_link ) || !$button_or_link ? get_option( 'yith_woocompare_is_button' ) : $button_or_link;
|
336 |
|
337 |
+
if ( ! isset( $button_text ) || $button_text == 'default' ) {
|
338 |
+
$button_text = get_option( 'yith_woocompare_button_text', __( 'Compare', 'yit' ) );
|
339 |
+
$button_text = function_exists( 'icl_translate' ) ? icl_translate( 'Plugins', 'plugin_yit_compare_button_text', $button_text ) : $button_text;
|
340 |
+
}
|
341 |
|
342 |
+
printf( '<a href="%s" class="%s" data-product_id="%d">%s</a>', $this->add_product_url( $product_id ), 'compare' . ( $is_button == 'button' ? ' button' : '' ), $product_id, $button_text );
|
343 |
}
|
344 |
|
345 |
/**
|
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: YITH Woocommerce Compare
|
4 |
* Plugin URI: http://yithemes.com/
|
5 |
* Description: YITH Woocommerce Compare allows you to compare more products with woocommerce plugin, through product attributes.
|
6 |
-
* Version: 1.2.
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
@@ -42,7 +42,7 @@ function yith_woocompare_constructor() {
|
|
42 |
load_plugin_textdomain( 'yit', false, dirname( plugin_basename( __FILE__ ) ). '/languages/' );
|
43 |
|
44 |
define( 'YITH_WOOCOMPARE', true );
|
45 |
-
define( 'YITH_WOOCOMPARE_VERSION', '1.2.
|
46 |
define( 'YITH_WOOCOMPARE_URL', plugin_dir_url( __FILE__ ) );
|
47 |
define( 'YITH_WOOCOMPARE_DIR', plugin_dir_path( __FILE__ ) );
|
48 |
|
3 |
* Plugin Name: YITH Woocommerce Compare
|
4 |
* Plugin URI: http://yithemes.com/
|
5 |
* Description: YITH Woocommerce Compare allows you to compare more products with woocommerce plugin, through product attributes.
|
6 |
+
* Version: 1.2.2
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
42 |
load_plugin_textdomain( 'yit', false, dirname( plugin_basename( __FILE__ ) ). '/languages/' );
|
43 |
|
44 |
define( 'YITH_WOOCOMPARE', true );
|
45 |
+
define( 'YITH_WOOCOMPARE_VERSION', '1.2.2' );
|
46 |
define( 'YITH_WOOCOMPARE_URL', plugin_dir_url( __FILE__ ) );
|
47 |
define( 'YITH_WOOCOMPARE_DIR', plugin_dir_path( __FILE__ ) );
|
48 |
|
languages/default.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,19 +14,23 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../class.yith-woocompare-admin.php:
|
18 |
msgid "Products Compare"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: ../class.yith-woocompare-admin.php:
|
22 |
msgid "General Settings"
|
23 |
msgstr ""
|
24 |
|
|
|
|
|
|
|
|
|
25 |
#: ../class.yith-woocompare-frontend.php:142
|
26 |
msgid "Added"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:
|
30 |
msgid "Product Comparison"
|
31 |
msgstr ""
|
32 |
|
@@ -34,140 +38,140 @@ msgstr ""
|
|
34 |
msgid "In stock"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../class.yith-woocompare-frontend.php:
|
38 |
-
#: ../widgets/class.yith-woocompare-widget.php:
|
39 |
msgid "Compare"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../class.yith-woocompare-frontend.php:
|
43 |
msgid "No products to compare"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../class.yith-woocompare-frontend.php:
|
47 |
msgid "Remove"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../class.yith-woocompare-helper.php:
|
51 |
msgid "Image"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../class.yith-woocompare-helper.php:
|
55 |
-
#: ../widgets/class.yith-woocompare-widget.php:
|
56 |
msgid "Title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../class.yith-woocompare-helper.php:
|
60 |
msgid "Price"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../class.yith-woocompare-helper.php:
|
64 |
msgid "Add to cart"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../class.yith-woocompare-helper.php:
|
68 |
msgid "Description"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../class.yith-woocompare-helper.php:
|
72 |
msgid "Availability"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../yith-woocompare-options.php:
|
76 |
msgid "Link or Button"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: ../yith-woocompare-options.php:
|
80 |
msgid "Choose if you want to use a link or a button for the action button."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: ../yith-woocompare-options.php:
|
84 |
msgid "Link"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../yith-woocompare-options.php:
|
88 |
msgid "Button"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../yith-woocompare-options.php:
|
92 |
msgid "Link/Button text"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../yith-woocompare-options.php:
|
96 |
msgid "Type the text to use for the button or the link of the compare."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../yith-woocompare-options.php:
|
100 |
msgid "Show button in single product page"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../yith-woocompare-options.php:
|
104 |
msgid "Say if you want to show the button in the single product page."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../yith-woocompare-options.php:
|
108 |
msgid "Show button in products list"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../yith-woocompare-options.php:
|
112 |
msgid "Say if you want to show the button in the products list."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../yith-woocompare-options.php:
|
116 |
msgid "Open automatically lightbox"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../yith-woocompare-options.php:
|
120 |
msgid "Open link after click into \"Compare\" button\"."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../yith-woocompare-options.php:
|
124 |
msgid "Table Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: ../yith-woocompare-options.php:
|
128 |
msgid "Table title"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: ../yith-woocompare-options.php:
|
132 |
msgid "Type the text to use for the table title."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../yith-woocompare-options.php:
|
136 |
msgid "Compare products"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../yith-woocompare-options.php:
|
140 |
msgid "Fields to show"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../yith-woocompare-options.php:
|
144 |
-
#: ../yith-woocompare-options.php:
|
145 |
msgid ""
|
146 |
"Select the fields to show in the comparison table and order them by "
|
147 |
"drag&drop (are included also the woocommerce attributes)"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../yith-woocompare-options.php:
|
151 |
msgid "Repeat \"Price\" field at the end of the table"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../yith-woocompare-options.php:
|
155 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../yith-woocompare-options.php:
|
159 |
msgid "Image size"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../yith-woocompare-options.php:
|
163 |
msgid "Set the size for the images"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../templates/compare.php:
|
167 |
msgid "Close window [X]"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../templates/compare.php:
|
171 |
msgid "No products added in the compare table."
|
172 |
msgstr ""
|
173 |
|
@@ -179,7 +183,7 @@ msgstr ""
|
|
179 |
msgid "YITH Woocommerce Compare Widget"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../widgets/class.yith-woocompare-widget.php:
|
183 |
msgid "Clear all"
|
184 |
msgstr ""
|
185 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-12-03 12:49+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-12-03 12:49+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-woocompare-admin.php:130
|
18 |
msgid "Products Compare"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: ../class.yith-woocompare-admin.php:144 ../yith-woocompare-options.php:24
|
22 |
msgid "General Settings"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ../class.yith-woocompare-admin.php:375
|
26 |
+
msgid "Hard Crop?"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
#: ../class.yith-woocompare-frontend.php:142
|
30 |
msgid "Added"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:51
|
34 |
msgid "Product Comparison"
|
35 |
msgstr ""
|
36 |
|
38 |
msgid "In stock"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../class.yith-woocompare-frontend.php:338 ../yith-woocompare-options.php:47
|
42 |
+
#: ../widgets/class.yith-woocompare-widget.php:45
|
43 |
msgid "Compare"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:512
|
47 |
msgid "No products to compare"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ../class.yith-woocompare-frontend.php:522 ../templates/compare.php:109
|
51 |
msgid "Remove"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../class.yith-woocompare-helper.php:39
|
55 |
msgid "Image"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: ../class.yith-woocompare-helper.php:40
|
59 |
+
#: ../widgets/class.yith-woocompare-widget.php:62
|
60 |
msgid "Title"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../class.yith-woocompare-helper.php:41
|
64 |
msgid "Price"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../class.yith-woocompare-helper.php:42
|
68 |
msgid "Add to cart"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: ../class.yith-woocompare-helper.php:43
|
72 |
msgid "Description"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: ../class.yith-woocompare-helper.php:44
|
76 |
msgid "Availability"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: ../yith-woocompare-options.php:31
|
80 |
msgid "Link or Button"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: ../yith-woocompare-options.php:32
|
84 |
msgid "Choose if you want to use a link or a button for the action button."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: ../yith-woocompare-options.php:38
|
88 |
msgid "Link"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../yith-woocompare-options.php:39
|
92 |
msgid "Button"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../yith-woocompare-options.php:44
|
96 |
msgid "Link/Button text"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../yith-woocompare-options.php:45
|
100 |
msgid "Type the text to use for the button or the link of the compare."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: ../yith-woocompare-options.php:52
|
104 |
msgid "Show button in single product page"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../yith-woocompare-options.php:53
|
108 |
msgid "Say if you want to show the button in the single product page."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../yith-woocompare-options.php:61
|
112 |
msgid "Show button in products list"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../yith-woocompare-options.php:62
|
116 |
msgid "Say if you want to show the button in the products list."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../yith-woocompare-options.php:70
|
120 |
msgid "Open automatically lightbox"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../yith-woocompare-options.php:71
|
124 |
msgid "Open link after click into \"Compare\" button\"."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../yith-woocompare-options.php:83
|
128 |
msgid "Table Settings"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: ../yith-woocompare-options.php:90
|
132 |
msgid "Table title"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: ../yith-woocompare-options.php:91
|
136 |
msgid "Type the text to use for the table title."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../yith-woocompare-options.php:93
|
140 |
msgid "Compare products"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../yith-woocompare-options.php:98
|
144 |
msgid "Fields to show"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: ../yith-woocompare-options.php:99 ../yith-woocompare-options.php:108
|
148 |
+
#: ../yith-woocompare-options.php:117
|
149 |
msgid ""
|
150 |
"Select the fields to show in the comparison table and order them by "
|
151 |
"drag&drop (are included also the woocommerce attributes)"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: ../yith-woocompare-options.php:107
|
155 |
msgid "Repeat \"Price\" field at the end of the table"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: ../yith-woocompare-options.php:116
|
159 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../yith-woocompare-options.php:125
|
163 |
msgid "Image size"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../yith-woocompare-options.php:126
|
167 |
msgid "Set the size for the images"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../templates/compare.php:76
|
171 |
msgid "Close window [X]"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: ../templates/compare.php:101
|
175 |
msgid "No products added in the compare table."
|
176 |
msgstr ""
|
177 |
|
183 |
msgid "YITH Woocommerce Compare Widget"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../widgets/class.yith-woocompare-widget.php:44
|
187 |
msgid "Clear all"
|
188 |
msgstr ""
|
189 |
|
languages/yit.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,19 +14,23 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../class.yith-woocompare-admin.php:
|
18 |
msgid "Products Compare"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: ../class.yith-woocompare-admin.php:
|
22 |
msgid "General Settings"
|
23 |
msgstr ""
|
24 |
|
|
|
|
|
|
|
|
|
25 |
#: ../class.yith-woocompare-frontend.php:142
|
26 |
msgid "Added"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:
|
30 |
msgid "Product Comparison"
|
31 |
msgstr ""
|
32 |
|
@@ -34,140 +38,140 @@ msgstr ""
|
|
34 |
msgid "In stock"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../class.yith-woocompare-frontend.php:
|
38 |
-
#: ../widgets/class.yith-woocompare-widget.php:
|
39 |
msgid "Compare"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: ../class.yith-woocompare-frontend.php:
|
43 |
msgid "No products to compare"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../class.yith-woocompare-frontend.php:
|
47 |
msgid "Remove"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../class.yith-woocompare-helper.php:
|
51 |
msgid "Image"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../class.yith-woocompare-helper.php:
|
55 |
-
#: ../widgets/class.yith-woocompare-widget.php:
|
56 |
msgid "Title"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../class.yith-woocompare-helper.php:
|
60 |
msgid "Price"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../class.yith-woocompare-helper.php:
|
64 |
msgid "Add to cart"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: ../class.yith-woocompare-helper.php:
|
68 |
msgid "Description"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../class.yith-woocompare-helper.php:
|
72 |
msgid "Availability"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../yith-woocompare-options.php:
|
76 |
msgid "Link or Button"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: ../yith-woocompare-options.php:
|
80 |
msgid "Choose if you want to use a link or a button for the action button."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: ../yith-woocompare-options.php:
|
84 |
msgid "Link"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../yith-woocompare-options.php:
|
88 |
msgid "Button"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../yith-woocompare-options.php:
|
92 |
msgid "Link/Button text"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../yith-woocompare-options.php:
|
96 |
msgid "Type the text to use for the button or the link of the compare."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../yith-woocompare-options.php:
|
100 |
msgid "Show button in single product page"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../yith-woocompare-options.php:
|
104 |
msgid "Say if you want to show the button in the single product page."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../yith-woocompare-options.php:
|
108 |
msgid "Show button in products list"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../yith-woocompare-options.php:
|
112 |
msgid "Say if you want to show the button in the products list."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../yith-woocompare-options.php:
|
116 |
msgid "Open automatically lightbox"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../yith-woocompare-options.php:
|
120 |
msgid "Open link after click into \"Compare\" button\"."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../yith-woocompare-options.php:
|
124 |
msgid "Table Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: ../yith-woocompare-options.php:
|
128 |
msgid "Table title"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: ../yith-woocompare-options.php:
|
132 |
msgid "Type the text to use for the table title."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../yith-woocompare-options.php:
|
136 |
msgid "Compare products"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../yith-woocompare-options.php:
|
140 |
msgid "Fields to show"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../yith-woocompare-options.php:
|
144 |
-
#: ../yith-woocompare-options.php:
|
145 |
msgid ""
|
146 |
"Select the fields to show in the comparison table and order them by "
|
147 |
"drag&drop (are included also the woocommerce attributes)"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../yith-woocompare-options.php:
|
151 |
msgid "Repeat \"Price\" field at the end of the table"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../yith-woocompare-options.php:
|
155 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../yith-woocompare-options.php:
|
159 |
msgid "Image size"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../yith-woocompare-options.php:
|
163 |
msgid "Set the size for the images"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../templates/compare.php:
|
167 |
msgid "Close window [X]"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../templates/compare.php:
|
171 |
msgid "No products added in the compare table."
|
172 |
msgstr ""
|
173 |
|
@@ -179,7 +183,7 @@ msgstr ""
|
|
179 |
msgid "YITH Woocommerce Compare Widget"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../widgets/class.yith-woocompare-widget.php:
|
183 |
msgid "Clear all"
|
184 |
msgstr ""
|
185 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-12-03 12:49+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-12-03 12:49+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-woocompare-admin.php:130
|
18 |
msgid "Products Compare"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: ../class.yith-woocompare-admin.php:144 ../yith-woocompare-options.php:24
|
22 |
msgid "General Settings"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ../class.yith-woocompare-admin.php:375
|
26 |
+
msgid "Hard Crop?"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
#: ../class.yith-woocompare-frontend.php:142
|
30 |
msgid "Added"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:51
|
34 |
msgid "Product Comparison"
|
35 |
msgstr ""
|
36 |
|
38 |
msgid "In stock"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../class.yith-woocompare-frontend.php:338 ../yith-woocompare-options.php:47
|
42 |
+
#: ../widgets/class.yith-woocompare-widget.php:45
|
43 |
msgid "Compare"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:512
|
47 |
msgid "No products to compare"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ../class.yith-woocompare-frontend.php:522 ../templates/compare.php:109
|
51 |
msgid "Remove"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../class.yith-woocompare-helper.php:39
|
55 |
msgid "Image"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: ../class.yith-woocompare-helper.php:40
|
59 |
+
#: ../widgets/class.yith-woocompare-widget.php:62
|
60 |
msgid "Title"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../class.yith-woocompare-helper.php:41
|
64 |
msgid "Price"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../class.yith-woocompare-helper.php:42
|
68 |
msgid "Add to cart"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: ../class.yith-woocompare-helper.php:43
|
72 |
msgid "Description"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: ../class.yith-woocompare-helper.php:44
|
76 |
msgid "Availability"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: ../yith-woocompare-options.php:31
|
80 |
msgid "Link or Button"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: ../yith-woocompare-options.php:32
|
84 |
msgid "Choose if you want to use a link or a button for the action button."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: ../yith-woocompare-options.php:38
|
88 |
msgid "Link"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../yith-woocompare-options.php:39
|
92 |
msgid "Button"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../yith-woocompare-options.php:44
|
96 |
msgid "Link/Button text"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../yith-woocompare-options.php:45
|
100 |
msgid "Type the text to use for the button or the link of the compare."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: ../yith-woocompare-options.php:52
|
104 |
msgid "Show button in single product page"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../yith-woocompare-options.php:53
|
108 |
msgid "Say if you want to show the button in the single product page."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../yith-woocompare-options.php:61
|
112 |
msgid "Show button in products list"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../yith-woocompare-options.php:62
|
116 |
msgid "Say if you want to show the button in the products list."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../yith-woocompare-options.php:70
|
120 |
msgid "Open automatically lightbox"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../yith-woocompare-options.php:71
|
124 |
msgid "Open link after click into \"Compare\" button\"."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../yith-woocompare-options.php:83
|
128 |
msgid "Table Settings"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: ../yith-woocompare-options.php:90
|
132 |
msgid "Table title"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: ../yith-woocompare-options.php:91
|
136 |
msgid "Type the text to use for the table title."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../yith-woocompare-options.php:93
|
140 |
msgid "Compare products"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../yith-woocompare-options.php:98
|
144 |
msgid "Fields to show"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: ../yith-woocompare-options.php:99 ../yith-woocompare-options.php:108
|
148 |
+
#: ../yith-woocompare-options.php:117
|
149 |
msgid ""
|
150 |
"Select the fields to show in the comparison table and order them by "
|
151 |
"drag&drop (are included also the woocommerce attributes)"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: ../yith-woocompare-options.php:107
|
155 |
msgid "Repeat \"Price\" field at the end of the table"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: ../yith-woocompare-options.php:116
|
159 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../yith-woocompare-options.php:125
|
163 |
msgid "Image size"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../yith-woocompare-options.php:126
|
167 |
msgid "Set the size for the images"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../templates/compare.php:76
|
171 |
msgid "Close window [X]"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: ../templates/compare.php:101
|
175 |
msgid "No products added in the compare table."
|
176 |
msgstr ""
|
177 |
|
183 |
msgid "YITH Woocommerce Compare Widget"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../widgets/class.yith-woocompare-widget.php:44
|
187 |
msgid "Clear all"
|
188 |
msgstr ""
|
189 |
|