Version Description
- Added: Support to WooCommerce 2.1.X
- Added: French translation by Paumo
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Compare |
Version | 1.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.0.5 to 1.1.0
- README.txt +8 -2
- class.yith-woocompare-admin.php +14 -4
- class.yith-woocompare-frontend.php +18 -5
- class.yith-woocompare-helper.php +21 -7
- class.yith-woocompare.php +1 -1
- functions.yith-woocompare.php +1 -1
- init.php +3 -3
- languages/default.po +27 -19
- languages/yit-fa_IR.mo +0 -0
- languages/yit-fa_IR.po +28 -20
- languages/yit-fr_FR.mo +0 -0
- languages/yit-fr_FR.po +246 -0
- languages/yit-it_IT.mo +0 -0
- languages/yit-it_IT.po +28 -21
- languages/yit-nl_NL.mo +0 -0
- languages/yit-nl_NL.po +77 -62
- languages/yit-pt_BR.mo +0 -0
- languages/yit-pt_BR.po +247 -239
- languages/yit.pot +27 -19
- templates/compare.php +6 -3
- widgets/class.yith-woocompare-widget.php +1 -1
- yith-woocompare-options.php +1 -1
README.txt
CHANGED
@@ -3,12 +3,13 @@
|
|
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 |
|
11 |
YITH WooCommerce Compare allows you to compare more products of your shop in one complete table.
|
|
|
12 |
|
13 |
|
14 |
== Description ==
|
@@ -82,6 +83,11 @@ Yes, you can sort the fields in the compare table. You can do it in Woocommerce
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
|
|
|
|
85 |
= 1.0.5 =
|
86 |
|
87 |
* Added: Persian translation by Khalil Delavaran
|
3 |
Contributors: yithemes
|
4 |
Tags: woocommerce, compare, compare products, product compare, widget
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 3.8.1
|
7 |
+
Stable tag: 1.1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
YITH WooCommerce Compare allows you to compare more products of your shop in one complete table.
|
12 |
+
WooCommerce Compatible up to 2.1.x
|
13 |
|
14 |
|
15 |
== Description ==
|
83 |
|
84 |
== Changelog ==
|
85 |
|
86 |
+
= 1.1.0 =
|
87 |
+
|
88 |
+
* Added: Support to WooCommerce 2.1.X
|
89 |
+
* Added: French translation by Paumo
|
90 |
+
|
91 |
= 1.0.5 =
|
92 |
|
93 |
* Added: Persian translation by Khalil Delavaran
|
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
|
@@ -84,7 +84,7 @@ class YITH_Woocompare_Admin {
|
|
84 |
add_action( 'woocommerce_update_option_attributes', array( $this, 'admin_update_option' ) );
|
85 |
|
86 |
//Filters
|
87 |
-
add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_tab_woocommerce' ) );
|
88 |
|
89 |
// YITH WCWL Loaded
|
90 |
do_action( 'yith_woocompare_loaded' );
|
@@ -318,6 +318,16 @@ class YITH_Woocompare_Admin {
|
|
318 |
* @since 1.0.0
|
319 |
*/
|
320 |
public function admin_update_option($value) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
if ( $value['type'] == 'attributes' ) {
|
322 |
//$fields = array_merge( $this->default_fields, YITH_Woocompare_Helper::attribute_taxonomies() );
|
323 |
$val = array();
|
@@ -329,7 +339,7 @@ class YITH_Woocompare_Admin {
|
|
329 |
//yith_debug($val);die;
|
330 |
update_option( $value['id'], $val );
|
331 |
} else {
|
332 |
-
update_option( $value['id'],
|
333 |
}
|
334 |
}
|
335 |
|
@@ -395,7 +405,7 @@ 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 |
-
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 |
}
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Magnifier
|
7 |
+
* @version 1.1.0
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
84 |
add_action( 'woocommerce_update_option_attributes', array( $this, 'admin_update_option' ) );
|
85 |
|
86 |
//Filters
|
87 |
+
add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_tab_woocommerce' ), 30 );
|
88 |
|
89 |
// YITH WCWL Loaded
|
90 |
do_action( 'yith_woocompare_loaded' );
|
318 |
* @since 1.0.0
|
319 |
*/
|
320 |
public function admin_update_option($value) {
|
321 |
+
|
322 |
+
global $woocommerce;
|
323 |
+
|
324 |
+
if ( version_compare( preg_replace( '/-beta-([0-9]+)/', '', $woocommerce->version ), '2.1', '<' ) ) {
|
325 |
+
$wc_clean = 'woocommerce_clean';
|
326 |
+
}
|
327 |
+
else {
|
328 |
+
$wc_clean = 'wc_clean';
|
329 |
+
}
|
330 |
+
|
331 |
if ( $value['type'] == 'attributes' ) {
|
332 |
//$fields = array_merge( $this->default_fields, YITH_Woocompare_Helper::attribute_taxonomies() );
|
333 |
$val = array();
|
339 |
//yith_debug($val);die;
|
340 |
update_option( $value['id'], $val );
|
341 |
} else {
|
342 |
+
update_option( $value['id'], $wc_clean($_POST[$value['id']]) );
|
343 |
}
|
344 |
}
|
345 |
|
405 |
wp_enqueue_script( 'jquery-ui-slider' );
|
406 |
wp_enqueue_script( 'jquery-ui-sortable' );
|
407 |
|
408 |
+
if( isset( $_GET['page'] ) && ( $_GET['page'] == 'woocommerce_settings' || $_GET['page'] == 'wc-settings' ) && isset( $_GET['tab'] ) && $_GET['tab'] == 'yith_woocompare' ) {
|
409 |
wp_enqueue_style( 'yith_woocompare_admin', YITH_WOOCOMPARE_URL . 'assets/css/admin.css' );
|
410 |
wp_enqueue_script( 'woocompare', YITH_WOOCOMPARE_URL . 'assets/js/woocompare-admin.js', array( 'jquery', 'jquery-ui-sortable' ) );
|
411 |
}
|
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
|
@@ -198,8 +198,15 @@ if( !class_exists( 'YITH_Woocompare_Frontend' ) ) {
|
|
198 |
remove_action( 'wp_head', '_admin_bar_bump_cb' );
|
199 |
|
200 |
$plugin_path = plugin_dir_path(__FILE__) . 'templates/' . $this->template_file;
|
201 |
-
|
202 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
|
204 |
foreach ( array( 'child_path', 'template_path', 'plugin_path' ) as $var ) {
|
205 |
if ( file_exists( ${$var} ) ) {
|
@@ -337,10 +344,16 @@ if( !class_exists( 'YITH_Woocompare_Frontend' ) ) {
|
|
337 |
global $woocommerce;
|
338 |
|
339 |
$filename = 'compare.css';
|
|
|
340 |
$plugin_path = array( 'path' => plugin_dir_path(__FILE__) . 'assets/css/style.css', 'url' => YITH_WOOCOMPARE_URL . 'assets/css/style.css' );
|
341 |
-
$template_path = array( 'path' => get_template_directory() . '/' . $woocommerce->template_url . $filename, 'url' => get_template_directory_uri() . '/' . $woocommerce->template_url . $filename );
|
342 |
-
$child_path = array( 'path' => get_stylesheet_directory() . '/' . $woocommerce->template_url . $filename, 'url' => get_stylesheet_directory_uri() . '/' . $woocommerce->template_url . $filename );
|
343 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
foreach ( array( 'child_path', 'template_path', 'plugin_path' ) as $var ) {
|
345 |
if ( file_exists( ${$var}['path'] ) ) {
|
346 |
return ${$var}['url'];
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
+
* @version 1.1.0
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
198 |
remove_action( 'wp_head', '_admin_bar_bump_cb' );
|
199 |
|
200 |
$plugin_path = plugin_dir_path(__FILE__) . 'templates/' . $this->template_file;
|
201 |
+
|
202 |
+
if ( defined('WC_TEMPLATE_PATH') ) {
|
203 |
+
|
204 |
+
$template_path = get_template_directory() . '/' . WC_TEMPLATE_PATH . $this->template_file;
|
205 |
+
$child_path = get_stylesheet_directory() . '/' .WC_TEMPLATE_PATH . $this->template_file;
|
206 |
+
}else{
|
207 |
+
$template_path = get_template_directory() . '/' . $woocommerce->template_url . $this->template_file;
|
208 |
+
$child_path = get_stylesheet_directory() . '/' . $woocommerce->template_url . $this->template_file;
|
209 |
+
}
|
210 |
|
211 |
foreach ( array( 'child_path', 'template_path', 'plugin_path' ) as $var ) {
|
212 |
if ( file_exists( ${$var} ) ) {
|
344 |
global $woocommerce;
|
345 |
|
346 |
$filename = 'compare.css';
|
347 |
+
|
348 |
$plugin_path = array( 'path' => plugin_dir_path(__FILE__) . 'assets/css/style.css', 'url' => YITH_WOOCOMPARE_URL . 'assets/css/style.css' );
|
|
|
|
|
349 |
|
350 |
+
if ( defined('WC_TEMPLATE_PATH') ) {
|
351 |
+
$template_path = array( 'path' => get_template_directory() . '/' . WC_TEMPLATE_PATH . $filename, 'url' => get_template_directory_uri() . '/' . WC_TEMPLATE_PATH . $filename );
|
352 |
+
$child_path = array( 'path' => get_stylesheet_directory() . '/' . WC_TEMPLATE_PATH . $filename, 'url' => get_stylesheet_directory_uri() . '/' . WC_TEMPLATE_PATH . $filename );
|
353 |
+
}else{
|
354 |
+
$template_path = array( 'path' => get_template_directory() . '/' . $woocommerce->template_url . $filename, 'url' => get_template_directory_uri() . '/' . $woocommerce->template_url . $filename );
|
355 |
+
$child_path = array( 'path' => get_stylesheet_directory() . '/' . $woocommerce->template_url . $filename, 'url' => get_stylesheet_directory_uri() . '/' . $woocommerce->template_url . $filename );
|
356 |
+
}
|
357 |
foreach ( array( 'child_path', 'template_path', 'plugin_path' ) as $var ) {
|
358 |
if ( file_exists( ${$var}['path'] ) ) {
|
359 |
return ${$var}['url'];
|
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
|
@@ -56,16 +56,30 @@ if( !class_exists( 'YITH_Woocompare_Helper' ) ) {
|
|
56 |
if ( ! isset( $woocommerce ) ) return array();
|
57 |
|
58 |
$attributes = array();
|
59 |
-
$attribute_taxonomies = $woocommerce->get_attribute_taxonomies();
|
60 |
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
}
|
67 |
}
|
68 |
|
|
|
69 |
return $attributes;
|
70 |
}
|
71 |
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH WooCommerce Compare
|
7 |
+
* @version 1.1.0
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|
56 |
if ( ! isset( $woocommerce ) ) return array();
|
57 |
|
58 |
$attributes = array();
|
|
|
59 |
|
60 |
+
|
61 |
+
|
62 |
+
if( function_exists( 'wc_get_attribute_taxonomies' ) && function_exists( 'wc_attribute_taxonomy_name' ) ) {
|
63 |
+
$attribute_taxonomies = wc_get_attribute_taxonomies();
|
64 |
+
if( empty( $attribute_taxonomies ) ) return array();
|
65 |
+
foreach( $attribute_taxonomies as $attribute ) {
|
66 |
+
$tax = wc_attribute_taxonomy_name( $attribute->attribute_name );
|
67 |
+
if ( taxonomy_exists( $tax ) ) {
|
68 |
+
$attributes[$tax] = ucfirst( $attribute->attribute_name );
|
69 |
+
}
|
70 |
+
}
|
71 |
+
}else{
|
72 |
+
$attribute_taxonomies = $woocommerce->get_attribute_taxonomies();
|
73 |
+
if( empty( $attribute_taxonomies ) ) return array();
|
74 |
+
foreach( $attribute_taxonomies as $attribute ) {
|
75 |
+
$tax = $woocommerce->attribute_taxonomy_name( $attribute->attribute_name );
|
76 |
+
if ( taxonomy_exists( $tax ) ) {
|
77 |
+
$attributes[$tax] = ucfirst( $attribute->attribute_name );
|
78 |
+
}
|
79 |
}
|
80 |
}
|
81 |
|
82 |
+
|
83 |
return $attributes;
|
84 |
}
|
85 |
|
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.1.0
|
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.1.0
|
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.1.0
|
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.1.0
|
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.1.0' );
|
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:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -26,24 +26,24 @@ msgstr ""
|
|
26 |
msgid "Added"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.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 |
|
@@ -125,41 +125,49 @@ 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:
|
132 |
-
#: ../yith-woocompare-options.php:
|
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:
|
139 |
msgid "Repeat \"Price\" field at the end of the table"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: ../yith-woocompare-options.php:
|
143 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: ../yith-woocompare-options.php:
|
147 |
msgid "Image size"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../yith-woocompare-options.php:
|
151 |
msgid "Set the size for the images"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../templates/compare.php:
|
155 |
-
msgid "Compare products"
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: ../templates/compare.php:69
|
159 |
msgid "Close window [X]"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../templates/compare.php:
|
163 |
msgid "No products added in the compare table."
|
164 |
msgstr ""
|
165 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-02-13 09:30+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-13 09:30+0100\n"
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
26 |
msgid "Added"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:50
|
30 |
msgid "Product Comparison"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:254
|
34 |
msgid "In stock"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-woocompare-frontend.php:337 ../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:496
|
43 |
msgid "No products to compare"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:506 ../templates/compare.php:105
|
47 |
msgid "Remove"
|
48 |
msgstr ""
|
49 |
|
125 |
msgstr ""
|
126 |
|
127 |
#: ../yith-woocompare-options.php:81
|
128 |
+
msgid "Table title"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: ../yith-woocompare-options.php:82
|
132 |
+
msgid "Type the text to use for the table title."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../yith-woocompare-options.php:84
|
136 |
+
msgid "Compare products"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: ../yith-woocompare-options.php:89
|
140 |
msgid "Fields to show"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../yith-woocompare-options.php:90 ../yith-woocompare-options.php:99
|
144 |
+
#: ../yith-woocompare-options.php:108
|
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:98
|
151 |
msgid "Repeat \"Price\" field at the end of the table"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: ../yith-woocompare-options.php:107
|
155 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: ../yith-woocompare-options.php:116
|
159 |
msgid "Image size"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../yith-woocompare-options.php:117
|
163 |
msgid "Set the size for the images"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../templates/compare.php:72
|
|
|
|
|
|
|
|
|
167 |
msgid "Close window [X]"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../templates/compare.php:97
|
171 |
msgid "No products added in the compare table."
|
172 |
msgstr ""
|
173 |
|
languages/yit-fa_IR.mo
CHANGED
Binary file
|
languages/yit-fa_IR.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
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.
|
13 |
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
@@ -26,24 +26,24 @@ msgstr "پیکربندی همگانی"
|
|
26 |
msgid "Added"
|
27 |
msgstr "اضافه شد"
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.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 |
|
@@ -125,11 +125,23 @@ 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:
|
132 |
-
#: ../yith-woocompare-options.php:
|
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)"
|
@@ -137,31 +149,27 @@ msgstr ""
|
|
137 |
"انتخاب این گزینه برای نشان دادن در جدول سنجش و سفارش سازی آنها با کشیدن و "
|
138 |
"رها کردن دکمه ماوس (ویژگی های ووکامرس را شامل می شود)"
|
139 |
|
140 |
-
#: ../yith-woocompare-options.php:
|
141 |
msgid "Repeat \"Price\" field at the end of the table"
|
142 |
msgstr "تکرار گزینه \"قیمت\" در پایان جدول"
|
143 |
|
144 |
-
#: ../yith-woocompare-options.php:
|
145 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
146 |
msgstr "تکرار گزینه \"افزودن به سبد خرید\" در پایان جدول"
|
147 |
|
148 |
-
#: ../yith-woocompare-options.php:
|
149 |
msgid "Image size"
|
150 |
msgstr "اندازه نگاره"
|
151 |
|
152 |
-
#: ../yith-woocompare-options.php:
|
153 |
msgid "Set the size for the images"
|
154 |
msgstr "تعیین اندازه برای نگاره"
|
155 |
|
156 |
-
#: ../templates/compare.php:
|
157 |
-
msgid "Compare products"
|
158 |
-
msgstr "سنجش محصولات"
|
159 |
-
|
160 |
-
#: ../templates/compare.php:69
|
161 |
msgid "Close window [X]"
|
162 |
msgstr "بستن پنجره [X]"
|
163 |
|
164 |
-
#: ../templates/compare.php:
|
165 |
msgid "No products added in the compare table."
|
166 |
msgstr "هیچ محصولی افزوده نشده است برای جدول سنجش"
|
167 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-02-13 09:30+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-13 09:30+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"
|
26 |
msgid "Added"
|
27 |
msgstr "اضافه شد"
|
28 |
|
29 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:50
|
30 |
msgid "Product Comparison"
|
31 |
msgstr "سنجش محصولات"
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:254
|
34 |
msgid "In stock"
|
35 |
msgstr "داشتن در انبار"
|
36 |
|
37 |
+
#: ../class.yith-woocompare-frontend.php:337 ../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:496
|
43 |
msgid "No products to compare"
|
44 |
msgstr "محصولاتی برای سنجش نیست"
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:506 ../templates/compare.php:105
|
47 |
msgid "Remove"
|
48 |
msgstr "پاک"
|
49 |
|
125 |
msgstr "پیکربندی جدول"
|
126 |
|
127 |
#: ../yith-woocompare-options.php:81
|
128 |
+
msgid "Table title"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: ../yith-woocompare-options.php:82
|
132 |
+
msgid "Type the text to use for the table title."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../yith-woocompare-options.php:84
|
136 |
+
msgid "Compare products"
|
137 |
+
msgstr "سنجش محصولات"
|
138 |
+
|
139 |
+
#: ../yith-woocompare-options.php:89
|
140 |
msgid "Fields to show"
|
141 |
msgstr "فیلدهای نمایش"
|
142 |
|
143 |
+
#: ../yith-woocompare-options.php:90 ../yith-woocompare-options.php:99
|
144 |
+
#: ../yith-woocompare-options.php:108
|
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)"
|
149 |
"انتخاب این گزینه برای نشان دادن در جدول سنجش و سفارش سازی آنها با کشیدن و "
|
150 |
"رها کردن دکمه ماوس (ویژگی های ووکامرس را شامل می شود)"
|
151 |
|
152 |
+
#: ../yith-woocompare-options.php:98
|
153 |
msgid "Repeat \"Price\" field at the end of the table"
|
154 |
msgstr "تکرار گزینه \"قیمت\" در پایان جدول"
|
155 |
|
156 |
+
#: ../yith-woocompare-options.php:107
|
157 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
158 |
msgstr "تکرار گزینه \"افزودن به سبد خرید\" در پایان جدول"
|
159 |
|
160 |
+
#: ../yith-woocompare-options.php:116
|
161 |
msgid "Image size"
|
162 |
msgstr "اندازه نگاره"
|
163 |
|
164 |
+
#: ../yith-woocompare-options.php:117
|
165 |
msgid "Set the size for the images"
|
166 |
msgstr "تعیین اندازه برای نگاره"
|
167 |
|
168 |
+
#: ../templates/compare.php:72
|
|
|
|
|
|
|
|
|
169 |
msgid "Close window [X]"
|
170 |
msgstr "بستن پنجره [X]"
|
171 |
|
172 |
+
#: ../templates/compare.php:97
|
173 |
msgid "No products added in the compare table."
|
174 |
msgstr "هیچ محصولی افزوده نشده است برای جدول سنجش"
|
175 |
|
languages/yit-fr_FR.mo
ADDED
Binary file
|
languages/yit-fr_FR.po
ADDED
@@ -0,0 +1,246 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-02-13 09:30+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-13 09:30+0100\n"
|
6 |
+
"Last-Translator: YIThemes <support@yithemes.com>\n"
|
7 |
+
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
+
"Language: English\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.5\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
+
"X-Poedit-Basepath: ./\n"
|
15 |
+
"X-Poedit-SearchPath-0: ..\n"
|
16 |
+
|
17 |
+
#: ../class.yith-woocompare-admin.php:129
|
18 |
+
msgid "Products Compare"
|
19 |
+
msgstr "Comparaison de produits"
|
20 |
+
|
21 |
+
#: ../class.yith-woocompare-admin.php:143 ../yith-woocompare-options.php:15
|
22 |
+
msgid "General Settings"
|
23 |
+
msgstr "Réglages"
|
24 |
+
|
25 |
+
#: ../class.yith-woocompare-frontend.php:142
|
26 |
+
msgid "Added"
|
27 |
+
msgstr "Ajouté"
|
28 |
+
|
29 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:50
|
30 |
+
msgid "Product Comparison"
|
31 |
+
msgstr "Comparaison de produits"
|
32 |
+
|
33 |
+
#: ../class.yith-woocompare-frontend.php:254
|
34 |
+
msgid "In stock"
|
35 |
+
msgstr "En stock"
|
36 |
+
|
37 |
+
#: ../class.yith-woocompare-frontend.php:337 ../yith-woocompare-options.php:38
|
38 |
+
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
+
msgid "Compare"
|
40 |
+
msgstr "Comparer"
|
41 |
+
|
42 |
+
#: ../class.yith-woocompare-frontend.php:496
|
43 |
+
msgid "No products to compare"
|
44 |
+
msgstr "Aucun produits à comparer"
|
45 |
+
|
46 |
+
#: ../class.yith-woocompare-frontend.php:506 ../templates/compare.php:105
|
47 |
+
msgid "Remove"
|
48 |
+
msgstr "Retirer"
|
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 "Titre"
|
58 |
+
|
59 |
+
#: ../class.yith-woocompare-helper.php:40
|
60 |
+
msgid "Price"
|
61 |
+
msgstr "Prix"
|
62 |
+
|
63 |
+
#: ../class.yith-woocompare-helper.php:41
|
64 |
+
msgid "Add to cart"
|
65 |
+
msgstr "Ajouter au panier"
|
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 "Disponibilité"
|
74 |
+
|
75 |
+
#: ../yith-woocompare-options.php:22
|
76 |
+
msgid "Link or Button"
|
77 |
+
msgstr "Lien ou bouton"
|
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 "utiliser un lien ou un bouton"
|
82 |
+
|
83 |
+
#: ../yith-woocompare-options.php:29
|
84 |
+
msgid "Link"
|
85 |
+
msgstr "lien"
|
86 |
+
|
87 |
+
#: ../yith-woocompare-options.php:30
|
88 |
+
msgid "Button"
|
89 |
+
msgstr "bouton"
|
90 |
+
|
91 |
+
#: ../yith-woocompare-options.php:35
|
92 |
+
msgid "Link/Button text"
|
93 |
+
msgstr "texte du lien ou bouton"
|
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 "inscriver le texte pour le bouton ou le lien pour comparer"
|
98 |
+
|
99 |
+
#: ../yith-woocompare-options.php:43
|
100 |
+
msgid "Show button in single product page"
|
101 |
+
msgstr "montrer le bouton sur page produit"
|
102 |
+
|
103 |
+
#: ../yith-woocompare-options.php:44
|
104 |
+
msgid "Say if you want to show the button in the single product page."
|
105 |
+
msgstr "dites si vous souhaitez montrer le bouton sur page produit"
|
106 |
+
|
107 |
+
#: ../yith-woocompare-options.php:52
|
108 |
+
msgid "Show button in products list"
|
109 |
+
msgstr "montrer le bouton sur liste de produit"
|
110 |
+
|
111 |
+
#: ../yith-woocompare-options.php:53
|
112 |
+
msgid "Say if you want to show the button in the products list."
|
113 |
+
msgstr "dites si vous souhaitez montrer le bouton sur liste de produit"
|
114 |
+
|
115 |
+
#: ../yith-woocompare-options.php:61
|
116 |
+
msgid "Open automatically lightbox"
|
117 |
+
msgstr "ouverture lightbox auto"
|
118 |
+
|
119 |
+
#: ../yith-woocompare-options.php:62
|
120 |
+
msgid "Open link after click into \"Compare\" button\"."
|
121 |
+
msgstr "ouvrir lien apres le click sur bouton"
|
122 |
+
|
123 |
+
#: ../yith-woocompare-options.php:74
|
124 |
+
msgid "Table Settings"
|
125 |
+
msgstr "reglages panneau"
|
126 |
+
|
127 |
+
#: ../yith-woocompare-options.php:81
|
128 |
+
msgid "Table title"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: ../yith-woocompare-options.php:82
|
132 |
+
msgid "Type the text to use for the table title."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../yith-woocompare-options.php:84
|
136 |
+
msgid "Compare products"
|
137 |
+
msgstr "Comparer les produits"
|
138 |
+
|
139 |
+
#: ../yith-woocompare-options.php:89
|
140 |
+
msgid "Fields to show"
|
141 |
+
msgstr "champs a montrer"
|
142 |
+
|
143 |
+
#: ../yith-woocompare-options.php:90 ../yith-woocompare-options.php:99
|
144 |
+
#: ../yith-woocompare-options.php:108
|
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 |
+
"selectionnez les champs a montrer dans le tabelau de comparaison (en faisant "
|
150 |
+
"glisser deposer)"
|
151 |
+
|
152 |
+
#: ../yith-woocompare-options.php:98
|
153 |
+
msgid "Repeat \"Price\" field at the end of the table"
|
154 |
+
msgstr "Repeter le prix à la fin du tabelau"
|
155 |
+
|
156 |
+
#: ../yith-woocompare-options.php:107
|
157 |
+
msgid "Repeat \"Add to cart\" field at the end of the table"
|
158 |
+
msgstr "repeter ajout au panier a la fin du tableau"
|
159 |
+
|
160 |
+
#: ../yith-woocompare-options.php:116
|
161 |
+
msgid "Image size"
|
162 |
+
msgstr "taille image"
|
163 |
+
|
164 |
+
#: ../yith-woocompare-options.php:117
|
165 |
+
msgid "Set the size for the images"
|
166 |
+
msgstr "ajuster tialle image"
|
167 |
+
|
168 |
+
#: ../templates/compare.php:72
|
169 |
+
msgid "Close window [X]"
|
170 |
+
msgstr "Fermer ce tableau"
|
171 |
+
|
172 |
+
#: ../templates/compare.php:97
|
173 |
+
msgid "No products added in the compare table."
|
174 |
+
msgstr "Aucun produit à comparer"
|
175 |
+
|
176 |
+
#: ../widgets/class.yith-woocompare-widget.php:21
|
177 |
+
msgid "The widget show the list of products added in the compare table."
|
178 |
+
msgstr "le widget montre les produits à comparer"
|
179 |
+
|
180 |
+
#: ../widgets/class.yith-woocompare-widget.php:22
|
181 |
+
msgid "YITH Woocommerce Compare Widget"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: ../widgets/class.yith-woocompare-widget.php:37
|
185 |
+
msgid "Clear all"
|
186 |
+
msgstr "Retirer tout"
|
187 |
+
|
188 |
+
#: ../yit-common/yith-panel.php:406
|
189 |
+
msgid "Select a date"
|
190 |
+
msgstr "Choisir une date"
|
191 |
+
|
192 |
+
#: ../yit-common/yith-panel.php:407
|
193 |
+
msgid "Hours"
|
194 |
+
msgstr "Heures"
|
195 |
+
|
196 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
197 |
+
msgid "Minutes"
|
198 |
+
msgstr "Minutes"
|
199 |
+
|
200 |
+
#: ../yit-common/yith-panel.php:417
|
201 |
+
msgid "Upload"
|
202 |
+
msgstr "Mettre en ligne"
|
203 |
+
|
204 |
+
#: ../yit-common/yith-panel.php:444
|
205 |
+
msgid "px"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: ../yit-common/yith-panel.php:445
|
209 |
+
msgid "em"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: ../yit-common/yith-panel.php:446
|
213 |
+
msgid "pt"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: ../yit-common/yith-panel.php:447
|
217 |
+
msgid "rem"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: ../yit-common/yith-panel.php:457
|
221 |
+
msgid "Select a font family"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: ../yit-common/yith-panel.php:465
|
225 |
+
msgid "Regular"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: ../yit-common/yith-panel.php:466
|
229 |
+
msgid "Bold"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: ../yit-common/yith-panel.php:467
|
233 |
+
msgid "Extra bold"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: ../yit-common/yith-panel.php:468
|
237 |
+
msgid "Italic"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: ../yit-common/yith-panel.php:469
|
241 |
+
msgid "Italic bold"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: ../yit-common/yith-panel.php:481
|
245 |
+
msgid "Click to preview"
|
246 |
+
msgstr "Cliquer pour previsualiser"
|
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:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -26,24 +26,24 @@ msgstr "Impostazioni Generali"
|
|
26 |
msgid "Added"
|
27 |
msgstr "Aggiungo"
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.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 |
|
@@ -91,9 +91,8 @@ msgid "Button"
|
|
91 |
msgstr "Pulsante"
|
92 |
|
93 |
#: ../yith-woocompare-options.php:35
|
94 |
-
#, fuzzy
|
95 |
msgid "Link/Button text"
|
96 |
-
msgstr "
|
97 |
|
98 |
#: ../yith-woocompare-options.php:36
|
99 |
msgid "Type the text to use for the button or the link of the compare."
|
@@ -129,11 +128,23 @@ 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:
|
136 |
-
#: ../yith-woocompare-options.php:
|
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,31 +152,27 @@ msgstr ""
|
|
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:
|
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:
|
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:
|
153 |
msgid "Image size"
|
154 |
msgstr "Dimensione immagine"
|
155 |
|
156 |
-
#: ../yith-woocompare-options.php:
|
157 |
msgid "Set the size for the images"
|
158 |
msgstr "Imposta la dimensione per le immagini"
|
159 |
|
160 |
-
#: ../templates/compare.php:
|
161 |
-
msgid "Compare products"
|
162 |
-
msgstr "Compara prodotti"
|
163 |
-
|
164 |
-
#: ../templates/compare.php:69
|
165 |
msgid "Close window [X]"
|
166 |
msgstr "Chiudi finestra [X]"
|
167 |
|
168 |
-
#: ../templates/compare.php:
|
169 |
msgid "No products added in the compare table."
|
170 |
msgstr "Nessun prodotto aggiunto nella tabella di comparazione."
|
171 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-02-13 09:30+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-13 09:31+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"
|
26 |
msgid "Added"
|
27 |
msgstr "Aggiungo"
|
28 |
|
29 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:50
|
30 |
msgid "Product Comparison"
|
31 |
msgstr "Comparazione Prodotto"
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:254
|
34 |
msgid "In stock"
|
35 |
msgstr "In stock"
|
36 |
|
37 |
+
#: ../class.yith-woocompare-frontend.php:337 ../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:496
|
43 |
msgid "No products to compare"
|
44 |
msgstr "Nessun prodotto da comparare"
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:506 ../templates/compare.php:105
|
47 |
msgid "Remove"
|
48 |
msgstr "Rimuovi"
|
49 |
|
91 |
msgstr "Pulsante"
|
92 |
|
93 |
#: ../yith-woocompare-options.php:35
|
|
|
94 |
msgid "Link/Button text"
|
95 |
+
msgstr "Testo Link/Pulsante"
|
96 |
|
97 |
#: ../yith-woocompare-options.php:36
|
98 |
msgid "Type the text to use for the button or the link of the compare."
|
128 |
msgstr "Impostazioni tabella."
|
129 |
|
130 |
#: ../yith-woocompare-options.php:81
|
131 |
+
msgid "Table title"
|
132 |
+
msgstr "Titolo Tabella"
|
133 |
+
|
134 |
+
#: ../yith-woocompare-options.php:82
|
135 |
+
msgid "Type the text to use for the table title."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: ../yith-woocompare-options.php:84
|
139 |
+
msgid "Compare products"
|
140 |
+
msgstr "Compara prodotti"
|
141 |
+
|
142 |
+
#: ../yith-woocompare-options.php:89
|
143 |
msgid "Fields to show"
|
144 |
msgstr "Campi da mostrare"
|
145 |
|
146 |
+
#: ../yith-woocompare-options.php:90 ../yith-woocompare-options.php:99
|
147 |
+
#: ../yith-woocompare-options.php:108
|
148 |
msgid ""
|
149 |
"Select the fields to show in the comparison table and order them by "
|
150 |
"drag&drop (are included also the woocommerce attributes)"
|
152 |
"Seleziona i campi da mostrare nella tabella di comparazione e ordinali "
|
153 |
"attraverso il drag&drop (sono inclusi anche gli attributi di woocommerce)"
|
154 |
|
155 |
+
#: ../yith-woocompare-options.php:98
|
156 |
msgid "Repeat \"Price\" field at the end of the table"
|
157 |
msgstr "Ripeti il campo \"Prezzo\" alla fine della tabella"
|
158 |
|
159 |
+
#: ../yith-woocompare-options.php:107
|
160 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
161 |
msgstr "Ripeti il campo con \"Aggiungi al carrello\" alla fine della tabella"
|
162 |
|
163 |
+
#: ../yith-woocompare-options.php:116
|
164 |
msgid "Image size"
|
165 |
msgstr "Dimensione immagine"
|
166 |
|
167 |
+
#: ../yith-woocompare-options.php:117
|
168 |
msgid "Set the size for the images"
|
169 |
msgstr "Imposta la dimensione per le immagini"
|
170 |
|
171 |
+
#: ../templates/compare.php:72
|
|
|
|
|
|
|
|
|
172 |
msgid "Close window [X]"
|
173 |
msgstr "Chiudi finestra [X]"
|
174 |
|
175 |
+
#: ../templates/compare.php:97
|
176 |
msgid "No products added in the compare table."
|
177 |
msgstr "Nessun prodotto aggiunto nella tabella di comparazione."
|
178 |
|
languages/yit-nl_NL.mo
CHANGED
Binary file
|
languages/yit-nl_NL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Frans Pronk <beheer@ifra.nl>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -14,63 +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 "Product vergelijk"
|
20 |
|
21 |
-
#: ../class.yith-woocompare-admin.php:
|
22 |
-
#: ../yith-woocompare-options.php:15
|
23 |
msgid "General Settings"
|
24 |
msgstr "Algemene instellingen"
|
25 |
|
26 |
-
#: ../class.yith-woocompare-frontend.php:
|
27 |
msgid "Added"
|
28 |
msgstr "Toegevoegd"
|
29 |
|
30 |
-
#: ../class.yith-woocompare-frontend.php:
|
31 |
-
#: ../templates/compare.php:47
|
32 |
msgid "Product Comparison"
|
33 |
msgstr "Product vergelijk"
|
34 |
|
35 |
-
#: ../class.yith-woocompare-frontend.php:
|
36 |
msgid "In stock"
|
37 |
msgstr "Op voorraad"
|
38 |
|
39 |
-
#: ../class.yith-woocompare-frontend.php:
|
40 |
#: ../widgets/class.yith-woocompare-widget.php:38
|
41 |
msgid "Compare"
|
42 |
msgstr "Vergelijk"
|
43 |
|
44 |
-
#: ../class.yith-woocompare-frontend.php:
|
45 |
msgid "No products to compare"
|
46 |
msgstr "Geen producten om te vergelijken"
|
47 |
|
48 |
-
#: ../class.yith-woocompare-frontend.php:
|
49 |
-
#: ../templates/compare.php:102
|
50 |
msgid "Remove"
|
51 |
msgstr "Verwijder"
|
52 |
|
53 |
#: ../class.yith-woocompare-helper.php:38
|
|
|
|
|
|
|
|
|
54 |
#: ../widgets/class.yith-woocompare-widget.php:55
|
55 |
msgid "Title"
|
56 |
msgstr "Titel"
|
57 |
|
58 |
-
#: ../class.yith-woocompare-helper.php:39
|
59 |
-
msgid "Image"
|
60 |
-
msgstr "Afbeelding"
|
61 |
-
|
62 |
#: ../class.yith-woocompare-helper.php:40
|
63 |
-
msgid "Description"
|
64 |
-
msgstr "Omschrijving"
|
65 |
-
|
66 |
-
#: ../class.yith-woocompare-helper.php:41
|
67 |
msgid "Price"
|
68 |
msgstr "Prijs"
|
69 |
|
70 |
-
#: ../class.yith-woocompare-helper.php:
|
71 |
msgid "Add to cart"
|
72 |
msgstr "Bestellen"
|
73 |
|
|
|
|
|
|
|
|
|
74 |
#: ../class.yith-woocompare-helper.php:43
|
75 |
msgid "Availability"
|
76 |
msgstr "Beschikbaarheid"
|
@@ -92,68 +89,88 @@ msgid "Button"
|
|
92 |
msgstr "Button"
|
93 |
|
94 |
#: ../yith-woocompare-options.php:35
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
msgid "Show button in single product page"
|
96 |
msgstr "Toon button op product pagina"
|
97 |
|
98 |
-
#: ../yith-woocompare-options.php:
|
99 |
msgid "Say if you want to show the button in the single product page."
|
100 |
msgstr "Selecteer wanneer je een button op de product pagina wilt tonen."
|
101 |
|
102 |
-
#: ../yith-woocompare-options.php:
|
103 |
msgid "Show button in products list"
|
104 |
msgstr "Toon button op producten overzicht"
|
105 |
|
106 |
-
#: ../yith-woocompare-options.php:
|
107 |
msgid "Say if you want to show the button in the products list."
|
108 |
-
msgstr "
|
|
|
109 |
|
110 |
-
#: ../yith-woocompare-options.php:
|
111 |
msgid "Open automatically lightbox"
|
112 |
msgstr "Open automatisch in lightbox"
|
113 |
|
114 |
-
#: ../yith-woocompare-options.php:
|
115 |
msgid "Open link after click into \"Compare\" button\"."
|
116 |
msgstr "Open de link direct na aanklikken van \"Vergelijk\" button\"."
|
117 |
|
118 |
-
#: ../yith-woocompare-options.php:
|
119 |
msgid "Table Settings"
|
120 |
msgstr "Tabel instellingen"
|
121 |
|
122 |
-
#: ../yith-woocompare-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
msgid "Fields to show"
|
124 |
msgstr "Velden tonen"
|
125 |
|
126 |
-
#: ../yith-woocompare-options.php:
|
127 |
-
#: ../yith-woocompare-options.php:
|
128 |
-
|
129 |
-
|
130 |
-
|
|
|
|
|
|
|
131 |
|
132 |
-
#: ../yith-woocompare-options.php:
|
133 |
msgid "Repeat \"Price\" field at the end of the table"
|
134 |
msgstr "Toon \"Prijs\" veld aan het einde van de tabel"
|
135 |
|
136 |
-
#: ../yith-woocompare-options.php:
|
137 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
138 |
msgstr "Toon \"Bestel\" veld aan het einde van de tabel"
|
139 |
|
140 |
-
#: ../yith-woocompare-options.php:
|
141 |
msgid "Image size"
|
142 |
msgstr "Afbeelding formaat"
|
143 |
|
144 |
-
#: ../yith-woocompare-options.php:
|
145 |
msgid "Set the size for the images"
|
146 |
msgstr "Stel afbeeldings formaat in "
|
147 |
|
148 |
-
#: ../templates/compare.php:
|
149 |
-
msgid "Compare products"
|
150 |
-
msgstr "Vergelijk producten"
|
151 |
-
|
152 |
-
#: ../templates/compare.php:69
|
153 |
msgid "Close window [X]"
|
154 |
msgstr "Sluit venster [X]"
|
155 |
|
156 |
-
#: ../templates/compare.php:
|
157 |
msgid "No products added in the compare table."
|
158 |
msgstr "Geen producten toegevoegd in de vergelijk tabel."
|
159 |
|
@@ -169,64 +186,62 @@ msgstr "Een YITH Woocommerce Vergelijk Widget"
|
|
169 |
msgid "Clear all"
|
170 |
msgstr "Wis alles"
|
171 |
|
172 |
-
#: ../yit-common/yith-panel.php:
|
173 |
msgid "Select a date"
|
174 |
msgstr "Selecteer een datum"
|
175 |
|
176 |
-
#: ../yit-common/yith-panel.php:
|
177 |
msgid "Hours"
|
178 |
msgstr "Uren"
|
179 |
|
180 |
-
#: ../yit-common/yith-panel.php:
|
181 |
-
#: ../yit-common/yith-panel.php:399
|
182 |
msgid "Minutes"
|
183 |
msgstr "Minuten"
|
184 |
|
185 |
-
#: ../yit-common/yith-panel.php:
|
186 |
msgid "Upload"
|
187 |
msgstr "Upload"
|
188 |
|
189 |
-
#: ../yit-common/yith-panel.php:
|
190 |
msgid "px"
|
191 |
msgstr "px"
|
192 |
|
193 |
-
#: ../yit-common/yith-panel.php:
|
194 |
msgid "em"
|
195 |
msgstr "em"
|
196 |
|
197 |
-
#: ../yit-common/yith-panel.php:
|
198 |
msgid "pt"
|
199 |
msgstr "pt"
|
200 |
|
201 |
-
#: ../yit-common/yith-panel.php:
|
202 |
msgid "rem"
|
203 |
msgstr "rem"
|
204 |
|
205 |
-
#: ../yit-common/yith-panel.php:
|
206 |
msgid "Select a font family"
|
207 |
msgstr "Kies een font type"
|
208 |
|
209 |
-
#: ../yit-common/yith-panel.php:
|
210 |
msgid "Regular"
|
211 |
msgstr "Normaal"
|
212 |
|
213 |
-
#: ../yit-common/yith-panel.php:
|
214 |
msgid "Bold"
|
215 |
msgstr "Vet"
|
216 |
|
217 |
-
#: ../yit-common/yith-panel.php:
|
218 |
msgid "Extra bold"
|
219 |
msgstr "Extra vet"
|
220 |
|
221 |
-
#: ../yit-common/yith-panel.php:
|
222 |
msgid "Italic"
|
223 |
msgstr "Cursief"
|
224 |
|
225 |
-
#: ../yit-common/yith-panel.php:
|
226 |
msgid "Italic bold"
|
227 |
msgstr "Cursief vet"
|
228 |
|
229 |
-
#: ../yit-common/yith-panel.php:
|
230 |
msgid "Click to preview"
|
231 |
msgstr "Klik voor voorvertoning"
|
232 |
-
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-02-13 09:31+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-13 09:31+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"
|
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:50
|
|
|
30 |
msgid "Product Comparison"
|
31 |
msgstr "Product vergelijk"
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:254
|
34 |
msgid "In stock"
|
35 |
msgstr "Op voorraad"
|
36 |
|
37 |
+
#: ../class.yith-woocompare-frontend.php:337 ../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:496
|
43 |
msgid "No products to compare"
|
44 |
msgstr "Geen producten om te vergelijken"
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:506 ../templates/compare.php:105
|
|
|
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"
|
89 |
msgstr "Button"
|
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 "Toon button op product pagina"
|
102 |
|
103 |
+
#: ../yith-woocompare-options.php:44
|
104 |
msgid "Say if you want to show the button in the single product page."
|
105 |
msgstr "Selecteer wanneer je een button op de product pagina wilt tonen."
|
106 |
|
107 |
+
#: ../yith-woocompare-options.php:52
|
108 |
msgid "Show button in products list"
|
109 |
msgstr "Toon button op producten overzicht"
|
110 |
|
111 |
+
#: ../yith-woocompare-options.php:53
|
112 |
msgid "Say if you want to show the button in the products list."
|
113 |
+
msgstr ""
|
114 |
+
"Selecteer wanneer een button op de productenoverzichts pagina wilt tonen."
|
115 |
|
116 |
+
#: ../yith-woocompare-options.php:61
|
117 |
msgid "Open automatically lightbox"
|
118 |
msgstr "Open automatisch in lightbox"
|
119 |
|
120 |
+
#: ../yith-woocompare-options.php:62
|
121 |
msgid "Open link after click into \"Compare\" button\"."
|
122 |
msgstr "Open de link direct na aanklikken van \"Vergelijk\" button\"."
|
123 |
|
124 |
+
#: ../yith-woocompare-options.php:74
|
125 |
msgid "Table Settings"
|
126 |
msgstr "Tabel instellingen"
|
127 |
|
128 |
+
#: ../yith-woocompare-options.php:81
|
129 |
+
msgid "Table title"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: ../yith-woocompare-options.php:82
|
133 |
+
msgid "Type the text to use for the table title."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: ../yith-woocompare-options.php:84
|
137 |
+
msgid "Compare products"
|
138 |
+
msgstr "Vergelijk producten"
|
139 |
+
|
140 |
+
#: ../yith-woocompare-options.php:89
|
141 |
msgid "Fields to show"
|
142 |
msgstr "Velden tonen"
|
143 |
|
144 |
+
#: ../yith-woocompare-options.php:90 ../yith-woocompare-options.php:99
|
145 |
+
#: ../yith-woocompare-options.php:108
|
146 |
+
msgid ""
|
147 |
+
"Select the fields to show in the comparison table and order them by "
|
148 |
+
"drag&drop (are included also the woocommerce attributes)"
|
149 |
+
msgstr ""
|
150 |
+
"Selecteer de velden die je in de vergelijkings tabel wilt tonen. Sleep ze "
|
151 |
+
"met je muis in de gewenste volgorde."
|
152 |
|
153 |
+
#: ../yith-woocompare-options.php:98
|
154 |
msgid "Repeat \"Price\" field at the end of the table"
|
155 |
msgstr "Toon \"Prijs\" veld aan het einde van de tabel"
|
156 |
|
157 |
+
#: ../yith-woocompare-options.php:107
|
158 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
159 |
msgstr "Toon \"Bestel\" veld aan het einde van de tabel"
|
160 |
|
161 |
+
#: ../yith-woocompare-options.php:116
|
162 |
msgid "Image size"
|
163 |
msgstr "Afbeelding formaat"
|
164 |
|
165 |
+
#: ../yith-woocompare-options.php:117
|
166 |
msgid "Set the size for the images"
|
167 |
msgstr "Stel afbeeldings formaat in "
|
168 |
|
169 |
+
#: ../templates/compare.php:72
|
|
|
|
|
|
|
|
|
170 |
msgid "Close window [X]"
|
171 |
msgstr "Sluit venster [X]"
|
172 |
|
173 |
+
#: ../templates/compare.php:97
|
174 |
msgid "No products added in the compare table."
|
175 |
msgstr "Geen producten toegevoegd in de vergelijk tabel."
|
176 |
|
186 |
msgid "Clear all"
|
187 |
msgstr "Wis alles"
|
188 |
|
189 |
+
#: ../yit-common/yith-panel.php:406
|
190 |
msgid "Select a date"
|
191 |
msgstr "Selecteer een datum"
|
192 |
|
193 |
+
#: ../yit-common/yith-panel.php:407
|
194 |
msgid "Hours"
|
195 |
msgstr "Uren"
|
196 |
|
197 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
|
|
198 |
msgid "Minutes"
|
199 |
msgstr "Minuten"
|
200 |
|
201 |
+
#: ../yit-common/yith-panel.php:417
|
202 |
msgid "Upload"
|
203 |
msgstr "Upload"
|
204 |
|
205 |
+
#: ../yit-common/yith-panel.php:444
|
206 |
msgid "px"
|
207 |
msgstr "px"
|
208 |
|
209 |
+
#: ../yit-common/yith-panel.php:445
|
210 |
msgid "em"
|
211 |
msgstr "em"
|
212 |
|
213 |
+
#: ../yit-common/yith-panel.php:446
|
214 |
msgid "pt"
|
215 |
msgstr "pt"
|
216 |
|
217 |
+
#: ../yit-common/yith-panel.php:447
|
218 |
msgid "rem"
|
219 |
msgstr "rem"
|
220 |
|
221 |
+
#: ../yit-common/yith-panel.php:457
|
222 |
msgid "Select a font family"
|
223 |
msgstr "Kies een font type"
|
224 |
|
225 |
+
#: ../yit-common/yith-panel.php:465
|
226 |
msgid "Regular"
|
227 |
msgstr "Normaal"
|
228 |
|
229 |
+
#: ../yit-common/yith-panel.php:466
|
230 |
msgid "Bold"
|
231 |
msgstr "Vet"
|
232 |
|
233 |
+
#: ../yit-common/yith-panel.php:467
|
234 |
msgid "Extra bold"
|
235 |
msgstr "Extra vet"
|
236 |
|
237 |
+
#: ../yit-common/yith-panel.php:468
|
238 |
msgid "Italic"
|
239 |
msgstr "Cursief"
|
240 |
|
241 |
+
#: ../yit-common/yith-panel.php:469
|
242 |
msgid "Italic bold"
|
243 |
msgstr "Cursief vet"
|
244 |
|
245 |
+
#: ../yit-common/yith-panel.php:481
|
246 |
msgid "Click to preview"
|
247 |
msgstr "Klik voor voorvertoning"
|
|
languages/yit-pt_BR.mo
CHANGED
Binary file
|
languages/yit-pt_BR.po
CHANGED
@@ -1,239 +1,247 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
-
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
-
"Language: English\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.5.5\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
-
"X-Poedit-Basepath: ./\n"
|
15 |
-
"X-Poedit-SearchPath-0: ..\n"
|
16 |
-
|
17 |
-
#: ../class.yith-woocompare-admin.php:129
|
18 |
-
msgid "Products Compare"
|
19 |
-
msgstr "Comparar Produtos"
|
20 |
-
|
21 |
-
#: ../class.yith-woocompare-admin.php:143 ../yith-woocompare-options.php:15
|
22 |
-
msgid "General Settings"
|
23 |
-
msgstr "Opções Gerais"
|
24 |
-
|
25 |
-
#: ../class.yith-woocompare-frontend.php:142
|
26 |
-
msgid "Added"
|
27 |
-
msgstr "Adicionado"
|
28 |
-
|
29 |
-
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:
|
30 |
-
msgid "Product Comparison"
|
31 |
-
msgstr "Comparação de Produtos"
|
32 |
-
|
33 |
-
#: ../class.yith-woocompare-frontend.php:
|
34 |
-
msgid "In stock"
|
35 |
-
msgstr "No estoque"
|
36 |
-
|
37 |
-
#: ../class.yith-woocompare-frontend.php:
|
38 |
-
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
-
msgid "Compare"
|
40 |
-
msgstr "Comparar"
|
41 |
-
|
42 |
-
#: ../class.yith-woocompare-frontend.php:
|
43 |
-
msgid "No products to compare"
|
44 |
-
msgstr "Não há produtos à comparar"
|
45 |
-
|
46 |
-
#: ../class.yith-woocompare-frontend.php:
|
47 |
-
msgid "Remove"
|
48 |
-
msgstr "Remover"
|
49 |
-
|
50 |
-
#: ../class.yith-woocompare-helper.php:38
|
51 |
-
msgid "Image"
|
52 |
-
msgstr "Imagem"
|
53 |
-
|
54 |
-
#: ../class.yith-woocompare-helper.php:39
|
55 |
-
#: ../widgets/class.yith-woocompare-widget.php:55
|
56 |
-
msgid "Title"
|
57 |
-
msgstr "Título"
|
58 |
-
|
59 |
-
#: ../class.yith-woocompare-helper.php:40
|
60 |
-
msgid "Price"
|
61 |
-
msgstr "Preço"
|
62 |
-
|
63 |
-
#: ../class.yith-woocompare-helper.php:41
|
64 |
-
msgid "Add to cart"
|
65 |
-
msgstr "Adicionar ao carrinho"
|
66 |
-
|
67 |
-
#: ../class.yith-woocompare-helper.php:42
|
68 |
-
msgid "Description"
|
69 |
-
msgstr "Descrição"
|
70 |
-
|
71 |
-
#: ../class.yith-woocompare-helper.php:43
|
72 |
-
msgid "Availability"
|
73 |
-
msgstr "Disponibilidade"
|
74 |
-
|
75 |
-
#: ../yith-woocompare-options.php:22
|
76 |
-
msgid "Link or Button"
|
77 |
-
msgstr "Link ou Botão"
|
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 "Seleciona se deseja usar link ou botão para a ação do botão"
|
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 "Botão"
|
90 |
-
|
91 |
-
#: ../yith-woocompare-options.php:35
|
92 |
-
msgid "Link/Button text"
|
93 |
-
msgstr "Texto Link/Botão"
|
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 "Insira o texto usado no botão de comparação."
|
98 |
-
|
99 |
-
#: ../yith-woocompare-options.php:43
|
100 |
-
msgid "Show button in single product page"
|
101 |
-
msgstr "Mostrar na página de produto único"
|
102 |
-
|
103 |
-
#: ../yith-woocompare-options.php:44
|
104 |
-
msgid "Say if you want to show the button in the single product page."
|
105 |
-
msgstr "Marque para mostrar na página de produto único"
|
106 |
-
|
107 |
-
#: ../yith-woocompare-options.php:52
|
108 |
-
msgid "Show button in products list"
|
109 |
-
msgstr "Mostrar na lista de produtos"
|
110 |
-
|
111 |
-
#: ../yith-woocompare-options.php:53
|
112 |
-
msgid "Say if you want to show the button in the products list."
|
113 |
-
msgstr "Marque para mostrar na lista de produtos"
|
114 |
-
|
115 |
-
#: ../yith-woocompare-options.php:61
|
116 |
-
msgid "Open automatically lightbox"
|
117 |
-
msgstr "Abrir lightbox automaticamente"
|
118 |
-
|
119 |
-
#: ../yith-woocompare-options.php:62
|
120 |
-
msgid "Open link after click into \"Compare\" button\"."
|
121 |
-
msgstr "Abre link após clicar no botão de comparação."
|
122 |
-
|
123 |
-
#: ../yith-woocompare-options.php:74
|
124 |
-
msgid "Table Settings"
|
125 |
-
msgstr "Opções de tabela"
|
126 |
-
|
127 |
-
#: ../yith-woocompare-options.php:81
|
128 |
-
msgid "
|
129 |
-
msgstr "
|
130 |
-
|
131 |
-
#: ../yith-woocompare-options.php:82
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
"
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
#: ../yith-woocompare-options.php:
|
145 |
-
msgid "
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
#: ../yith-woocompare-options.php:
|
153 |
-
msgid "
|
154 |
-
msgstr "
|
155 |
-
|
156 |
-
#: ../
|
157 |
-
msgid "
|
158 |
-
msgstr "
|
159 |
-
|
160 |
-
#: ../
|
161 |
-
msgid "
|
162 |
-
msgstr "
|
163 |
-
|
164 |
-
#: ../
|
165 |
-
msgid "
|
166 |
-
msgstr "
|
167 |
-
|
168 |
-
#: ../
|
169 |
-
msgid "
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
#: ../
|
182 |
-
msgid "
|
183 |
-
msgstr "
|
184 |
-
|
185 |
-
#: ../
|
186 |
-
msgid "
|
187 |
-
msgstr "
|
188 |
-
|
189 |
-
#: ../yit-common/yith-panel.php:
|
190 |
-
msgid "
|
191 |
-
msgstr "
|
192 |
-
|
193 |
-
#: ../yit-common/yith-panel.php:
|
194 |
-
msgid "
|
195 |
-
msgstr "
|
196 |
-
|
197 |
-
#: ../yit-common/yith-panel.php:
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
200 |
-
|
201 |
-
#: ../yit-common/yith-panel.php:
|
202 |
-
msgid "
|
203 |
-
msgstr "
|
204 |
-
|
205 |
-
#: ../yit-common/yith-panel.php:
|
206 |
-
msgid "
|
207 |
-
msgstr "
|
208 |
-
|
209 |
-
#: ../yit-common/yith-panel.php:
|
210 |
-
msgid "
|
211 |
-
msgstr "
|
212 |
-
|
213 |
-
#: ../yit-common/yith-panel.php:
|
214 |
-
msgid "
|
215 |
-
msgstr "
|
216 |
-
|
217 |
-
#: ../yit-common/yith-panel.php:
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
-
|
221 |
-
#: ../yit-common/yith-panel.php:
|
222 |
-
msgid "
|
223 |
-
msgstr "
|
224 |
-
|
225 |
-
#: ../yit-common/yith-panel.php:
|
226 |
-
msgid "
|
227 |
-
msgstr "
|
228 |
-
|
229 |
-
#: ../yit-common/yith-panel.php:
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
-
|
233 |
-
#: ../yit-common/yith-panel.php:
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
236 |
-
|
237 |
-
#: ../yit-common/yith-panel.php:
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-02-13 09:31+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-13 09:32+0100\n"
|
6 |
+
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
+
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
+
"Language: English\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.5\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_x\n"
|
14 |
+
"X-Poedit-Basepath: ./\n"
|
15 |
+
"X-Poedit-SearchPath-0: ..\n"
|
16 |
+
|
17 |
+
#: ../class.yith-woocompare-admin.php:129
|
18 |
+
msgid "Products Compare"
|
19 |
+
msgstr "Comparar Produtos"
|
20 |
+
|
21 |
+
#: ../class.yith-woocompare-admin.php:143 ../yith-woocompare-options.php:15
|
22 |
+
msgid "General Settings"
|
23 |
+
msgstr "Opções Gerais"
|
24 |
+
|
25 |
+
#: ../class.yith-woocompare-frontend.php:142
|
26 |
+
msgid "Added"
|
27 |
+
msgstr "Adicionado"
|
28 |
+
|
29 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:50
|
30 |
+
msgid "Product Comparison"
|
31 |
+
msgstr "Comparação de Produtos"
|
32 |
+
|
33 |
+
#: ../class.yith-woocompare-frontend.php:254
|
34 |
+
msgid "In stock"
|
35 |
+
msgstr "No estoque"
|
36 |
+
|
37 |
+
#: ../class.yith-woocompare-frontend.php:337 ../yith-woocompare-options.php:38
|
38 |
+
#: ../widgets/class.yith-woocompare-widget.php:38
|
39 |
+
msgid "Compare"
|
40 |
+
msgstr "Comparar"
|
41 |
+
|
42 |
+
#: ../class.yith-woocompare-frontend.php:496
|
43 |
+
msgid "No products to compare"
|
44 |
+
msgstr "Não há produtos à comparar"
|
45 |
+
|
46 |
+
#: ../class.yith-woocompare-frontend.php:506 ../templates/compare.php:105
|
47 |
+
msgid "Remove"
|
48 |
+
msgstr "Remover"
|
49 |
+
|
50 |
+
#: ../class.yith-woocompare-helper.php:38
|
51 |
+
msgid "Image"
|
52 |
+
msgstr "Imagem"
|
53 |
+
|
54 |
+
#: ../class.yith-woocompare-helper.php:39
|
55 |
+
#: ../widgets/class.yith-woocompare-widget.php:55
|
56 |
+
msgid "Title"
|
57 |
+
msgstr "Título"
|
58 |
+
|
59 |
+
#: ../class.yith-woocompare-helper.php:40
|
60 |
+
msgid "Price"
|
61 |
+
msgstr "Preço"
|
62 |
+
|
63 |
+
#: ../class.yith-woocompare-helper.php:41
|
64 |
+
msgid "Add to cart"
|
65 |
+
msgstr "Adicionar ao carrinho"
|
66 |
+
|
67 |
+
#: ../class.yith-woocompare-helper.php:42
|
68 |
+
msgid "Description"
|
69 |
+
msgstr "Descrição"
|
70 |
+
|
71 |
+
#: ../class.yith-woocompare-helper.php:43
|
72 |
+
msgid "Availability"
|
73 |
+
msgstr "Disponibilidade"
|
74 |
+
|
75 |
+
#: ../yith-woocompare-options.php:22
|
76 |
+
msgid "Link or Button"
|
77 |
+
msgstr "Link ou Botão"
|
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 "Seleciona se deseja usar link ou botão para a ação do botão"
|
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 "Botão"
|
90 |
+
|
91 |
+
#: ../yith-woocompare-options.php:35
|
92 |
+
msgid "Link/Button text"
|
93 |
+
msgstr "Texto Link/Botão"
|
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 "Insira o texto usado no botão de comparação."
|
98 |
+
|
99 |
+
#: ../yith-woocompare-options.php:43
|
100 |
+
msgid "Show button in single product page"
|
101 |
+
msgstr "Mostrar na página de produto único"
|
102 |
+
|
103 |
+
#: ../yith-woocompare-options.php:44
|
104 |
+
msgid "Say if you want to show the button in the single product page."
|
105 |
+
msgstr "Marque para mostrar na página de produto único"
|
106 |
+
|
107 |
+
#: ../yith-woocompare-options.php:52
|
108 |
+
msgid "Show button in products list"
|
109 |
+
msgstr "Mostrar na lista de produtos"
|
110 |
+
|
111 |
+
#: ../yith-woocompare-options.php:53
|
112 |
+
msgid "Say if you want to show the button in the products list."
|
113 |
+
msgstr "Marque para mostrar na lista de produtos"
|
114 |
+
|
115 |
+
#: ../yith-woocompare-options.php:61
|
116 |
+
msgid "Open automatically lightbox"
|
117 |
+
msgstr "Abrir lightbox automaticamente"
|
118 |
+
|
119 |
+
#: ../yith-woocompare-options.php:62
|
120 |
+
msgid "Open link after click into \"Compare\" button\"."
|
121 |
+
msgstr "Abre link após clicar no botão de comparação."
|
122 |
+
|
123 |
+
#: ../yith-woocompare-options.php:74
|
124 |
+
msgid "Table Settings"
|
125 |
+
msgstr "Opções de tabela"
|
126 |
+
|
127 |
+
#: ../yith-woocompare-options.php:81
|
128 |
+
msgid "Table title"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: ../yith-woocompare-options.php:82
|
132 |
+
msgid "Type the text to use for the table title."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../yith-woocompare-options.php:84
|
136 |
+
msgid "Compare products"
|
137 |
+
msgstr "Comparar produtos"
|
138 |
+
|
139 |
+
#: ../yith-woocompare-options.php:89
|
140 |
+
msgid "Fields to show"
|
141 |
+
msgstr "Campos a mostrar"
|
142 |
+
|
143 |
+
#: ../yith-woocompare-options.php:90 ../yith-woocompare-options.php:99
|
144 |
+
#: ../yith-woocompare-options.php:108
|
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 |
+
"Selecione os campos a mostrar na tabela de comparação e organize-os "
|
150 |
+
"arrastando e soltando (atributos do Woocommerce também são incluídos)"
|
151 |
+
|
152 |
+
#: ../yith-woocompare-options.php:98
|
153 |
+
msgid "Repeat \"Price\" field at the end of the table"
|
154 |
+
msgstr "Repetir campo \"Preço\" no final da tabela"
|
155 |
+
|
156 |
+
#: ../yith-woocompare-options.php:107
|
157 |
+
msgid "Repeat \"Add to cart\" field at the end of the table"
|
158 |
+
msgstr "Repetir campo \"Adicionar ao carrinho\" no final da tabela"
|
159 |
+
|
160 |
+
#: ../yith-woocompare-options.php:116
|
161 |
+
msgid "Image size"
|
162 |
+
msgstr "Tamanho da imagem"
|
163 |
+
|
164 |
+
#: ../yith-woocompare-options.php:117
|
165 |
+
msgid "Set the size for the images"
|
166 |
+
msgstr "Especifique um tamanho para as imagens"
|
167 |
+
|
168 |
+
#: ../templates/compare.php:72
|
169 |
+
msgid "Close window [X]"
|
170 |
+
msgstr "Fechar janela [X]"
|
171 |
+
|
172 |
+
#: ../templates/compare.php:97
|
173 |
+
msgid "No products added in the compare table."
|
174 |
+
msgstr "Não foram adicionados produtos na tabela de comparação"
|
175 |
+
|
176 |
+
#: ../widgets/class.yith-woocompare-widget.php:21
|
177 |
+
msgid "The widget show the list of products added in the compare table."
|
178 |
+
msgstr ""
|
179 |
+
"O widget mostra a lista de produtos adicionados na tabela de comparação."
|
180 |
+
|
181 |
+
#: ../widgets/class.yith-woocompare-widget.php:22
|
182 |
+
msgid "YITH Woocommerce Compare Widget"
|
183 |
+
msgstr "Widget de Comparação"
|
184 |
+
|
185 |
+
#: ../widgets/class.yith-woocompare-widget.php:37
|
186 |
+
msgid "Clear all"
|
187 |
+
msgstr "Limpar tudo"
|
188 |
+
|
189 |
+
#: ../yit-common/yith-panel.php:406
|
190 |
+
msgid "Select a date"
|
191 |
+
msgstr "Selecione uma data"
|
192 |
+
|
193 |
+
#: ../yit-common/yith-panel.php:407
|
194 |
+
msgid "Hours"
|
195 |
+
msgstr "Horas"
|
196 |
+
|
197 |
+
#: ../yit-common/yith-panel.php:408 ../yit-common/yith-panel.php:409
|
198 |
+
msgid "Minutes"
|
199 |
+
msgstr "Minutos"
|
200 |
+
|
201 |
+
#: ../yit-common/yith-panel.php:417
|
202 |
+
msgid "Upload"
|
203 |
+
msgstr "Enviar"
|
204 |
+
|
205 |
+
#: ../yit-common/yith-panel.php:444
|
206 |
+
msgid "px"
|
207 |
+
msgstr "px"
|
208 |
+
|
209 |
+
#: ../yit-common/yith-panel.php:445
|
210 |
+
msgid "em"
|
211 |
+
msgstr "em"
|
212 |
+
|
213 |
+
#: ../yit-common/yith-panel.php:446
|
214 |
+
msgid "pt"
|
215 |
+
msgstr "pt"
|
216 |
+
|
217 |
+
#: ../yit-common/yith-panel.php:447
|
218 |
+
msgid "rem"
|
219 |
+
msgstr "rem"
|
220 |
+
|
221 |
+
#: ../yit-common/yith-panel.php:457
|
222 |
+
msgid "Select a font family"
|
223 |
+
msgstr "Seleciona uma família de fontes"
|
224 |
+
|
225 |
+
#: ../yit-common/yith-panel.php:465
|
226 |
+
msgid "Regular"
|
227 |
+
msgstr "Normal"
|
228 |
+
|
229 |
+
#: ../yit-common/yith-panel.php:466
|
230 |
+
msgid "Bold"
|
231 |
+
msgstr "Negrito"
|
232 |
+
|
233 |
+
#: ../yit-common/yith-panel.php:467
|
234 |
+
msgid "Extra bold"
|
235 |
+
msgstr "Extra-negrito"
|
236 |
+
|
237 |
+
#: ../yit-common/yith-panel.php:468
|
238 |
+
msgid "Italic"
|
239 |
+
msgstr "Itálico"
|
240 |
+
|
241 |
+
#: ../yit-common/yith-panel.php:469
|
242 |
+
msgid "Italic bold"
|
243 |
+
msgstr "Negrito itálico"
|
244 |
+
|
245 |
+
#: ../yit-common/yith-panel.php:481
|
246 |
+
msgid "Click to preview"
|
247 |
+
msgstr "Clique para pré-visualizar"
|
languages/yit.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
@@ -26,24 +26,24 @@ msgstr ""
|
|
26 |
msgid "Added"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.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 |
|
@@ -125,41 +125,49 @@ 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:
|
132 |
-
#: ../yith-woocompare-options.php:
|
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:
|
139 |
msgid "Repeat \"Price\" field at the end of the table"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: ../yith-woocompare-options.php:
|
143 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: ../yith-woocompare-options.php:
|
147 |
msgid "Image size"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../yith-woocompare-options.php:
|
151 |
msgid "Set the size for the images"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../templates/compare.php:
|
155 |
-
msgid "Compare products"
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: ../templates/compare.php:69
|
159 |
msgid "Close window [X]"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../templates/compare.php:
|
163 |
msgid "No products added in the compare table."
|
164 |
msgstr ""
|
165 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: YITH Woocommerce Compare\n"
|
4 |
+
"POT-Creation-Date: 2014-02-13 09:30+0100\n"
|
5 |
+
"PO-Revision-Date: 2014-02-13 09:30+0100\n"
|
6 |
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
|
7 |
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
|
8 |
"Language: English\n"
|
26 |
msgid "Added"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../class.yith-woocompare-frontend.php:143 ../templates/compare.php:50
|
30 |
msgid "Product Comparison"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../class.yith-woocompare-frontend.php:254
|
34 |
msgid "In stock"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../class.yith-woocompare-frontend.php:337 ../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:496
|
43 |
msgid "No products to compare"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../class.yith-woocompare-frontend.php:506 ../templates/compare.php:105
|
47 |
msgid "Remove"
|
48 |
msgstr ""
|
49 |
|
125 |
msgstr ""
|
126 |
|
127 |
#: ../yith-woocompare-options.php:81
|
128 |
+
msgid "Table title"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: ../yith-woocompare-options.php:82
|
132 |
+
msgid "Type the text to use for the table title."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../yith-woocompare-options.php:84
|
136 |
+
msgid "Compare products"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: ../yith-woocompare-options.php:89
|
140 |
msgid "Fields to show"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../yith-woocompare-options.php:90 ../yith-woocompare-options.php:99
|
144 |
+
#: ../yith-woocompare-options.php:108
|
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:98
|
151 |
msgid "Repeat \"Price\" field at the end of the table"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: ../yith-woocompare-options.php:107
|
155 |
msgid "Repeat \"Add to cart\" field at the end of the table"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: ../yith-woocompare-options.php:116
|
159 |
msgid "Image size"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: ../yith-woocompare-options.php:117
|
163 |
msgid "Set the size for the images"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../templates/compare.php:72
|
|
|
|
|
|
|
|
|
167 |
msgid "Close window [X]"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../templates/compare.php:97
|
171 |
msgid "No products added in the compare table."
|
172 |
msgstr ""
|
173 |
|
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;
|
@@ -20,6 +20,9 @@ wp_enqueue_script( 'jquery-fixedcolumns', YITH_WOOCOMPARE_URL . 'assets/js/Fixed
|
|
20 |
$widths = array();
|
21 |
foreach( $products as $product ) $widths[] = '{ "sWidth": "205px", resizeable:true }';
|
22 |
|
|
|
|
|
|
|
23 |
?><!DOCTYPE html>
|
24 |
<!--[if IE 6]>
|
25 |
<html id="ie6" class="ie"<?php language_attributes() ?>>
|
@@ -122,7 +125,7 @@ foreach( $products as $product ) $widths[] = '{ "sWidth": "205px", resizeable:tr
|
|
122 |
break;
|
123 |
|
124 |
case 'add-to-cart':
|
125 |
-
|
126 |
break;
|
127 |
|
128 |
default:
|
@@ -153,7 +156,7 @@ foreach( $products as $product ) $widths[] = '{ "sWidth": "205px", resizeable:tr
|
|
153 |
<th><?php echo $fields['add-to-cart'] ?></th>
|
154 |
|
155 |
<?php foreach( $products as $i => $product ) : $product_class = ( $i % 2 == 0 ? 'odd' : 'even' ) . ' product_' . $product->id ?>
|
156 |
-
<td class="<?php echo $product_class ?>"><?php
|
157 |
<?php endforeach; ?>
|
158 |
|
159 |
</tr>
|
4 |
*
|
5 |
* @author Your Inspiration Themes
|
6 |
* @package YITH Woocommerce Compare
|
7 |
+
* @version 1.1.0
|
8 |
*/
|
9 |
|
10 |
global $product;
|
20 |
$widths = array();
|
21 |
foreach( $products as $product ) $widths[] = '{ "sWidth": "205px", resizeable:true }';
|
22 |
|
23 |
+
/** FIX WOO 2.1 */
|
24 |
+
$wc_get_template = function_exists('wc_get_template') ? 'wc_get_template' : 'woocommerce_get_template';
|
25 |
+
|
26 |
?><!DOCTYPE html>
|
27 |
<!--[if IE 6]>
|
28 |
<html id="ie6" class="ie"<?php language_attributes() ?>>
|
125 |
break;
|
126 |
|
127 |
case 'add-to-cart':
|
128 |
+
$wc_get_template( 'loop/add-to-cart.php' );
|
129 |
break;
|
130 |
|
131 |
default:
|
156 |
<th><?php echo $fields['add-to-cart'] ?></th>
|
157 |
|
158 |
<?php foreach( $products as $i => $product ) : $product_class = ( $i % 2 == 0 ? 'odd' : 'even' ) . ' product_' . $product->id ?>
|
159 |
+
<td class="<?php echo $product_class ?>"><?php $wc_get_template( 'loop/add-to-cart.php' ); ?></td>
|
160 |
<?php endforeach; ?>
|
161 |
|
162 |
</tr>
|
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.1.0
|
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.1.0
|
8 |
*/
|
9 |
|
10 |
if ( !defined( 'YITH_WOOCOMPARE' ) ) { exit; } // Exit if accessed directly
|