Version Description
- Added: complete Dutch translation. Thanks to Frans Pronk
- Sortable scripts included only in the plugin admin page
- Fixed: products list in popup don't update after have added a product
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Compare |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- README.txt +8 -2
- class.yith-woocompare-admin.php +5 -3
- class.yith-woocompare-frontend.php +4 -2
- class.yith-woocompare-helper.php +1 -1
- class.yith-woocompare.php +1 -1
- functions.yith-woocompare.php +1 -1
- init.php +3 -3
- languages/default.po +52 -44
- languages/yit-fa_IR.mo +0 -0
- languages/yit-fa_IR.po +239 -0
- languages/yit-it_IT.mo +0 -0
- languages/yit-it_IT.po +56 -47
- languages/yit-nl_NL.mo +0 -0
- languages/yit-nl_NL.po +240 -0
- languages/yit.pot +52 -44
- templates/compare.php +1 -1
- widgets/class.yith-woocompare-widget.php +1 -1
- yith-woocompare-options.php +1 -1
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: 3.
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -79,6 +79,12 @@ Yes, you can sort the fields in the compare table. You can do it in Woocommerce
|
|
79 |
|
80 |
== Changelog ==
|
81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
= 1.0.3 =
|
83 |
|
84 |
* Minor bugs fixes
|
3 |
Contributors: yithemes
|
4 |
Tags: woocommerce, compare, compare products, product compare, widget
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 3.6
|
7 |
+
Stable tag: 1.0.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
79 |
|
80 |
== Changelog ==
|
81 |
|
82 |
+
= 1.0.4 =
|
83 |
+
|
84 |
+
* Added: complete Dutch translation. Thanks to Frans Pronk
|
85 |
+
* Sortable scripts included only in the plugin admin page
|
86 |
+
* Fixed: products list in popup don't update after have added a product
|
87 |
+
|
88 |
= 1.0.3 =
|
89 |
|
90 |
* Minor bugs fixes
|
class.yith-woocompare-admin.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Magnifier
|
7 |
-
* @version 1.0.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
@@ -395,8 +395,10 @@ if( $force && isset($_GET['page']) && isset($_GET['tab']) && $_GET['page'] == 'w
|
|
395 |
wp_enqueue_script( 'jquery-ui-slider' );
|
396 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
397 |
|
398 |
-
|
399 |
-
|
|
|
|
|
400 |
}
|
401 |
|
402 |
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Magnifier
|
7 |
+
* @version 1.0.4
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
395 |
wp_enqueue_script( 'jquery-ui-slider' );
|
396 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
397 |
|
398 |
+
if( isset( $_GET['page'] ) && $_GET['page'] == 'woocommerce_settings' && isset( $_GET['tab'] ) && $_GET['tab'] == 'yith_woocompare' ) {
|
399 |
+
wp_enqueue_style( 'yith_woocompare_admin', YITH_WOOCOMPARE_URL . 'assets/css/admin.css' );
|
400 |
+
wp_enqueue_script( 'woocompare', YITH_WOOCOMPARE_URL . 'assets/js/woocompare-admin.js', array( 'jquery', 'jquery-ui-sortable' ) );
|
401 |
+
}
|
402 |
}
|
403 |
|
404 |
|
class.yith-woocompare-frontend.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
-
* @version 1.0.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
@@ -134,6 +134,7 @@ if( !class_exists( 'YITH_Woocompare_Frontend' ) ) {
|
|
134 |
wp_localize_script( 'yith-woocompare-main', 'yith_woocompare', array(
|
135 |
'nonceadd' => wp_create_nonce( $this->action_add ),
|
136 |
'nonceremove' => wp_create_nonce( $this->action_remove ),
|
|
|
137 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
138 |
'actionadd' => $this->action_add,
|
139 |
'actionremove' => $this->action_remove,
|
@@ -392,7 +393,8 @@ if( !class_exists( 'YITH_Woocompare_Frontend' ) ) {
|
|
392 |
$json = array(
|
393 |
'table_url' => add_query_arg( array(
|
394 |
'action' => $this->action_view,
|
395 |
-
'iframe' => 'true'
|
|
|
396 |
), site_url() ),
|
397 |
|
398 |
'widget_table' => $this->list_products_html()
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
+
* @version 1.0.4
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
134 |
wp_localize_script( 'yith-woocompare-main', 'yith_woocompare', array(
|
135 |
'nonceadd' => wp_create_nonce( $this->action_add ),
|
136 |
'nonceremove' => wp_create_nonce( $this->action_remove ),
|
137 |
+
'nonceview' => wp_create_nonce( $this->action_view ),
|
138 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
139 |
'actionadd' => $this->action_add,
|
140 |
'actionremove' => $this->action_remove,
|
393 |
$json = array(
|
394 |
'table_url' => add_query_arg( array(
|
395 |
'action' => $this->action_view,
|
396 |
+
'iframe' => 'true',
|
397 |
+
'ver' => time()
|
398 |
), site_url() ),
|
399 |
|
400 |
'widget_table' => $this->list_products_html()
|
class.yith-woocompare-helper.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Compare
|
7 |
-
* @version 1.0.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Compare
|
7 |
+
* @version 1.0.4
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
class.yith-woocompare.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
-
* @version 1.0.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
+
* @version 1.0.4
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
functions.yith-woocompare.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
-
* @version 1.0.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
+
* @version 1.0.4
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
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.0.
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
@@ -11,7 +11,7 @@
|
|
11 |
*
|
12 |
* @author Your Inspiration Themes
|
13 |
* @package YITH Woocommerce Compare
|
14 |
-
* @version 1.0.
|
15 |
*/
|
16 |
/* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
|
17 |
|
@@ -44,7 +44,7 @@ function yith_woocompare_constructor() {
|
|
44 |
load_plugin_textdomain( 'yit', false, dirname( plugin_basename( __FILE__ ) ). '/languages/' );
|
45 |
|
46 |
define( 'YITH_WOOCOMPARE', true );
|
47 |
-
define( 'YITH_WOOCOMPARE_VERSION', '1.0.
|
48 |
define( 'YITH_WOOCOMPARE_URL', plugin_dir_url( __FILE__ ) );
|
49 |
define( 'YITH_WOOCOMPARE_DIR', plugin_dir_path( __FILE__ ) );
|
50 |
|
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.0.4
|
7 |
* Author: Your Inspiration Themes
|
8 |
* Author URI: http://yithemes.com/
|
9 |
* Text Domain: yit
|
11 |
*
|
12 |
* @author Your Inspiration Themes
|
13 |
* @package YITH Woocommerce Compare
|
14 |
+
* @version 1.0.4
|
15 |
*/
|
16 |
/* Copyright 2013 Your Inspiration Themes (email : plugins@yithemes.com)
|
17 |
|
44 |
load_plugin_textdomain( 'yit', false, dirname( plugin_basename( __FILE__ ) ). '/languages/' );
|
45 |
|
46 |
define( 'YITH_WOOCOMPARE', true );
|
47 |
+
define( 'YITH_WOOCOMPARE_VERSION', '1.0.4' );
|
48 |
define( 'YITH_WOOCOMPARE_URL', plugin_dir_url( __FILE__ ) );
|
49 |
define( 'YITH_WOOCOMPARE_DIR', plugin_dir_path( __FILE__ ) );
|
50 |
|
languages/default.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date: 2013-
|
5 |
-
"PO-Revision-Date: 2013-
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,58 +14,58 @@ 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:
|
26 |
msgid "Added"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:
|
30 |
msgid "Product Comparison"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../class.yith-woocompare-frontend.php:
|
34 |
msgid "In stock"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../class.yith-woocompare-frontend.php:
|
38 |
#: ../widgets/class.yith-woocompare-widget.php:38
|
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:38
|
51 |
-
|
52 |
-
msgid "Title"
|
53 |
msgstr ""
|
54 |
|
55 |
#: ../class.yith-woocompare-helper.php:39
|
56 |
-
|
|
|
57 |
msgstr ""
|
58 |
|
59 |
#: ../class.yith-woocompare-helper.php:40
|
60 |
-
msgid "
|
61 |
msgstr ""
|
62 |
|
63 |
#: ../class.yith-woocompare-helper.php:41
|
64 |
-
msgid "
|
65 |
msgstr ""
|
66 |
|
67 |
#: ../class.yith-woocompare-helper.php:42
|
68 |
-
msgid "
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../class.yith-woocompare-helper.php:43
|
@@ -89,57 +89,65 @@ msgid "Button"
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../yith-woocompare-options.php:35
|
92 |
-
msgid "
|
93 |
msgstr ""
|
94 |
|
95 |
#: ../yith-woocompare-options.php:36
|
96 |
-
msgid "
|
|
|
|
|
|
|
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: ../yith-woocompare-options.php:44
|
|
|
|
|
|
|
|
|
100 |
msgid "Show button in products list"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../yith-woocompare-options.php:
|
104 |
msgid "Say if you want to show the button in the products list."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../yith-woocompare-options.php:
|
108 |
msgid "Open automatically lightbox"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../yith-woocompare-options.php:
|
112 |
msgid "Open link after click into \"Compare\" button\"."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../yith-woocompare-options.php:
|
116 |
msgid "Table Settings"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../yith-woocompare-options.php:
|
120 |
msgid "Fields to show"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../yith-woocompare-options.php:
|
124 |
-
#: ../yith-woocompare-options.php:
|
125 |
msgid ""
|
126 |
"Select the fields to show in the comparison table and order them by "
|
127 |
"drag&drop (are included also the woocommerce attributes)"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../yith-woocompare-options.php:
|
131 |
msgid "Repeat \"Price\" field at the end of the table"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../yith-woocompare-options.php:
|
135 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../yith-woocompare-options.php:
|
139 |
msgid "Image size"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: ../yith-woocompare-options.php:
|
143 |
msgid "Set the size for the images"
|
144 |
msgstr ""
|
145 |
|
@@ -167,62 +175,62 @@ msgstr ""
|
|
167 |
msgid "Clear all"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../yit-common/yith-panel.php:
|
171 |
msgid "Select a date"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ../yit-common/yith-panel.php:
|
175 |
msgid "Hours"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ../yit-common/yith-panel.php:
|
179 |
msgid "Minutes"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../yit-common/yith-panel.php:
|
183 |
msgid "Upload"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../yit-common/yith-panel.php:
|
187 |
msgid "px"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../yit-common/yith-panel.php:
|
191 |
msgid "em"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../yit-common/yith-panel.php:
|
195 |
msgid "pt"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../yit-common/yith-panel.php:
|
199 |
msgid "rem"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../yit-common/yith-panel.php:
|
203 |
msgid "Select a font family"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../yit-common/yith-panel.php:
|
207 |
msgid "Regular"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: ../yit-common/yith-panel.php:
|
211 |
msgid "Bold"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../yit-common/yith-panel.php:
|
215 |
msgid "Extra bold"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../yit-common/yith-panel.php:
|
219 |
msgid "Italic"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../yit-common/yith-panel.php:
|
223 |
msgid "Italic bold"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../yit-common/yith-panel.php:
|
227 |
msgid "Click to preview"
|
228 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 15:57+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 15:57+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:129
|
18 |
msgid "Products Compare"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: ../class.yith-woocompare-admin.php:143 ../yith-woocompare-options.php:15
|
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:47
|
30 |
msgid "Product Comparison"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:247
|
34 |
msgid "In stock"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-woocompare-frontend.php:330 ../yith-woocompare-options.php:38
|
38 |
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
msgid "Compare"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: ../class.yith-woocompare-frontend.php:483
|
43 |
msgid "No products to compare"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:493 ../templates/compare.php:102
|
47 |
msgid "Remove"
|
48 |
msgstr ""
|
49 |
|
50 |
#: ../class.yith-woocompare-helper.php:38
|
51 |
+
msgid "Image"
|
|
|
52 |
msgstr ""
|
53 |
|
54 |
#: ../class.yith-woocompare-helper.php:39
|
55 |
+
#: ../widgets/class.yith-woocompare-widget.php:55
|
56 |
+
msgid "Title"
|
57 |
msgstr ""
|
58 |
|
59 |
#: ../class.yith-woocompare-helper.php:40
|
60 |
+
msgid "Price"
|
61 |
msgstr ""
|
62 |
|
63 |
#: ../class.yith-woocompare-helper.php:41
|
64 |
+
msgid "Add to cart"
|
65 |
msgstr ""
|
66 |
|
67 |
#: ../class.yith-woocompare-helper.php:42
|
68 |
+
msgid "Description"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../class.yith-woocompare-helper.php:43
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../yith-woocompare-options.php:35
|
92 |
+
msgid "Link/Button text"
|
93 |
msgstr ""
|
94 |
|
95 |
#: ../yith-woocompare-options.php:36
|
96 |
+
msgid "Type the text to use for the button or the link of the compare."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: ../yith-woocompare-options.php:43
|
100 |
+
msgid "Show button in single product page"
|
101 |
msgstr ""
|
102 |
|
103 |
#: ../yith-woocompare-options.php:44
|
104 |
+
msgid "Say if you want to show the button in the single product page."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: ../yith-woocompare-options.php:52
|
108 |
msgid "Show button in products list"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../yith-woocompare-options.php:53
|
112 |
msgid "Say if you want to show the button in the products list."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../yith-woocompare-options.php:61
|
116 |
msgid "Open automatically lightbox"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../yith-woocompare-options.php:62
|
120 |
msgid "Open link after click into \"Compare\" button\"."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../yith-woocompare-options.php:74
|
124 |
msgid "Table Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../yith-woocompare-options.php:81
|
128 |
msgid "Fields to show"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: ../yith-woocompare-options.php:82 ../yith-woocompare-options.php:91
|
132 |
+
#: ../yith-woocompare-options.php:100
|
133 |
msgid ""
|
134 |
"Select the fields to show in the comparison table and order them by "
|
135 |
"drag&drop (are included also the woocommerce attributes)"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../yith-woocompare-options.php:90
|
139 |
msgid "Repeat \"Price\" field at the end of the table"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../yith-woocompare-options.php:99
|
143 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../yith-woocompare-options.php:108
|
147 |
msgid "Image size"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../yith-woocompare-options.php:109
|
151 |
msgid "Set the size for the images"
|
152 |
msgstr ""
|
153 |
|
175 |
msgid "Clear all"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../yit-common/yith-panel.php:406
|
179 |
msgid "Select a date"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: ../yit-common/yith-panel.php:407
|
183 |
msgid "Hours"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
187 |
msgid "Minutes"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../yit-common/yith-panel.php:417
|
191 |
msgid "Upload"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../yit-common/yith-panel.php:444
|
195 |
msgid "px"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../yit-common/yith-panel.php:445
|
199 |
msgid "em"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../yit-common/yith-panel.php:446
|
203 |
msgid "pt"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../yit-common/yith-panel.php:447
|
207 |
msgid "rem"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../yit-common/yith-panel.php:457
|
211 |
msgid "Select a font family"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../yit-common/yith-panel.php:465
|
215 |
msgid "Regular"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../yit-common/yith-panel.php:466
|
219 |
msgid "Bold"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../yit-common/yith-panel.php:467
|
223 |
msgid "Extra bold"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../yit-common/yith-panel.php:468
|
227 |
msgid "Italic"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../yit-common/yith-panel.php:469
|
231 |
msgid "Italic bold"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../yit-common/yith-panel.php:481
|
235 |
msgid "Click to preview"
|
236 |
msgstr ""
|
languages/yit-fa_IR.mo
ADDED
Binary file
|
languages/yit-fa_IR.po
ADDED
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 15:57+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 15:57+0100\n"
|
6 |
+
"Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>\n"
|
7 |
+
"Language-Team: Qooqnos <khalil.delavaran@gmail.com>\n"
|
8 |
+
"Language: Persian\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.5\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
+
"X-Poedit-Basepath: ./\n"
|
15 |
+
"X-Poedit-SearchPath-0: ..\n"
|
16 |
+
|
17 |
+
#: ../class.yith-woocompare-admin.php:129
|
18 |
+
msgid "Products Compare"
|
19 |
+
msgstr "سنجش محصولات"
|
20 |
+
|
21 |
+
#: ../class.yith-woocompare-admin.php:143 ../yith-woocompare-options.php:15
|
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:47
|
30 |
+
msgid "Product Comparison"
|
31 |
+
msgstr "سنجش محصولات"
|
32 |
+
|
33 |
+
#: ../class.yith-woocompare-frontend.php:247
|
34 |
+
msgid "In stock"
|
35 |
+
msgstr "داشتن در انبار"
|
36 |
+
|
37 |
+
#: ../class.yith-woocompare-frontend.php:330 ../yith-woocompare-options.php:38
|
38 |
+
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
+
msgid "Compare"
|
40 |
+
msgstr "سنجش"
|
41 |
+
|
42 |
+
#: ../class.yith-woocompare-frontend.php:483
|
43 |
+
msgid "No products to compare"
|
44 |
+
msgstr "محصولاتی برای سنجش نیست"
|
45 |
+
|
46 |
+
#: ../class.yith-woocompare-frontend.php:493 ../templates/compare.php:102
|
47 |
+
msgid "Remove"
|
48 |
+
msgstr "پاک"
|
49 |
+
|
50 |
+
#: ../class.yith-woocompare-helper.php:38
|
51 |
+
msgid "Image"
|
52 |
+
msgstr "نگاره"
|
53 |
+
|
54 |
+
#: ../class.yith-woocompare-helper.php:39
|
55 |
+
#: ../widgets/class.yith-woocompare-widget.php:55
|
56 |
+
msgid "Title"
|
57 |
+
msgstr "جستار"
|
58 |
+
|
59 |
+
#: ../class.yith-woocompare-helper.php:40
|
60 |
+
msgid "Price"
|
61 |
+
msgstr "قیمت"
|
62 |
+
|
63 |
+
#: ../class.yith-woocompare-helper.php:41
|
64 |
+
msgid "Add to cart"
|
65 |
+
msgstr "افزودن به سبد خرید"
|
66 |
+
|
67 |
+
#: ../class.yith-woocompare-helper.php:42
|
68 |
+
msgid "Description"
|
69 |
+
msgstr "روشنگری"
|
70 |
+
|
71 |
+
#: ../class.yith-woocompare-helper.php:43
|
72 |
+
msgid "Availability"
|
73 |
+
msgstr "دسترس پذیری"
|
74 |
+
|
75 |
+
#: ../yith-woocompare-options.php:22
|
76 |
+
msgid "Link or Button"
|
77 |
+
msgstr "لینک یا دکمه"
|
78 |
+
|
79 |
+
#: ../yith-woocompare-options.php:23
|
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:29
|
84 |
+
msgid "Link"
|
85 |
+
msgstr "لینک"
|
86 |
+
|
87 |
+
#: ../yith-woocompare-options.php:30
|
88 |
+
msgid "Button"
|
89 |
+
msgstr "دکمه"
|
90 |
+
|
91 |
+
#: ../yith-woocompare-options.php:35
|
92 |
+
#, fuzzy
|
93 |
+
msgid "Link/Button text"
|
94 |
+
msgstr "لینک یا دکمه"
|
95 |
+
|
96 |
+
#: ../yith-woocompare-options.php:36
|
97 |
+
msgid "Type the text to use for the button or the link of the compare."
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: ../yith-woocompare-options.php:43
|
101 |
+
msgid "Show button in single product page"
|
102 |
+
msgstr "نمایش دکمه در برگه محصول"
|
103 |
+
|
104 |
+
#: ../yith-woocompare-options.php:44
|
105 |
+
msgid "Say if you want to show the button in the single product page."
|
106 |
+
msgstr "اگر می خواهید دکمه در برگه محصول نمایش داده شود"
|
107 |
+
|
108 |
+
#: ../yith-woocompare-options.php:52
|
109 |
+
msgid "Show button in products list"
|
110 |
+
msgstr "نمایش دکمه در لیست محصولات"
|
111 |
+
|
112 |
+
#: ../yith-woocompare-options.php:53
|
113 |
+
msgid "Say if you want to show the button in the products list."
|
114 |
+
msgstr "اگر می خواهید دکمه در لیست محصول نمایش داده شود"
|
115 |
+
|
116 |
+
#: ../yith-woocompare-options.php:61
|
117 |
+
msgid "Open automatically lightbox"
|
118 |
+
msgstr "باز کردن اتوماتیک جعبه نور"
|
119 |
+
|
120 |
+
#: ../yith-woocompare-options.php:62
|
121 |
+
msgid "Open link after click into \"Compare\" button\"."
|
122 |
+
msgstr " باز کردن پیوند پس از \"سنجش\" دکمه\"کلیک کنید"
|
123 |
+
|
124 |
+
#: ../yith-woocompare-options.php:74
|
125 |
+
msgid "Table Settings"
|
126 |
+
msgstr "پیکربندی جدول"
|
127 |
+
|
128 |
+
#: ../yith-woocompare-options.php:81
|
129 |
+
msgid "Fields to show"
|
130 |
+
msgstr "فیلدهای نمایش"
|
131 |
+
|
132 |
+
#: ../yith-woocompare-options.php:82 ../yith-woocompare-options.php:91
|
133 |
+
#: ../yith-woocompare-options.php:100
|
134 |
+
msgid ""
|
135 |
+
"Select the fields to show in the comparison table and order them by "
|
136 |
+
"drag&drop (are included also the woocommerce attributes)"
|
137 |
+
msgstr ""
|
138 |
+
"انتخاب این گزینه برای نشان دادن در جدول سنجش و سفارش سازی آنها با کشیدن و "
|
139 |
+
"رها کردن دکمه ماوس (ویژگی های ووکامرس را شامل می شود)"
|
140 |
+
|
141 |
+
#: ../yith-woocompare-options.php:90
|
142 |
+
msgid "Repeat \"Price\" field at the end of the table"
|
143 |
+
msgstr "تکرار گزینه \"قیمت\" در پایان جدول"
|
144 |
+
|
145 |
+
#: ../yith-woocompare-options.php:99
|
146 |
+
msgid "Repeat \"Add to cart\" field at the end of the table"
|
147 |
+
msgstr "تکرار گزینه \"افزودن به سبد خرید\" در پایان جدول"
|
148 |
+
|
149 |
+
#: ../yith-woocompare-options.php:108
|
150 |
+
msgid "Image size"
|
151 |
+
msgstr "اندازه نگاره"
|
152 |
+
|
153 |
+
#: ../yith-woocompare-options.php:109
|
154 |
+
msgid "Set the size for the images"
|
155 |
+
msgstr "تعیین اندازه برای نگاره"
|
156 |
+
|
157 |
+
#: ../templates/compare.php:68
|
158 |
+
msgid "Compare products"
|
159 |
+
msgstr "سنجش محصولات"
|
160 |
+
|
161 |
+
#: ../templates/compare.php:69
|
162 |
+
msgid "Close window [X]"
|
163 |
+
msgstr "بستن پنجره [X]"
|
164 |
+
|
165 |
+
#: ../templates/compare.php:94
|
166 |
+
msgid "No products added in the compare table."
|
167 |
+
msgstr "هیچ محصولی افزوده نشده است برای جدول سنجش"
|
168 |
+
|
169 |
+
#: ../widgets/class.yith-woocompare-widget.php:21
|
170 |
+
msgid "The widget show the list of products added in the compare table."
|
171 |
+
msgstr "ویجت نشان می دهد لیستی از محصولات افزوده شده در جدول سنجش"
|
172 |
+
|
173 |
+
#: ../widgets/class.yith-woocompare-widget.php:22
|
174 |
+
msgid "YITH Woocommerce Compare Widget"
|
175 |
+
msgstr "ویجت سنجش ووکاکرس YITH"
|
176 |
+
|
177 |
+
#: ../widgets/class.yith-woocompare-widget.php:37
|
178 |
+
msgid "Clear all"
|
179 |
+
msgstr "پاک کردن همه"
|
180 |
+
|
181 |
+
#: ../yit-common/yith-panel.php:406
|
182 |
+
msgid "Select a date"
|
183 |
+
msgstr "انتخاب روز"
|
184 |
+
|
185 |
+
#: ../yit-common/yith-panel.php:407
|
186 |
+
msgid "Hours"
|
187 |
+
msgstr "ساعتها"
|
188 |
+
|
189 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
190 |
+
msgid "Minutes"
|
191 |
+
msgstr "دقیقه ها"
|
192 |
+
|
193 |
+
#: ../yit-common/yith-panel.php:417
|
194 |
+
msgid "Upload"
|
195 |
+
msgstr "بارگذاری"
|
196 |
+
|
197 |
+
#: ../yit-common/yith-panel.php:444
|
198 |
+
msgid "px"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: ../yit-common/yith-panel.php:445
|
202 |
+
msgid "em"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: ../yit-common/yith-panel.php:446
|
206 |
+
msgid "pt"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: ../yit-common/yith-panel.php:447
|
210 |
+
msgid "rem"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: ../yit-common/yith-panel.php:457
|
214 |
+
msgid "Select a font family"
|
215 |
+
msgstr "گزینش قلم"
|
216 |
+
|
217 |
+
#: ../yit-common/yith-panel.php:465
|
218 |
+
msgid "Regular"
|
219 |
+
msgstr "معمولی"
|
220 |
+
|
221 |
+
#: ../yit-common/yith-panel.php:466
|
222 |
+
msgid "Bold"
|
223 |
+
msgstr "کلفت"
|
224 |
+
|
225 |
+
#: ../yit-common/yith-panel.php:467
|
226 |
+
msgid "Extra bold"
|
227 |
+
msgstr "خیلی کلفت"
|
228 |
+
|
229 |
+
#: ../yit-common/yith-panel.php:468
|
230 |
+
msgid "Italic"
|
231 |
+
msgstr "کج"
|
232 |
+
|
233 |
+
#: ../yit-common/yith-panel.php:469
|
234 |
+
msgid "Italic bold"
|
235 |
+
msgstr "کلفت کج"
|
236 |
+
|
237 |
+
#: ../yit-common/yith-panel.php:481
|
238 |
+
msgid "Click to preview"
|
239 |
+
msgstr "کلیک برای پیش نمایش"
|
languages/yit-it_IT.mo
CHANGED
Binary file
|
languages/yit-it_IT.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date: 2013-
|
5 |
-
"PO-Revision-Date: 2013-
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,60 +14,60 @@ 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 "Compara Prodotti"
|
20 |
|
21 |
-
#: ../class.yith-woocompare-admin.php:
|
22 |
msgid "General Settings"
|
23 |
msgstr "Impostazioni Generali"
|
24 |
|
25 |
-
#: ../class.yith-woocompare-frontend.php:
|
26 |
msgid "Added"
|
27 |
msgstr "Aggiungo"
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:
|
30 |
msgid "Product Comparison"
|
31 |
msgstr "Comparazione Prodotto"
|
32 |
|
33 |
-
#: ../class.yith-woocompare-frontend.php:
|
34 |
msgid "In stock"
|
35 |
msgstr "In stock"
|
36 |
|
37 |
-
#: ../class.yith-woocompare-frontend.php:
|
38 |
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
msgid "Compare"
|
40 |
msgstr "Compara"
|
41 |
|
42 |
-
#: ../class.yith-woocompare-frontend.php:
|
43 |
msgid "No products to compare"
|
44 |
msgstr "Nessun prodotto da comparare"
|
45 |
|
46 |
-
#: ../class.yith-woocompare-frontend.php:
|
47 |
msgid "Remove"
|
48 |
msgstr "Rimuovi"
|
49 |
|
50 |
#: ../class.yith-woocompare-helper.php:38
|
|
|
|
|
|
|
|
|
51 |
#: ../widgets/class.yith-woocompare-widget.php:55
|
52 |
msgid "Title"
|
53 |
msgstr "Titolo"
|
54 |
|
55 |
-
#: ../class.yith-woocompare-helper.php:39
|
56 |
-
msgid "Image"
|
57 |
-
msgstr "Immagine"
|
58 |
-
|
59 |
#: ../class.yith-woocompare-helper.php:40
|
60 |
-
msgid "Description"
|
61 |
-
msgstr "Descrizione"
|
62 |
-
|
63 |
-
#: ../class.yith-woocompare-helper.php:41
|
64 |
msgid "Price"
|
65 |
msgstr "Prezzo"
|
66 |
|
67 |
-
#: ../class.yith-woocompare-helper.php:
|
68 |
msgid "Add to cart"
|
69 |
msgstr "Aggiungi al carrello"
|
70 |
|
|
|
|
|
|
|
|
|
71 |
#: ../class.yith-woocompare-helper.php:43
|
72 |
msgid "Availability"
|
73 |
msgstr "Disponibilità"
|
@@ -91,40 +91,49 @@ msgid "Button"
|
|
91 |
msgstr "Pulsante"
|
92 |
|
93 |
#: ../yith-woocompare-options.php:35
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
msgid "Show button in single product page"
|
95 |
msgstr "Mostra pulsante nella pagina del dettaglio prodotto"
|
96 |
|
97 |
-
#: ../yith-woocompare-options.php:
|
98 |
msgid "Say if you want to show the button in the single product page."
|
99 |
msgstr ""
|
100 |
"Scegli se vuoi mostrare il pulsante nella pagina dettaglio del prodotto."
|
101 |
|
102 |
-
#: ../yith-woocompare-options.php:
|
103 |
msgid "Show button in products list"
|
104 |
msgstr "Mostra pulsante nella lista prodotti"
|
105 |
|
106 |
-
#: ../yith-woocompare-options.php:
|
107 |
msgid "Say if you want to show the button in the products list."
|
108 |
msgstr "Imposta se vuoi mostrare il pulsante nella lista prodotti."
|
109 |
|
110 |
-
#: ../yith-woocompare-options.php:
|
111 |
msgid "Open automatically lightbox"
|
112 |
msgstr "Apri la lightbox automaticamente"
|
113 |
|
114 |
-
#: ../yith-woocompare-options.php:
|
115 |
msgid "Open link after click into \"Compare\" button\"."
|
116 |
msgstr "Apri pagina dopo aver cliccato sul pulsante \"Compare\"."
|
117 |
|
118 |
-
#: ../yith-woocompare-options.php:
|
119 |
msgid "Table Settings"
|
120 |
msgstr "Impostazioni tabella."
|
121 |
|
122 |
-
#: ../yith-woocompare-options.php:
|
123 |
msgid "Fields to show"
|
124 |
msgstr "Campi da mostrare"
|
125 |
|
126 |
-
#: ../yith-woocompare-options.php:
|
127 |
-
#: ../yith-woocompare-options.php:
|
128 |
msgid ""
|
129 |
"Select the fields to show in the comparison table and order them by "
|
130 |
"drag&drop (are included also the woocommerce attributes)"
|
@@ -132,19 +141,19 @@ msgstr ""
|
|
132 |
"Seleziona i campi da mostrare nella tabella di comparazione e ordinali "
|
133 |
"attraverso il drag&drop (sono inclusi anche gli attributi di woocommerce)"
|
134 |
|
135 |
-
#: ../yith-woocompare-options.php:
|
136 |
msgid "Repeat \"Price\" field at the end of the table"
|
137 |
msgstr "Ripeti il campo \"Prezzo\" alla fine della tabella"
|
138 |
|
139 |
-
#: ../yith-woocompare-options.php:
|
140 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
141 |
msgstr "Ripeti il campo con \"Aggiungi al carrello\" alla fine della tabella"
|
142 |
|
143 |
-
#: ../yith-woocompare-options.php:
|
144 |
msgid "Image size"
|
145 |
msgstr "Dimensione immagine"
|
146 |
|
147 |
-
#: ../yith-woocompare-options.php:
|
148 |
msgid "Set the size for the images"
|
149 |
msgstr "Imposta la dimensione per le immagini"
|
150 |
|
@@ -174,63 +183,63 @@ msgstr "YITH Woocommerce Compare Widget"
|
|
174 |
msgid "Clear all"
|
175 |
msgstr "Cancella tutti"
|
176 |
|
177 |
-
#: ../yit-common/yith-panel.php:
|
178 |
msgid "Select a date"
|
179 |
msgstr "Seleziona data"
|
180 |
|
181 |
-
#: ../yit-common/yith-panel.php:
|
182 |
msgid "Hours"
|
183 |
msgstr "Ore"
|
184 |
|
185 |
-
#: ../yit-common/yith-panel.php:
|
186 |
msgid "Minutes"
|
187 |
msgstr "Minuti"
|
188 |
|
189 |
-
#: ../yit-common/yith-panel.php:
|
190 |
msgid "Upload"
|
191 |
msgstr "Carica"
|
192 |
|
193 |
-
#: ../yit-common/yith-panel.php:
|
194 |
msgid "px"
|
195 |
msgstr "px"
|
196 |
|
197 |
-
#: ../yit-common/yith-panel.php:
|
198 |
msgid "em"
|
199 |
msgstr "em"
|
200 |
|
201 |
-
#: ../yit-common/yith-panel.php:
|
202 |
msgid "pt"
|
203 |
msgstr "pt"
|
204 |
|
205 |
-
#: ../yit-common/yith-panel.php:
|
206 |
msgid "rem"
|
207 |
msgstr "rem"
|
208 |
|
209 |
-
#: ../yit-common/yith-panel.php:
|
210 |
msgid "Select a font family"
|
211 |
msgstr "Seleziona la famiglia font"
|
212 |
|
213 |
-
#: ../yit-common/yith-panel.php:
|
214 |
msgid "Regular"
|
215 |
msgstr "Normale"
|
216 |
|
217 |
-
#: ../yit-common/yith-panel.php:
|
218 |
msgid "Bold"
|
219 |
msgstr "Grassetto"
|
220 |
|
221 |
-
#: ../yit-common/yith-panel.php:
|
222 |
msgid "Extra bold"
|
223 |
msgstr "Extra bold"
|
224 |
|
225 |
-
#: ../yit-common/yith-panel.php:
|
226 |
msgid "Italic"
|
227 |
msgstr "Corsivo"
|
228 |
|
229 |
-
#: ../yit-common/yith-panel.php:
|
230 |
msgid "Italic bold"
|
231 |
msgstr "Grassetto corsivo"
|
232 |
|
233 |
-
#: ../yit-common/yith-panel.php:
|
234 |
msgid "Click to preview"
|
235 |
msgstr "Clicca per anteprima"
|
236 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 15:57+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 15:58+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:129
|
18 |
msgid "Products Compare"
|
19 |
msgstr "Compara Prodotti"
|
20 |
|
21 |
+
#: ../class.yith-woocompare-admin.php:143 ../yith-woocompare-options.php:15
|
22 |
msgid "General Settings"
|
23 |
msgstr "Impostazioni Generali"
|
24 |
|
25 |
+
#: ../class.yith-woocompare-frontend.php:142
|
26 |
msgid "Added"
|
27 |
msgstr "Aggiungo"
|
28 |
|
29 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:47
|
30 |
msgid "Product Comparison"
|
31 |
msgstr "Comparazione Prodotto"
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:247
|
34 |
msgid "In stock"
|
35 |
msgstr "In stock"
|
36 |
|
37 |
+
#: ../class.yith-woocompare-frontend.php:330 ../yith-woocompare-options.php:38
|
38 |
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
msgid "Compare"
|
40 |
msgstr "Compara"
|
41 |
|
42 |
+
#: ../class.yith-woocompare-frontend.php:483
|
43 |
msgid "No products to compare"
|
44 |
msgstr "Nessun prodotto da comparare"
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:493 ../templates/compare.php:102
|
47 |
msgid "Remove"
|
48 |
msgstr "Rimuovi"
|
49 |
|
50 |
#: ../class.yith-woocompare-helper.php:38
|
51 |
+
msgid "Image"
|
52 |
+
msgstr "Immagine"
|
53 |
+
|
54 |
+
#: ../class.yith-woocompare-helper.php:39
|
55 |
#: ../widgets/class.yith-woocompare-widget.php:55
|
56 |
msgid "Title"
|
57 |
msgstr "Titolo"
|
58 |
|
|
|
|
|
|
|
|
|
59 |
#: ../class.yith-woocompare-helper.php:40
|
|
|
|
|
|
|
|
|
60 |
msgid "Price"
|
61 |
msgstr "Prezzo"
|
62 |
|
63 |
+
#: ../class.yith-woocompare-helper.php:41
|
64 |
msgid "Add to cart"
|
65 |
msgstr "Aggiungi al carrello"
|
66 |
|
67 |
+
#: ../class.yith-woocompare-helper.php:42
|
68 |
+
msgid "Description"
|
69 |
+
msgstr "Descrizione"
|
70 |
+
|
71 |
#: ../class.yith-woocompare-helper.php:43
|
72 |
msgid "Availability"
|
73 |
msgstr "Disponibilità"
|
91 |
msgstr "Pulsante"
|
92 |
|
93 |
#: ../yith-woocompare-options.php:35
|
94 |
+
#, fuzzy
|
95 |
+
msgid "Link/Button text"
|
96 |
+
msgstr "Collegamento o Pulsante"
|
97 |
+
|
98 |
+
#: ../yith-woocompare-options.php:36
|
99 |
+
msgid "Type the text to use for the button or the link of the compare."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: ../yith-woocompare-options.php:43
|
103 |
msgid "Show button in single product page"
|
104 |
msgstr "Mostra pulsante nella pagina del dettaglio prodotto"
|
105 |
|
106 |
+
#: ../yith-woocompare-options.php:44
|
107 |
msgid "Say if you want to show the button in the single product page."
|
108 |
msgstr ""
|
109 |
"Scegli se vuoi mostrare il pulsante nella pagina dettaglio del prodotto."
|
110 |
|
111 |
+
#: ../yith-woocompare-options.php:52
|
112 |
msgid "Show button in products list"
|
113 |
msgstr "Mostra pulsante nella lista prodotti"
|
114 |
|
115 |
+
#: ../yith-woocompare-options.php:53
|
116 |
msgid "Say if you want to show the button in the products list."
|
117 |
msgstr "Imposta se vuoi mostrare il pulsante nella lista prodotti."
|
118 |
|
119 |
+
#: ../yith-woocompare-options.php:61
|
120 |
msgid "Open automatically lightbox"
|
121 |
msgstr "Apri la lightbox automaticamente"
|
122 |
|
123 |
+
#: ../yith-woocompare-options.php:62
|
124 |
msgid "Open link after click into \"Compare\" button\"."
|
125 |
msgstr "Apri pagina dopo aver cliccato sul pulsante \"Compare\"."
|
126 |
|
127 |
+
#: ../yith-woocompare-options.php:74
|
128 |
msgid "Table Settings"
|
129 |
msgstr "Impostazioni tabella."
|
130 |
|
131 |
+
#: ../yith-woocompare-options.php:81
|
132 |
msgid "Fields to show"
|
133 |
msgstr "Campi da mostrare"
|
134 |
|
135 |
+
#: ../yith-woocompare-options.php:82 ../yith-woocompare-options.php:91
|
136 |
+
#: ../yith-woocompare-options.php:100
|
137 |
msgid ""
|
138 |
"Select the fields to show in the comparison table and order them by "
|
139 |
"drag&drop (are included also the woocommerce attributes)"
|
141 |
"Seleziona i campi da mostrare nella tabella di comparazione e ordinali "
|
142 |
"attraverso il drag&drop (sono inclusi anche gli attributi di woocommerce)"
|
143 |
|
144 |
+
#: ../yith-woocompare-options.php:90
|
145 |
msgid "Repeat \"Price\" field at the end of the table"
|
146 |
msgstr "Ripeti il campo \"Prezzo\" alla fine della tabella"
|
147 |
|
148 |
+
#: ../yith-woocompare-options.php:99
|
149 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
150 |
msgstr "Ripeti il campo con \"Aggiungi al carrello\" alla fine della tabella"
|
151 |
|
152 |
+
#: ../yith-woocompare-options.php:108
|
153 |
msgid "Image size"
|
154 |
msgstr "Dimensione immagine"
|
155 |
|
156 |
+
#: ../yith-woocompare-options.php:109
|
157 |
msgid "Set the size for the images"
|
158 |
msgstr "Imposta la dimensione per le immagini"
|
159 |
|
183 |
msgid "Clear all"
|
184 |
msgstr "Cancella tutti"
|
185 |
|
186 |
+
#: ../yit-common/yith-panel.php:406
|
187 |
msgid "Select a date"
|
188 |
msgstr "Seleziona data"
|
189 |
|
190 |
+
#: ../yit-common/yith-panel.php:407
|
191 |
msgid "Hours"
|
192 |
msgstr "Ore"
|
193 |
|
194 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
195 |
msgid "Minutes"
|
196 |
msgstr "Minuti"
|
197 |
|
198 |
+
#: ../yit-common/yith-panel.php:417
|
199 |
msgid "Upload"
|
200 |
msgstr "Carica"
|
201 |
|
202 |
+
#: ../yit-common/yith-panel.php:444
|
203 |
msgid "px"
|
204 |
msgstr "px"
|
205 |
|
206 |
+
#: ../yit-common/yith-panel.php:445
|
207 |
msgid "em"
|
208 |
msgstr "em"
|
209 |
|
210 |
+
#: ../yit-common/yith-panel.php:446
|
211 |
msgid "pt"
|
212 |
msgstr "pt"
|
213 |
|
214 |
+
#: ../yit-common/yith-panel.php:447
|
215 |
msgid "rem"
|
216 |
msgstr "rem"
|
217 |
|
218 |
+
#: ../yit-common/yith-panel.php:457
|
219 |
msgid "Select a font family"
|
220 |
msgstr "Seleziona la famiglia font"
|
221 |
|
222 |
+
#: ../yit-common/yith-panel.php:465
|
223 |
msgid "Regular"
|
224 |
msgstr "Normale"
|
225 |
|
226 |
+
#: ../yit-common/yith-panel.php:466
|
227 |
msgid "Bold"
|
228 |
msgstr "Grassetto"
|
229 |
|
230 |
+
#: ../yit-common/yith-panel.php:467
|
231 |
msgid "Extra bold"
|
232 |
msgstr "Extra bold"
|
233 |
|
234 |
+
#: ../yit-common/yith-panel.php:468
|
235 |
msgid "Italic"
|
236 |
msgstr "Corsivo"
|
237 |
|
238 |
+
#: ../yit-common/yith-panel.php:469
|
239 |
msgid "Italic bold"
|
240 |
msgstr "Grassetto corsivo"
|
241 |
|
242 |
+
#: ../yit-common/yith-panel.php:481
|
243 |
msgid "Click to preview"
|
244 |
msgstr "Clicca per anteprima"
|
245 |
|
languages/yit-nl_NL.mo
ADDED
Binary file
|
languages/yit-nl_NL.po
ADDED
@@ -0,0 +1,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 15:58+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 15:58+0100\n"
|
6 |
+
"Last-Translator: Frans Pronk <beheer@ifra.nl>\n"
|
7 |
+
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
+
"Language: English\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.5\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
+
"X-Poedit-Basepath: ./\n"
|
15 |
+
"X-Poedit-SearchPath-0: ..\n"
|
16 |
+
|
17 |
+
#: ../class.yith-woocompare-admin.php:129
|
18 |
+
msgid "Products Compare"
|
19 |
+
msgstr "Product vergelijk"
|
20 |
+
|
21 |
+
#: ../class.yith-woocompare-admin.php:143 ../yith-woocompare-options.php:15
|
22 |
+
msgid "General Settings"
|
23 |
+
msgstr "Algemene instellingen"
|
24 |
+
|
25 |
+
#: ../class.yith-woocompare-frontend.php:142
|
26 |
+
msgid "Added"
|
27 |
+
msgstr "Toegevoegd"
|
28 |
+
|
29 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:47
|
30 |
+
msgid "Product Comparison"
|
31 |
+
msgstr "Product vergelijk"
|
32 |
+
|
33 |
+
#: ../class.yith-woocompare-frontend.php:247
|
34 |
+
msgid "In stock"
|
35 |
+
msgstr "Op voorraad"
|
36 |
+
|
37 |
+
#: ../class.yith-woocompare-frontend.php:330 ../yith-woocompare-options.php:38
|
38 |
+
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
+
msgid "Compare"
|
40 |
+
msgstr "Vergelijk"
|
41 |
+
|
42 |
+
#: ../class.yith-woocompare-frontend.php:483
|
43 |
+
msgid "No products to compare"
|
44 |
+
msgstr "Geen producten om te vergelijken"
|
45 |
+
|
46 |
+
#: ../class.yith-woocompare-frontend.php:493 ../templates/compare.php:102
|
47 |
+
msgid "Remove"
|
48 |
+
msgstr "Verwijder"
|
49 |
+
|
50 |
+
#: ../class.yith-woocompare-helper.php:38
|
51 |
+
msgid "Image"
|
52 |
+
msgstr "Afbeelding"
|
53 |
+
|
54 |
+
#: ../class.yith-woocompare-helper.php:39
|
55 |
+
#: ../widgets/class.yith-woocompare-widget.php:55
|
56 |
+
msgid "Title"
|
57 |
+
msgstr "Titel"
|
58 |
+
|
59 |
+
#: ../class.yith-woocompare-helper.php:40
|
60 |
+
msgid "Price"
|
61 |
+
msgstr "Prijs"
|
62 |
+
|
63 |
+
#: ../class.yith-woocompare-helper.php:41
|
64 |
+
msgid "Add to cart"
|
65 |
+
msgstr "Bestellen"
|
66 |
+
|
67 |
+
#: ../class.yith-woocompare-helper.php:42
|
68 |
+
msgid "Description"
|
69 |
+
msgstr "Omschrijving"
|
70 |
+
|
71 |
+
#: ../class.yith-woocompare-helper.php:43
|
72 |
+
msgid "Availability"
|
73 |
+
msgstr "Beschikbaarheid"
|
74 |
+
|
75 |
+
#: ../yith-woocompare-options.php:22
|
76 |
+
msgid "Link or Button"
|
77 |
+
msgstr "Link of Button"
|
78 |
+
|
79 |
+
#: ../yith-woocompare-options.php:23
|
80 |
+
msgid "Choose if you want to use a link or a button for the action button."
|
81 |
+
msgstr "Kies uit button of link als actie button."
|
82 |
+
|
83 |
+
#: ../yith-woocompare-options.php:29
|
84 |
+
msgid "Link"
|
85 |
+
msgstr "Link"
|
86 |
+
|
87 |
+
#: ../yith-woocompare-options.php:30
|
88 |
+
msgid "Button"
|
89 |
+
msgstr "Button"
|
90 |
+
|
91 |
+
#: ../yith-woocompare-options.php:35
|
92 |
+
#, fuzzy
|
93 |
+
msgid "Link/Button text"
|
94 |
+
msgstr "Link of Button"
|
95 |
+
|
96 |
+
#: ../yith-woocompare-options.php:36
|
97 |
+
msgid "Type the text to use for the button or the link of the compare."
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: ../yith-woocompare-options.php:43
|
101 |
+
msgid "Show button in single product page"
|
102 |
+
msgstr "Toon button op product pagina"
|
103 |
+
|
104 |
+
#: ../yith-woocompare-options.php:44
|
105 |
+
msgid "Say if you want to show the button in the single product page."
|
106 |
+
msgstr "Selecteer wanneer je een button op de product pagina wilt tonen."
|
107 |
+
|
108 |
+
#: ../yith-woocompare-options.php:52
|
109 |
+
msgid "Show button in products list"
|
110 |
+
msgstr "Toon button op producten overzicht"
|
111 |
+
|
112 |
+
#: ../yith-woocompare-options.php:53
|
113 |
+
msgid "Say if you want to show the button in the products list."
|
114 |
+
msgstr ""
|
115 |
+
"Selecteer wanneer een button op de productenoverzichts pagina wilt tonen."
|
116 |
+
|
117 |
+
#: ../yith-woocompare-options.php:61
|
118 |
+
msgid "Open automatically lightbox"
|
119 |
+
msgstr "Open automatisch in lightbox"
|
120 |
+
|
121 |
+
#: ../yith-woocompare-options.php:62
|
122 |
+
msgid "Open link after click into \"Compare\" button\"."
|
123 |
+
msgstr "Open de link direct na aanklikken van \"Vergelijk\" button\"."
|
124 |
+
|
125 |
+
#: ../yith-woocompare-options.php:74
|
126 |
+
msgid "Table Settings"
|
127 |
+
msgstr "Tabel instellingen"
|
128 |
+
|
129 |
+
#: ../yith-woocompare-options.php:81
|
130 |
+
msgid "Fields to show"
|
131 |
+
msgstr "Velden tonen"
|
132 |
+
|
133 |
+
#: ../yith-woocompare-options.php:82 ../yith-woocompare-options.php:91
|
134 |
+
#: ../yith-woocompare-options.php:100
|
135 |
+
msgid ""
|
136 |
+
"Select the fields to show in the comparison table and order them by "
|
137 |
+
"drag&drop (are included also the woocommerce attributes)"
|
138 |
+
msgstr ""
|
139 |
+
"Selecteer de velden die je in de vergelijkings tabel wilt tonen. Sleep ze "
|
140 |
+
"met je muis in de gewenste volgorde."
|
141 |
+
|
142 |
+
#: ../yith-woocompare-options.php:90
|
143 |
+
msgid "Repeat \"Price\" field at the end of the table"
|
144 |
+
msgstr "Toon \"Prijs\" veld aan het einde van de tabel"
|
145 |
+
|
146 |
+
#: ../yith-woocompare-options.php:99
|
147 |
+
msgid "Repeat \"Add to cart\" field at the end of the table"
|
148 |
+
msgstr "Toon \"Bestel\" veld aan het einde van de tabel"
|
149 |
+
|
150 |
+
#: ../yith-woocompare-options.php:108
|
151 |
+
msgid "Image size"
|
152 |
+
msgstr "Afbeelding formaat"
|
153 |
+
|
154 |
+
#: ../yith-woocompare-options.php:109
|
155 |
+
msgid "Set the size for the images"
|
156 |
+
msgstr "Stel afbeeldings formaat in "
|
157 |
+
|
158 |
+
#: ../templates/compare.php:68
|
159 |
+
msgid "Compare products"
|
160 |
+
msgstr "Vergelijk producten"
|
161 |
+
|
162 |
+
#: ../templates/compare.php:69
|
163 |
+
msgid "Close window [X]"
|
164 |
+
msgstr "Sluit venster [X]"
|
165 |
+
|
166 |
+
#: ../templates/compare.php:94
|
167 |
+
msgid "No products added in the compare table."
|
168 |
+
msgstr "Geen producten toegevoegd in de vergelijk tabel."
|
169 |
+
|
170 |
+
#: ../widgets/class.yith-woocompare-widget.php:21
|
171 |
+
msgid "The widget show the list of products added in the compare table."
|
172 |
+
msgstr "Deze widget toont een lijst met producten in een vergelijkings tabel."
|
173 |
+
|
174 |
+
#: ../widgets/class.yith-woocompare-widget.php:22
|
175 |
+
msgid "YITH Woocommerce Compare Widget"
|
176 |
+
msgstr "Een YITH Woocommerce Vergelijk Widget"
|
177 |
+
|
178 |
+
#: ../widgets/class.yith-woocompare-widget.php:37
|
179 |
+
msgid "Clear all"
|
180 |
+
msgstr "Wis alles"
|
181 |
+
|
182 |
+
#: ../yit-common/yith-panel.php:406
|
183 |
+
msgid "Select a date"
|
184 |
+
msgstr "Selecteer een datum"
|
185 |
+
|
186 |
+
#: ../yit-common/yith-panel.php:407
|
187 |
+
msgid "Hours"
|
188 |
+
msgstr "Uren"
|
189 |
+
|
190 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
191 |
+
msgid "Minutes"
|
192 |
+
msgstr "Minuten"
|
193 |
+
|
194 |
+
#: ../yit-common/yith-panel.php:417
|
195 |
+
msgid "Upload"
|
196 |
+
msgstr "Upload"
|
197 |
+
|
198 |
+
#: ../yit-common/yith-panel.php:444
|
199 |
+
msgid "px"
|
200 |
+
msgstr "px"
|
201 |
+
|
202 |
+
#: ../yit-common/yith-panel.php:445
|
203 |
+
msgid "em"
|
204 |
+
msgstr "em"
|
205 |
+
|
206 |
+
#: ../yit-common/yith-panel.php:446
|
207 |
+
msgid "pt"
|
208 |
+
msgstr "pt"
|
209 |
+
|
210 |
+
#: ../yit-common/yith-panel.php:447
|
211 |
+
msgid "rem"
|
212 |
+
msgstr "rem"
|
213 |
+
|
214 |
+
#: ../yit-common/yith-panel.php:457
|
215 |
+
msgid "Select a font family"
|
216 |
+
msgstr "Kies een font type"
|
217 |
+
|
218 |
+
#: ../yit-common/yith-panel.php:465
|
219 |
+
msgid "Regular"
|
220 |
+
msgstr "Normaal"
|
221 |
+
|
222 |
+
#: ../yit-common/yith-panel.php:466
|
223 |
+
msgid "Bold"
|
224 |
+
msgstr "Vet"
|
225 |
+
|
226 |
+
#: ../yit-common/yith-panel.php:467
|
227 |
+
msgid "Extra bold"
|
228 |
+
msgstr "Extra vet"
|
229 |
+
|
230 |
+
#: ../yit-common/yith-panel.php:468
|
231 |
+
msgid "Italic"
|
232 |
+
msgstr "Cursief"
|
233 |
+
|
234 |
+
#: ../yit-common/yith-panel.php:469
|
235 |
+
msgid "Italic bold"
|
236 |
+
msgstr "Cursief vet"
|
237 |
+
|
238 |
+
#: ../yit-common/yith-panel.php:481
|
239 |
+
msgid "Click to preview"
|
240 |
+
msgstr "Klik voor voorvertoning"
|
languages/yit.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date: 2013-
|
5 |
-
"PO-Revision-Date: 2013-
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,58 +14,58 @@ 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:
|
26 |
msgid "Added"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:
|
30 |
msgid "Product Comparison"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../class.yith-woocompare-frontend.php:
|
34 |
msgid "In stock"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: ../class.yith-woocompare-frontend.php:
|
38 |
#: ../widgets/class.yith-woocompare-widget.php:38
|
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:38
|
51 |
-
|
52 |
-
msgid "Title"
|
53 |
msgstr ""
|
54 |
|
55 |
#: ../class.yith-woocompare-helper.php:39
|
56 |
-
|
|
|
57 |
msgstr ""
|
58 |
|
59 |
#: ../class.yith-woocompare-helper.php:40
|
60 |
-
msgid "
|
61 |
msgstr ""
|
62 |
|
63 |
#: ../class.yith-woocompare-helper.php:41
|
64 |
-
msgid "
|
65 |
msgstr ""
|
66 |
|
67 |
#: ../class.yith-woocompare-helper.php:42
|
68 |
-
msgid "
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../class.yith-woocompare-helper.php:43
|
@@ -89,57 +89,65 @@ msgid "Button"
|
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../yith-woocompare-options.php:35
|
92 |
-
msgid "
|
93 |
msgstr ""
|
94 |
|
95 |
#: ../yith-woocompare-options.php:36
|
96 |
-
msgid "
|
|
|
|
|
|
|
|
|
97 |
msgstr ""
|
98 |
|
99 |
#: ../yith-woocompare-options.php:44
|
|
|
|
|
|
|
|
|
100 |
msgid "Show button in products list"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../yith-woocompare-options.php:
|
104 |
msgid "Say if you want to show the button in the products list."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../yith-woocompare-options.php:
|
108 |
msgid "Open automatically lightbox"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../yith-woocompare-options.php:
|
112 |
msgid "Open link after click into \"Compare\" button\"."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../yith-woocompare-options.php:
|
116 |
msgid "Table Settings"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../yith-woocompare-options.php:
|
120 |
msgid "Fields to show"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../yith-woocompare-options.php:
|
124 |
-
#: ../yith-woocompare-options.php:
|
125 |
msgid ""
|
126 |
"Select the fields to show in the comparison table and order them by "
|
127 |
"drag&drop (are included also the woocommerce attributes)"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../yith-woocompare-options.php:
|
131 |
msgid "Repeat \"Price\" field at the end of the table"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../yith-woocompare-options.php:
|
135 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../yith-woocompare-options.php:
|
139 |
msgid "Image size"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: ../yith-woocompare-options.php:
|
143 |
msgid "Set the size for the images"
|
144 |
msgstr ""
|
145 |
|
@@ -167,62 +175,62 @@ msgstr ""
|
|
167 |
msgid "Clear all"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../yit-common/yith-panel.php:
|
171 |
msgid "Select a date"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ../yit-common/yith-panel.php:
|
175 |
msgid "Hours"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ../yit-common/yith-panel.php:
|
179 |
msgid "Minutes"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../yit-common/yith-panel.php:
|
183 |
msgid "Upload"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../yit-common/yith-panel.php:
|
187 |
msgid "px"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../yit-common/yith-panel.php:
|
191 |
msgid "em"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../yit-common/yith-panel.php:
|
195 |
msgid "pt"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../yit-common/yith-panel.php:
|
199 |
msgid "rem"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../yit-common/yith-panel.php:
|
203 |
msgid "Select a font family"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../yit-common/yith-panel.php:
|
207 |
msgid "Regular"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: ../yit-common/yith-panel.php:
|
211 |
msgid "Bold"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../yit-common/yith-panel.php:
|
215 |
msgid "Extra bold"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../yit-common/yith-panel.php:
|
219 |
msgid "Italic"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../yit-common/yith-panel.php:
|
223 |
msgid "Italic bold"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../yit-common/yith-panel.php:
|
227 |
msgid "Click to preview"
|
228 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2013-09-04 15:57+0100\n"
|
5 |
+
"PO-Revision-Date: 2013-09-04 15:57+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:129
|
18 |
msgid "Products Compare"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: ../class.yith-woocompare-admin.php:143 ../yith-woocompare-options.php:15
|
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:47
|
30 |
msgid "Product Comparison"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:247
|
34 |
msgid "In stock"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-woocompare-frontend.php:330 ../yith-woocompare-options.php:38
|
38 |
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
msgid "Compare"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: ../class.yith-woocompare-frontend.php:483
|
43 |
msgid "No products to compare"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:493 ../templates/compare.php:102
|
47 |
msgid "Remove"
|
48 |
msgstr ""
|
49 |
|
50 |
#: ../class.yith-woocompare-helper.php:38
|
51 |
+
msgid "Image"
|
|
|
52 |
msgstr ""
|
53 |
|
54 |
#: ../class.yith-woocompare-helper.php:39
|
55 |
+
#: ../widgets/class.yith-woocompare-widget.php:55
|
56 |
+
msgid "Title"
|
57 |
msgstr ""
|
58 |
|
59 |
#: ../class.yith-woocompare-helper.php:40
|
60 |
+
msgid "Price"
|
61 |
msgstr ""
|
62 |
|
63 |
#: ../class.yith-woocompare-helper.php:41
|
64 |
+
msgid "Add to cart"
|
65 |
msgstr ""
|
66 |
|
67 |
#: ../class.yith-woocompare-helper.php:42
|
68 |
+
msgid "Description"
|
69 |
msgstr ""
|
70 |
|
71 |
#: ../class.yith-woocompare-helper.php:43
|
89 |
msgstr ""
|
90 |
|
91 |
#: ../yith-woocompare-options.php:35
|
92 |
+
msgid "Link/Button text"
|
93 |
msgstr ""
|
94 |
|
95 |
#: ../yith-woocompare-options.php:36
|
96 |
+
msgid "Type the text to use for the button or the link of the compare."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: ../yith-woocompare-options.php:43
|
100 |
+
msgid "Show button in single product page"
|
101 |
msgstr ""
|
102 |
|
103 |
#: ../yith-woocompare-options.php:44
|
104 |
+
msgid "Say if you want to show the button in the single product page."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: ../yith-woocompare-options.php:52
|
108 |
msgid "Show button in products list"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../yith-woocompare-options.php:53
|
112 |
msgid "Say if you want to show the button in the products list."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../yith-woocompare-options.php:61
|
116 |
msgid "Open automatically lightbox"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../yith-woocompare-options.php:62
|
120 |
msgid "Open link after click into \"Compare\" button\"."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../yith-woocompare-options.php:74
|
124 |
msgid "Table Settings"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../yith-woocompare-options.php:81
|
128 |
msgid "Fields to show"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: ../yith-woocompare-options.php:82 ../yith-woocompare-options.php:91
|
132 |
+
#: ../yith-woocompare-options.php:100
|
133 |
msgid ""
|
134 |
"Select the fields to show in the comparison table and order them by "
|
135 |
"drag&drop (are included also the woocommerce attributes)"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../yith-woocompare-options.php:90
|
139 |
msgid "Repeat \"Price\" field at the end of the table"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../yith-woocompare-options.php:99
|
143 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../yith-woocompare-options.php:108
|
147 |
msgid "Image size"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../yith-woocompare-options.php:109
|
151 |
msgid "Set the size for the images"
|
152 |
msgstr ""
|
153 |
|
175 |
msgid "Clear all"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../yit-common/yith-panel.php:406
|
179 |
msgid "Select a date"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: ../yit-common/yith-panel.php:407
|
183 |
msgid "Hours"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
187 |
msgid "Minutes"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../yit-common/yith-panel.php:417
|
191 |
msgid "Upload"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../yit-common/yith-panel.php:444
|
195 |
msgid "px"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../yit-common/yith-panel.php:445
|
199 |
msgid "em"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../yit-common/yith-panel.php:446
|
203 |
msgid "pt"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../yit-common/yith-panel.php:447
|
207 |
msgid "rem"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../yit-common/yith-panel.php:457
|
211 |
msgid "Select a font family"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../yit-common/yith-panel.php:465
|
215 |
msgid "Regular"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../yit-common/yith-panel.php:466
|
219 |
msgid "Bold"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../yit-common/yith-panel.php:467
|
223 |
msgid "Extra bold"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../yit-common/yith-panel.php:468
|
227 |
msgid "Italic"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../yit-common/yith-panel.php:469
|
231 |
msgid "Italic bold"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../yit-common/yith-panel.php:481
|
235 |
msgid "Click to preview"
|
236 |
msgstr ""
|
templates/compare.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
-
* @version 1.0.
|
8 |
*/
|
9 |
|
10 |
global $product;
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
+
* @version 1.0.4
|
8 |
*/
|
9 |
|
10 |
global $product;
|
widgets/class.yith-woocompare-widget.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Ajax Navigation
|
7 |
-
* @version 1.0.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Ajax Navigation
|
7 |
+
* @version 1.0.4
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
yith-woocompare-options.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
-
* @version 1.0.
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
+
* @version 1.0.4
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|