Version Description
Bug causing setting all product's checkbox labels to off, fixed. Upgrade immediately.
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 1.7.6 |
Comparing to | |
See all releases |
Code changes from version 1.7.5 to 1.7.6
- includes/admin/tools/class-wcj-tools.php +15 -2
- includes/class-wcj-old-slugs.php +13 -9
- includes/class-wcj-orders.php +17 -9
- includes/class-wcj-price-labels.php +103 -33
- langs/woocommerce-jetpack-en_EN.mo +0 -0
- langs/woocommerce-jetpack-en_EN.po +0 -303
- langs/woocommerce-jetpack-fr_FR.mo +0 -0
- langs/woocommerce-jetpack-fr_FR.po +2211 -0
- langs/woocommerce-jetpack.pot +1710 -119
- readme.txt +19 -4
- woocommerce-jetpack.php +4 -1
includes/admin/tools/class-wcj-tools.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Tools class.
|
6 |
*
|
7 |
* @class WCJ_Tools
|
8 |
-
* @version 1.
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
@@ -59,7 +59,20 @@ class WCJ_Tools {
|
|
59 |
|
60 |
echo $html;
|
61 |
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
64 |
}
|
65 |
|
5 |
* The WooCommerce Jetpack Tools class.
|
6 |
*
|
7 |
* @class WCJ_Tools
|
8 |
+
* @version 1.1.0
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
59 |
|
60 |
echo $html;
|
61 |
|
62 |
+
if ( 'dashboard' === $active_tab ) {
|
63 |
+
echo '<h3>' . __( 'WooCommerce Jetpack Tools Dashboard', 'woocommerce-jetpack' ) . '</h3>';
|
64 |
+
echo '<p>' . __( 'This dashboard lets you check statuses and short descriptions of all available WooCommerce Jetpack tools. Tools can be enabled through WooCommerce > Settings > Jetpack. Enabled tools will appear in the tabs menu above.', 'woocommerce-jetpack' ) . '</p>';
|
65 |
+
echo '<table class="widefat" style="width:90%;">';
|
66 |
+
echo '<tr>';
|
67 |
+
echo '<th style="width:25%;">' . __( 'Tool', 'woocommerce-jetpack' ) . '</th>';
|
68 |
+
echo '<th style="width:25%;">' . __( 'Status', 'woocommerce-jetpack' ) . '</th>';
|
69 |
+
echo '<th style="width:50%;">' . __( 'Description', 'woocommerce-jetpack' ) . '</th>';
|
70 |
+
echo '</tr>';
|
71 |
+
do_action( 'wcj_tools_' . $active_tab );
|
72 |
+
echo '</table>';
|
73 |
+
}
|
74 |
+
else
|
75 |
+
do_action( 'wcj_tools_' . $active_tab );
|
76 |
}
|
77 |
}
|
78 |
|
includes/class-wcj-old-slugs.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Old Slugs class.
|
6 |
*
|
7 |
* @class WCJ_Old_Slugs
|
8 |
-
* @version 1.
|
9 |
* @package WC_Jetpack/Classes
|
10 |
* @category Class
|
11 |
* @author Algoritmika Ltd.
|
@@ -43,12 +43,16 @@ class WCJ_Old_Slugs {
|
|
43 |
/**
|
44 |
* add_old_slugs_tool_info_to_tools_dashboard.
|
45 |
*/
|
46 |
-
public function add_old_slugs_tool_info_to_tools_dashboard() {
|
47 |
-
|
48 |
-
|
|
|
49 |
else
|
50 |
-
|
51 |
-
echo '<
|
|
|
|
|
|
|
52 |
}
|
53 |
|
54 |
/**
|
@@ -159,14 +163,14 @@ class WCJ_Old_Slugs {
|
|
159 |
?><div>
|
160 |
<h2><?php _e( 'WooCommerce Jetpack - Remove Old Product Slugs', 'woocommerce-jetpack' ); ?></h2>
|
161 |
<p><?php _e( 'Tool removes old slugs/permalinks from database.', 'woocommerce-jetpack' ); ?></p>
|
162 |
-
<?php echo $remove_result_html; ?>
|
163 |
<?php
|
164 |
$num_old_slugs_products = count( $posts_ids['products'] );
|
165 |
if ( $num_old_slugs_products > 0 ) { ?>
|
166 |
<h3><?php _e( 'Old products slugs found:', 'woocommerce-jetpack' ); ?> <?php echo $num_old_slugs_products; ?></h3>
|
167 |
<p><?php echo $old_slugs_list_products; ?></p>
|
168 |
<form method="post" action="">
|
169 |
-
<input type="submit" name="remove_old_products_slugs" value="Remove All Old Product Slugs"/>
|
170 |
</form>
|
171 |
<?php }
|
172 |
$num_old_slugs_none_products = count( $posts_ids['none_products'] );
|
@@ -174,7 +178,7 @@ class WCJ_Old_Slugs {
|
|
174 |
<h3><?php _e( 'None-products slugs found:', 'woocommerce-jetpack' ); ?> <?php echo $num_old_slugs_none_products; ?></h3>
|
175 |
<p><?php echo $old_slugs_list; ?></p>
|
176 |
<form method="post" action="">
|
177 |
-
<input type="submit" name="remove_old_none_products_slugs" value="Remove All Old None-Product Slugs"/>
|
178 |
</form>
|
179 |
<?php }
|
180 |
if ( $num_old_slugs == 0 ) { ?>
|
5 |
* The WooCommerce Jetpack Old Slugs class.
|
6 |
*
|
7 |
* @class WCJ_Old_Slugs
|
8 |
+
* @version 1.2.0
|
9 |
* @package WC_Jetpack/Classes
|
10 |
* @category Class
|
11 |
* @author Algoritmika Ltd.
|
43 |
/**
|
44 |
* add_old_slugs_tool_info_to_tools_dashboard.
|
45 |
*/
|
46 |
+
public function add_old_slugs_tool_info_to_tools_dashboard() {
|
47 |
+
echo '<tr>';
|
48 |
+
if ( 'yes' === get_option( 'wcj_old_slugs_enabled') )
|
49 |
+
$is_enabled = '<span style="color:green;font-style:italic;">' . __( 'enabled', 'woocommerce-jetpack' ) . '</span>';
|
50 |
else
|
51 |
+
$is_enabled = '<span style="color:gray;font-style:italic;">' . __( 'disabled', 'woocommerce-jetpack' ) . '</span>';
|
52 |
+
echo '<td>' . __( 'Remove Old Slugs', 'woocommerce-jetpack' ) . '</td>';
|
53 |
+
echo '<td>' . $is_enabled . '</td>';
|
54 |
+
echo '<td>' . __( 'Tool removes old slugs/permalinks from database.', 'woocommerce-jetpack' ) . '</td>';
|
55 |
+
echo '</tr>';
|
56 |
}
|
57 |
|
58 |
/**
|
163 |
?><div>
|
164 |
<h2><?php _e( 'WooCommerce Jetpack - Remove Old Product Slugs', 'woocommerce-jetpack' ); ?></h2>
|
165 |
<p><?php _e( 'Tool removes old slugs/permalinks from database.', 'woocommerce-jetpack' ); ?></p>
|
166 |
+
<?php echo $remove_result_html; ?>
|
167 |
<?php
|
168 |
$num_old_slugs_products = count( $posts_ids['products'] );
|
169 |
if ( $num_old_slugs_products > 0 ) { ?>
|
170 |
<h3><?php _e( 'Old products slugs found:', 'woocommerce-jetpack' ); ?> <?php echo $num_old_slugs_products; ?></h3>
|
171 |
<p><?php echo $old_slugs_list_products; ?></p>
|
172 |
<form method="post" action="">
|
173 |
+
<input class="button-primary" type="submit" name="remove_old_products_slugs" value="Remove All Old Product Slugs"/>
|
174 |
</form>
|
175 |
<?php }
|
176 |
$num_old_slugs_none_products = count( $posts_ids['none_products'] );
|
178 |
<h3><?php _e( 'None-products slugs found:', 'woocommerce-jetpack' ); ?> <?php echo $num_old_slugs_none_products; ?></h3>
|
179 |
<p><?php echo $old_slugs_list; ?></p>
|
180 |
<form method="post" action="">
|
181 |
+
<input class="button-primary" type="submit" name="remove_old_none_products_slugs" value="Remove All Old None-Product Slugs"/>
|
182 |
</form>
|
183 |
<?php }
|
184 |
if ( $num_old_slugs == 0 ) { ?>
|
includes/class-wcj-orders.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Orders class.
|
6 |
*
|
7 |
* @class WCJ_Orders
|
8 |
-
* @version 1.
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
@@ -105,11 +105,15 @@ class WCJ_Orders {
|
|
105 |
* add_custom_statuses_tool_info_to_tools_dashboard.
|
106 |
*/
|
107 |
public function add_custom_statuses_tool_info_to_tools_dashboard() {
|
108 |
-
|
109 |
-
|
|
|
110 |
else
|
111 |
-
|
112 |
-
echo '<
|
|
|
|
|
|
|
113 |
}
|
114 |
|
115 |
/**
|
@@ -250,11 +254,15 @@ class WCJ_Orders {
|
|
250 |
* add_renumerate_orders_tool_info_to_tools_dashboard.
|
251 |
*/
|
252 |
public function add_renumerate_orders_tool_info_to_tools_dashboard() {
|
253 |
-
|
254 |
-
|
|
|
255 |
else
|
256 |
-
|
257 |
-
echo '<
|
|
|
|
|
|
|
258 |
}
|
259 |
|
260 |
/**
|
5 |
* The WooCommerce Jetpack Orders class.
|
6 |
*
|
7 |
* @class WCJ_Orders
|
8 |
+
* @version 1.5.0
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
105 |
* add_custom_statuses_tool_info_to_tools_dashboard.
|
106 |
*/
|
107 |
public function add_custom_statuses_tool_info_to_tools_dashboard() {
|
108 |
+
echo '<tr>';
|
109 |
+
if ( 'yes' === get_option( 'wcj_orders_custom_statuses_enabled') )
|
110 |
+
$is_enabled = '<span style="color:green;font-style:italic;">' . __( 'enabled', 'woocommerce-jetpack' ) . '</span>';
|
111 |
else
|
112 |
+
$is_enabled = '<span style="color:gray;font-style:italic;">' . __( 'disabled', 'woocommerce-jetpack' ) . '</span>';
|
113 |
+
echo '<td>' . __( 'Custom Statuses', 'woocommerce-jetpack' ) . '</td>';
|
114 |
+
echo '<td>' . $is_enabled . '</td>';
|
115 |
+
echo '<td>' . __( 'Tool lets you add or delete any custom status for WooCommerce orders.', 'woocommerce-jetpack' ) . '</td>';
|
116 |
+
echo '</tr>';
|
117 |
}
|
118 |
|
119 |
/**
|
254 |
* add_renumerate_orders_tool_info_to_tools_dashboard.
|
255 |
*/
|
256 |
public function add_renumerate_orders_tool_info_to_tools_dashboard() {
|
257 |
+
echo '<tr>';
|
258 |
+
if ( 'yes' === get_option( 'wcj_order_numbers_enabled') )
|
259 |
+
$is_enabled = '<span style="color:green;font-style:italic;">' . __( 'enabled', 'woocommerce-jetpack' ) . '</span>';
|
260 |
else
|
261 |
+
$is_enabled = '<span style="color:gray;font-style:italic;">' . __( 'disabled', 'woocommerce-jetpack' ) . '</span>';
|
262 |
+
echo '<td>' . __( 'Orders Renumerate', 'woocommerce-jetpack' ) . '</td>';
|
263 |
+
echo '<td>' . $is_enabled . '</td>';
|
264 |
+
echo '<td>' . __( 'Tool renumerates all orders.', 'woocommerce-jetpack' ) . '</td>';
|
265 |
+
echo '</tr>';
|
266 |
}
|
267 |
|
268 |
/**
|
includes/class-wcj-price-labels.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Price Labels class.
|
6 |
*
|
7 |
* @class WCJ_Price_Labels
|
8 |
-
* @version 1.
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
@@ -22,20 +22,20 @@ class WCJ_Price_Labels {
|
|
22 |
public $custom_tab_sections_titles = array (
|
23 |
'_instead' => 'Instead of the price',// for compatibility with Custom Price Label Pro plugin should use ''
|
24 |
'_before' => 'Before the price',
|
25 |
-
'_between' => 'Between
|
26 |
'_after' => 'After the price',
|
27 |
);
|
28 |
public $custom_tab_section_variations = array ( '_text', '_enabled', '_home', '_products', '_single', '_page', /*'_simple',*/ '_variable', '_variation', /*'_grouped',*/ );
|
29 |
public $custom_tab_section_variations_titles = array (
|
30 |
-
'_text' => 'The label',
|
31 |
'_enabled' => 'Enable',// for compatibility with Custom Price Label Pro plugin should use ''
|
32 |
'_home' => 'Hide on home page',
|
33 |
'_products' => 'Hide on products page',
|
34 |
'_single' => 'Hide on single',
|
35 |
'_page' => 'Hide on pages',
|
36 |
//'_simple' => 'Hide for simple product',
|
37 |
-
'_variable' => 'Hide for
|
38 |
-
'_variation' => 'Hide for
|
39 |
//'_grouped' => 'Hide for grouped product',
|
40 |
);
|
41 |
|
@@ -99,12 +99,29 @@ class WCJ_Price_Labels {
|
|
99 |
add_filter( $the_filter, array( $this, 'custom_price' ), 100, 2 );
|
100 |
}
|
101 |
|
|
|
|
|
102 |
// Settings hooks
|
103 |
add_filter( 'wcj_settings_sections', array( $this, 'settings_section' ) );
|
104 |
add_filter( 'wcj_settings_price_labels', array( $this, 'get_settings' ), 100 );
|
105 |
add_filter( 'wcj_features_status', array( $this, 'add_enabled_option' ), 100 );
|
106 |
}
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
/**
|
109 |
* Add tab to WooCommerce > Jetpack Tools.
|
110 |
*/
|
@@ -123,7 +140,7 @@ class WCJ_Price_Labels {
|
|
123 |
|
124 |
public function create_migrate_from_custom_price_labels_tool_tab() {
|
125 |
|
126 |
-
echo __( '
|
127 |
|
128 |
$migrate = isset( $_POST['migrate'] ) ? true : false;
|
129 |
|
@@ -165,26 +182,30 @@ class WCJ_Price_Labels {
|
|
165 |
foreach ( $migration_data as $old_meta_name => $new_meta_name ) {
|
166 |
$old_meta_value = get_post_meta( $the_product_id, $old_meta_name, true );
|
167 |
if ( '' != $old_meta_value ) {
|
168 |
-
|
169 |
-
|
170 |
-
if ( $new_meta_value !== $old_meta_value ) {
|
171 |
-
|
172 |
if ( true === $migrate ) {
|
173 |
-
|
174 |
$html .= '<li>' . __( 'Migrating: ', 'woocommerce-jetpack' ) . $old_meta_name . '[' . $old_meta_value . ']' . ' -> ' . $new_meta_name . '[' . $new_meta_value . ']. ';// . '</li>';
|
175 |
-
$html .= __( '
|
176 |
-
$html .= '</li>';
|
|
|
|
|
177 |
}
|
178 |
-
else {
|
|
|
179 |
$html .= '<li>' . __( 'Found data to migrate: ', 'woocommerce-jetpack' ) . $old_meta_name . '[' . $old_meta_value . ']' . ' -> ' . $new_meta_name . '[' . $new_meta_value . ']' . '</li>';
|
180 |
-
}
|
181 |
-
|
182 |
/*if ( true === $do_delete_old ) {
|
|
|
183 |
$html .= '<li>' . __( 'Deleting: ', 'woocommerce-jetpack' ) . $old_meta_name . '[' . $old_meta_value . ']. ';// . '</li>';
|
184 |
$html .= __( ' Result: ', 'woocommerce-jetpack' ) . delete_post_meta( $the_product_id, $old_meta_name, $old_meta_value );
|
185 |
$html .= '</li>';
|
186 |
}*/
|
187 |
-
}
|
|
|
188 |
}
|
189 |
}
|
190 |
endwhile;
|
@@ -198,8 +219,8 @@ class WCJ_Price_Labels {
|
|
198 |
wp_reset_postdata();
|
199 |
|
200 |
$form_html = '<form method="post" action="">';
|
201 |
-
$form_html .= '<p>Press button below to copy all labels from Custom Price Labels (Pro) plugin. Old labels will NOT be deleted. New labels will be overwritten
|
202 |
-
$form_html .= '<p><input type="submit" name="migrate" value="Migrate" /></p>';
|
203 |
$form_html .= '</form>';
|
204 |
|
205 |
echo $form_html . $html;
|
@@ -228,10 +249,13 @@ class WCJ_Price_Labels {
|
|
228 |
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
229 |
|
230 |
foreach ( $this->custom_tab_section_variations as $custom_tab_section_variation ) {
|
231 |
-
|
232 |
//$option_name = $this->custom_tab_group_name;
|
233 |
$option_name = $this->custom_tab_group_name . $custom_tab_section . $custom_tab_section_variation;
|
234 |
|
|
|
|
|
|
|
235 |
if ( $custom_tab_section_variation == '_text' ) {
|
236 |
//$option_name .= $custom_tab_section_variation . $custom_tab_section;
|
237 |
if ( isset( $_POST[ $option_name ] ) ) update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
@@ -241,6 +265,7 @@ class WCJ_Price_Labels {
|
|
241 |
if ( isset( $_POST[ $option_name ] ) ) update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
242 |
else update_post_meta( $post_id, '_' . $option_name, 'off' );
|
243 |
}
|
|
|
244 |
}
|
245 |
}
|
246 |
}
|
@@ -256,13 +281,35 @@ class WCJ_Price_Labels {
|
|
256 |
public function wcj_price_label() {
|
257 |
|
258 |
$current_post_id = get_the_ID();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
|
|
|
260 |
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
261 |
|
262 |
-
|
263 |
-
else $disabled_if_no_plus = '';
|
264 |
|
265 |
-
|
|
|
|
|
|
|
|
|
266 |
|
267 |
foreach ( $this->custom_tab_section_variations as $custom_tab_section_variation ) {
|
268 |
|
@@ -277,18 +324,24 @@ class WCJ_Price_Labels {
|
|
277 |
else $disabled_if_no_plus = '';
|
278 |
//if ( $disabled_if_no_plus != '' ) $disabled_if_no_plus = 'readonly';
|
279 |
|
280 |
-
$label_text = get_post_meta($current_post_id, '_' . $option_name, true );
|
281 |
$label_text = str_replace ( '"', '"', $label_text );
|
282 |
|
283 |
//echo '<li>' . $this->custom_tab_section_variations_titles[ $custom_tab_section_variation ] . ' <input style="width:50%;min-width:300px;" type="text" ' . $disabled_if_no_plus . ' name="' . $option_name . '" id="' . $option_name . '" value="' . $label_text . '" /></li>';
|
284 |
-
echo '<li>' . $this->custom_tab_section_variations_titles[ $custom_tab_section_variation ] . '<
|
285 |
|
286 |
}
|
287 |
else {
|
288 |
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
//$option_name .= $custom_tab_section . $custom_tab_section_variation;
|
290 |
|
291 |
-
if (
|
292 |
else $disabled_if_no_plus = '';
|
293 |
//if ( $disabled_if_no_plus != '' ) $disabled_if_no_plus = 'disabled';
|
294 |
|
@@ -297,8 +350,25 @@ class WCJ_Price_Labels {
|
|
297 |
}
|
298 |
}
|
299 |
|
300 |
-
echo '</ul
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
}
|
|
|
|
|
|
|
302 |
}
|
303 |
|
304 |
/*
|
@@ -356,7 +426,7 @@ class WCJ_Price_Labels {
|
|
356 |
// Global price labels - Remove text from price
|
357 |
$text_to_replace = apply_filters( 'wcj_get_option_filter', '', get_option( 'wcj_global_price_labels_replace_text' ) );
|
358 |
$text_to_replace_with = apply_filters( 'wcj_get_option_filter', '', get_option( 'wcj_global_price_labels_replace_with_text' ) );
|
359 |
-
if ( '' != $text_to_replace &&
|
360 |
$price = str_replace( $text_to_replace, $text_to_replace_with, $price );
|
361 |
|
362 |
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
@@ -383,13 +453,13 @@ class WCJ_Price_Labels {
|
|
383 |
//$price .= print_r( $labels_array );
|
384 |
}
|
385 |
|
386 |
-
if ( $labels_array[ 'variation_enabled' ]
|
387 |
|
388 |
if (
|
389 |
-
( ( $labels_array['variation_home']
|
390 |
-
( ( $labels_array['variation_products']
|
391 |
-
( ( $labels_array['variation_single']
|
392 |
-
( ( $labels_array['variation_page']
|
393 |
)
|
394 |
{
|
395 |
//$current_filter_name = current_filter();
|
5 |
* The WooCommerce Jetpack Price Labels class.
|
6 |
*
|
7 |
* @class WCJ_Price_Labels
|
8 |
+
* @version 1.5.0
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
22 |
public $custom_tab_sections_titles = array (
|
23 |
'_instead' => 'Instead of the price',// for compatibility with Custom Price Label Pro plugin should use ''
|
24 |
'_before' => 'Before the price',
|
25 |
+
'_between' => 'Between regular and sale prices',
|
26 |
'_after' => 'After the price',
|
27 |
);
|
28 |
public $custom_tab_section_variations = array ( '_text', '_enabled', '_home', '_products', '_single', '_page', /*'_simple',*/ '_variable', '_variation', /*'_grouped',*/ );
|
29 |
public $custom_tab_section_variations_titles = array (
|
30 |
+
'_text' => '',//'The label',
|
31 |
'_enabled' => 'Enable',// for compatibility with Custom Price Label Pro plugin should use ''
|
32 |
'_home' => 'Hide on home page',
|
33 |
'_products' => 'Hide on products page',
|
34 |
'_single' => 'Hide on single',
|
35 |
'_page' => 'Hide on pages',
|
36 |
//'_simple' => 'Hide for simple product',
|
37 |
+
'_variable' => 'Hide for main price',
|
38 |
+
'_variation' => 'Hide for all variations',
|
39 |
//'_grouped' => 'Hide for grouped product',
|
40 |
);
|
41 |
|
99 |
add_filter( $the_filter, array( $this, 'custom_price' ), 100, 2 );
|
100 |
}
|
101 |
|
102 |
+
add_action( 'wcj_tools_dashboard', array( $this, 'add_migrate_tool_info_to_tools_dashboard' ), 1000 );
|
103 |
+
|
104 |
// Settings hooks
|
105 |
add_filter( 'wcj_settings_sections', array( $this, 'settings_section' ) );
|
106 |
add_filter( 'wcj_settings_price_labels', array( $this, 'get_settings' ), 100 );
|
107 |
add_filter( 'wcj_features_status', array( $this, 'add_enabled_option' ), 100 );
|
108 |
}
|
109 |
|
110 |
+
/**
|
111 |
+
* add_migrate_tool_info_to_tools_dashboard.
|
112 |
+
*/
|
113 |
+
public function add_migrate_tool_info_to_tools_dashboard() {
|
114 |
+
echo '<tr>';
|
115 |
+
if ( 'yes' === get_option( 'wcj_migrate_from_custom_price_labels_enabled') && 'yes' === get_option( 'wcj_price_labels_enabled') )
|
116 |
+
$is_enabled = '<span style="color:green;font-style:italic;">' . __( 'enabled', 'woocommerce-jetpack' ) . '</span>';
|
117 |
+
else
|
118 |
+
$is_enabled = '<span style="color:gray;font-style:italic;">' . __( 'disabled', 'woocommerce-jetpack' ) . '</span>';
|
119 |
+
echo '<td>' . __( 'Migrate from Custom Price Labels (Pro)', 'woocommerce-jetpack' ) . '</td>';
|
120 |
+
echo '<td>' . $is_enabled . '</td>';
|
121 |
+
echo '<td>' . __( 'Tool lets you copy all the data (that is labels) from Custom Price labels (Pro) plugin to WooCommerce Jetpack.', 'woocommerce-jetpack' ) . '</td>';
|
122 |
+
echo '</tr>';
|
123 |
+
}
|
124 |
+
|
125 |
/**
|
126 |
* Add tab to WooCommerce > Jetpack Tools.
|
127 |
*/
|
140 |
|
141 |
public function create_migrate_from_custom_price_labels_tool_tab() {
|
142 |
|
143 |
+
echo '<h2>' . __( 'WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)', 'woocommerce-jetpack' ) . '</h2>';
|
144 |
|
145 |
$migrate = isset( $_POST['migrate'] ) ? true : false;
|
146 |
|
182 |
foreach ( $migration_data as $old_meta_name => $new_meta_name ) {
|
183 |
$old_meta_value = get_post_meta( $the_product_id, $old_meta_name, true );
|
184 |
if ( '' != $old_meta_value ) {
|
185 |
+
// Found Old (Custom Price Labels Plugin) meta to migrate from
|
186 |
+
$new_meta_value = get_post_meta( $the_product_id, $new_meta_name, true );
|
187 |
+
if ( $new_meta_value !== $old_meta_value ) {
|
188 |
+
// Found Old (Custom Price Labels Plugin) meta to migrate to
|
189 |
if ( true === $migrate ) {
|
190 |
+
// Migrating
|
191 |
$html .= '<li>' . __( 'Migrating: ', 'woocommerce-jetpack' ) . $old_meta_name . '[' . $old_meta_value . ']' . ' -> ' . $new_meta_name . '[' . $new_meta_value . ']. ';// . '</li>';
|
192 |
+
$html .= __( 'Result: ', 'woocommerce-jetpack' ) . update_post_meta( $the_product_id, $new_meta_name, $old_meta_value );
|
193 |
+
$html .= '</li>';
|
194 |
+
|
195 |
+
//wp_update_post( array( 'ID' => $the_product_id ) );
|
196 |
}
|
197 |
+
else {
|
198 |
+
// Info only
|
199 |
$html .= '<li>' . __( 'Found data to migrate: ', 'woocommerce-jetpack' ) . $old_meta_name . '[' . $old_meta_value . ']' . ' -> ' . $new_meta_name . '[' . $new_meta_value . ']' . '</li>';
|
200 |
+
}
|
|
|
201 |
/*if ( true === $do_delete_old ) {
|
202 |
+
// Delete Old (Custom Price Labels Plugin) meta
|
203 |
$html .= '<li>' . __( 'Deleting: ', 'woocommerce-jetpack' ) . $old_meta_name . '[' . $old_meta_value . ']. ';// . '</li>';
|
204 |
$html .= __( ' Result: ', 'woocommerce-jetpack' ) . delete_post_meta( $the_product_id, $old_meta_name, $old_meta_value );
|
205 |
$html .= '</li>';
|
206 |
}*/
|
207 |
+
}
|
208 |
+
//wp_update_post( array( 'ID' => $the_product_id ) );
|
209 |
}
|
210 |
}
|
211 |
endwhile;
|
219 |
wp_reset_postdata();
|
220 |
|
221 |
$form_html = '<form method="post" action="">';
|
222 |
+
$form_html .= '<p>' . __( 'Press button below to copy all labels from Custom Price Labels (Pro) plugin. Old labels will NOT be deleted. New labels will be overwritten.', 'woocommerce-jetpack' ) . '</p>';
|
223 |
+
$form_html .= '<p><input type="submit" class="button-primary" name="migrate" value="' . __( 'Migrate data', 'woocommerce-jetpack' ) . '" /></p>';
|
224 |
$form_html .= '</form>';
|
225 |
|
226 |
echo $form_html . $html;
|
249 |
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
250 |
|
251 |
foreach ( $this->custom_tab_section_variations as $custom_tab_section_variation ) {
|
252 |
+
|
253 |
//$option_name = $this->custom_tab_group_name;
|
254 |
$option_name = $this->custom_tab_group_name . $custom_tab_section . $custom_tab_section_variation;
|
255 |
|
256 |
+
if ( isset( $_POST[ $option_name ] ) ) update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
257 |
+
|
258 |
+
/*
|
259 |
if ( $custom_tab_section_variation == '_text' ) {
|
260 |
//$option_name .= $custom_tab_section_variation . $custom_tab_section;
|
261 |
if ( isset( $_POST[ $option_name ] ) ) update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
265 |
if ( isset( $_POST[ $option_name ] ) ) update_post_meta( $post_id, '_' . $option_name, $_POST[ $option_name ] );
|
266 |
else update_post_meta( $post_id, '_' . $option_name, 'off' );
|
267 |
}
|
268 |
+
*/
|
269 |
}
|
270 |
}
|
271 |
}
|
281 |
public function wcj_price_label() {
|
282 |
|
283 |
$current_post_id = get_the_ID();
|
284 |
+
echo '<table style="width:100%;">';
|
285 |
+
|
286 |
+
|
287 |
+
echo '<tr>';
|
288 |
+
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
289 |
+
echo '<td style="width:25%;"><h4>' . $this->custom_tab_sections_titles[ $custom_tab_section ] . '</h4></td>';
|
290 |
+
}
|
291 |
+
echo '</tr>';
|
292 |
+
/*echo '<tr>';
|
293 |
+
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
294 |
+
if ( '_instead' != $custom_tab_section )
|
295 |
+
$disabled_if_no_plus = apply_filters( 'get_wc_jetpack_plus_message', '', 'desc_below' );
|
296 |
+
else
|
297 |
+
$disabled_if_no_plus = '';
|
298 |
+
echo '<td style="width:25%;">' . $disabled_if_no_plus . '</td>';
|
299 |
+
}
|
300 |
+
echo '</tr>'; */
|
301 |
+
|
302 |
|
303 |
+
echo '<tr>';
|
304 |
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
305 |
|
306 |
+
echo '<td style="width:25%;">';
|
|
|
307 |
|
308 |
+
/*if ( $custom_tab_section == '_before' ) $disabled_if_no_plus = apply_filters( 'get_wc_jetpack_plus_message', '', 'desc_below' );
|
309 |
+
else $disabled_if_no_plus = '';
|
310 |
+
echo '<p>' . $disabled_if_no_plus . '<ul><h4>' . $this->custom_tab_sections_titles[ $custom_tab_section ] . '</h4>';*/
|
311 |
+
|
312 |
+
echo '<ul>';//<li><h4>' . $this->custom_tab_sections_titles[ $custom_tab_section ] . '</h4></li>';
|
313 |
|
314 |
foreach ( $this->custom_tab_section_variations as $custom_tab_section_variation ) {
|
315 |
|
324 |
else $disabled_if_no_plus = '';
|
325 |
//if ( $disabled_if_no_plus != '' ) $disabled_if_no_plus = 'readonly';
|
326 |
|
327 |
+
$label_text = get_post_meta( $current_post_id, '_' . $option_name, true );
|
328 |
$label_text = str_replace ( '"', '"', $label_text );
|
329 |
|
330 |
//echo '<li>' . $this->custom_tab_section_variations_titles[ $custom_tab_section_variation ] . ' <input style="width:50%;min-width:300px;" type="text" ' . $disabled_if_no_plus . ' name="' . $option_name . '" id="' . $option_name . '" value="' . $label_text . '" /></li>';
|
331 |
+
echo '<li>' . $this->custom_tab_section_variations_titles[ $custom_tab_section_variation ] . '<textarea style="width:95%;min-width:100px;height:100px;" ' . $disabled_if_no_plus . ' name="' . $option_name . '">' . $label_text . '</textarea></li>';
|
332 |
|
333 |
}
|
334 |
else {
|
335 |
|
336 |
+
if ( '_home' === $custom_tab_section_variation )
|
337 |
+
echo '<li><h5>Hide by page type</h5></li>';
|
338 |
+
|
339 |
+
if ( '_variable' === $custom_tab_section_variation )
|
340 |
+
echo '<li><h5>Variable products</h5></li>';
|
341 |
+
|
342 |
//$option_name .= $custom_tab_section . $custom_tab_section_variation;
|
343 |
|
344 |
+
if ( '_instead' != $custom_tab_section ) $disabled_if_no_plus = apply_filters( 'get_wc_jetpack_plus_message', '', 'disabled_string' );
|
345 |
else $disabled_if_no_plus = '';
|
346 |
//if ( $disabled_if_no_plus != '' ) $disabled_if_no_plus = 'disabled';
|
347 |
|
350 |
}
|
351 |
}
|
352 |
|
353 |
+
echo '</ul>';//</p>';
|
354 |
+
|
355 |
+
echo '</td>';
|
356 |
+
|
357 |
+
}
|
358 |
+
|
359 |
+
echo '</tr>';
|
360 |
+
|
361 |
+
echo '<tr>';
|
362 |
+
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
363 |
+
if ( '_instead' != $custom_tab_section )
|
364 |
+
$disabled_if_no_plus = apply_filters( 'get_wc_jetpack_plus_message', '', 'desc_above' );
|
365 |
+
else
|
366 |
+
$disabled_if_no_plus = '';
|
367 |
+
echo '<td style="width:25%;">' . $disabled_if_no_plus . '</td>';
|
368 |
}
|
369 |
+
echo '</tr>';
|
370 |
+
|
371 |
+
echo '</table>';
|
372 |
}
|
373 |
|
374 |
/*
|
426 |
// Global price labels - Remove text from price
|
427 |
$text_to_replace = apply_filters( 'wcj_get_option_filter', '', get_option( 'wcj_global_price_labels_replace_text' ) );
|
428 |
$text_to_replace_with = apply_filters( 'wcj_get_option_filter', '', get_option( 'wcj_global_price_labels_replace_with_text' ) );
|
429 |
+
if ( '' != $text_to_replace && '' != $text_to_replace_with )
|
430 |
$price = str_replace( $text_to_replace, $text_to_replace_with, $price );
|
431 |
|
432 |
foreach ( $this->custom_tab_sections as $custom_tab_section ) {
|
453 |
//$price .= print_r( $labels_array );
|
454 |
}
|
455 |
|
456 |
+
if ( 'on' === $labels_array[ 'variation_enabled' ] ) {
|
457 |
|
458 |
if (
|
459 |
+
( ( 'off' === $labels_array['variation_home'] ) && ( is_front_page() ) ) ||
|
460 |
+
( ( 'off' === $labels_array['variation_products'] ) && ( is_archive() ) ) ||
|
461 |
+
( ( 'off' === $labels_array['variation_single'] ) && ( is_single() ) ) ||
|
462 |
+
( ( 'off' === $labels_array['variation_page'] ) && ( is_page() ) )
|
463 |
)
|
464 |
{
|
465 |
//$current_filter_name = current_filter();
|
langs/woocommerce-jetpack-en_EN.mo
DELETED
Binary file
|
langs/woocommerce-jetpack-en_EN.po
DELETED
@@ -1,303 +0,0 @@
|
|
1 |
-
# Copyright (C) 2014 WooCommerce Jetpack
|
2 |
-
# This file is distributed under the same license as the WooCommerce Jetpack package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: WooCommerce Jetpack 1.0.2\n"
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
|
7 |
-
"POT-Creation-Date: 2014-06-13 22:27:34+00:00\n"
|
8 |
-
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
-
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date: 2014-06-14 01:29+0200\n"
|
12 |
-
"Last-Translator: \n"
|
13 |
-
"Language-Team: \n"
|
14 |
-
"X-Generator: Poedit 1.5.5\n"
|
15 |
-
|
16 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:20
|
17 |
-
msgid "Jetpack"
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:36
|
21 |
-
msgid "Dashboard"
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:78
|
25 |
-
msgid "Features"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: includes/class-wcj-call-for-price.php:119
|
29 |
-
msgid "Sale!"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: includes/class-wcj-call-for-price.php:165
|
33 |
-
msgid "Call for Price Options"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: includes/class-wcj-call-for-price.php:171
|
37 |
-
msgid "Call for Price"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: includes/class-wcj-call-for-price.php:173
|
41 |
-
msgid "Enable the Call for Price feature"
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#: includes/class-wcj-call-for-price.php:175
|
45 |
-
msgid "Create any custom price label for all products with empty price."
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: includes/class-wcj-call-for-price.php:189
|
49 |
-
#: includes/class-wcj-product-info.php:163
|
50 |
-
msgid "Text to Show"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: includes/class-wcj-call-for-price.php:191
|
54 |
-
msgid "This sets the html to output on empty price."
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: includes/class-wcj-call-for-price.php:213
|
58 |
-
msgid "Show on Single Product"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: includes/class-wcj-call-for-price.php:215
|
62 |
-
msgid "Check to show on single products page"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: includes/class-wcj-call-for-price.php:229
|
66 |
-
msgid "Show on Products Archive"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: includes/class-wcj-call-for-price.php:231
|
70 |
-
msgid "Check to show on products archive page"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: includes/class-wcj-call-for-price.php:245
|
74 |
-
msgid "Show on Home Page"
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: includes/class-wcj-call-for-price.php:247
|
78 |
-
msgid "Check to show on home page"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: includes/class-wcj-call-for-price.php:261
|
82 |
-
msgid "Hide Sale! Tag"
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: includes/class-wcj-call-for-price.php:263
|
86 |
-
msgid "Hide the tag"
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: includes/class-wcj-currencies.php:777
|
90 |
-
msgid "Currency Symbol"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: includes/class-wcj-currencies.php:779
|
94 |
-
msgid "This sets the currency symbol."
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: includes/class-wcj-currencies.php:819
|
98 |
-
msgid "Currencies Options"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: includes/class-wcj-currencies.php:825
|
102 |
-
msgid "Currencies"
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: includes/class-wcj-currencies.php:827
|
106 |
-
msgid "Enable the Currencies feature"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: includes/class-wcj-currencies.php:829
|
110 |
-
msgid "Add all world currencies, change currency symbol."
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: includes/class-wcj-currencies.php:845
|
114 |
-
msgid "Currency Symbol Options"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: includes/class-wcj-old-slugs.php:105
|
118 |
-
msgid "Old Slugs Options"
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: includes/class-wcj-old-slugs.php:111
|
122 |
-
msgid "Old Slugs"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: includes/class-wcj-old-slugs.php:113
|
126 |
-
msgid "Enable the Remove Old Product Slugs feature"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: includes/class-wcj-old-slugs.php:115
|
130 |
-
msgid ""
|
131 |
-
"Remove old product slugs. Tool is accessible through <a href=\"/wp-admin/"
|
132 |
-
"admin.php?page=woocommerce-jetpack-old-slugs\">WooCommerce > Remove Old "
|
133 |
-
"Slugs</a>."
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: includes/class-wcj-price-labels.php:479
|
137 |
-
msgid "Custom Price Labels Options"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: includes/class-wcj-price-labels.php:485
|
141 |
-
msgid "Custom Price Labels"
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
#: includes/class-wcj-price-labels.php:487
|
145 |
-
msgid "Enable the Custom Price Labels feature"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: includes/class-wcj-price-labels.php:489
|
149 |
-
msgid "Create any custom price label for any product."
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: includes/class-wcj-product-info.php:111
|
153 |
-
msgid "Product Info Options"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: includes/class-wcj-product-info.php:117
|
157 |
-
msgid "Product Info"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: includes/class-wcj-product-info.php:119
|
161 |
-
msgid "Enable the Product Info feature"
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: includes/class-wcj-product-info.php:121
|
165 |
-
msgid "Display total product sales etc."
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
#: includes/class-wcj-product-info.php:139
|
169 |
-
msgid "Total Sales Options"
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#: includes/class-wcj-product-info.php:145 includes/class-wcj-sorting.php:393
|
173 |
-
#: includes/class-wcj-sorting.php:429 includes/class-wcj-sorting.php:465
|
174 |
-
#: includes/class-wcj-sorting.php:501
|
175 |
-
msgid "Enable"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: includes/class-wcj-product-info.php:147
|
179 |
-
msgid "Enable Total Sales"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: includes/class-wcj-product-info.php:165
|
183 |
-
msgid ""
|
184 |
-
"This sets the text to output for total sales. Default is \"Total Sales: "
|
185 |
-
"[TOTALSALES]\""
|
186 |
-
msgstr ""
|
187 |
-
|
188 |
-
#: includes/class-wcj-product-info.php:171
|
189 |
-
msgid "Total Sales: [TOTALSALES]"
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#: includes/class-wcj-sorting.php:131 includes/class-wcj-sorting.php:337
|
193 |
-
#: includes/class-wcj-sorting.php:343
|
194 |
-
msgid "Remove All Sorting"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#: includes/class-wcj-sorting.php:141
|
198 |
-
msgid "Completely remove sorting from the shop front end"
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
-
#: includes/class-wcj-sorting.php:311
|
202 |
-
msgid "Sorting Options"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: includes/class-wcj-sorting.php:317
|
206 |
-
msgid "Sorting"
|
207 |
-
msgstr ""
|
208 |
-
|
209 |
-
#: includes/class-wcj-sorting.php:319
|
210 |
-
msgid "Enable the Sorting feature"
|
211 |
-
msgstr ""
|
212 |
-
|
213 |
-
#: includes/class-wcj-sorting.php:321
|
214 |
-
msgid "Add more sorting options or remove all sorting including default."
|
215 |
-
msgstr ""
|
216 |
-
|
217 |
-
#: includes/class-wcj-sorting.php:345
|
218 |
-
msgid "Remove all sorting (including WooCommerce default)"
|
219 |
-
msgstr ""
|
220 |
-
|
221 |
-
#: includes/class-wcj-sorting.php:367
|
222 |
-
msgid "Add More Sorting"
|
223 |
-
msgstr ""
|
224 |
-
|
225 |
-
#: includes/class-wcj-sorting.php:373 includes/class-wcj-sorting.php:391
|
226 |
-
msgid "Sort by Name - Asc"
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#: includes/class-wcj-sorting.php:375 includes/class-wcj-sorting.php:411
|
230 |
-
#: includes/class-wcj-sorting.php:447 includes/class-wcj-sorting.php:483
|
231 |
-
msgid "Text visible at front end"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: includes/class-wcj-sorting.php:395 includes/class-wcj-sorting.php:431
|
235 |
-
#: includes/class-wcj-sorting.php:467 includes/class-wcj-sorting.php:503
|
236 |
-
msgid "Check to enable."
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: includes/class-wcj-sorting.php:409 includes/class-wcj-sorting.php:427
|
240 |
-
msgid "Sort by Name - Desc"
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: includes/class-wcj-sorting.php:445 includes/class-wcj-sorting.php:463
|
244 |
-
msgid "Sort by SKU - Asc"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: includes/class-wcj-sorting.php:481 includes/class-wcj-sorting.php:499
|
248 |
-
msgid "Sort by SKU - Desc"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: woocommerce-jetpack.php:211
|
252 |
-
msgid "Install WooCommerce Jetpack Plus to unlock all features"
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: woocommerce-jetpack.php:213
|
256 |
-
msgid ""
|
257 |
-
"Some settings fields are locked and you will need %s to modify all locked "
|
258 |
-
"fields."
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: woocommerce-jetpack.php:215
|
262 |
-
msgid "Buy now just for %s"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: woocommerce-jetpack.php:215
|
266 |
-
msgid "Visit %s"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: woocommerce-jetpack.php:223
|
270 |
-
msgid ""
|
271 |
-
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
272 |
-
"Jetpack Plus</a> to change value."
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: woocommerce-jetpack.php:229
|
276 |
-
msgid ""
|
277 |
-
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
278 |
-
"Jetpack Plus</a> to change values below."
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: woocommerce-jetpack.php:235
|
282 |
-
msgid "Get WooCommerce Jetpack Plus to change value."
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#. Plugin Name of the plugin/theme
|
286 |
-
msgid "WooCommerce Jetpack"
|
287 |
-
msgstr ""
|
288 |
-
|
289 |
-
#. Plugin URI of the plugin/theme
|
290 |
-
msgid "http://woojetpack.com"
|
291 |
-
msgstr ""
|
292 |
-
|
293 |
-
#. Description of the plugin/theme
|
294 |
-
msgid "Supercharge your WooCommerce site with these awesome powerful features."
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#. Author of the plugin/theme
|
298 |
-
msgid "Algoritmika Ltd."
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#. Author URI of the plugin/theme
|
302 |
-
msgid "http://www.algoritmika.com"
|
303 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
langs/woocommerce-jetpack-fr_FR.mo
CHANGED
Binary file
|
langs/woocommerce-jetpack-fr_FR.po
ADDED
@@ -0,0 +1,2211 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce Jetpack v1.7.5\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2014-10-08 09:11:20+0000\n"
|
7 |
+
"Last-Translator: admin <postmaster@gobeletspersonnalises.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
13 |
+
"X-Generator: CSL v1.x\n"
|
14 |
+
"X-Poedit-Language: French\n"
|
15 |
+
"X-Poedit-Country: FRANCE\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: ../\n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: includes/class-wcj-sorting.php:193
|
24 |
+
#@ woocommerce-jetpack
|
25 |
+
msgid "Add More Sorting"
|
26 |
+
msgstr "Ajouter des options de tri"
|
27 |
+
|
28 |
+
#: includes/class-wcj-add-to-cart.php:144
|
29 |
+
#: includes/class-wcj-add-to-cart.php:315
|
30 |
+
#@ woocommerce-jetpack
|
31 |
+
msgid "Add to Cart"
|
32 |
+
msgstr "Ajouter au panier"
|
33 |
+
|
34 |
+
#: includes/class-wcj-add-to-cart.php:180
|
35 |
+
#@ woocommerce-jetpack
|
36 |
+
msgid "Add to Cart Button Text Options"
|
37 |
+
msgstr "Options: Texte du bouton [ajouter au panier]"
|
38 |
+
|
39 |
+
#: includes/class-wcj-add-to-cart.php:141
|
40 |
+
#@ woocommerce-jetpack
|
41 |
+
msgid "Add to Cart Options"
|
42 |
+
msgstr "Options: Ajouter au panier"
|
43 |
+
|
44 |
+
#: includes/class-wcj-add-to-cart.php:158
|
45 |
+
#@ woocommerce-jetpack
|
46 |
+
msgid "Add to Cart Redirect Options"
|
47 |
+
msgstr "Options: Redirection lors de l'ajout au panier"
|
48 |
+
|
49 |
+
#: includes/class-wcj-cart.php:164
|
50 |
+
#: includes/class-wcj-cart.php:167
|
51 |
+
#@ woocommerce-jetpack
|
52 |
+
msgid "Add to Cart on Visit"
|
53 |
+
msgstr "Ajouter au panier lors de la visite"
|
54 |
+
|
55 |
+
#: includes/class-wcj-add-to-cart.php:183
|
56 |
+
#@ woocommerce-jetpack
|
57 |
+
msgid "Add to cart text"
|
58 |
+
msgstr "Texte du bouton"
|
59 |
+
|
60 |
+
#: includes/class-wcj-product-info.php:320
|
61 |
+
#@ woocommerce-jetpack
|
62 |
+
msgid "Additional Information Tab"
|
63 |
+
msgstr "Onglet des informations complémentaires"
|
64 |
+
|
65 |
+
#: includes/class-wcj-product-info.php:390
|
66 |
+
#@ woocommerce-jetpack
|
67 |
+
msgid "Ascending"
|
68 |
+
msgstr "Croissant"
|
69 |
+
|
70 |
+
#: includes/class-wcj-call-for-price.php:75
|
71 |
+
#: includes/class-wcj-call-for-price.php:158
|
72 |
+
#@ woocommerce-jetpack
|
73 |
+
msgid "Call for Price"
|
74 |
+
msgstr "Masquer les prix"
|
75 |
+
|
76 |
+
#: includes/class-wcj-call-for-price.php:72
|
77 |
+
#@ woocommerce-jetpack
|
78 |
+
msgid "Call for Price Options"
|
79 |
+
msgstr "Options: Masquer les prix"
|
80 |
+
|
81 |
+
#: includes/class-wcj-checkout.php:144
|
82 |
+
#: includes/class-wcj-checkout.php:273
|
83 |
+
#@ woocommerce-jetpack
|
84 |
+
msgid "Checkout"
|
85 |
+
msgstr "Processus de commande"
|
86 |
+
|
87 |
+
#: includes/class-wcj-checkout.php:170
|
88 |
+
#@ woocommerce-jetpack
|
89 |
+
msgid "Checkout Fields Options"
|
90 |
+
msgstr "Options: Champs du processus de commande"
|
91 |
+
|
92 |
+
#: includes/class-wcj-checkout.php:141
|
93 |
+
#@ woocommerce-jetpack
|
94 |
+
msgid "Checkout Options"
|
95 |
+
msgstr "Options: Processus commande"
|
96 |
+
|
97 |
+
#: includes/class-wcj-currencies.php:414
|
98 |
+
#: includes/class-wcj-currencies.php:445
|
99 |
+
#@ woocommerce-jetpack
|
100 |
+
msgid "Currencies"
|
101 |
+
msgstr "Devises"
|
102 |
+
|
103 |
+
#: includes/class-wcj-currencies.php:411
|
104 |
+
#@ woocommerce-jetpack
|
105 |
+
msgid "Currencies Options"
|
106 |
+
msgstr "Options: Devises"
|
107 |
+
|
108 |
+
#: includes/class-wcj-general.php:86
|
109 |
+
#@ woocommerce-jetpack
|
110 |
+
msgid "Custom CSS - Front end (Customers)"
|
111 |
+
msgstr "CSS pour les utilisateurs"
|
112 |
+
|
113 |
+
#: includes/class-wcj-general.php:83
|
114 |
+
#@ woocommerce-jetpack
|
115 |
+
msgid "Custom CSS Options"
|
116 |
+
msgstr "Options: CSS"
|
117 |
+
|
118 |
+
#: includes/class-wcj-price-labels.php:435
|
119 |
+
#: includes/class-wcj-price-labels.php:529
|
120 |
+
#@ woocommerce-jetpack
|
121 |
+
msgid "Custom Price Labels"
|
122 |
+
msgstr "Prix"
|
123 |
+
|
124 |
+
#: includes/class-wcj-price-labels.php:432
|
125 |
+
#@ woocommerce-jetpack
|
126 |
+
msgid "Custom Price Labels Options"
|
127 |
+
msgstr "Options: Affichage des prix"
|
128 |
+
|
129 |
+
#: includes/class-wcj-orders.php:121
|
130 |
+
#: includes/class-wcj-orders.php:533
|
131 |
+
#: includes/class-wcj-orders.php:536
|
132 |
+
#@ woocommerce-jetpack
|
133 |
+
msgid "Custom Statuses"
|
134 |
+
msgstr "Statuts personnalisés"
|
135 |
+
|
136 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:40
|
137 |
+
#@ woocommerce-jetpack
|
138 |
+
msgid "Dashboard"
|
139 |
+
msgstr "Tableau de bord"
|
140 |
+
|
141 |
+
#: includes/class-wcj-payment-gateways.php:151
|
142 |
+
#@ woocommerce-jetpack
|
143 |
+
msgid "Default WooCommerce Payment Gateways Options"
|
144 |
+
msgstr "Options par défaut: Passerelles de paiement"
|
145 |
+
|
146 |
+
#: includes/class-wcj-product-info.php:391
|
147 |
+
#@ woocommerce-jetpack
|
148 |
+
msgid "Descending"
|
149 |
+
msgstr "Décroissant"
|
150 |
+
|
151 |
+
#: includes/class-wcj-product-info.php:268
|
152 |
+
#@ woocommerce-jetpack
|
153 |
+
msgid "Description Tab"
|
154 |
+
msgstr "Onglet de description"
|
155 |
+
|
156 |
+
#: includes/class-wcj-cart.php:134
|
157 |
+
#@ woocommerce-jetpack
|
158 |
+
msgid "Empty Cart"
|
159 |
+
msgstr "Vider le panier"
|
160 |
+
|
161 |
+
#: includes/class-wcj-cart.php:142
|
162 |
+
#@ woocommerce-jetpack
|
163 |
+
msgid "Empty Cart Button Text"
|
164 |
+
msgstr "Texte pour le bouton"
|
165 |
+
|
166 |
+
#: includes/class-wcj-cart.php:131
|
167 |
+
#@ woocommerce-jetpack
|
168 |
+
msgid "Empty Cart Options"
|
169 |
+
msgstr "Options: Vider le panier"
|
170 |
+
|
171 |
+
#: includes/class-wcj-add-to-cart.php:162
|
172 |
+
#: includes/class-wcj-add-to-cart.php:184
|
173 |
+
#: includes/class-wcj-cart.php:135
|
174 |
+
#: includes/class-wcj-cart.php:168
|
175 |
+
#: includes/class-wcj-orders.php:418
|
176 |
+
#: includes/class-wcj-orders.php:524
|
177 |
+
#: includes/class-wcj-orders.php:537
|
178 |
+
#: includes/class-wcj-price-labels.php:513
|
179 |
+
#: includes/class-wcj-product-info.php:187
|
180 |
+
#: includes/class-wcj-product-info.php:224
|
181 |
+
#: includes/class-wcj-product-info.php:351
|
182 |
+
#: includes/class-wcj-sorting.php:206
|
183 |
+
#: includes/class-wcj-sorting.php:224
|
184 |
+
#: includes/class-wcj-sorting.php:242
|
185 |
+
#: includes/class-wcj-sorting.php:260
|
186 |
+
#@ woocommerce-jetpack
|
187 |
+
msgid "Enable"
|
188 |
+
msgstr "Activer"
|
189 |
+
|
190 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:58
|
191 |
+
#@ woocommerce-jetpack
|
192 |
+
msgid "Enable Custom Shipping"
|
193 |
+
msgstr "Activer la livraison personnalisée"
|
194 |
+
|
195 |
+
#: includes/class-wcj-add-to-cart.php:145
|
196 |
+
#@ woocommerce-jetpack
|
197 |
+
msgid "Enable the Add to Cart feature"
|
198 |
+
msgstr "Activer les options pour ajouter au panier"
|
199 |
+
|
200 |
+
#: includes/class-wcj-call-for-price.php:76
|
201 |
+
#@ woocommerce-jetpack
|
202 |
+
msgid "Enable the Call for Price feature"
|
203 |
+
msgstr "Activer cette option pour afficher [contactez-nous] en lieu et place des prix."
|
204 |
+
|
205 |
+
#: includes/class-wcj-cart.php:122
|
206 |
+
#@ woocommerce-jetpack
|
207 |
+
msgid "Enable the Cart feature"
|
208 |
+
msgstr "Activer les options du panier"
|
209 |
+
|
210 |
+
#: includes/class-wcj-checkout.php:145
|
211 |
+
#@ woocommerce-jetpack
|
212 |
+
msgid "Enable the Checkout feature"
|
213 |
+
msgstr "Activer les options pour le processus de commande"
|
214 |
+
|
215 |
+
#: includes/class-wcj-currencies.php:415
|
216 |
+
#@ woocommerce-jetpack
|
217 |
+
msgid "Enable the Currencies feature"
|
218 |
+
msgstr "Activer les options des devises"
|
219 |
+
|
220 |
+
#: includes/class-wcj-price-labels.php:436
|
221 |
+
#@ woocommerce-jetpack
|
222 |
+
msgid "Enable the Custom Price Labels feature"
|
223 |
+
msgstr "Activer les options pour l'affichage personnalisé"
|
224 |
+
|
225 |
+
#: includes/class-wcj-general.php:74
|
226 |
+
#@ woocommerce-jetpack
|
227 |
+
msgid "Enable the General feature"
|
228 |
+
msgstr "Activer les options de stylisation"
|
229 |
+
|
230 |
+
#: includes/class-wcj-product-info.php:173
|
231 |
+
#@ woocommerce-jetpack
|
232 |
+
msgid "Enable the Product Info feature"
|
233 |
+
msgstr "activer les options pour les fiches produit"
|
234 |
+
|
235 |
+
#: includes/class-wcj-old-slugs.php:86
|
236 |
+
#@ woocommerce-jetpack
|
237 |
+
msgid "Enable the Remove Old Product Slugs feature"
|
238 |
+
msgstr "Activer la fonction de suppression des Permaliens non utilisés"
|
239 |
+
|
240 |
+
#: includes/class-wcj-shipping.php:156
|
241 |
+
#@ woocommerce-jetpack
|
242 |
+
msgid "Enable the Shipping feature"
|
243 |
+
msgstr "Activer les options de livraison"
|
244 |
+
|
245 |
+
#: includes/class-wcj-sorting.php:169
|
246 |
+
#@ woocommerce-jetpack
|
247 |
+
msgid "Enable the Sorting feature"
|
248 |
+
msgstr "Activer les options de tri"
|
249 |
+
|
250 |
+
#: includes/class-wcj-add-to-cart.php:204
|
251 |
+
#@ woocommerce-jetpack
|
252 |
+
msgid "External product"
|
253 |
+
msgstr "Produit externe / affiliation"
|
254 |
+
|
255 |
+
#: includes/class-wcj-general.php:73
|
256 |
+
#: includes/class-wcj-general.php:111
|
257 |
+
#@ woocommerce-jetpack
|
258 |
+
msgid "General"
|
259 |
+
msgstr "Stylisation"
|
260 |
+
|
261 |
+
#: includes/class-wcj-general.php:70
|
262 |
+
#: includes/class-wcj-pdf-invoices.php:1018
|
263 |
+
#@ woocommerce-jetpack
|
264 |
+
msgid "General Options"
|
265 |
+
msgstr "Options: Stylisation"
|
266 |
+
|
267 |
+
#: includes/class-wcj-price-labels.php:445
|
268 |
+
#@ woocommerce-jetpack
|
269 |
+
msgid "Global Custom Price Labels"
|
270 |
+
msgstr "Option: modification générale pour l'affichage des prix"
|
271 |
+
|
272 |
+
#: includes/class-wcj-add-to-cart.php:209
|
273 |
+
#@ woocommerce-jetpack
|
274 |
+
msgid "Grouped product"
|
275 |
+
msgstr "Produits groupés"
|
276 |
+
|
277 |
+
#: includes/class-wcj-shipping.php:75
|
278 |
+
#: includes/class-wcj-shipping.php:180
|
279 |
+
#@ woocommerce-jetpack
|
280 |
+
msgid "Hide all when free is available"
|
281 |
+
msgstr "Tout masquer lorsque la livraison gratuite est disponible"
|
282 |
+
|
283 |
+
#: includes/class-wcj-shipping.php:165
|
284 |
+
#@ woocommerce-jetpack
|
285 |
+
msgid "Hide if free is available"
|
286 |
+
msgstr "Masquer si l'option de livraison gratuite est disponible"
|
287 |
+
|
288 |
+
#: includes/class-wcj-shipping.php:64
|
289 |
+
#: includes/class-wcj-shipping.php:170
|
290 |
+
#@ woocommerce-jetpack
|
291 |
+
msgid "Hide local delivery when free is available"
|
292 |
+
msgstr "Masquer la livraison locale"
|
293 |
+
|
294 |
+
#: includes/class-wcj-shipping.php:169
|
295 |
+
#@ woocommerce-jetpack
|
296 |
+
msgid "Hide shipping"
|
297 |
+
msgstr "Masquer la livraison"
|
298 |
+
|
299 |
+
#: includes/class-wcj-shipping.php:157
|
300 |
+
#@ woocommerce-jetpack
|
301 |
+
msgid "Hide shipping when free is available."
|
302 |
+
msgstr "Permet de masquer les options de livraison lorsque la livraison gratuite est disponible."
|
303 |
+
|
304 |
+
#: includes/class-wcj-call-for-price.php:96
|
305 |
+
#@ woocommerce-jetpack
|
306 |
+
msgid "Label to Show on Archives"
|
307 |
+
msgstr "Texte pour les archives"
|
308 |
+
|
309 |
+
#: includes/class-wcj-call-for-price.php:108
|
310 |
+
#@ woocommerce-jetpack
|
311 |
+
msgid "Label to Show on Homepage"
|
312 |
+
msgstr "Texte pour la page d'accueil"
|
313 |
+
|
314 |
+
#: includes/class-wcj-call-for-price.php:84
|
315 |
+
#@ woocommerce-jetpack
|
316 |
+
msgid "Label to Show on Single"
|
317 |
+
msgstr "Texte pour les produits seul"
|
318 |
+
|
319 |
+
#: includes/class-wcj-product-info.php:384
|
320 |
+
#@ woocommerce-jetpack
|
321 |
+
msgid "Order"
|
322 |
+
msgstr "Classement"
|
323 |
+
|
324 |
+
#: includes/class-wcj-product-info.php:372
|
325 |
+
#@ woocommerce-jetpack
|
326 |
+
msgid "Order by"
|
327 |
+
msgstr "Classer par"
|
328 |
+
|
329 |
+
#: includes/class-wcj-orders.php:404
|
330 |
+
#: includes/class-wcj-orders.php:555
|
331 |
+
#@ woocommerce-jetpack
|
332 |
+
msgid "Orders"
|
333 |
+
msgstr "Commandes"
|
334 |
+
|
335 |
+
#: includes/class-wcj-payment-gateways.php:122
|
336 |
+
#: includes/class-wcj-payment-gateways.php:183
|
337 |
+
#@ woocommerce-jetpack
|
338 |
+
msgid "Payment Gateways"
|
339 |
+
msgstr "Paiement"
|
340 |
+
|
341 |
+
#: includes/class-wcj-payment-gateways.php:119
|
342 |
+
#@ woocommerce-jetpack
|
343 |
+
msgid "Payment Gateways Options"
|
344 |
+
msgstr "Options: Passerelles de paiement"
|
345 |
+
|
346 |
+
#: includes/class-wcj-product-info.php:216
|
347 |
+
#: includes/class-wcj-product-info.php:256
|
348 |
+
#: includes/class-wcj-product-info.php:276
|
349 |
+
#: includes/class-wcj-product-info.php:302
|
350 |
+
#: includes/class-wcj-product-info.php:328
|
351 |
+
#@ woocommerce-jetpack
|
352 |
+
msgid "Priority (i.e. Order)"
|
353 |
+
msgstr "Ordre de priorité"
|
354 |
+
|
355 |
+
#: includes/class-wcj-product-info.php:172
|
356 |
+
#: includes/class-wcj-product-info.php:406
|
357 |
+
#@ woocommerce-jetpack
|
358 |
+
msgid "Product Info"
|
359 |
+
msgstr "Produits"
|
360 |
+
|
361 |
+
#: includes/class-wcj-product-info.php:169
|
362 |
+
#@ woocommerce-jetpack
|
363 |
+
msgid "Product Info Options"
|
364 |
+
msgstr "Options: Fiches produit"
|
365 |
+
|
366 |
+
#: includes/class-wcj-product-info.php:265
|
367 |
+
#@ woocommerce-jetpack
|
368 |
+
msgid "Product Tabs Options"
|
369 |
+
msgstr "Options: Onglets produit"
|
370 |
+
|
371 |
+
#: includes/class-wcj-product-info.php:377
|
372 |
+
#@ woocommerce-jetpack
|
373 |
+
msgid "Random"
|
374 |
+
msgstr "Aléatoire"
|
375 |
+
|
376 |
+
#: includes/class-wcj-product-info.php:348
|
377 |
+
#@ woocommerce-jetpack
|
378 |
+
msgid "Related Products Options"
|
379 |
+
msgstr "Options: Produits en relation"
|
380 |
+
|
381 |
+
#: includes/class-wcj-sorting.php:178
|
382 |
+
#: includes/class-wcj-sorting.php:181
|
383 |
+
#@ woocommerce-jetpack
|
384 |
+
msgid "Remove All Sorting"
|
385 |
+
msgstr "Suppression des paramètres de tri."
|
386 |
+
|
387 |
+
#: includes/class-wcj-old-slugs.php:60
|
388 |
+
#@ woocommerce-jetpack
|
389 |
+
msgid "Remove Old Slugs"
|
390 |
+
msgstr "Gestion des Permaliens"
|
391 |
+
|
392 |
+
#: includes/class-wcj-product-info.php:269
|
393 |
+
#: includes/class-wcj-product-info.php:295
|
394 |
+
#: includes/class-wcj-product-info.php:321
|
395 |
+
#@ woocommerce-jetpack
|
396 |
+
msgid "Remove tab from product page"
|
397 |
+
msgstr "Supprimer l'onglet de la page produit"
|
398 |
+
|
399 |
+
#: includes/class-wcj-product-info.php:294
|
400 |
+
#@ woocommerce-jetpack
|
401 |
+
msgid "Reviews Tab"
|
402 |
+
msgstr "Onglet des Avis"
|
403 |
+
|
404 |
+
#: includes/class-wcj-pdf-invoices.php:944
|
405 |
+
#: includes/class-wcj-shipping.php:155
|
406 |
+
#: includes/class-wcj-shipping.php:200
|
407 |
+
#@ woocommerce-jetpack
|
408 |
+
msgid "Shipping"
|
409 |
+
msgstr "Livraison"
|
410 |
+
|
411 |
+
#: includes/class-wcj-pdf-invoices.php:999
|
412 |
+
#: includes/class-wcj-pdf-invoices.php:1002
|
413 |
+
#@ woocommerce-jetpack
|
414 |
+
msgid "Shipping Method"
|
415 |
+
msgstr "Méthode de livraison"
|
416 |
+
|
417 |
+
#: includes/class-wcj-shipping.php:152
|
418 |
+
#@ woocommerce-jetpack
|
419 |
+
msgid "Shipping Options"
|
420 |
+
msgstr "Options: Livraison"
|
421 |
+
|
422 |
+
#: includes/class-wcj-add-to-cart.php:194
|
423 |
+
#@ woocommerce-jetpack
|
424 |
+
msgid "Simple product"
|
425 |
+
msgstr "Produit simple"
|
426 |
+
|
427 |
+
#: includes/class-wcj-sorting.php:168
|
428 |
+
#: includes/class-wcj-sorting.php:277
|
429 |
+
#@ woocommerce-jetpack
|
430 |
+
msgid "Sorting"
|
431 |
+
msgstr "Tri"
|
432 |
+
|
433 |
+
#: includes/class-wcj-sorting.php:165
|
434 |
+
#@ woocommerce-jetpack
|
435 |
+
msgid "Sorting Options"
|
436 |
+
msgstr "Options: Tri"
|
437 |
+
|
438 |
+
#: includes/class-wcj-orders.php:257
|
439 |
+
#@ woocommerce-jetpack
|
440 |
+
msgid "The tool renumerates all orders."
|
441 |
+
msgstr "Les outils de re-numérotation des commandes"
|
442 |
+
|
443 |
+
#: includes/class-wcj-orders.php:282
|
444 |
+
#@ woocommerce-jetpack
|
445 |
+
msgid "The tool renumerates all orders. Press the button below to renumerate all existing orders starting from order counter settings in WooCommerce > Settings > Jetpack > Order Numbers."
|
446 |
+
msgstr "Les outils de re-numérotation des commandes. Presser le bouton ci-dessous pour re-numéroter toutes les commandes existantes suivant les préférences définies dans WooCommerce > Paramètres > Jetpack > Numérotation des commandes"
|
447 |
+
|
448 |
+
#: includes/class-wcj-shipping.php:165
|
449 |
+
#@ woocommerce-jetpack
|
450 |
+
msgid "This section lets you hide other shipping options when free shipping is available on shop frontend."
|
451 |
+
msgstr "Cette section vous permet de masquer les autres options de livraison si la livraison gratuite est disponible pour le client."
|
452 |
+
|
453 |
+
#: includes/class-wcj-product-info.php:286
|
454 |
+
#: includes/class-wcj-product-info.php:312
|
455 |
+
#: includes/class-wcj-product-info.php:338
|
456 |
+
#: includes/class-wcj-product-info.php:379
|
457 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:56
|
458 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:62
|
459 |
+
#@ woocommerce-jetpack
|
460 |
+
#@ woocommerce
|
461 |
+
msgid "Title"
|
462 |
+
msgstr "Titre"
|
463 |
+
|
464 |
+
#: includes/admin/tools/class-wcj-tools.php:34
|
465 |
+
#@ woocommerce-jetpack
|
466 |
+
msgid "Tools Dashboard"
|
467 |
+
msgstr "Préférences des outils"
|
468 |
+
|
469 |
+
#: includes/class-wcj-add-to-cart.php:199
|
470 |
+
#@ woocommerce-jetpack
|
471 |
+
msgid "Variable product"
|
472 |
+
msgstr "Produit variable"
|
473 |
+
|
474 |
+
#: includes/class-wcj-orders.php:188
|
475 |
+
#@ woocommerce-jetpack
|
476 |
+
msgid "WooCommerce Jetpack - Custom Statuses"
|
477 |
+
msgstr "WooCommerce Jetpack - Statuts personnalisés"
|
478 |
+
|
479 |
+
#: includes/class-wcj-old-slugs.php:160
|
480 |
+
#@ woocommerce-jetpack
|
481 |
+
msgid "WooCommerce Jetpack - Remove Old Product Slugs"
|
482 |
+
msgstr "WooCommerce Jetpack - Suppression des Permaliens non utilisés"
|
483 |
+
|
484 |
+
#: includes/class-wcj-orders.php:281
|
485 |
+
#@ woocommerce-jetpack
|
486 |
+
msgid "WooCommerce Jetpack - Renumerate Orders"
|
487 |
+
msgstr "WooCommerce Jetpack - re-numérotation des commandes"
|
488 |
+
|
489 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:152
|
490 |
+
#@ woocommerce-jetpack
|
491 |
+
msgid "WooCommerce Jetpack Dashboard"
|
492 |
+
msgstr "Tableau de bord de WooCommerce Jetpack"
|
493 |
+
|
494 |
+
#: includes/class-wcj-cart.php:152
|
495 |
+
#@ woocommerce-jetpack
|
496 |
+
msgid "Wrapping DIV style"
|
497 |
+
msgstr "Stylization des DIV"
|
498 |
+
|
499 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:24
|
500 |
+
#@ woocommerce-jetpack
|
501 |
+
msgid "Jetpack"
|
502 |
+
msgstr "Jetpack"
|
503 |
+
|
504 |
+
#: includes/class-wcj-add-to-cart.php:146
|
505 |
+
#@ woocommerce-jetpack
|
506 |
+
msgid "Set any url to redirect to on add to cart. Change text for Add to cart button by product type. Display \"Already in cart\" instead of \"Add to cart\" button if current product is already in cart."
|
507 |
+
msgstr "Permet de définir une URL de destination lors de l'ajout de produits dans le panier. Permet de changer le texte du bouton [au Panier]. Permet d'afficher [Déjà dans le panier] à la place de [Ajouter au Panier] si le produit y est déjà présent."
|
508 |
+
|
509 |
+
#: includes/class-wcj-add-to-cart.php:158
|
510 |
+
#@ woocommerce-jetpack
|
511 |
+
msgid "This section lets you set any url to redirect to after successfully adding product to cart. Leave empty to redirect to checkout page (skipping the cart page)."
|
512 |
+
msgstr "Permet de définir une URL de destination lors de l'ajout de produits dans le panier. Laisser vide si vous ne désirez pas utiliser cette option."
|
513 |
+
|
514 |
+
#: includes/class-wcj-add-to-cart.php:161
|
515 |
+
#@ woocommerce-jetpack
|
516 |
+
msgid "Redirect"
|
517 |
+
msgstr "Redirection"
|
518 |
+
|
519 |
+
#: includes/class-wcj-add-to-cart.php:169
|
520 |
+
#@ woocommerce-jetpack
|
521 |
+
msgid "Redirect URL"
|
522 |
+
msgstr "URL à utiliser:"
|
523 |
+
|
524 |
+
#: includes/class-wcj-add-to-cart.php:170
|
525 |
+
#@ woocommerce-jetpack
|
526 |
+
msgid "Redirect URL. Leave empty to redirect to checkout."
|
527 |
+
msgstr "URL de redirection. Laisser vide pour rediriger sur la page de commande."
|
528 |
+
|
529 |
+
#: includes/class-wcj-add-to-cart.php:214
|
530 |
+
#@ woocommerce-jetpack
|
531 |
+
msgid "Other product"
|
532 |
+
msgstr "Autres produits"
|
533 |
+
|
534 |
+
#: includes/class-wcj-add-to-cart.php:235
|
535 |
+
#@ woocommerce-jetpack
|
536 |
+
msgid "Enable on single product pages"
|
537 |
+
msgstr "Activer sur les pages produits"
|
538 |
+
|
539 |
+
#: includes/class-wcj-add-to-cart.php:254
|
540 |
+
#@ woocommerce-jetpack
|
541 |
+
msgid "Enable on product archives"
|
542 |
+
msgstr "Activer sur produits archivés"
|
543 |
+
|
544 |
+
#: includes/class-wcj-add-to-cart.php:279
|
545 |
+
#@ woocommerce-jetpack
|
546 |
+
msgid "Enable \"Already in cart\" on single product pages"
|
547 |
+
msgstr "Activer [Déjà dans le panier] sur les pages produits."
|
548 |
+
|
549 |
+
#: includes/class-wcj-add-to-cart.php:298
|
550 |
+
#@ woocommerce-jetpack
|
551 |
+
msgid "Enable \"Already in cart\" on product archives"
|
552 |
+
msgstr "Activer [Déjà dans le panier] sur les pages produits archivés."
|
553 |
+
|
554 |
+
#: includes/class-wcj-call-for-price.php:72
|
555 |
+
#@ woocommerce-jetpack
|
556 |
+
msgid "Leave price empty when adding or editing products. Then set the options here."
|
557 |
+
msgstr "N'indiquez pas les prix des produits dans leurs fiches. Personnalisez les options d'affichage ici."
|
558 |
+
|
559 |
+
#: includes/class-wcj-call-for-price.php:77
|
560 |
+
#@ woocommerce-jetpack
|
561 |
+
msgid "Create any custom price label for all products with empty price."
|
562 |
+
msgstr "Permet de personnaliser les intitulés des produits sans prix."
|
563 |
+
|
564 |
+
#: includes/class-wcj-call-for-price.php:85
|
565 |
+
#: includes/class-wcj-call-for-price.php:97
|
566 |
+
#: includes/class-wcj-call-for-price.php:109
|
567 |
+
#: includes/class-wcj-call-for-price.php:121
|
568 |
+
#@ woocommerce-jetpack
|
569 |
+
msgid "This sets the html to output on empty price. Leave blank to disable."
|
570 |
+
msgstr "Permet de modifier le texte en HTML lorsque le prix n'est pas défini. Laisser vide pour ne pas utiliser cette option."
|
571 |
+
|
572 |
+
#: includes/class-wcj-call-for-price.php:120
|
573 |
+
#@ woocommerce-jetpack
|
574 |
+
msgid "Label to Show on Related"
|
575 |
+
msgstr "Texte pour les produits associés"
|
576 |
+
|
577 |
+
#: includes/class-wcj-call-for-price.php:132
|
578 |
+
#@ woocommerce-jetpack
|
579 |
+
msgid "Hide Sale! Tag"
|
580 |
+
msgstr "Texte pour les promotions"
|
581 |
+
|
582 |
+
#: includes/class-wcj-call-for-price.php:133
|
583 |
+
#@ woocommerce-jetpack
|
584 |
+
msgid "Hide the tag"
|
585 |
+
msgstr "Masquer le texte"
|
586 |
+
|
587 |
+
#: includes/class-wcj-cart.php:118
|
588 |
+
#@ woocommerce-jetpack
|
589 |
+
msgid "Cart Options"
|
590 |
+
msgstr "Options: Panier"
|
591 |
+
|
592 |
+
#: includes/class-wcj-cart.php:121
|
593 |
+
#: includes/class-wcj-cart.php:186
|
594 |
+
#@ woocommerce-jetpack
|
595 |
+
msgid "Cart"
|
596 |
+
msgstr "Panier"
|
597 |
+
|
598 |
+
#: includes/class-wcj-cart.php:123
|
599 |
+
#@ woocommerce-jetpack
|
600 |
+
msgid "Add empty cart button, automatically add to cart on product visit."
|
601 |
+
msgstr "Ajoute un bouton [Vider le panier]. Permet d'ajouter un produit automatiquement dans le panier."
|
602 |
+
|
603 |
+
#: includes/class-wcj-cart.php:131
|
604 |
+
#@ woocommerce-jetpack
|
605 |
+
msgid "This section lets you add and customize \"Empty Cart\" button to cart page."
|
606 |
+
msgstr "Permet d'ajouter un bouton personnalisé [Vider le panier] dans la page du panier."
|
607 |
+
|
608 |
+
#: includes/class-wcj-cart.php:153
|
609 |
+
#@ woocommerce-jetpack
|
610 |
+
msgid "Style for the button's div. Default is \"float: right;\""
|
611 |
+
msgstr "Stylization des DIV du bouton. Par défaut: [float: right;]"
|
612 |
+
|
613 |
+
#: includes/class-wcj-cart.php:164
|
614 |
+
#@ woocommerce-jetpack
|
615 |
+
msgid "This section lets you enable automatically adding product to cart on visiting the product page. Product is only added once, so if it is already in cart - duplicate product is not added. "
|
616 |
+
msgstr "Permet d'activer la mise dans le panier automatique lors de l'affichage de la page produit. Le produit ne peut être ajouter qu'une seule fois, donc il n'est pas possible de le dupliquer."
|
617 |
+
|
618 |
+
#: includes/class-wcj-checkout.php:146
|
619 |
+
#@ woocommerce-jetpack
|
620 |
+
msgid "Customize checkout fields. Disable/enable fields, set required, change labels and/or placeholders."
|
621 |
+
msgstr "Permet de personnaliser les champs du processus de commande. Permet d'activer/désactiver certains champs. Permet de définir des champs obligatoires."
|
622 |
+
|
623 |
+
#: includes/class-wcj-checkout.php:156
|
624 |
+
#@ woocommerce-jetpack
|
625 |
+
msgid "Place order (Order now) Button"
|
626 |
+
msgstr "Afficher un bouton [Commander maintenant]"
|
627 |
+
|
628 |
+
#: includes/class-wcj-checkout.php:159
|
629 |
+
#@ woocommerce-jetpack
|
630 |
+
msgid "Text"
|
631 |
+
msgstr "Texte"
|
632 |
+
|
633 |
+
#: includes/class-wcj-checkout.php:160
|
634 |
+
#@ woocommerce-jetpack
|
635 |
+
msgid "leave blank for WooCommerce default"
|
636 |
+
msgstr "Laisser vide pour garder les paramètres par défaut de Woocommerce"
|
637 |
+
|
638 |
+
#: includes/class-wcj-checkout.php:161
|
639 |
+
#@ woocommerce-jetpack
|
640 |
+
msgid "Button on the checkout page."
|
641 |
+
msgstr "Bouton sur la page de commande."
|
642 |
+
|
643 |
+
#: includes/class-wcj-checkout.php:170
|
644 |
+
#@ woocommerce-jetpack
|
645 |
+
msgid "This section lets you customize the checkout fields: change label, placeholder, set required, or remove any field."
|
646 |
+
msgstr "Permet de personnaliser les champs du processus de commande. Permet d'activer/désactiver certains champs. Permet de définir des champs obligatoires."
|
647 |
+
|
648 |
+
#: includes/class-wcj-checkout.php:236
|
649 |
+
#@ woocommerce-jetpack
|
650 |
+
msgid "Leave blank for WooCommerce defaults."
|
651 |
+
msgstr "Laisser vide pour garder les paramètres par défaut de Woocommerce"
|
652 |
+
|
653 |
+
#: includes/class-wcj-currencies.php:389
|
654 |
+
#@ woocommerce-jetpack
|
655 |
+
msgid "Currency Symbol"
|
656 |
+
msgstr "Symboles des devises"
|
657 |
+
|
658 |
+
#: includes/class-wcj-currencies.php:390
|
659 |
+
#@ woocommerce-jetpack
|
660 |
+
msgid "This sets the currency symbol."
|
661 |
+
msgstr "Permet de définir le symbole de la devise utilisée."
|
662 |
+
|
663 |
+
#: includes/class-wcj-currencies.php:416
|
664 |
+
#@ woocommerce-jetpack
|
665 |
+
msgid "Add all world currencies, change currency symbol."
|
666 |
+
msgstr "Permet de personnaliser les symboles des devises utilisées."
|
667 |
+
|
668 |
+
#: includes/class-wcj-currencies.php:424
|
669 |
+
#@ woocommerce-jetpack
|
670 |
+
msgid "Currency Symbol Options"
|
671 |
+
msgstr "Options: Symboles des devises"
|
672 |
+
|
673 |
+
#: includes/class-wcj-emails.php:57
|
674 |
+
#@ woocommerce-jetpack
|
675 |
+
msgid "WooCommerce Jetpack: Email Forwarding Options"
|
676 |
+
msgstr "WooCommerce Jetpack: Options de redirection des emails"
|
677 |
+
|
678 |
+
#: includes/class-wcj-emails.php:57
|
679 |
+
#: includes/class-wcj-emails.php:128
|
680 |
+
#@ woocommerce-jetpack
|
681 |
+
msgid "This section lets you add another email recipient(s) to all WooCommerce emails. Leave blank to disable."
|
682 |
+
msgstr "Permet d'ajouter d'autres récipiendaires aux emails de Woocommerce. laisser vide pour ne pas utiliser cette option."
|
683 |
+
|
684 |
+
#: includes/class-wcj-emails.php:61
|
685 |
+
#: includes/class-wcj-emails.php:131
|
686 |
+
#@ woocommerce-jetpack
|
687 |
+
msgid "Cc Email"
|
688 |
+
msgstr "CC"
|
689 |
+
|
690 |
+
#: includes/class-wcj-emails.php:63
|
691 |
+
#: includes/class-wcj-emails.php:133
|
692 |
+
#@ woocommerce-jetpack
|
693 |
+
msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
|
694 |
+
msgstr "Copie de l'email à une autre adresse. Laisser vide pour ne pas utiliser cette option."
|
695 |
+
|
696 |
+
#: includes/class-wcj-emails.php:73
|
697 |
+
#: includes/class-wcj-emails.php:142
|
698 |
+
#@ woocommerce-jetpack
|
699 |
+
msgid "Bcc Email"
|
700 |
+
msgstr "BCC"
|
701 |
+
|
702 |
+
#: includes/class-wcj-emails.php:75
|
703 |
+
#: includes/class-wcj-emails.php:144
|
704 |
+
#@ woocommerce-jetpack
|
705 |
+
msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
|
706 |
+
msgstr "Copie cachée de l'email à une autre adresse. Laisser vide pour ne pas utiliser cette option."
|
707 |
+
|
708 |
+
#: includes/class-wcj-emails.php:115
|
709 |
+
#@ woocommerce-jetpack
|
710 |
+
msgid "Emails Options"
|
711 |
+
msgstr "Options: Emails"
|
712 |
+
|
713 |
+
#: includes/class-wcj-emails.php:118
|
714 |
+
#: includes/class-wcj-emails.php:162
|
715 |
+
#@ woocommerce-jetpack
|
716 |
+
msgid "Emails"
|
717 |
+
msgstr "Courriels"
|
718 |
+
|
719 |
+
#: includes/class-wcj-emails.php:119
|
720 |
+
#@ woocommerce-jetpack
|
721 |
+
msgid "Enable the Emails feature"
|
722 |
+
msgstr "Activer les options pour les emails."
|
723 |
+
|
724 |
+
#: includes/class-wcj-emails.php:120
|
725 |
+
#@ woocommerce-jetpack
|
726 |
+
msgid "Add another email recipient(s) to all WooCommerce emails."
|
727 |
+
msgstr "Permet d'ajouter d'autres récipiendaires aux emails de Woocommerce."
|
728 |
+
|
729 |
+
#: includes/class-wcj-emails.php:128
|
730 |
+
#@ woocommerce-jetpack
|
731 |
+
msgid "Email Forwarding Options"
|
732 |
+
msgstr "Options: Redirections des emails"
|
733 |
+
|
734 |
+
#: includes/class-wcj-general.php:75
|
735 |
+
#@ woocommerce-jetpack
|
736 |
+
msgid "Separate custom CSS for front and back end."
|
737 |
+
msgstr "Permet de personnaliser les CCS à la fois pour la partie client et gestion."
|
738 |
+
|
739 |
+
#: includes/class-wcj-general.php:83
|
740 |
+
#@ woocommerce-jetpack
|
741 |
+
msgid "Another custom CSS, if you need one."
|
742 |
+
msgstr "Si nécessaire, vous pouvez ajouter votre propre code CSS."
|
743 |
+
|
744 |
+
#: includes/class-wcj-general.php:94
|
745 |
+
#@ woocommerce-jetpack
|
746 |
+
msgid "Custom CSS - Back end (Admin)"
|
747 |
+
msgstr "CSS pour les administrateurs"
|
748 |
+
|
749 |
+
#: includes/class-wcj-old-slugs.php:82
|
750 |
+
#@ woocommerce-jetpack
|
751 |
+
msgid "Old Slugs Options"
|
752 |
+
msgstr "Options: Liens périmés"
|
753 |
+
|
754 |
+
#: includes/class-wcj-old-slugs.php:85
|
755 |
+
#: includes/class-wcj-old-slugs.php:105
|
756 |
+
#@ woocommerce-jetpack
|
757 |
+
msgid "Old Slugs"
|
758 |
+
msgstr "Permaliens"
|
759 |
+
|
760 |
+
#: includes/class-wcj-old-slugs.php:88
|
761 |
+
#@ woocommerce-jetpack
|
762 |
+
msgid "Remove old product slugs."
|
763 |
+
msgstr "Permet de supprimer les Permaliens des produits non utilisés."
|
764 |
+
|
765 |
+
#: includes/class-wcj-old-slugs.php:161
|
766 |
+
#@ woocommerce-jetpack
|
767 |
+
msgid "Tool removes old slugs/permalinks from database."
|
768 |
+
msgstr "Outil permettant la suppression des mauvais permaliens ou permaliens périmés de la base."
|
769 |
+
|
770 |
+
#: includes/class-wcj-old-slugs.php:166
|
771 |
+
#@ woocommerce-jetpack
|
772 |
+
msgid "Old products slugs found:"
|
773 |
+
msgstr "Permaliens périmés trouvés:"
|
774 |
+
|
775 |
+
#: includes/class-wcj-old-slugs.php:174
|
776 |
+
#@ woocommerce-jetpack
|
777 |
+
msgid "None-products slugs found:"
|
778 |
+
msgstr "Permaliens non pertinent trouvés:"
|
779 |
+
|
780 |
+
#: includes/class-wcj-old-slugs.php:181
|
781 |
+
#@ woocommerce-jetpack
|
782 |
+
msgid "No old slugs found."
|
783 |
+
msgstr "Aucun Permaliens périmés."
|
784 |
+
|
785 |
+
#: includes/class-wcj-orders.php:26
|
786 |
+
#@ woocommerce
|
787 |
+
msgctxt "Order status"
|
788 |
+
msgid "Pending payment"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: includes/class-wcj-orders.php:27
|
792 |
+
#@ woocommerce
|
793 |
+
msgctxt "Order status"
|
794 |
+
msgid "Processing"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: includes/class-wcj-orders.php:28
|
798 |
+
#@ woocommerce
|
799 |
+
msgctxt "Order status"
|
800 |
+
msgid "On hold"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: includes/class-wcj-orders.php:29
|
804 |
+
#@ woocommerce
|
805 |
+
msgctxt "Order status"
|
806 |
+
msgid "Completed"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: includes/class-wcj-orders.php:30
|
810 |
+
#@ woocommerce
|
811 |
+
msgctxt "Order status"
|
812 |
+
msgid "Cancelled"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: includes/class-wcj-orders.php:31
|
816 |
+
#@ woocommerce
|
817 |
+
msgctxt "Order status"
|
818 |
+
msgid "Refunded"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/class-wcj-orders.php:32
|
822 |
+
#@ woocommerce
|
823 |
+
msgctxt "Order status"
|
824 |
+
msgid "Failed"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: includes/class-wcj-orders.php:90
|
828 |
+
#, php-format
|
829 |
+
#@ woocommerce-jetpack
|
830 |
+
msgid " <span class=\"count\">(%s)</span>"
|
831 |
+
msgid_plural " <span class=\"count\">(%s)</span>"
|
832 |
+
msgstr[0] " <span class=\"count\">(%s)</span>"
|
833 |
+
msgstr[1] " <span class=\"count\">(%s)</span>"
|
834 |
+
|
835 |
+
#: includes/class-wcj-orders.php:151
|
836 |
+
#@ woocommerce-jetpack
|
837 |
+
msgid "Status slug is empty. Status not added."
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: includes/class-wcj-orders.php:153
|
841 |
+
#@ woocommerce-jetpack
|
842 |
+
msgid "Status label is empty. Status not added."
|
843 |
+
msgstr ""
|
844 |
+
|
845 |
+
#: includes/class-wcj-orders.php:159
|
846 |
+
#@ woocommerce-jetpack
|
847 |
+
msgid "Duplicate slug. Status not added."
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: includes/class-wcj-orders.php:165
|
851 |
+
#@ woocommerce-jetpack
|
852 |
+
msgid "New status have been successfully added!"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: includes/class-wcj-orders.php:167
|
856 |
+
#@ woocommerce-jetpack
|
857 |
+
msgid "Status was not added."
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: includes/class-wcj-orders.php:183
|
861 |
+
#@ woocommerce-jetpack
|
862 |
+
msgid "Status have been successfully deleted."
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: includes/class-wcj-orders.php:185
|
866 |
+
#@ woocommerce-jetpack
|
867 |
+
msgid "Delete failed."
|
868 |
+
msgstr "Suppression incomplète."
|
869 |
+
|
870 |
+
#: includes/class-wcj-orders.php:189
|
871 |
+
#@ woocommerce-jetpack
|
872 |
+
msgid "The tool lets you add or delete any custom status for WooCommerce orders."
|
873 |
+
msgstr "Cette option vous permet de supprimer n'importe quel statut personnalisé dans les commandes WooCommerce"
|
874 |
+
|
875 |
+
#: includes/class-wcj-orders.php:191
|
876 |
+
#@ woocommerce-jetpack
|
877 |
+
msgid "Statuses"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: includes/class-wcj-orders.php:194
|
881 |
+
#@ woocommerce-jetpack
|
882 |
+
msgid "Slug"
|
883 |
+
msgstr "Permalien"
|
884 |
+
|
885 |
+
#: includes/class-wcj-orders.php:195
|
886 |
+
#: includes/class-wcj-orders.php:220
|
887 |
+
#@ woocommerce-jetpack
|
888 |
+
msgid "Label"
|
889 |
+
msgstr "Texte"
|
890 |
+
|
891 |
+
#: includes/class-wcj-orders.php:197
|
892 |
+
#: includes/class-wcj-orders.php:207
|
893 |
+
#@ woocommerce-jetpack
|
894 |
+
msgid "Delete"
|
895 |
+
msgstr "Supprimer"
|
896 |
+
|
897 |
+
#: includes/class-wcj-orders.php:219
|
898 |
+
#@ woocommerce-jetpack
|
899 |
+
msgid "Slug (without wc- prefix)"
|
900 |
+
msgstr "Permalien (sans le préfixe wc-)"
|
901 |
+
|
902 |
+
#: includes/class-wcj-orders.php:266
|
903 |
+
#@ woocommerce-jetpack
|
904 |
+
msgid "Renumerate orders"
|
905 |
+
msgstr ""
|
906 |
+
|
907 |
+
#: includes/class-wcj-orders.php:401
|
908 |
+
#@ woocommerce-jetpack
|
909 |
+
msgid "Orders Options"
|
910 |
+
msgstr "Options: Commandes"
|
911 |
+
|
912 |
+
#: includes/class-wcj-orders.php:405
|
913 |
+
#@ woocommerce-jetpack
|
914 |
+
msgid "Enable the Orders feature"
|
915 |
+
msgstr "Activer les options pour les commandes"
|
916 |
+
|
917 |
+
#: includes/class-wcj-orders.php:406
|
918 |
+
#@ woocommerce-jetpack
|
919 |
+
msgid "Sequential order numbering, custom order number prefix and number width. Minimum order amount."
|
920 |
+
msgstr "Permet de créer des numéros de commande séquentiels. Permet d'ajouter des préfixes et/ou des suffixes. Permet de définir des montant minimum et/ou maximum."
|
921 |
+
|
922 |
+
#: includes/class-wcj-orders.php:414
|
923 |
+
#: includes/class-wcj-orders.php:417
|
924 |
+
#@ woocommerce-jetpack
|
925 |
+
msgid "Order Numbers"
|
926 |
+
msgstr "Numérotation"
|
927 |
+
|
928 |
+
#: includes/class-wcj-orders.php:414
|
929 |
+
#@ woocommerce-jetpack
|
930 |
+
msgid "This section lets you enable sequential order numbering, set custom number prefix and width."
|
931 |
+
msgstr "Permet de créer des numéros de commande séquentiels. Permet d'ajouter des préfixes et/ou des suffixes."
|
932 |
+
|
933 |
+
#: includes/class-wcj-orders.php:419
|
934 |
+
#@ woocommerce-jetpack
|
935 |
+
msgid "This will enable sequential order numbering and custom prefixes."
|
936 |
+
msgstr "Permet de créer des numéros de commande séquentiels. Permet d'ajouter des préfixes et/ou des suffixes."
|
937 |
+
|
938 |
+
#: includes/class-wcj-orders.php:426
|
939 |
+
#@ woocommerce-jetpack
|
940 |
+
msgid "Next Order Number"
|
941 |
+
msgstr "Prochain numéro"
|
942 |
+
|
943 |
+
#: includes/class-wcj-orders.php:427
|
944 |
+
#@ woocommerce-jetpack
|
945 |
+
msgid "Next new order will be given this number."
|
946 |
+
msgstr "La prochaine commande auras ce numéro."
|
947 |
+
|
948 |
+
#: includes/class-wcj-orders.php:434
|
949 |
+
#@ woocommerce-jetpack
|
950 |
+
msgid "Order Number Custom Prefix"
|
951 |
+
msgstr "Préfixe de numérotation"
|
952 |
+
|
953 |
+
#: includes/class-wcj-orders.php:436
|
954 |
+
#@ woocommerce-jetpack
|
955 |
+
msgid "Prefix before order number (optional). This will change the prefixes for all existing orders."
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: includes/class-wcj-orders.php:445
|
959 |
+
#@ woocommerce-jetpack
|
960 |
+
msgid "Order Number Date Prefix"
|
961 |
+
msgstr "Préfixe par date"
|
962 |
+
|
963 |
+
#: includes/class-wcj-orders.php:447
|
964 |
+
#@ woocommerce-jetpack
|
965 |
+
msgid "Date prefix before order number (optional). This will change the prefixes for all existing orders. Value is passed directly to PHP `date` function, so most of PHP date formats can be used. The only exception is using `\\` symbol in date format, as this symbol will be excluded from date. Try: Y-m-d- or mdy."
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: includes/class-wcj-orders.php:456
|
969 |
+
#@ woocommerce-jetpack
|
970 |
+
msgid "Order Number Width"
|
971 |
+
msgstr "Nombre de chiffres"
|
972 |
+
|
973 |
+
#: includes/class-wcj-orders.php:458
|
974 |
+
#@ woocommerce-jetpack
|
975 |
+
msgid "Minimum width of number without prefix (zeros will be added to the left side). This will change the minimum width of order number for all existing orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. Leave zero to disable."
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: includes/class-wcj-orders.php:468
|
979 |
+
#@ woocommerce-jetpack
|
980 |
+
msgid "Order Minimum Amount"
|
981 |
+
msgstr "Options: Montant minimum"
|
982 |
+
|
983 |
+
#: includes/class-wcj-orders.php:468
|
984 |
+
#@ woocommerce-jetpack
|
985 |
+
msgid "This section lets you set minimum order amount."
|
986 |
+
msgstr "Permet de définir un montant d'achat minimum."
|
987 |
+
|
988 |
+
#: includes/class-wcj-orders.php:471
|
989 |
+
#@ woocommerce-jetpack
|
990 |
+
msgid "Amount"
|
991 |
+
msgstr "Montant"
|
992 |
+
|
993 |
+
#: includes/class-wcj-orders.php:472
|
994 |
+
#@ woocommerce-jetpack
|
995 |
+
msgid "Minimum order amount. Set to 0 to disable."
|
996 |
+
msgstr "Montant minium de la commande. Laisser à 0 pour ne pas utiliser cette option."
|
997 |
+
|
998 |
+
#: includes/class-wcj-orders.php:479
|
999 |
+
#@ woocommerce-jetpack
|
1000 |
+
msgid "Error message"
|
1001 |
+
msgstr "Message d'erreur"
|
1002 |
+
|
1003 |
+
#: includes/class-wcj-orders.php:481
|
1004 |
+
#: includes/class-wcj-orders.php:501
|
1005 |
+
#, php-format
|
1006 |
+
#@ woocommerce-jetpack
|
1007 |
+
msgid "Message to customer if order is below minimum amount. Default: You must have an order with a minimum of %s to place your order, your current order total is %s."
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: includes/class-wcj-orders.php:491
|
1011 |
+
#@ woocommerce-jetpack
|
1012 |
+
msgid "Add notice to cart page also"
|
1013 |
+
msgstr "Placer aussi sur la page du panier"
|
1014 |
+
|
1015 |
+
#: includes/class-wcj-orders.php:492
|
1016 |
+
#@ woocommerce-jetpack
|
1017 |
+
msgid "Add"
|
1018 |
+
msgstr "Ajouter"
|
1019 |
+
|
1020 |
+
#: includes/class-wcj-orders.php:499
|
1021 |
+
#@ woocommerce-jetpack
|
1022 |
+
msgid "Message on cart page"
|
1023 |
+
msgstr "Message sur la page du Panier"
|
1024 |
+
|
1025 |
+
#: includes/class-wcj-orders.php:511
|
1026 |
+
#@ woocommerce-jetpack
|
1027 |
+
msgid "Stop customer from seeing the Checkout page if minimum amount not reached."
|
1028 |
+
msgstr "Ne pas afficher la page de commande si le montant minium n'est pas atteint."
|
1029 |
+
|
1030 |
+
#: includes/class-wcj-orders.php:512
|
1031 |
+
#@ woocommerce-jetpack
|
1032 |
+
msgid "Redirect back to Cart page"
|
1033 |
+
msgstr "Rediriger sur la page du panier"
|
1034 |
+
|
1035 |
+
#: includes/class-wcj-orders.php:520
|
1036 |
+
#@ woocommerce-jetpack
|
1037 |
+
msgid "Orders Auto-Complete"
|
1038 |
+
msgstr "Options: Commande auto-complétées"
|
1039 |
+
|
1040 |
+
#: includes/class-wcj-orders.php:520
|
1041 |
+
#@ woocommerce-jetpack
|
1042 |
+
msgid "This section lets you enable orders auto-complete function."
|
1043 |
+
msgstr "Permet d'activer les commandes auto-complétées."
|
1044 |
+
|
1045 |
+
#: includes/class-wcj-orders.php:523
|
1046 |
+
#@ woocommerce-jetpack
|
1047 |
+
msgid "Auto-complete all WooCommerce orders"
|
1048 |
+
msgstr "Auto-compléter toutes les commandes Woocommerce"
|
1049 |
+
|
1050 |
+
#: includes/class-wcj-orders.php:525
|
1051 |
+
#@ woocommerce-jetpack
|
1052 |
+
msgid "E.g. if you sell digital products then you are not shipping anything and you may want auto-complete all your orders."
|
1053 |
+
msgstr "Ex: Vous vendez des produits digitals qui n'ont pas besoin de livraison et vous voulez auto-completer toutes vos commandes."
|
1054 |
+
|
1055 |
+
#: includes/class-wcj-orders.php:533
|
1056 |
+
#@ woocommerce-jetpack
|
1057 |
+
msgid "This section lets you enable custom statuses tool."
|
1058 |
+
msgstr "Permet d'activer les statuts personnalisés."
|
1059 |
+
|
1060 |
+
#: includes/class-wcj-payment-gateways.php:64
|
1061 |
+
#@ woocommerce-jetpack
|
1062 |
+
msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
|
1063 |
+
msgstr "WooCommerce Jetpack: Options pour les passerelles de paiement WooCommerce"
|
1064 |
+
|
1065 |
+
#: includes/class-wcj-payment-gateways.php:64
|
1066 |
+
#: includes/class-wcj-payment-gateways.php:151
|
1067 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:86
|
1068 |
+
#@ woocommerce-jetpack
|
1069 |
+
msgid "If you want to show an image next to the gateway's name on the frontend, enter a URL to an image."
|
1070 |
+
msgstr "Si vous désirez afficher une image à coté de la passerelle de paiement, entrez l'URL correspondant à cette image."
|
1071 |
+
|
1072 |
+
#: includes/class-wcj-payment-gateways.php:123
|
1073 |
+
#@ woocommerce-jetpack
|
1074 |
+
msgid "Enable the Payment Gateways feature"
|
1075 |
+
msgstr "Activer les options de passerelles de paiement"
|
1076 |
+
|
1077 |
+
#: includes/class-wcj-payment-gateways.php:124
|
1078 |
+
#@ woocommerce-jetpack
|
1079 |
+
msgid "Add custom payment gateway, change icons (images) for all default WooCommerce payment gateways."
|
1080 |
+
msgstr "Personnalisation des passerelles de paiement: Changer les icônes pour les passerelles de paiement par défaut de Woocommerce."
|
1081 |
+
|
1082 |
+
#: includes/class-wcj-payment-gateways.php:132
|
1083 |
+
#@ woocommerce-jetpack
|
1084 |
+
msgid "Custom Payment Gateways Options"
|
1085 |
+
msgstr "Options: Passerelles de paiement personnalisées"
|
1086 |
+
|
1087 |
+
#: includes/class-wcj-payment-gateways.php:135
|
1088 |
+
#@ woocommerce-jetpack
|
1089 |
+
msgid "Number of Gateways"
|
1090 |
+
msgstr "Nombre de passerelles"
|
1091 |
+
|
1092 |
+
#: includes/class-wcj-payment-gateways.php:137
|
1093 |
+
#@ woocommerce-jetpack
|
1094 |
+
msgid "Number of custom payments gateways to be added. All settings for each new gateway are in WooCommerce > Settings > Checkout."
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: includes/class-wcj-pdf-invoices.php:76
|
1098 |
+
#: includes/class-wcj-pdf-invoices.php:81
|
1099 |
+
#@ woocommerce-jetpack
|
1100 |
+
msgid "Invoice"
|
1101 |
+
msgstr "Facture"
|
1102 |
+
|
1103 |
+
#: includes/class-wcj-pdf-invoices.php:600
|
1104 |
+
#: includes/class-wcj-pdf-invoices.php:606
|
1105 |
+
#@ woocommerce-jetpack
|
1106 |
+
msgid "PDF Invoice"
|
1107 |
+
msgstr "Facture PDF"
|
1108 |
+
|
1109 |
+
#: includes/class-wcj-pdf-invoices.php:631
|
1110 |
+
#@ woocommerce-jetpack
|
1111 |
+
msgid "PDF Invoices Options"
|
1112 |
+
msgstr "Options: Factures PDF"
|
1113 |
+
|
1114 |
+
#: includes/class-wcj-pdf-invoices.php:634
|
1115 |
+
#: includes/class-wcj-pdf-invoices.php:1086
|
1116 |
+
#@ woocommerce-jetpack
|
1117 |
+
msgid "PDF Invoices"
|
1118 |
+
msgstr "Factures PDF"
|
1119 |
+
|
1120 |
+
#: includes/class-wcj-pdf-invoices.php:635
|
1121 |
+
#@ woocommerce-jetpack
|
1122 |
+
msgid "Enable the PDF Invoices feature"
|
1123 |
+
msgstr "Activer les factures au format PDF"
|
1124 |
+
|
1125 |
+
#: includes/class-wcj-pdf-invoices.php:636
|
1126 |
+
#@ woocommerce-jetpack
|
1127 |
+
msgid "Add PDF invoices for the store owners and for the customers."
|
1128 |
+
msgstr "Permet d'étirer des factures au format PDF pour les clients."
|
1129 |
+
|
1130 |
+
#: includes/class-wcj-pdf-invoices.php:644
|
1131 |
+
#@ woocommerce-jetpack
|
1132 |
+
msgid "Invoice Header"
|
1133 |
+
msgstr "Options: En-tête"
|
1134 |
+
|
1135 |
+
#: includes/class-wcj-pdf-invoices.php:644
|
1136 |
+
#@ woocommerce-jetpack
|
1137 |
+
msgid "This section lets you set texts for required invoice number and date, and optional logo, header text, invoice due and fulfillment dates."
|
1138 |
+
msgstr "Permet de personnaliser les différents textes d'en-tête de la facture. Permet d'ajouter un logo ainsi que les différentes dates de facturation et de réglement."
|
1139 |
+
|
1140 |
+
#: includes/class-wcj-pdf-invoices.php:647
|
1141 |
+
#@ woocommerce-jetpack
|
1142 |
+
msgid "Your Logo URL"
|
1143 |
+
msgstr "URL de votre Logo"
|
1144 |
+
|
1145 |
+
#: includes/class-wcj-pdf-invoices.php:648
|
1146 |
+
#@ woocommerce-jetpack
|
1147 |
+
msgid "Enter a URL to an image you want to show in the invoice's header. Upload your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
|
1148 |
+
msgstr "Entrez une URL pour le logo que vous désirez afficher sur la facture. Utilisez le <a href=\"/wp-admin/media-new.php\">Gestionnaire de média</a>."
|
1149 |
+
|
1150 |
+
#: includes/class-wcj-pdf-invoices.php:649
|
1151 |
+
#: includes/class-wcj-pdf-invoices.php:658
|
1152 |
+
#: includes/class-wcj-pdf-invoices.php:696
|
1153 |
+
#: includes/class-wcj-pdf-invoices.php:725
|
1154 |
+
#: includes/class-wcj-pdf-invoices.php:789
|
1155 |
+
#: includes/class-wcj-pdf-invoices.php:824
|
1156 |
+
#: includes/class-wcj-pdf-invoices.php:866
|
1157 |
+
#: includes/class-wcj-pdf-invoices.php:875
|
1158 |
+
#: includes/class-wcj-pdf-invoices.php:884
|
1159 |
+
#: includes/class-wcj-pdf-invoices.php:893
|
1160 |
+
#: includes/class-wcj-pdf-invoices.php:902
|
1161 |
+
#: includes/class-wcj-pdf-invoices.php:911
|
1162 |
+
#: includes/class-wcj-pdf-invoices.php:991
|
1163 |
+
#: includes/class-wcj-pdf-invoices.php:1000
|
1164 |
+
#@ woocommerce-jetpack
|
1165 |
+
msgid "Leave blank to disable"
|
1166 |
+
msgstr "Laisser vide pour ne pas utiliser cette option"
|
1167 |
+
|
1168 |
+
#: includes/class-wcj-pdf-invoices.php:657
|
1169 |
+
#@ woocommerce-jetpack
|
1170 |
+
msgid "Header Text"
|
1171 |
+
msgstr "Texte d'en-tête"
|
1172 |
+
|
1173 |
+
#: includes/class-wcj-pdf-invoices.php:659
|
1174 |
+
#@ woocommerce-jetpack
|
1175 |
+
msgid "Default: INVOICE"
|
1176 |
+
msgstr "par défaut: FACTURE"
|
1177 |
+
|
1178 |
+
#: includes/class-wcj-pdf-invoices.php:661
|
1179 |
+
#@ woocommerce-jetpack
|
1180 |
+
msgid "INVOICE"
|
1181 |
+
msgstr "FACTURE"
|
1182 |
+
|
1183 |
+
#: includes/class-wcj-pdf-invoices.php:667
|
1184 |
+
#@ woocommerce-jetpack
|
1185 |
+
msgid "Invoice Number"
|
1186 |
+
msgstr "Numéro de facture"
|
1187 |
+
|
1188 |
+
#: includes/class-wcj-pdf-invoices.php:668
|
1189 |
+
#@ woocommerce-jetpack
|
1190 |
+
msgid "Default: Invoice number"
|
1191 |
+
msgstr "Par défaut: Facture numéro"
|
1192 |
+
|
1193 |
+
#: includes/class-wcj-pdf-invoices.php:670
|
1194 |
+
#@ woocommerce-jetpack
|
1195 |
+
msgid "Invoice number"
|
1196 |
+
msgstr "Numéro de facture"
|
1197 |
+
|
1198 |
+
#: includes/class-wcj-pdf-invoices.php:676
|
1199 |
+
#@ woocommerce-jetpack
|
1200 |
+
msgid "Invoice Date"
|
1201 |
+
msgstr "Date de facture"
|
1202 |
+
|
1203 |
+
#: includes/class-wcj-pdf-invoices.php:677
|
1204 |
+
#@ woocommerce-jetpack
|
1205 |
+
msgid "Default: Invoice date"
|
1206 |
+
msgstr "Par défaut: Date de facturation"
|
1207 |
+
|
1208 |
+
#: includes/class-wcj-pdf-invoices.php:679
|
1209 |
+
#@ woocommerce-jetpack
|
1210 |
+
msgid "Invoice date"
|
1211 |
+
msgstr "Date de facture"
|
1212 |
+
|
1213 |
+
#: includes/class-wcj-pdf-invoices.php:695
|
1214 |
+
#@ woocommerce-jetpack
|
1215 |
+
msgid "Default: Invoice due date"
|
1216 |
+
msgstr "Par défaut: Date d'échéance"
|
1217 |
+
|
1218 |
+
#: includes/class-wcj-pdf-invoices.php:698
|
1219 |
+
#@ woocommerce-jetpack
|
1220 |
+
msgid "Invoice due date"
|
1221 |
+
msgstr "Date d'échéance"
|
1222 |
+
|
1223 |
+
#: includes/class-wcj-pdf-invoices.php:705
|
1224 |
+
#: includes/class-wcj-pdf-invoices.php:734
|
1225 |
+
#@ woocommerce-jetpack
|
1226 |
+
msgid "days"
|
1227 |
+
msgstr "jours"
|
1228 |
+
|
1229 |
+
#: includes/class-wcj-pdf-invoices.php:724
|
1230 |
+
#@ woocommerce-jetpack
|
1231 |
+
msgid "Default: Invoice fulfillment date"
|
1232 |
+
msgstr "Par défaut: Règlement effectué le"
|
1233 |
+
|
1234 |
+
#: includes/class-wcj-pdf-invoices.php:727
|
1235 |
+
#@ woocommerce-jetpack
|
1236 |
+
msgid "Invoice fulfillment date"
|
1237 |
+
msgstr "Date du règlement"
|
1238 |
+
|
1239 |
+
#: includes/class-wcj-pdf-invoices.php:744
|
1240 |
+
#@ woocommerce-jetpack
|
1241 |
+
msgid "Seller and Buyer Info"
|
1242 |
+
msgstr "Options: Informations sur le vendeur, informations sur le client."
|
1243 |
+
|
1244 |
+
#: includes/class-wcj-pdf-invoices.php:747
|
1245 |
+
#: includes/class-wcj-pdf-invoices.php:750
|
1246 |
+
#@ woocommerce-jetpack
|
1247 |
+
msgid "Seller"
|
1248 |
+
msgstr "Vendeur"
|
1249 |
+
|
1250 |
+
#: includes/class-wcj-pdf-invoices.php:756
|
1251 |
+
#@ woocommerce-jetpack
|
1252 |
+
msgid "Your business information"
|
1253 |
+
msgstr "Vos informations"
|
1254 |
+
|
1255 |
+
#: includes/class-wcj-pdf-invoices.php:758
|
1256 |
+
#@ woocommerce-jetpack
|
1257 |
+
msgid "New lines are added automatically."
|
1258 |
+
msgstr "Les retours à la ligne sont créés automatiquement."
|
1259 |
+
|
1260 |
+
#: includes/class-wcj-pdf-invoices.php:760
|
1261 |
+
#@ woocommerce-jetpack
|
1262 |
+
msgid "<strong>Company Name</strong>"
|
1263 |
+
msgstr "<strong>Société</strong>"
|
1264 |
+
|
1265 |
+
#: includes/class-wcj-pdf-invoices.php:766
|
1266 |
+
#: includes/class-wcj-pdf-invoices.php:769
|
1267 |
+
#@ woocommerce-jetpack
|
1268 |
+
msgid "Buyer"
|
1269 |
+
msgstr "Client"
|
1270 |
+
|
1271 |
+
#: includes/class-wcj-pdf-invoices.php:776
|
1272 |
+
#: includes/class-wcj-pdf-invoices.php:782
|
1273 |
+
#@ woocommerce-jetpack
|
1274 |
+
msgid "Items"
|
1275 |
+
msgstr "Options: Produits"
|
1276 |
+
|
1277 |
+
#: includes/class-wcj-pdf-invoices.php:779
|
1278 |
+
#@ woocommerce-jetpack
|
1279 |
+
msgid "Items Table Heading Text"
|
1280 |
+
msgstr "En-tête de ligne"
|
1281 |
+
|
1282 |
+
#: includes/class-wcj-pdf-invoices.php:788
|
1283 |
+
#@ woocommerce-jetpack
|
1284 |
+
msgid "Shipping as Item"
|
1285 |
+
msgstr "Produit Livraison"
|
1286 |
+
|
1287 |
+
#: includes/class-wcj-pdf-invoices.php:790
|
1288 |
+
#@ woocommerce-jetpack
|
1289 |
+
msgid "Display shipping as item"
|
1290 |
+
msgstr "Considérer les livraisons comme des produits"
|
1291 |
+
|
1292 |
+
#: includes/class-wcj-pdf-invoices.php:808
|
1293 |
+
#: includes/class-wcj-pdf-invoices.php:816
|
1294 |
+
#@ woocommerce-jetpack
|
1295 |
+
msgid "Add shipping method info"
|
1296 |
+
msgstr "Afficher les infos de livraison"
|
1297 |
+
|
1298 |
+
#: includes/class-wcj-pdf-invoices.php:815
|
1299 |
+
#@ woocommerce-jetpack
|
1300 |
+
msgid "Do not add shipping method info"
|
1301 |
+
msgstr "Ne pas afficher les infos de livraison"
|
1302 |
+
|
1303 |
+
#: includes/class-wcj-pdf-invoices.php:817
|
1304 |
+
#@ woocommerce-jetpack
|
1305 |
+
msgid "Replace with shipping method info"
|
1306 |
+
msgstr "Remplacer les infos de livraison"
|
1307 |
+
|
1308 |
+
#: includes/class-wcj-pdf-invoices.php:823
|
1309 |
+
#@ woocommerce-jetpack
|
1310 |
+
msgid "Discount as Item"
|
1311 |
+
msgstr "Produit Remise"
|
1312 |
+
|
1313 |
+
#: includes/class-wcj-pdf-invoices.php:825
|
1314 |
+
#@ woocommerce-jetpack
|
1315 |
+
msgid "Display discount as item"
|
1316 |
+
msgstr "Considérer les remises comme des produits"
|
1317 |
+
|
1318 |
+
#: includes/class-wcj-pdf-invoices.php:835
|
1319 |
+
#@ woocommerce-jetpack
|
1320 |
+
msgid "Items Columns"
|
1321 |
+
msgstr "Options: colonnes"
|
1322 |
+
|
1323 |
+
#: includes/class-wcj-pdf-invoices.php:835
|
1324 |
+
#@ woocommerce-jetpack
|
1325 |
+
msgid "This section lets you set column names in invoice items table. You can disable some columns by leaving blank column name."
|
1326 |
+
msgstr "Permet de personnaliser les titres des colonnes dans la page de facturation. Vous pouvez désactiver certaines colonnes en laissant le champ de titre vide"
|
1327 |
+
|
1328 |
+
#: includes/class-wcj-pdf-invoices.php:838
|
1329 |
+
#: includes/class-wcj-pdf-invoices.php:841
|
1330 |
+
#@ woocommerce-jetpack
|
1331 |
+
msgid "Nr."
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: includes/class-wcj-pdf-invoices.php:847
|
1335 |
+
#: includes/class-wcj-pdf-invoices.php:850
|
1336 |
+
#@ woocommerce-jetpack
|
1337 |
+
msgid "Item Name"
|
1338 |
+
msgstr "Produit"
|
1339 |
+
|
1340 |
+
#: includes/class-wcj-pdf-invoices.php:856
|
1341 |
+
#: includes/class-wcj-pdf-invoices.php:859
|
1342 |
+
#@ woocommerce-jetpack
|
1343 |
+
msgid "Qty"
|
1344 |
+
msgstr "Qté"
|
1345 |
+
|
1346 |
+
#: includes/class-wcj-pdf-invoices.php:865
|
1347 |
+
#@ woocommerce-jetpack
|
1348 |
+
msgid "Single Item Price (TAX excl.)"
|
1349 |
+
msgstr "Prix (HT)"
|
1350 |
+
|
1351 |
+
#: includes/class-wcj-pdf-invoices.php:868
|
1352 |
+
#@ woocommerce-jetpack
|
1353 |
+
msgid "Price (TAX excl.)"
|
1354 |
+
msgstr "Prix (TTC)"
|
1355 |
+
|
1356 |
+
#: includes/class-wcj-pdf-invoices.php:874
|
1357 |
+
#@ woocommerce-jetpack
|
1358 |
+
msgid "Single Item TAX"
|
1359 |
+
msgstr "TVA"
|
1360 |
+
|
1361 |
+
#: includes/class-wcj-pdf-invoices.php:877
|
1362 |
+
#@ woocommerce-jetpack
|
1363 |
+
msgid "TAX"
|
1364 |
+
msgstr "TVA"
|
1365 |
+
|
1366 |
+
#: includes/class-wcj-pdf-invoices.php:883
|
1367 |
+
#@ woocommerce-jetpack
|
1368 |
+
msgid "Single Item Price (TAX incl.)"
|
1369 |
+
msgstr "Prix (TTC)"
|
1370 |
+
|
1371 |
+
#: includes/class-wcj-pdf-invoices.php:886
|
1372 |
+
#@ woocommerce-jetpack
|
1373 |
+
msgid "Price (TAX incl.)"
|
1374 |
+
msgstr "Prix (TTC)"
|
1375 |
+
|
1376 |
+
#: includes/class-wcj-pdf-invoices.php:892
|
1377 |
+
#: includes/class-wcj-pdf-invoices.php:895
|
1378 |
+
#@ woocommerce-jetpack
|
1379 |
+
msgid "Sum (TAX excl.)"
|
1380 |
+
msgstr "Prix (HT)"
|
1381 |
+
|
1382 |
+
#: includes/class-wcj-pdf-invoices.php:901
|
1383 |
+
#@ woocommerce-jetpack
|
1384 |
+
msgid "Tax Percent"
|
1385 |
+
msgstr "Taux"
|
1386 |
+
|
1387 |
+
#: includes/class-wcj-pdf-invoices.php:904
|
1388 |
+
#@ woocommerce-jetpack
|
1389 |
+
msgid "Taxes %"
|
1390 |
+
msgstr "Taxes %"
|
1391 |
+
|
1392 |
+
#: includes/class-wcj-pdf-invoices.php:910
|
1393 |
+
#: includes/class-wcj-pdf-invoices.php:913
|
1394 |
+
#: includes/class-wcj-pdf-invoices.php:971
|
1395 |
+
#@ woocommerce-jetpack
|
1396 |
+
msgid "Taxes"
|
1397 |
+
msgstr "Taxes"
|
1398 |
+
|
1399 |
+
#: includes/class-wcj-pdf-invoices.php:919
|
1400 |
+
#: includes/class-wcj-pdf-invoices.php:922
|
1401 |
+
#@ woocommerce-jetpack
|
1402 |
+
msgid "Sum (TAX incl.)"
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: includes/class-wcj-pdf-invoices.php:929
|
1406 |
+
#@ woocommerce-jetpack
|
1407 |
+
msgid "Totals"
|
1408 |
+
msgstr "Options: Totaux"
|
1409 |
+
|
1410 |
+
#: includes/class-wcj-pdf-invoices.php:929
|
1411 |
+
#@ woocommerce-jetpack
|
1412 |
+
msgid "This section lets you set texts for totals table."
|
1413 |
+
msgstr "Permet de personnaliser le texte pour la table des totaux."
|
1414 |
+
|
1415 |
+
#: includes/class-wcj-pdf-invoices.php:932
|
1416 |
+
#: includes/class-wcj-pdf-invoices.php:935
|
1417 |
+
#@ woocommerce-jetpack
|
1418 |
+
msgid "Order Subtotal"
|
1419 |
+
msgstr "Sous-total"
|
1420 |
+
|
1421 |
+
#: includes/class-wcj-pdf-invoices.php:933
|
1422 |
+
#@ woocommerce-jetpack
|
1423 |
+
msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: includes/class-wcj-pdf-invoices.php:941
|
1427 |
+
#@ woocommerce-jetpack
|
1428 |
+
msgid "Order Shipping Price"
|
1429 |
+
msgstr "Livraison"
|
1430 |
+
|
1431 |
+
#: includes/class-wcj-pdf-invoices.php:950
|
1432 |
+
#@ woocommerce-jetpack
|
1433 |
+
msgid "Total Discount"
|
1434 |
+
msgstr "Remise"
|
1435 |
+
|
1436 |
+
#: includes/class-wcj-pdf-invoices.php:953
|
1437 |
+
#@ woocommerce-jetpack
|
1438 |
+
msgid "Discount"
|
1439 |
+
msgstr "Remise"
|
1440 |
+
|
1441 |
+
#: includes/class-wcj-pdf-invoices.php:959
|
1442 |
+
#: includes/class-wcj-pdf-invoices.php:962
|
1443 |
+
#@ woocommerce-jetpack
|
1444 |
+
msgid "Order Total (TAX excl.)"
|
1445 |
+
msgstr "Total (HT)."
|
1446 |
+
|
1447 |
+
#: includes/class-wcj-pdf-invoices.php:960
|
1448 |
+
#@ woocommerce-jetpack
|
1449 |
+
msgid "Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not equal to \"Order Subtotal\""
|
1450 |
+
msgstr "Total TH. = Total moins les taxes. S'affiche uniquement si les remises ou la livraison ne sont pas égales à zéro."
|
1451 |
+
|
1452 |
+
#: includes/class-wcj-pdf-invoices.php:968
|
1453 |
+
#@ woocommerce-jetpack
|
1454 |
+
msgid "Order Total Taxes"
|
1455 |
+
msgstr "TVA"
|
1456 |
+
|
1457 |
+
#: includes/class-wcj-pdf-invoices.php:977
|
1458 |
+
#: includes/class-wcj-pdf-invoices.php:980
|
1459 |
+
#@ woocommerce-jetpack
|
1460 |
+
msgid "Order Total"
|
1461 |
+
msgstr "Total (TTC)."
|
1462 |
+
|
1463 |
+
#: includes/class-wcj-pdf-invoices.php:987
|
1464 |
+
#@ woocommerce-jetpack
|
1465 |
+
msgid "Footer"
|
1466 |
+
msgstr "Options: Pied de page"
|
1467 |
+
|
1468 |
+
#: includes/class-wcj-pdf-invoices.php:990
|
1469 |
+
#: includes/class-wcj-pdf-invoices.php:993
|
1470 |
+
#@ woocommerce-jetpack
|
1471 |
+
msgid "Payment Method"
|
1472 |
+
msgstr "Méthode de paiement"
|
1473 |
+
|
1474 |
+
#: includes/class-wcj-pdf-invoices.php:1008
|
1475 |
+
#@ woocommerce-jetpack
|
1476 |
+
msgid "Additional Footer"
|
1477 |
+
msgstr "Texte supplémentaire de pied de page"
|
1478 |
+
|
1479 |
+
#: includes/class-wcj-pdf-invoices.php:1021
|
1480 |
+
#@ woocommerce-jetpack
|
1481 |
+
msgid "Font size"
|
1482 |
+
msgstr "Taille de la police"
|
1483 |
+
|
1484 |
+
#: includes/class-wcj-pdf-invoices.php:1022
|
1485 |
+
#@ woocommerce-jetpack
|
1486 |
+
msgid "Default: 8"
|
1487 |
+
msgstr "Par défaut: 8"
|
1488 |
+
|
1489 |
+
#: includes/class-wcj-pdf-invoices.php:1030
|
1490 |
+
#@ woocommerce-jetpack
|
1491 |
+
msgid "CSS"
|
1492 |
+
msgstr "CSS"
|
1493 |
+
|
1494 |
+
#: includes/class-wcj-pdf-invoices.php:1045
|
1495 |
+
#@ woocommerce-jetpack
|
1496 |
+
msgid "PDF Invoices for Customers (in My Account)"
|
1497 |
+
msgstr "Factures PDF pour les clients (dans Mon Compte)"
|
1498 |
+
|
1499 |
+
#: includes/class-wcj-pdf-invoices.php:1046
|
1500 |
+
#@ woocommerce-jetpack
|
1501 |
+
msgid "Enable the PDF Invoices in customers account"
|
1502 |
+
msgstr "Activer les factures au format PDF pour les clients"
|
1503 |
+
|
1504 |
+
#: includes/class-wcj-pdf-invoices.php:1055
|
1505 |
+
#@ woocommerce-jetpack
|
1506 |
+
msgid "PDF Invoices for Customers (Email attachment)"
|
1507 |
+
msgstr "Envoyer les factures au format PDF par email"
|
1508 |
+
|
1509 |
+
#: includes/class-wcj-pdf-invoices.php:1056
|
1510 |
+
#@ woocommerce-jetpack
|
1511 |
+
msgid "Enable the PDF Invoices attachment files in customers email on order completed"
|
1512 |
+
msgstr "Activer l'envoie de factures au format PDF dès que la commande est terminée"
|
1513 |
+
|
1514 |
+
#: includes/class-wcj-pdf-invoices.php:1065
|
1515 |
+
#@ woocommerce-jetpack
|
1516 |
+
msgid "Enable Save as"
|
1517 |
+
msgstr "Activer [Enregistrer sous]"
|
1518 |
+
|
1519 |
+
#: includes/class-wcj-pdf-invoices.php:1066
|
1520 |
+
#@ woocommerce-jetpack
|
1521 |
+
msgid "Enable save as pdf instead of view pdf"
|
1522 |
+
msgstr "Activer [Enregistrer sous] à la place de visualiser le PDF"
|
1523 |
+
|
1524 |
+
#: includes/class-wcj-price-labels.php:114
|
1525 |
+
#@ woocommerce-jetpack
|
1526 |
+
msgid "Migrate from Custom Price Labels"
|
1527 |
+
msgstr "Migrer depuis [Custom Price Labels]"
|
1528 |
+
|
1529 |
+
#: includes/class-wcj-price-labels.php:126
|
1530 |
+
#@ woocommerce-jetpack
|
1531 |
+
msgid "<h2>WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)</h2>"
|
1532 |
+
msgstr "<h2>WooCommerce Jetpack - importation des paramètres du plugin Custom Price Labels (Pro)</h2>"
|
1533 |
+
|
1534 |
+
#: includes/class-wcj-price-labels.php:174
|
1535 |
+
#@ woocommerce-jetpack
|
1536 |
+
msgid "Migrating: "
|
1537 |
+
msgstr "Migration: "
|
1538 |
+
|
1539 |
+
#: includes/class-wcj-price-labels.php:175
|
1540 |
+
#@ woocommerce-jetpack
|
1541 |
+
msgid " Result: "
|
1542 |
+
msgstr " Résultat: "
|
1543 |
+
|
1544 |
+
#: includes/class-wcj-price-labels.php:179
|
1545 |
+
#@ woocommerce-jetpack
|
1546 |
+
msgid "Found data to migrate: "
|
1547 |
+
msgstr "Données à importer: "
|
1548 |
+
|
1549 |
+
#: includes/class-wcj-price-labels.php:192
|
1550 |
+
#@ woocommerce-jetpack
|
1551 |
+
msgid "No data to migrate found"
|
1552 |
+
msgstr "Aucune donnée à importer"
|
1553 |
+
|
1554 |
+
#: includes/class-wcj-price-labels.php:196
|
1555 |
+
#@ woocommerce-jetpack
|
1556 |
+
msgid "No products found"
|
1557 |
+
msgstr "Aucun produit trouvé"
|
1558 |
+
|
1559 |
+
#: includes/class-wcj-price-labels.php:437
|
1560 |
+
#@ woocommerce-jetpack
|
1561 |
+
msgid "Create any custom price label for any product."
|
1562 |
+
msgstr "Permet de personnaliser les intitulés de tous les produits."
|
1563 |
+
|
1564 |
+
#: includes/class-wcj-price-labels.php:445
|
1565 |
+
#@ woocommerce-jetpack
|
1566 |
+
msgid "This section lets you set price labels for all products globally."
|
1567 |
+
msgstr "Permet de personnaliser les intitulés pour l'ensemble des produits."
|
1568 |
+
|
1569 |
+
#: includes/class-wcj-price-labels.php:448
|
1570 |
+
#@ woocommerce-jetpack
|
1571 |
+
msgid "Add before the price"
|
1572 |
+
msgstr "Ajouter avant le prix"
|
1573 |
+
|
1574 |
+
#: includes/class-wcj-price-labels.php:449
|
1575 |
+
#@ woocommerce-jetpack
|
1576 |
+
msgid "Enter text to add before all products prices. Leave blank to disable."
|
1577 |
+
msgstr "Entrez le texte à ajouter avant tous les prix. Laisser vide pour ne pas utiliser cette option"
|
1578 |
+
|
1579 |
+
#: includes/class-wcj-price-labels.php:460
|
1580 |
+
#@ woocommerce-jetpack
|
1581 |
+
msgid "Add after the price"
|
1582 |
+
msgstr "Ajouter après le prix"
|
1583 |
+
|
1584 |
+
#: includes/class-wcj-price-labels.php:461
|
1585 |
+
#@ woocommerce-jetpack
|
1586 |
+
msgid "Enter text to add after all products prices. Leave blank to disable."
|
1587 |
+
msgstr "Entrez le texte à ajouter après tous les prix. Laisser vide pour ne pas utiliser cette option"
|
1588 |
+
|
1589 |
+
#: includes/class-wcj-price-labels.php:472
|
1590 |
+
#@ woocommerce-jetpack
|
1591 |
+
msgid "Remove from price"
|
1592 |
+
msgstr "Supprimer du prix"
|
1593 |
+
|
1594 |
+
#: includes/class-wcj-price-labels.php:474
|
1595 |
+
#@ woocommerce-jetpack
|
1596 |
+
msgid "Enter text to remove from all products prices. Leave blank to disable."
|
1597 |
+
msgstr "Entrez un texte pour remplacer les prix sur les produits. Laisser vide pour ne pas utiliser cette option."
|
1598 |
+
|
1599 |
+
#: includes/class-wcj-price-labels.php:485
|
1600 |
+
#@ woocommerce-jetpack
|
1601 |
+
msgid "Replace in price"
|
1602 |
+
msgstr "Remplacer le prix"
|
1603 |
+
|
1604 |
+
#: includes/class-wcj-price-labels.php:486
|
1605 |
+
#@ woocommerce-jetpack
|
1606 |
+
msgid "Enter text to replace in all products prices. Leave blank to disable."
|
1607 |
+
msgstr "Entrez le texte de remplacement pour l'ensemble des produits. Laisser vide pour ne pas utiliser cette option."
|
1608 |
+
|
1609 |
+
#: includes/class-wcj-price-labels.php:498
|
1610 |
+
#@ woocommerce-jetpack
|
1611 |
+
msgid "Enter text to replace with. Leave blank to disable."
|
1612 |
+
msgstr "Entrez le texte de remplacement. Laisser vide pour ne pas utiliser cette option."
|
1613 |
+
|
1614 |
+
#: includes/class-wcj-price-labels.php:510
|
1615 |
+
#@ woocommerce-jetpack
|
1616 |
+
msgid "Migrate from Custom Price Labels (Pro) Options"
|
1617 |
+
msgstr "Options: permet d'importer les paramètres du plugin Custom Price Labels (Pro)"
|
1618 |
+
|
1619 |
+
#: includes/class-wcj-price-labels.php:510
|
1620 |
+
#@ woocommerce-jetpack
|
1621 |
+
msgid "This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
|
1622 |
+
msgstr "Permet d'activer l'outils d'importation des paramètres du plugin Custom Price Labels (Pro)."
|
1623 |
+
|
1624 |
+
#: includes/class-wcj-product-info.php:27
|
1625 |
+
#@ woocommerce-jetpack
|
1626 |
+
msgid "Before product"
|
1627 |
+
msgstr "Avant le produit"
|
1628 |
+
|
1629 |
+
#: includes/class-wcj-product-info.php:28
|
1630 |
+
#@ woocommerce-jetpack
|
1631 |
+
msgid "Before product title"
|
1632 |
+
msgstr "Avant l'intitulé du produit"
|
1633 |
+
|
1634 |
+
#: includes/class-wcj-product-info.php:29
|
1635 |
+
#@ woocommerce-jetpack
|
1636 |
+
msgid "After product"
|
1637 |
+
msgstr "A la suite du produit"
|
1638 |
+
|
1639 |
+
#: includes/class-wcj-product-info.php:30
|
1640 |
+
#@ woocommerce-jetpack
|
1641 |
+
msgid "After product title"
|
1642 |
+
msgstr "Après l'intitulé du produit"
|
1643 |
+
|
1644 |
+
#: includes/class-wcj-product-info.php:35
|
1645 |
+
#@ woocommerce-jetpack
|
1646 |
+
msgid "Inside single product summary"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: includes/class-wcj-product-info.php:36
|
1650 |
+
#@ woocommerce-jetpack
|
1651 |
+
msgid "Before single product summary"
|
1652 |
+
msgstr "Avant la description du produit"
|
1653 |
+
|
1654 |
+
#: includes/class-wcj-product-info.php:37
|
1655 |
+
#@ woocommerce-jetpack
|
1656 |
+
msgid "After single product summary"
|
1657 |
+
msgstr "Après la description du produit"
|
1658 |
+
|
1659 |
+
#: includes/class-wcj-product-info.php:174
|
1660 |
+
#@ woocommerce-jetpack
|
1661 |
+
msgid "Customize single product tabs, change related products number."
|
1662 |
+
msgstr "Permet de modifier les onglets dans les fiches produit. Permet de changer le nombre de produits en relation."
|
1663 |
+
|
1664 |
+
#: includes/class-wcj-product-info.php:183
|
1665 |
+
#@ woocommerce-jetpack
|
1666 |
+
msgid "More Products Info"
|
1667 |
+
msgstr "Options: Plus de produits"
|
1668 |
+
|
1669 |
+
#: includes/class-wcj-product-info.php:186
|
1670 |
+
#@ woocommerce-jetpack
|
1671 |
+
msgid "Product Info on Archive Pages"
|
1672 |
+
msgstr "Pages Archivées"
|
1673 |
+
|
1674 |
+
#: includes/class-wcj-product-info.php:195
|
1675 |
+
#: includes/class-wcj-product-info.php:232
|
1676 |
+
#, php-format
|
1677 |
+
#@ woocommerce-jetpack
|
1678 |
+
msgid "HTML info. Predefined: %total_sales%, %sku%"
|
1679 |
+
msgstr "Info HTML. Prédéfini: %total_sales%, %sku%"
|
1680 |
+
|
1681 |
+
#: includes/class-wcj-product-info.php:204
|
1682 |
+
#: includes/class-wcj-product-info.php:244
|
1683 |
+
#@ woocommerce-jetpack
|
1684 |
+
msgid "Position"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: includes/class-wcj-product-info.php:223
|
1688 |
+
#@ woocommerce-jetpack
|
1689 |
+
msgid "Product Info on Single Product Pages"
|
1690 |
+
msgstr "Fiche Produit"
|
1691 |
+
|
1692 |
+
#: includes/class-wcj-product-info.php:287
|
1693 |
+
#: includes/class-wcj-product-info.php:313
|
1694 |
+
#: includes/class-wcj-product-info.php:339
|
1695 |
+
#@ woocommerce-jetpack
|
1696 |
+
msgid "Leave blank for WooCommerce defaults"
|
1697 |
+
msgstr "Laisser vide pour garder les paramètres par défaut de Woocommerce"
|
1698 |
+
|
1699 |
+
#: includes/class-wcj-product-info.php:358
|
1700 |
+
#@ woocommerce-jetpack
|
1701 |
+
msgid "Related Products Number"
|
1702 |
+
msgstr "Nombre de produits en relation"
|
1703 |
+
|
1704 |
+
#: includes/class-wcj-product-info.php:365
|
1705 |
+
#@ woocommerce-jetpack
|
1706 |
+
msgid "Related Products Columns"
|
1707 |
+
msgstr "Nombre de colonnes"
|
1708 |
+
|
1709 |
+
#: includes/class-wcj-product-info.php:378
|
1710 |
+
#@ woocommerce-jetpack
|
1711 |
+
msgid "Date"
|
1712 |
+
msgstr "Date"
|
1713 |
+
|
1714 |
+
#: includes/class-wcj-product-info.php:385
|
1715 |
+
#@ woocommerce-jetpack
|
1716 |
+
msgid "Ignored if order by \"Random\" is selected above."
|
1717 |
+
msgstr "Ignoré si le tri est effectué au hasard."
|
1718 |
+
|
1719 |
+
#: includes/class-wcj-product-listings.php:55
|
1720 |
+
#@ woocommerce-jetpack
|
1721 |
+
msgid "Product Listings Options"
|
1722 |
+
msgstr "Options: Liste des produits"
|
1723 |
+
|
1724 |
+
#: includes/class-wcj-product-listings.php:58
|
1725 |
+
#: includes/class-wcj-product-listings.php:136
|
1726 |
+
#@ woocommerce-jetpack
|
1727 |
+
msgid "Product Listings"
|
1728 |
+
msgstr "Liste des produits"
|
1729 |
+
|
1730 |
+
#: includes/class-wcj-product-listings.php:59
|
1731 |
+
#@ woocommerce-jetpack
|
1732 |
+
msgid "Enable the Product Listings feature"
|
1733 |
+
msgstr "Activer les options pour la liste des produits"
|
1734 |
+
|
1735 |
+
#: includes/class-wcj-product-listings.php:60
|
1736 |
+
#@ woocommerce-jetpack
|
1737 |
+
msgid "Change display options for shop and category pages: show/hide categories count, exclude categories, show/hide empty categories."
|
1738 |
+
msgstr "Permet de modifier l'affichage des catégories et sous-catégories. Permet d'exclure des catégories et sous-catégories. Permet de masquer ou d'afficher des catégories et sous-catégories vides"
|
1739 |
+
|
1740 |
+
#: includes/class-wcj-product-listings.php:68
|
1741 |
+
#@ woocommerce-jetpack
|
1742 |
+
msgid "Shop Page Display Options"
|
1743 |
+
msgstr "Options: Affichage de la page de la boutique"
|
1744 |
+
|
1745 |
+
#: includes/class-wcj-product-listings.php:68
|
1746 |
+
#@ woocommerce-jetpack
|
1747 |
+
msgid "This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > Products > Product Listings\" is set to \"Show subcategories\" or \"Show both\"."
|
1748 |
+
msgstr "Fonctionne uniquement si les préférences d'affichage des pages boutiques de Woocommerce correspondent à: [Afficher les sous-catégories] ou [Tout afficher]."
|
1749 |
+
|
1750 |
+
#: includes/class-wcj-product-listings.php:71
|
1751 |
+
#@ woocommerce-jetpack
|
1752 |
+
msgid "Categories Count"
|
1753 |
+
msgstr "Nombre de produits"
|
1754 |
+
|
1755 |
+
#: includes/class-wcj-product-listings.php:72
|
1756 |
+
#: includes/class-wcj-product-listings.php:155
|
1757 |
+
#@ woocommerce-jetpack
|
1758 |
+
msgid "Hide categories count on shop page"
|
1759 |
+
msgstr "Masquer le nombres de produits d'une catégorie sur les pages boutique"
|
1760 |
+
|
1761 |
+
#: includes/class-wcj-product-listings.php:79
|
1762 |
+
#@ woocommerce-jetpack
|
1763 |
+
msgid "Exclude Categories"
|
1764 |
+
msgstr "Exclure des catégories"
|
1765 |
+
|
1766 |
+
#: includes/class-wcj-product-listings.php:80
|
1767 |
+
#: includes/class-wcj-product-listings.php:163
|
1768 |
+
#@ woocommerce-jetpack
|
1769 |
+
msgid " Excludes one or more categories from the shop page. This parameter takes a comma-separated list of categories by unique ID, in ascending order. Leave blank to disable."
|
1770 |
+
msgstr ""
|
1771 |
+
|
1772 |
+
#: includes/class-wcj-product-listings.php:88
|
1773 |
+
#: includes/class-wcj-product-listings.php:119
|
1774 |
+
#@ woocommerce-jetpack
|
1775 |
+
msgid "Hide Empty"
|
1776 |
+
msgstr "Masquer si vide"
|
1777 |
+
|
1778 |
+
#: includes/class-wcj-product-listings.php:89
|
1779 |
+
#: includes/class-wcj-product-listings.php:172
|
1780 |
+
#@ woocommerce-jetpack
|
1781 |
+
msgid "Hide empty categories on shop page"
|
1782 |
+
msgstr "Masquer les catégories vides sur les pages boutiques"
|
1783 |
+
|
1784 |
+
#: includes/class-wcj-product-listings.php:97
|
1785 |
+
#@ woocommerce-jetpack
|
1786 |
+
msgid "Category Display Options"
|
1787 |
+
msgstr ""
|
1788 |
+
|
1789 |
+
#: includes/class-wcj-product-listings.php:97
|
1790 |
+
#@ woocommerce-jetpack
|
1791 |
+
msgid "This will work only when \"Default Category Display\" in \"WooCommerce > Settings > Products > Product Listings\" is set to \"Show subcategories\" or \"Show both\"."
|
1792 |
+
msgstr "Fonctionne uniquement si les préférences d'affichage des pages catégories de Woocommerce correspondent à: [Afficher les sous-catégories] ou [Tout afficher]."
|
1793 |
+
|
1794 |
+
#: includes/class-wcj-product-listings.php:100
|
1795 |
+
#@ woocommerce-jetpack
|
1796 |
+
msgid "Subcategories Count"
|
1797 |
+
msgstr "Sous-catégories"
|
1798 |
+
|
1799 |
+
#: includes/class-wcj-product-listings.php:101
|
1800 |
+
#: includes/class-wcj-product-listings.php:184
|
1801 |
+
#@ woocommerce-jetpack
|
1802 |
+
msgid "Hide subcategories count on category pages"
|
1803 |
+
msgstr "Masquer le nombre de produits dans les sous-catégories dans les pages catégories"
|
1804 |
+
|
1805 |
+
#: includes/class-wcj-product-listings.php:110
|
1806 |
+
#@ woocommerce-jetpack
|
1807 |
+
msgid "Exclude Subcategories"
|
1808 |
+
msgstr "Exclure les sous-catégories"
|
1809 |
+
|
1810 |
+
#: includes/class-wcj-product-listings.php:111
|
1811 |
+
#: includes/class-wcj-product-listings.php:194
|
1812 |
+
#@ woocommerce-jetpack
|
1813 |
+
msgid " Excludes one or more categories from the category (archive) pages. This parameter takes a comma-separated list of categories by unique ID, in ascending order. Leave blank to disable."
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: includes/class-wcj-product-listings.php:120
|
1817 |
+
#: includes/class-wcj-product-listings.php:203
|
1818 |
+
#@ woocommerce-jetpack
|
1819 |
+
msgid "Hide empty subcategories on category pages"
|
1820 |
+
msgstr "Masquer les catégories vides sur les pages catégories"
|
1821 |
+
|
1822 |
+
#: includes/class-wcj-product-listings.php:154
|
1823 |
+
#@ woocommerce-jetpack
|
1824 |
+
msgid "WooJetpack: Categories Count"
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: includes/class-wcj-product-listings.php:162
|
1828 |
+
#@ woocommerce-jetpack
|
1829 |
+
msgid "WooJetpack: Exclude Categories on Shop Page"
|
1830 |
+
msgstr ""
|
1831 |
+
|
1832 |
+
#: includes/class-wcj-product-listings.php:171
|
1833 |
+
#: includes/class-wcj-product-listings.php:202
|
1834 |
+
#@ woocommerce-jetpack
|
1835 |
+
msgid "WooJetpack: Hide Empty"
|
1836 |
+
msgstr "WooJetpack: Masquer si vide"
|
1837 |
+
|
1838 |
+
#: includes/class-wcj-product-listings.php:183
|
1839 |
+
#@ woocommerce-jetpack
|
1840 |
+
msgid "WooJetpack: Subcategories Count"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: includes/class-wcj-product-listings.php:193
|
1844 |
+
#@ woocommerce-jetpack
|
1845 |
+
msgid "WooJetpack: Exclude Subcategories on Category Pages"
|
1846 |
+
msgstr ""
|
1847 |
+
|
1848 |
+
#: includes/class-wcj-reports.php:44
|
1849 |
+
#: includes/class-wcj-reports.php:85
|
1850 |
+
#@ woocommerce-jetpack
|
1851 |
+
msgid "Smart Reports"
|
1852 |
+
msgstr "Rapports intelligents"
|
1853 |
+
|
1854 |
+
#: includes/class-wcj-reports.php:65
|
1855 |
+
#@ woocommerce-jetpack
|
1856 |
+
msgid "Reports Options"
|
1857 |
+
msgstr "Options: Rapports"
|
1858 |
+
|
1859 |
+
#: includes/class-wcj-reports.php:68
|
1860 |
+
#: includes/class-wcj-reports.php:256
|
1861 |
+
#@ woocommerce-jetpack
|
1862 |
+
msgid "Reports"
|
1863 |
+
msgstr "Rapports"
|
1864 |
+
|
1865 |
+
#: includes/class-wcj-reports.php:69
|
1866 |
+
#@ woocommerce-jetpack
|
1867 |
+
msgid "Enable the Reports feature"
|
1868 |
+
msgstr ""
|
1869 |
+
|
1870 |
+
#: includes/class-wcj-reports.php:277
|
1871 |
+
#@ woocommerce-jetpack
|
1872 |
+
msgid "Product"
|
1873 |
+
msgstr "Produit"
|
1874 |
+
|
1875 |
+
#: includes/class-wcj-reports.php:278
|
1876 |
+
#@ woocommerce-jetpack
|
1877 |
+
msgid "Price"
|
1878 |
+
msgstr ""
|
1879 |
+
|
1880 |
+
#: includes/class-wcj-reports.php:279
|
1881 |
+
#@ woocommerce-jetpack
|
1882 |
+
msgid "Stock"
|
1883 |
+
msgstr "Stock"
|
1884 |
+
|
1885 |
+
#: includes/class-wcj-reports.php:280
|
1886 |
+
#@ woocommerce-jetpack
|
1887 |
+
msgid "Stock price"
|
1888 |
+
msgstr "Prix (Stock)"
|
1889 |
+
|
1890 |
+
#: includes/class-wcj-reports.php:282
|
1891 |
+
#@ woocommerce-jetpack
|
1892 |
+
msgid "Last sale"
|
1893 |
+
msgstr "Dernière vente"
|
1894 |
+
|
1895 |
+
#: includes/class-wcj-reports.php:283
|
1896 |
+
#: includes/class-wcj-reports.php:284
|
1897 |
+
#, php-format
|
1898 |
+
#@ woocommerce-jetpack
|
1899 |
+
msgid "Sales in last %s days"
|
1900 |
+
msgstr ""
|
1901 |
+
|
1902 |
+
#: includes/class-wcj-reports.php:286
|
1903 |
+
#@ woocommerce-jetpack
|
1904 |
+
msgid "Total sales"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: includes/class-wcj-reports.php:361
|
1908 |
+
#@ woocommerce-jetpack
|
1909 |
+
msgid "No sales yet"
|
1910 |
+
msgstr "Encore aucune ventes"
|
1911 |
+
|
1912 |
+
#: includes/class-wcj-reports.php:378
|
1913 |
+
#@ woocommerce-jetpack
|
1914 |
+
msgid "Total current stock value"
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: includes/class-wcj-reports.php:379
|
1918 |
+
#@ woocommerce-jetpack
|
1919 |
+
msgid "Total stock value"
|
1920 |
+
msgstr ""
|
1921 |
+
|
1922 |
+
#: includes/class-wcj-reports.php:380
|
1923 |
+
#@ woocommerce-jetpack
|
1924 |
+
msgid "Product stock value average"
|
1925 |
+
msgstr ""
|
1926 |
+
|
1927 |
+
#: includes/class-wcj-reports.php:381
|
1928 |
+
#@ woocommerce-jetpack
|
1929 |
+
msgid "Product stock average"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: includes/class-wcj-reports.php:439
|
1933 |
+
#@ woocommerce-jetpack
|
1934 |
+
msgid "All Products on Stock"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: includes/class-wcj-reports.php:440
|
1938 |
+
#@ woocommerce-jetpack
|
1939 |
+
msgid "Report shows all products that are on stock."
|
1940 |
+
msgstr ""
|
1941 |
+
|
1942 |
+
#: includes/class-wcj-reports.php:497
|
1943 |
+
#@ woocommerce-jetpack
|
1944 |
+
msgid "Here you can generate reports. Some reports are generated using all your orders and products, so if you have a lot of them - it may take a while."
|
1945 |
+
msgstr ""
|
1946 |
+
|
1947 |
+
#: includes/class-wcj-shipping.php:63
|
1948 |
+
#@ woocommerce-jetpack
|
1949 |
+
msgid "WooCommerce Jetpack: Hide shipping"
|
1950 |
+
msgstr "WooCommerce Jetpack: Masquer la livraison"
|
1951 |
+
|
1952 |
+
#: includes/class-wcj-sorting.php:75
|
1953 |
+
#@ woocommerce-jetpack
|
1954 |
+
msgid "WooJetpack: Remove All Sorting"
|
1955 |
+
msgstr "WooJetpack: Suppression des paramètres de tri"
|
1956 |
+
|
1957 |
+
#: includes/class-wcj-sorting.php:79
|
1958 |
+
#@ woocommerce-jetpack
|
1959 |
+
msgid "Completely remove sorting from the shop front end"
|
1960 |
+
msgstr ""
|
1961 |
+
|
1962 |
+
#: includes/class-wcj-sorting.php:170
|
1963 |
+
#@ woocommerce-jetpack
|
1964 |
+
msgid "Add more sorting options or remove all sorting including default."
|
1965 |
+
msgstr "Permet d'ajouter ou de supprimer des options de tri."
|
1966 |
+
|
1967 |
+
#: includes/class-wcj-sorting.php:182
|
1968 |
+
#@ woocommerce-jetpack
|
1969 |
+
msgid "Remove all sorting (including WooCommerce default)"
|
1970 |
+
msgstr "Supprimer tous les paramètres de tri (cela inclus les paramètres par défaut de Woocommerce)"
|
1971 |
+
|
1972 |
+
#: includes/class-wcj-sorting.php:196
|
1973 |
+
#@ woocommerce-jetpack
|
1974 |
+
msgid "Sort by Name - Asc"
|
1975 |
+
msgstr "Trier par noms [ASC]"
|
1976 |
+
|
1977 |
+
#: includes/class-wcj-sorting.php:197
|
1978 |
+
#: includes/class-wcj-sorting.php:215
|
1979 |
+
#: includes/class-wcj-sorting.php:233
|
1980 |
+
#: includes/class-wcj-sorting.php:251
|
1981 |
+
#@ woocommerce-jetpack
|
1982 |
+
msgid "Text visible at front end"
|
1983 |
+
msgstr "Texte visible par le client"
|
1984 |
+
|
1985 |
+
#: includes/class-wcj-sorting.php:214
|
1986 |
+
#@ woocommerce-jetpack
|
1987 |
+
msgid "Sort by Name - Desc"
|
1988 |
+
msgstr "Trier par noms [DESC]"
|
1989 |
+
|
1990 |
+
#: includes/class-wcj-sorting.php:232
|
1991 |
+
#@ woocommerce-jetpack
|
1992 |
+
msgid "Sort by SKU - Asc"
|
1993 |
+
msgstr "Trier par UGS [ASC]"
|
1994 |
+
|
1995 |
+
#: includes/class-wcj-sorting.php:250
|
1996 |
+
#@ woocommerce-jetpack
|
1997 |
+
msgid "Sort by SKU - Desc"
|
1998 |
+
msgstr "Trier par UGS [DESC]"
|
1999 |
+
|
2000 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:50
|
2001 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:56
|
2002 |
+
#@ woocommerce
|
2003 |
+
msgid "Enable/Disable"
|
2004 |
+
msgstr ""
|
2005 |
+
|
2006 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:52
|
2007 |
+
#@ woocommerce
|
2008 |
+
msgid "Enable Custom Payment"
|
2009 |
+
msgstr ""
|
2010 |
+
|
2011 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:58
|
2012 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:64
|
2013 |
+
#@ woocommerce
|
2014 |
+
msgid "This controls the title which the user sees during checkout."
|
2015 |
+
msgstr ""
|
2016 |
+
|
2017 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:59
|
2018 |
+
#@ woocommerce
|
2019 |
+
msgid "Custom Payment"
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:63
|
2023 |
+
#@ woocommerce
|
2024 |
+
msgid "Description"
|
2025 |
+
msgstr ""
|
2026 |
+
|
2027 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:65
|
2028 |
+
#@ woocommerce
|
2029 |
+
msgid "Payment method description that the customer will see on your checkout."
|
2030 |
+
msgstr ""
|
2031 |
+
|
2032 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:66
|
2033 |
+
#@ woocommerce
|
2034 |
+
msgid "Custom Payment Description."
|
2035 |
+
msgstr ""
|
2036 |
+
|
2037 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:70
|
2038 |
+
#@ woocommerce
|
2039 |
+
msgid "Instructions"
|
2040 |
+
msgstr ""
|
2041 |
+
|
2042 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:72
|
2043 |
+
#@ woocommerce-jetpack
|
2044 |
+
msgid "Instructions that will be added to the thank you page."
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:77
|
2048 |
+
#@ woocommerce
|
2049 |
+
msgid "Email Instructions"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:79
|
2053 |
+
#@ woocommerce-jetpack
|
2054 |
+
msgid "Instructions that will be added to the emails."
|
2055 |
+
msgstr ""
|
2056 |
+
|
2057 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:84
|
2058 |
+
#@ woocommerce-jetpack
|
2059 |
+
msgid "Icon"
|
2060 |
+
msgstr "icône"
|
2061 |
+
|
2062 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:92
|
2063 |
+
#@ woocommerce-jetpack
|
2064 |
+
msgid "Minimum order amount"
|
2065 |
+
msgstr "Minimum de commande"
|
2066 |
+
|
2067 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:94
|
2068 |
+
#@ woocommerce-jetpack
|
2069 |
+
msgid "If you want to set minimum order amount to show this gateway on frontend, enter a number here. Set to 0 to disable."
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:101
|
2073 |
+
#@ woocommerce
|
2074 |
+
msgid "Enable for shipping methods"
|
2075 |
+
msgstr ""
|
2076 |
+
|
2077 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:106
|
2078 |
+
#@ woocommerce-jetpack
|
2079 |
+
msgid "If gateway is only available for certain shipping methods, set it up here. Leave blank to enable for all methods."
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:110
|
2083 |
+
#@ woocommerce
|
2084 |
+
msgid "Select shipping methods"
|
2085 |
+
msgstr ""
|
2086 |
+
|
2087 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:114
|
2088 |
+
#@ woocommerce
|
2089 |
+
msgid "Enable for virtual orders"
|
2090 |
+
msgstr ""
|
2091 |
+
|
2092 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:115
|
2093 |
+
#@ woocommerce-jetpack
|
2094 |
+
msgid "Enable gateway if the order is virtual"
|
2095 |
+
msgstr ""
|
2096 |
+
|
2097 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:254
|
2098 |
+
#@ woocommerce
|
2099 |
+
msgid "Awaiting payment"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:275
|
2103 |
+
#@ woocommerce-jetpack
|
2104 |
+
msgid "Custom Gateway"
|
2105 |
+
msgstr "Passerelle personnalisée"
|
2106 |
+
|
2107 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:276
|
2108 |
+
#@ woocommerce-jetpack
|
2109 |
+
msgid "WooCommerce Jetpack: Custom Payment Gateway"
|
2110 |
+
msgstr "WooCommerce Jetpack: Passerelles de paiement personnalisées"
|
2111 |
+
|
2112 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:19
|
2113 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:65
|
2114 |
+
#@ woocommerce-jetpack
|
2115 |
+
msgid "Custom Shipping"
|
2116 |
+
msgstr "Livraison personnalisée"
|
2117 |
+
|
2118 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:20
|
2119 |
+
#@ woocommerce-jetpack
|
2120 |
+
msgid "WooCommerce Jetpack: Custom Shipping Method"
|
2121 |
+
msgstr "WooCommerce Jetpack: CustMéthode de livraison personnalisées"
|
2122 |
+
|
2123 |
+
#: includes/tcpdf_min/tcpdf.php:7147
|
2124 |
+
#: includes/tcpdf_min/tcpdf.php:14953
|
2125 |
+
#: includes/tcpdf_min/tcpdf.php:22891
|
2126 |
+
#@ woocommerce-jetpack
|
2127 |
+
msgctxt ""
|
2128 |
+
msgid "L"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: includes/tcpdf_min/tcpdf.php:15408
|
2132 |
+
#: includes/tcpdf_min/tcpdf.php:15677
|
2133 |
+
#@ woocommerce-jetpack
|
2134 |
+
msgctxt ""
|
2135 |
+
msgid "positionL"
|
2136 |
+
msgstr ""
|
2137 |
+
|
2138 |
+
#: includes/tcpdf_min/tcpdf.php:15420
|
2139 |
+
#@ woocommerce-jetpack
|
2140 |
+
msgctxt ""
|
2141 |
+
msgid "align"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: includes/tcpdf_min/tcpdf.php:15688
|
2145 |
+
#@ woocommerce-jetpack
|
2146 |
+
msgctxt ""
|
2147 |
+
msgid "hpadding"
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: woocommerce-jetpack.php:94
|
2151 |
+
#@ woocommerce
|
2152 |
+
msgid "WooCommerce Jetpack"
|
2153 |
+
msgstr ""
|
2154 |
+
|
2155 |
+
#: woocommerce-jetpack.php:94
|
2156 |
+
#@ woocommerce
|
2157 |
+
msgid "Jetpack Settings"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: woocommerce-jetpack.php:105
|
2161 |
+
#@ woocommerce
|
2162 |
+
msgid "Settings"
|
2163 |
+
msgstr ""
|
2164 |
+
|
2165 |
+
#: woocommerce-jetpack.php:106
|
2166 |
+
#@ woocommerce
|
2167 |
+
msgid "Docs"
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: woocommerce-jetpack.php:107
|
2171 |
+
#@ woocommerce
|
2172 |
+
msgid "Unlock all"
|
2173 |
+
msgstr ""
|
2174 |
+
|
2175 |
+
#: woocommerce-jetpack.php:120
|
2176 |
+
#@ woocommerce-jetpack
|
2177 |
+
msgid "Install WooCommerce Jetpack Plus to unlock all features"
|
2178 |
+
msgstr "Installez WooCommerce Jetpack Plus pour activer l'ensemble des options."
|
2179 |
+
|
2180 |
+
#: woocommerce-jetpack.php:121
|
2181 |
+
#, php-format
|
2182 |
+
#@ woocommerce-jetpack
|
2183 |
+
msgid "Some settings fields are locked and you will need %s to modify all locked fields."
|
2184 |
+
msgstr ""
|
2185 |
+
|
2186 |
+
#: woocommerce-jetpack.php:122
|
2187 |
+
#@ woocommerce-jetpack
|
2188 |
+
msgid "Buy now"
|
2189 |
+
msgstr "Acheter maintenant"
|
2190 |
+
|
2191 |
+
#: woocommerce-jetpack.php:122
|
2192 |
+
#, php-format
|
2193 |
+
#@ woocommerce-jetpack
|
2194 |
+
msgid "Visit %s"
|
2195 |
+
msgstr "Visite %s"
|
2196 |
+
|
2197 |
+
#: woocommerce-jetpack.php:126
|
2198 |
+
#@ woocommerce-jetpack
|
2199 |
+
msgid "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> to change value."
|
2200 |
+
msgstr "Achetez <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> pour pouvoir modifier cette valeur."
|
2201 |
+
|
2202 |
+
#: woocommerce-jetpack.php:129
|
2203 |
+
#@ woocommerce-jetpack
|
2204 |
+
msgid "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> to change values below."
|
2205 |
+
msgstr "Achetez <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> pour pouvoir modifier cette valeur."
|
2206 |
+
|
2207 |
+
#: woocommerce-jetpack.php:132
|
2208 |
+
#@ woocommerce-jetpack
|
2209 |
+
msgid "Get WooCommerce Jetpack Plus to change value."
|
2210 |
+
msgstr "Achetez WooCommerce Jetpack Plus pour modifier cette valeur."
|
2211 |
+
|
langs/woocommerce-jetpack.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Jetpack package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WooCommerce Jetpack 1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
|
7 |
-
"POT-Creation-Date: 2014-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,277 +12,1868 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
16 |
msgid "Jetpack"
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
20 |
msgid "Dashboard"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: includes/admin/settings/class-wc-settings-jetpack.php:
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: includes/class-wcj-
|
28 |
-
msgid "
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
msgid "Call for Price Options"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: includes/class-wcj-call-for-price.php:
|
36 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/class-wcj-
|
40 |
-
msgid "
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: includes/class-wcj-
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/class-wcj-
|
48 |
-
|
49 |
-
msgid "Text to Show"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: includes/class-wcj-
|
53 |
-
msgid "
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: includes/class-wcj-
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/class-wcj-
|
61 |
-
msgid "
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: includes/class-wcj-
|
65 |
-
msgid "
|
|
|
|
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: includes/class-wcj-
|
69 |
-
msgid "
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: includes/class-wcj-
|
73 |
-
msgid "
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: includes/class-wcj-
|
77 |
-
|
|
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: includes/class-wcj-
|
81 |
-
msgid "
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: includes/class-wcj-
|
85 |
-
msgid "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/class-wcj-
|
89 |
-
msgid "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/class-wcj-
|
93 |
-
msgid "This
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/class-wcj-
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/class-wcj-
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: includes/class-wcj-
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/class-wcj-
|
109 |
-
msgid "
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/class-wcj-
|
113 |
-
msgid "
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: includes/class-wcj-
|
117 |
-
msgid "
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/class-wcj-
|
121 |
-
msgid "
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: includes/class-wcj-
|
125 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: includes/class-wcj-
|
129 |
msgid ""
|
130 |
-
"
|
131 |
-
"admin.php?page=woocommerce-jetpack-old-slugs\">WooCommerce > Remove Old "
|
132 |
-
"Slugs</a>."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-wcj-
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-wcj-
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/class-wcj-
|
144 |
-
msgid "
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: includes/class-wcj-
|
148 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/class-wcj-product-info.php:
|
152 |
msgid "Product Info Options"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: includes/class-wcj-product-info.php:
|
|
|
156 |
msgid "Product Info"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/class-wcj-product-info.php:
|
160 |
msgid "Enable the Product Info feature"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/class-wcj-product-info.php:
|
164 |
-
msgid "
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/class-wcj-product-info.php:
|
168 |
-
msgid "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/class-wcj-product-info.php:
|
172 |
-
|
173 |
-
|
174 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/class-wcj-product-info.php:
|
178 |
-
msgid "
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: includes/class-wcj-product-info.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid ""
|
183 |
-
"
|
184 |
-
"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/class-wcj-product-
|
188 |
-
msgid "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/class-wcj-
|
192 |
-
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
msgid "Completely remove sorting from the shop front end"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/class-wcj-sorting.php:
|
201 |
msgid "Sorting Options"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: includes/class-wcj-sorting.php:
|
205 |
msgid "Sorting"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/class-wcj-sorting.php:
|
209 |
msgid "Enable the Sorting feature"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/class-wcj-sorting.php:
|
213 |
msgid "Add more sorting options or remove all sorting including default."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/class-wcj-sorting.php:
|
|
|
|
|
|
|
|
|
217 |
msgid "Remove all sorting (including WooCommerce default)"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/class-wcj-sorting.php:
|
221 |
msgid "Add More Sorting"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/class-wcj-sorting.php:
|
225 |
msgid "Sort by Name - Asc"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: includes/class-wcj-sorting.php:
|
229 |
-
#: includes/class-wcj-sorting.php:
|
230 |
msgid "Text visible at front end"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/class-wcj-sorting.php:
|
234 |
-
#: includes/class-wcj-sorting.php:467 includes/class-wcj-sorting.php:503
|
235 |
-
msgid "Check to enable."
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: includes/class-wcj-sorting.php:409 includes/class-wcj-sorting.php:427
|
239 |
msgid "Sort by Name - Desc"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/class-wcj-sorting.php:
|
243 |
msgid "Sort by SKU - Asc"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/class-wcj-sorting.php:
|
247 |
msgid "Sort by SKU - Desc"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
msgid "Install WooCommerce Jetpack Plus to unlock all features"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: woocommerce-jetpack.php:
|
255 |
msgid ""
|
256 |
"Some settings fields are locked and you will need %s to modify all locked "
|
257 |
"fields."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: woocommerce-jetpack.php:
|
261 |
-
msgid "Buy now
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: woocommerce-jetpack.php:
|
265 |
msgid "Visit %s"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: woocommerce-jetpack.php:
|
269 |
msgid ""
|
270 |
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
271 |
"Jetpack Plus</a> to change value."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: woocommerce-jetpack.php:
|
275 |
msgid ""
|
276 |
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
277 |
"Jetpack Plus</a> to change values below."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: woocommerce-jetpack.php:
|
281 |
-
msgid "
|
|
|
|
|
282 |
msgstr ""
|
283 |
|
284 |
-
|
285 |
-
msgid "WooCommerce Jetpack"
|
286 |
msgstr ""
|
287 |
|
288 |
#. Plugin URI of the plugin/theme
|
@@ -294,7 +1885,7 @@ msgid "Supercharge your WooCommerce site with these awesome powerful features."
|
|
294 |
msgstr ""
|
295 |
|
296 |
#. Author of the plugin/theme
|
297 |
-
msgid "Algoritmika Ltd
|
298 |
msgstr ""
|
299 |
|
300 |
#. Author URI of the plugin/theme
|
2 |
# This file is distributed under the same license as the WooCommerce Jetpack package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Jetpack 1.7.6\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
|
7 |
+
"POT-Creation-Date: 2014-10-09 02:37:37+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:24
|
16 |
msgid "Jetpack"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:40
|
20 |
msgid "Dashboard"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:152
|
24 |
+
msgid "WooCommerce Jetpack Dashboard"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: includes/admin/tools/class-wcj-tools.php:34
|
28 |
+
msgid "Tools Dashboard"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: includes/admin/tools/class-wcj-tools.php:63
|
32 |
+
msgid "WooCommerce Jetpack Tools Dashboard"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: includes/admin/tools/class-wcj-tools.php:64
|
36 |
+
msgid ""
|
37 |
+
"This dashboard lets you check statuses and short descriptions of all "
|
38 |
+
"available WooCommerce Jetpack tools. Tools can be enabled through "
|
39 |
+
"WooCommerce > Settings > Jetpack. Enabled tools will appear in the tabs menu "
|
40 |
+
"above."
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: includes/admin/tools/class-wcj-tools.php:67
|
44 |
+
msgid "Tool"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: includes/admin/tools/class-wcj-tools.php:68
|
48 |
+
msgid "Status"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: includes/admin/tools/class-wcj-tools.php:69
|
52 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:63
|
53 |
+
msgid "Description"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: includes/class-wcj-add-to-cart.php:141
|
57 |
+
msgid "Add to Cart Options"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: includes/class-wcj-add-to-cart.php:144
|
61 |
+
#: includes/class-wcj-add-to-cart.php:315
|
62 |
+
msgid "Add to Cart"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-wcj-add-to-cart.php:145
|
66 |
+
msgid "Enable the Add to Cart feature"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-wcj-add-to-cart.php:146
|
70 |
+
msgid ""
|
71 |
+
"Set any url to redirect to on add to cart. Change text for Add to cart "
|
72 |
+
"button by product type. Display \"Already in cart\" instead of \"Add to cart"
|
73 |
+
"\" button if current product is already in cart."
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: includes/class-wcj-add-to-cart.php:158
|
77 |
+
msgid "Add to Cart Redirect Options"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: includes/class-wcj-add-to-cart.php:158
|
81 |
+
msgid ""
|
82 |
+
"This section lets you set any url to redirect to after successfully adding "
|
83 |
+
"product to cart. Leave empty to redirect to checkout page (skipping the cart "
|
84 |
+
"page)."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: includes/class-wcj-add-to-cart.php:161
|
88 |
+
msgid "Redirect"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: includes/class-wcj-add-to-cart.php:162
|
92 |
+
#: includes/class-wcj-add-to-cart.php:184 includes/class-wcj-cart.php:135
|
93 |
+
#: includes/class-wcj-cart.php:168 includes/class-wcj-orders.php:426
|
94 |
+
#: includes/class-wcj-orders.php:532 includes/class-wcj-orders.php:545
|
95 |
+
#: includes/class-wcj-price-labels.php:583
|
96 |
+
#: includes/class-wcj-product-info.php:187
|
97 |
+
#: includes/class-wcj-product-info.php:224
|
98 |
+
#: includes/class-wcj-product-info.php:351 includes/class-wcj-sorting.php:206
|
99 |
+
#: includes/class-wcj-sorting.php:224 includes/class-wcj-sorting.php:242
|
100 |
+
#: includes/class-wcj-sorting.php:260
|
101 |
+
msgid "Enable"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: includes/class-wcj-add-to-cart.php:169
|
105 |
+
msgid "Redirect URL"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: includes/class-wcj-add-to-cart.php:170
|
109 |
+
msgid "Redirect URL. Leave empty to redirect to checkout."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: includes/class-wcj-add-to-cart.php:180
|
113 |
+
msgid "Add to Cart Button Text Options"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: includes/class-wcj-add-to-cart.php:183
|
117 |
+
msgid "Add to cart text"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: includes/class-wcj-add-to-cart.php:194
|
121 |
+
msgid "Simple product"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: includes/class-wcj-add-to-cart.php:199
|
125 |
+
msgid "Variable product"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: includes/class-wcj-add-to-cart.php:204
|
129 |
+
msgid "External product"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: includes/class-wcj-add-to-cart.php:209
|
133 |
+
msgid "Grouped product"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: includes/class-wcj-add-to-cart.php:214
|
137 |
+
msgid "Other product"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: includes/class-wcj-add-to-cart.php:235
|
141 |
+
msgid "Enable on single product pages"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: includes/class-wcj-add-to-cart.php:254
|
145 |
+
msgid "Enable on product archives"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: includes/class-wcj-add-to-cart.php:279
|
149 |
+
msgid "Enable \"Already in cart\" on single product pages"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: includes/class-wcj-add-to-cart.php:298
|
153 |
+
msgid "Enable \"Already in cart\" on product archives"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: includes/class-wcj-call-for-price.php:72
|
157 |
msgid "Call for Price Options"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: includes/class-wcj-call-for-price.php:72
|
161 |
+
msgid ""
|
162 |
+
"Leave price empty when adding or editing products. Then set the options here."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: includes/class-wcj-call-for-price.php:75
|
166 |
+
#: includes/class-wcj-call-for-price.php:158
|
167 |
+
msgid "Call for Price"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/class-wcj-call-for-price.php:76
|
171 |
+
msgid "Enable the Call for Price feature"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/class-wcj-call-for-price.php:77
|
175 |
+
msgid "Create any custom price label for all products with empty price."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/class-wcj-call-for-price.php:84
|
179 |
+
msgid "Label to Show on Single"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/class-wcj-call-for-price.php:85
|
183 |
+
#: includes/class-wcj-call-for-price.php:97
|
184 |
+
#: includes/class-wcj-call-for-price.php:109
|
185 |
+
#: includes/class-wcj-call-for-price.php:121
|
186 |
+
msgid "This sets the html to output on empty price. Leave blank to disable."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: includes/class-wcj-call-for-price.php:96
|
190 |
+
msgid "Label to Show on Archives"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/class-wcj-call-for-price.php:108
|
194 |
+
msgid "Label to Show on Homepage"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/class-wcj-call-for-price.php:120
|
198 |
+
msgid "Label to Show on Related"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/class-wcj-call-for-price.php:132
|
202 |
+
msgid "Hide Sale! Tag"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/class-wcj-call-for-price.php:133
|
206 |
+
msgid "Hide the tag"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: includes/class-wcj-cart.php:118
|
210 |
+
msgid "Cart Options"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/class-wcj-cart.php:121 includes/class-wcj-cart.php:186
|
214 |
+
msgid "Cart"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/class-wcj-cart.php:122
|
218 |
+
msgid "Enable the Cart feature"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/class-wcj-cart.php:123
|
222 |
+
msgid "Add empty cart button, automatically add to cart on product visit."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: includes/class-wcj-cart.php:131
|
226 |
+
msgid "Empty Cart Options"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/class-wcj-cart.php:131
|
230 |
+
msgid ""
|
231 |
+
"This section lets you add and customize \"Empty Cart\" button to cart page."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/class-wcj-cart.php:134
|
235 |
+
msgid "Empty Cart"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/class-wcj-cart.php:142
|
239 |
+
msgid "Empty Cart Button Text"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/class-wcj-cart.php:152
|
243 |
+
msgid "Wrapping DIV style"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: includes/class-wcj-cart.php:153
|
247 |
+
msgid "Style for the button's div. Default is \"float: right;\""
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/class-wcj-cart.php:164 includes/class-wcj-cart.php:167
|
251 |
+
msgid "Add to Cart on Visit"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: includes/class-wcj-cart.php:164
|
255 |
+
msgid ""
|
256 |
+
"This section lets you enable automatically adding product to cart on "
|
257 |
+
"visiting the product page. Product is only added once, so if it is already "
|
258 |
+
"in cart - duplicate product is not added. "
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/class-wcj-checkout.php:141
|
262 |
+
msgid "Checkout Options"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/class-wcj-checkout.php:144 includes/class-wcj-checkout.php:273
|
266 |
+
msgid "Checkout"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: includes/class-wcj-checkout.php:145
|
270 |
+
msgid "Enable the Checkout feature"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: includes/class-wcj-checkout.php:146
|
274 |
+
msgid ""
|
275 |
+
"Customize checkout fields. Disable/enable fields, set required, change "
|
276 |
+
"labels and/or placeholders."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: includes/class-wcj-checkout.php:156
|
280 |
+
msgid "Place order (Order now) Button"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: includes/class-wcj-checkout.php:159
|
284 |
+
msgid "Text"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: includes/class-wcj-checkout.php:160
|
288 |
+
msgid "leave blank for WooCommerce default"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: includes/class-wcj-checkout.php:161
|
292 |
+
msgid "Button on the checkout page."
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/class-wcj-checkout.php:170
|
296 |
+
msgid "Checkout Fields Options"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: includes/class-wcj-checkout.php:170
|
300 |
+
msgid ""
|
301 |
+
"This section lets you customize the checkout fields: change label, "
|
302 |
+
"placeholder, set required, or remove any field."
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: includes/class-wcj-checkout.php:236
|
306 |
+
msgid "Leave blank for WooCommerce defaults."
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: includes/class-wcj-currencies.php:389
|
310 |
+
msgid "Currency Symbol"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: includes/class-wcj-currencies.php:390
|
314 |
+
msgid "This sets the currency symbol."
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: includes/class-wcj-currencies.php:411
|
318 |
+
msgid "Currencies Options"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: includes/class-wcj-currencies.php:414 includes/class-wcj-currencies.php:445
|
322 |
+
msgid "Currencies"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: includes/class-wcj-currencies.php:415
|
326 |
+
msgid "Enable the Currencies feature"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: includes/class-wcj-currencies.php:416
|
330 |
+
msgid "Add all world currencies, change currency symbol."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: includes/class-wcj-currencies.php:424
|
334 |
+
msgid "Currency Symbol Options"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: includes/class-wcj-emails.php:57
|
338 |
+
msgid "WooCommerce Jetpack: Email Forwarding Options"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: includes/class-wcj-emails.php:57 includes/class-wcj-emails.php:128
|
342 |
+
msgid ""
|
343 |
+
"This section lets you add another email recipient(s) to all WooCommerce "
|
344 |
+
"emails. Leave blank to disable."
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: includes/class-wcj-emails.php:61 includes/class-wcj-emails.php:131
|
348 |
+
msgid "Cc Email"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: includes/class-wcj-emails.php:63 includes/class-wcj-emails.php:133
|
352 |
+
msgid "Cc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: includes/class-wcj-emails.php:73 includes/class-wcj-emails.php:142
|
356 |
+
msgid "Bcc Email"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: includes/class-wcj-emails.php:75 includes/class-wcj-emails.php:144
|
360 |
+
msgid "Bcc to email, e.g. youremail@yourdomain.com. Leave blank to disable."
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: includes/class-wcj-emails.php:115
|
364 |
+
msgid "Emails Options"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: includes/class-wcj-emails.php:118 includes/class-wcj-emails.php:162
|
368 |
+
msgid "Emails"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: includes/class-wcj-emails.php:119
|
372 |
+
msgid "Enable the Emails feature"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: includes/class-wcj-emails.php:120
|
376 |
+
msgid "Add another email recipient(s) to all WooCommerce emails."
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: includes/class-wcj-emails.php:128
|
380 |
+
msgid "Email Forwarding Options"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: includes/class-wcj-general.php:70 includes/class-wcj-pdf-invoices.php:1018
|
384 |
+
msgid "General Options"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: includes/class-wcj-general.php:73 includes/class-wcj-general.php:111
|
388 |
+
msgid "General"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: includes/class-wcj-general.php:74
|
392 |
+
msgid "Enable the General feature"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: includes/class-wcj-general.php:75
|
396 |
+
msgid "Separate custom CSS for front and back end."
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: includes/class-wcj-general.php:83
|
400 |
+
msgid "Custom CSS Options"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: includes/class-wcj-general.php:83
|
404 |
+
msgid "Another custom CSS, if you need one."
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: includes/class-wcj-general.php:86
|
408 |
+
msgid "Custom CSS - Front end (Customers)"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: includes/class-wcj-general.php:94
|
412 |
+
msgid "Custom CSS - Back end (Admin)"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: includes/class-wcj-old-slugs.php:49 includes/class-wcj-orders.php:110
|
416 |
+
#: includes/class-wcj-orders.php:259 includes/class-wcj-price-labels.php:116
|
417 |
+
msgid "enabled"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: includes/class-wcj-old-slugs.php:51 includes/class-wcj-orders.php:112
|
421 |
+
#: includes/class-wcj-orders.php:261 includes/class-wcj-price-labels.php:118
|
422 |
+
msgid "disabled"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: includes/class-wcj-old-slugs.php:52 includes/class-wcj-old-slugs.php:64
|
426 |
+
msgid "Remove Old Slugs"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/class-wcj-old-slugs.php:54 includes/class-wcj-old-slugs.php:165
|
430 |
+
msgid "Tool removes old slugs/permalinks from database."
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: includes/class-wcj-old-slugs.php:86
|
434 |
+
msgid "Old Slugs Options"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: includes/class-wcj-old-slugs.php:89 includes/class-wcj-old-slugs.php:109
|
438 |
+
msgid "Old Slugs"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: includes/class-wcj-old-slugs.php:90
|
442 |
+
msgid "Enable the Remove Old Product Slugs feature"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: includes/class-wcj-old-slugs.php:92
|
446 |
+
msgid "Remove old product slugs."
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/class-wcj-old-slugs.php:164
|
450 |
+
msgid "WooCommerce Jetpack - Remove Old Product Slugs"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/class-wcj-old-slugs.php:170
|
454 |
+
msgid "Old products slugs found:"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/class-wcj-old-slugs.php:178
|
458 |
+
msgid "None-products slugs found:"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: includes/class-wcj-old-slugs.php:185
|
462 |
+
msgid "No old slugs found."
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/class-wcj-orders.php:26
|
466 |
+
msgctxt "Order status"
|
467 |
+
msgid "Pending payment"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: includes/class-wcj-orders.php:27
|
471 |
+
msgctxt "Order status"
|
472 |
+
msgid "Processing"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: includes/class-wcj-orders.php:28
|
476 |
+
msgctxt "Order status"
|
477 |
+
msgid "On hold"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/class-wcj-orders.php:29
|
481 |
+
msgctxt "Order status"
|
482 |
+
msgid "Completed"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: includes/class-wcj-orders.php:30
|
486 |
+
msgctxt "Order status"
|
487 |
+
msgid "Cancelled"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: includes/class-wcj-orders.php:31
|
491 |
+
msgctxt "Order status"
|
492 |
+
msgid "Refunded"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: includes/class-wcj-orders.php:32
|
496 |
+
msgctxt "Order status"
|
497 |
+
msgid "Failed"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: includes/class-wcj-orders.php:113 includes/class-wcj-orders.php:125
|
501 |
+
#: includes/class-wcj-orders.php:541 includes/class-wcj-orders.php:544
|
502 |
+
msgid "Custom Statuses"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: includes/class-wcj-orders.php:115
|
506 |
+
msgid "Tool lets you add or delete any custom status for WooCommerce orders."
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: includes/class-wcj-orders.php:155
|
510 |
+
msgid "Status slug is empty. Status not added."
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: includes/class-wcj-orders.php:157
|
514 |
+
msgid "Status label is empty. Status not added."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: includes/class-wcj-orders.php:163
|
518 |
+
msgid "Duplicate slug. Status not added."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: includes/class-wcj-orders.php:169
|
522 |
+
msgid "New status have been successfully added!"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: includes/class-wcj-orders.php:171
|
526 |
+
msgid "Status was not added."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: includes/class-wcj-orders.php:187
|
530 |
+
msgid "Status have been successfully deleted."
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: includes/class-wcj-orders.php:189
|
534 |
+
msgid "Delete failed."
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: includes/class-wcj-orders.php:192
|
538 |
+
msgid "WooCommerce Jetpack - Custom Statuses"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: includes/class-wcj-orders.php:193
|
542 |
+
msgid ""
|
543 |
+
"The tool lets you add or delete any custom status for WooCommerce orders."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: includes/class-wcj-orders.php:195
|
547 |
+
msgid "Statuses"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: includes/class-wcj-orders.php:198
|
551 |
+
msgid "Slug"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: includes/class-wcj-orders.php:199 includes/class-wcj-orders.php:224
|
555 |
+
msgid "Label"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: includes/class-wcj-orders.php:201 includes/class-wcj-orders.php:211
|
559 |
+
msgid "Delete"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: includes/class-wcj-orders.php:223
|
563 |
+
msgid "Slug (without wc- prefix)"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: includes/class-wcj-orders.php:262
|
567 |
+
msgid "Orders Renumerate"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: includes/class-wcj-orders.php:264
|
571 |
+
msgid "Tool renumerates all orders."
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: includes/class-wcj-orders.php:274
|
575 |
+
msgid "Renumerate orders"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: includes/class-wcj-orders.php:289
|
579 |
+
msgid "WooCommerce Jetpack - Renumerate Orders"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: includes/class-wcj-orders.php:290
|
583 |
+
msgid ""
|
584 |
+
"The tool renumerates all orders. Press the button below to renumerate all "
|
585 |
+
"existing orders starting from order counter settings in WooCommerce > "
|
586 |
+
"Settings > Jetpack > Order Numbers."
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: includes/class-wcj-orders.php:409
|
590 |
+
msgid "Orders Options"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: includes/class-wcj-orders.php:412 includes/class-wcj-orders.php:563
|
594 |
+
msgid "Orders"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: includes/class-wcj-orders.php:413
|
598 |
+
msgid "Enable the Orders feature"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: includes/class-wcj-orders.php:414
|
602 |
+
msgid ""
|
603 |
+
"Sequential order numbering, custom order number prefix and number width. "
|
604 |
+
"Minimum order amount."
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: includes/class-wcj-orders.php:422 includes/class-wcj-orders.php:425
|
608 |
+
msgid "Order Numbers"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: includes/class-wcj-orders.php:422
|
612 |
+
msgid ""
|
613 |
+
"This section lets you enable sequential order numbering, set custom number "
|
614 |
+
"prefix and width."
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: includes/class-wcj-orders.php:427
|
618 |
+
msgid "This will enable sequential order numbering and custom prefixes."
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: includes/class-wcj-orders.php:434
|
622 |
+
msgid "Next Order Number"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: includes/class-wcj-orders.php:435
|
626 |
+
msgid "Next new order will be given this number."
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: includes/class-wcj-orders.php:442
|
630 |
+
msgid "Order Number Custom Prefix"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: includes/class-wcj-orders.php:444
|
634 |
+
msgid ""
|
635 |
+
"Prefix before order number (optional). This will change the prefixes for all "
|
636 |
+
"existing orders."
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: includes/class-wcj-orders.php:453
|
640 |
+
msgid "Order Number Date Prefix"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: includes/class-wcj-orders.php:455
|
644 |
+
msgid ""
|
645 |
+
"Date prefix before order number (optional). This will change the prefixes "
|
646 |
+
"for all existing orders. Value is passed directly to PHP `date` function, so "
|
647 |
+
"most of PHP date formats can be used. The only exception is using `\\` "
|
648 |
+
"symbol in date format, as this symbol will be excluded from date. Try: Y-m-"
|
649 |
+
"d- or mdy."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: includes/class-wcj-orders.php:464
|
653 |
+
msgid "Order Number Width"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: includes/class-wcj-orders.php:466
|
657 |
+
msgid ""
|
658 |
+
"Minimum width of number without prefix (zeros will be added to the left "
|
659 |
+
"side). This will change the minimum width of order number for all existing "
|
660 |
+
"orders. E.g. set to 5 to have order number displayed as 00001 instead of 1. "
|
661 |
+
"Leave zero to disable."
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: includes/class-wcj-orders.php:476
|
665 |
+
msgid "Order Minimum Amount"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: includes/class-wcj-orders.php:476
|
669 |
+
msgid "This section lets you set minimum order amount."
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: includes/class-wcj-orders.php:479
|
673 |
+
msgid "Amount"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: includes/class-wcj-orders.php:480
|
677 |
+
msgid "Minimum order amount. Set to 0 to disable."
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: includes/class-wcj-orders.php:487
|
681 |
+
msgid "Error message"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: includes/class-wcj-orders.php:489 includes/class-wcj-orders.php:509
|
685 |
+
msgid ""
|
686 |
+
"Message to customer if order is below minimum amount. Default: You must have "
|
687 |
+
"an order with a minimum of %s to place your order, your current order total "
|
688 |
+
"is %s."
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: includes/class-wcj-orders.php:499
|
692 |
+
msgid "Add notice to cart page also"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: includes/class-wcj-orders.php:500
|
696 |
+
msgid "Add"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: includes/class-wcj-orders.php:507
|
700 |
+
msgid "Message on cart page"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: includes/class-wcj-orders.php:519
|
704 |
+
msgid ""
|
705 |
+
"Stop customer from seeing the Checkout page if minimum amount not reached."
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: includes/class-wcj-orders.php:520
|
709 |
+
msgid "Redirect back to Cart page"
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: includes/class-wcj-orders.php:528
|
713 |
+
msgid "Orders Auto-Complete"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: includes/class-wcj-orders.php:528
|
717 |
+
msgid "This section lets you enable orders auto-complete function."
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: includes/class-wcj-orders.php:531
|
721 |
+
msgid "Auto-complete all WooCommerce orders"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: includes/class-wcj-orders.php:533
|
725 |
+
msgid ""
|
726 |
+
"E.g. if you sell digital products then you are not shipping anything and you "
|
727 |
+
"may want auto-complete all your orders."
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
#: includes/class-wcj-orders.php:541
|
731 |
+
msgid "This section lets you enable custom statuses tool."
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: includes/class-wcj-payment-gateways.php:64
|
735 |
+
msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: includes/class-wcj-payment-gateways.php:64
|
739 |
+
#: includes/class-wcj-payment-gateways.php:151
|
740 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:86
|
741 |
+
msgid ""
|
742 |
+
"If you want to show an image next to the gateway's name on the frontend, "
|
743 |
+
"enter a URL to an image."
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: includes/class-wcj-payment-gateways.php:119
|
747 |
+
msgid "Payment Gateways Options"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: includes/class-wcj-payment-gateways.php:122
|
751 |
+
#: includes/class-wcj-payment-gateways.php:183
|
752 |
+
msgid "Payment Gateways"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: includes/class-wcj-payment-gateways.php:123
|
756 |
+
msgid "Enable the Payment Gateways feature"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: includes/class-wcj-payment-gateways.php:124
|
760 |
+
msgid ""
|
761 |
+
"Add custom payment gateway, change icons (images) for all default "
|
762 |
+
"WooCommerce payment gateways."
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: includes/class-wcj-payment-gateways.php:132
|
766 |
+
msgid "Custom Payment Gateways Options"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: includes/class-wcj-payment-gateways.php:135
|
770 |
+
msgid "Number of Gateways"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: includes/class-wcj-payment-gateways.php:137
|
774 |
+
msgid ""
|
775 |
+
"Number of custom payments gateways to be added. All settings for each new "
|
776 |
+
"gateway are in WooCommerce > Settings > Checkout."
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: includes/class-wcj-payment-gateways.php:151
|
780 |
+
msgid "Default WooCommerce Payment Gateways Options"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: includes/class-wcj-pdf-invoices.php:76
|
784 |
+
#: includes/class-wcj-pdf-invoices.php:81
|
785 |
+
msgid "Invoice"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: includes/class-wcj-pdf-invoices.php:600
|
789 |
+
#: includes/class-wcj-pdf-invoices.php:606
|
790 |
+
msgid "PDF Invoice"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/class-wcj-pdf-invoices.php:631
|
794 |
+
msgid "PDF Invoices Options"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: includes/class-wcj-pdf-invoices.php:634
|
798 |
+
#: includes/class-wcj-pdf-invoices.php:1086
|
799 |
+
msgid "PDF Invoices"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: includes/class-wcj-pdf-invoices.php:635
|
803 |
+
msgid "Enable the PDF Invoices feature"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: includes/class-wcj-pdf-invoices.php:636
|
807 |
+
msgid "Add PDF invoices for the store owners and for the customers."
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: includes/class-wcj-pdf-invoices.php:644
|
811 |
+
msgid "Invoice Header"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: includes/class-wcj-pdf-invoices.php:644
|
815 |
+
msgid ""
|
816 |
+
"This section lets you set texts for required invoice number and date, and "
|
817 |
+
"optional logo, header text, invoice due and fulfillment dates."
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: includes/class-wcj-pdf-invoices.php:647
|
821 |
+
msgid "Your Logo URL"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: includes/class-wcj-pdf-invoices.php:648
|
825 |
+
msgid ""
|
826 |
+
"Enter a URL to an image you want to show in the invoice's header. Upload "
|
827 |
+
"your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: includes/class-wcj-pdf-invoices.php:649
|
831 |
+
#: includes/class-wcj-pdf-invoices.php:658
|
832 |
+
#: includes/class-wcj-pdf-invoices.php:696
|
833 |
+
#: includes/class-wcj-pdf-invoices.php:725
|
834 |
+
#: includes/class-wcj-pdf-invoices.php:789
|
835 |
+
#: includes/class-wcj-pdf-invoices.php:824
|
836 |
+
#: includes/class-wcj-pdf-invoices.php:866
|
837 |
+
#: includes/class-wcj-pdf-invoices.php:875
|
838 |
+
#: includes/class-wcj-pdf-invoices.php:884
|
839 |
+
#: includes/class-wcj-pdf-invoices.php:893
|
840 |
+
#: includes/class-wcj-pdf-invoices.php:902
|
841 |
+
#: includes/class-wcj-pdf-invoices.php:911
|
842 |
+
#: includes/class-wcj-pdf-invoices.php:991
|
843 |
+
#: includes/class-wcj-pdf-invoices.php:1000
|
844 |
+
msgid "Leave blank to disable"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: includes/class-wcj-pdf-invoices.php:657
|
848 |
+
msgid "Header Text"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: includes/class-wcj-pdf-invoices.php:659
|
852 |
+
msgid "Default: INVOICE"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: includes/class-wcj-pdf-invoices.php:661
|
856 |
+
msgid "INVOICE"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/class-wcj-pdf-invoices.php:667
|
860 |
+
msgid "Invoice Number"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/class-wcj-pdf-invoices.php:668
|
864 |
+
msgid "Default: Invoice number"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/class-wcj-pdf-invoices.php:670
|
868 |
+
msgid "Invoice number"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: includes/class-wcj-pdf-invoices.php:676
|
872 |
+
msgid "Invoice Date"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: includes/class-wcj-pdf-invoices.php:677
|
876 |
+
msgid "Default: Invoice date"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: includes/class-wcj-pdf-invoices.php:679
|
880 |
+
msgid "Invoice date"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: includes/class-wcj-pdf-invoices.php:695
|
884 |
+
msgid "Default: Invoice due date"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: includes/class-wcj-pdf-invoices.php:698
|
888 |
+
msgid "Invoice due date"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
#: includes/class-wcj-pdf-invoices.php:705
|
892 |
+
#: includes/class-wcj-pdf-invoices.php:734
|
893 |
+
msgid "days"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: includes/class-wcj-pdf-invoices.php:724
|
897 |
+
msgid "Default: Invoice fulfillment date"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: includes/class-wcj-pdf-invoices.php:727
|
901 |
+
msgid "Invoice fulfillment date"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: includes/class-wcj-pdf-invoices.php:744
|
905 |
+
msgid "Seller and Buyer Info"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: includes/class-wcj-pdf-invoices.php:747
|
909 |
+
#: includes/class-wcj-pdf-invoices.php:750
|
910 |
+
msgid "Seller"
|
911 |
+
msgstr ""
|
912 |
+
|
913 |
+
#: includes/class-wcj-pdf-invoices.php:756
|
914 |
+
msgid "Your business information"
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: includes/class-wcj-pdf-invoices.php:758
|
918 |
+
msgid "New lines are added automatically."
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: includes/class-wcj-pdf-invoices.php:760
|
922 |
+
msgid "<strong>Company Name</strong>"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: includes/class-wcj-pdf-invoices.php:766
|
926 |
+
#: includes/class-wcj-pdf-invoices.php:769
|
927 |
+
msgid "Buyer"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: includes/class-wcj-pdf-invoices.php:776
|
931 |
+
#: includes/class-wcj-pdf-invoices.php:782
|
932 |
+
msgid "Items"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: includes/class-wcj-pdf-invoices.php:779
|
936 |
+
msgid "Items Table Heading Text"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: includes/class-wcj-pdf-invoices.php:788
|
940 |
+
msgid "Shipping as Item"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: includes/class-wcj-pdf-invoices.php:790
|
944 |
+
msgid "Display shipping as item"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: includes/class-wcj-pdf-invoices.php:808
|
948 |
+
#: includes/class-wcj-pdf-invoices.php:816
|
949 |
+
msgid "Add shipping method info"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: includes/class-wcj-pdf-invoices.php:815
|
953 |
+
msgid "Do not add shipping method info"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: includes/class-wcj-pdf-invoices.php:817
|
957 |
+
msgid "Replace with shipping method info"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: includes/class-wcj-pdf-invoices.php:823
|
961 |
+
msgid "Discount as Item"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: includes/class-wcj-pdf-invoices.php:825
|
965 |
+
msgid "Display discount as item"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: includes/class-wcj-pdf-invoices.php:835
|
969 |
+
msgid "Items Columns"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: includes/class-wcj-pdf-invoices.php:835
|
973 |
+
msgid ""
|
974 |
+
"This section lets you set column names in invoice items table. You can "
|
975 |
+
"disable some columns by leaving blank column name."
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: includes/class-wcj-pdf-invoices.php:838
|
979 |
+
#: includes/class-wcj-pdf-invoices.php:841
|
980 |
+
msgid "Nr."
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: includes/class-wcj-pdf-invoices.php:847
|
984 |
+
#: includes/class-wcj-pdf-invoices.php:850
|
985 |
+
msgid "Item Name"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: includes/class-wcj-pdf-invoices.php:856
|
989 |
+
#: includes/class-wcj-pdf-invoices.php:859
|
990 |
+
msgid "Qty"
|
991 |
+
msgstr ""
|
992 |
+
|
993 |
+
#: includes/class-wcj-pdf-invoices.php:865
|
994 |
+
msgid "Single Item Price (TAX excl.)"
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: includes/class-wcj-pdf-invoices.php:868
|
998 |
+
msgid "Price (TAX excl.)"
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: includes/class-wcj-pdf-invoices.php:874
|
1002 |
+
msgid "Single Item TAX"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: includes/class-wcj-pdf-invoices.php:877
|
1006 |
+
msgid "TAX"
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: includes/class-wcj-pdf-invoices.php:883
|
1010 |
+
msgid "Single Item Price (TAX incl.)"
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: includes/class-wcj-pdf-invoices.php:886
|
1014 |
+
msgid "Price (TAX incl.)"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: includes/class-wcj-pdf-invoices.php:892
|
1018 |
+
#: includes/class-wcj-pdf-invoices.php:895
|
1019 |
+
msgid "Sum (TAX excl.)"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/class-wcj-pdf-invoices.php:901
|
1023 |
+
msgid "Tax Percent"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/class-wcj-pdf-invoices.php:904
|
1027 |
+
msgid "Taxes %"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/class-wcj-pdf-invoices.php:910
|
1031 |
+
#: includes/class-wcj-pdf-invoices.php:913
|
1032 |
+
#: includes/class-wcj-pdf-invoices.php:971
|
1033 |
+
msgid "Taxes"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: includes/class-wcj-pdf-invoices.php:919
|
1037 |
+
#: includes/class-wcj-pdf-invoices.php:922
|
1038 |
+
msgid "Sum (TAX incl.)"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: includes/class-wcj-pdf-invoices.php:929
|
1042 |
+
msgid "Totals"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: includes/class-wcj-pdf-invoices.php:929
|
1046 |
+
msgid "This section lets you set texts for totals table."
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: includes/class-wcj-pdf-invoices.php:932
|
1050 |
+
#: includes/class-wcj-pdf-invoices.php:935
|
1051 |
+
msgid "Order Subtotal"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: includes/class-wcj-pdf-invoices.php:933
|
1055 |
+
msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: includes/class-wcj-pdf-invoices.php:941
|
1059 |
+
msgid "Order Shipping Price"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: includes/class-wcj-pdf-invoices.php:944 includes/class-wcj-shipping.php:155
|
1063 |
+
#: includes/class-wcj-shipping.php:200
|
1064 |
+
msgid "Shipping"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: includes/class-wcj-pdf-invoices.php:950
|
1068 |
+
msgid "Total Discount"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: includes/class-wcj-pdf-invoices.php:953
|
1072 |
+
msgid "Discount"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: includes/class-wcj-pdf-invoices.php:959
|
1076 |
+
#: includes/class-wcj-pdf-invoices.php:962
|
1077 |
+
msgid "Order Total (TAX excl.)"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: includes/class-wcj-pdf-invoices.php:960
|
1081 |
+
msgid ""
|
1082 |
+
"Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping "
|
1083 |
+
"is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not "
|
1084 |
+
"equal to \"Order Subtotal\""
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: includes/class-wcj-pdf-invoices.php:968
|
1088 |
+
msgid "Order Total Taxes"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: includes/class-wcj-pdf-invoices.php:977
|
1092 |
+
#: includes/class-wcj-pdf-invoices.php:980
|
1093 |
+
msgid "Order Total"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: includes/class-wcj-pdf-invoices.php:987
|
1097 |
+
msgid "Footer"
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: includes/class-wcj-pdf-invoices.php:990
|
1101 |
+
#: includes/class-wcj-pdf-invoices.php:993
|
1102 |
+
msgid "Payment Method"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: includes/class-wcj-pdf-invoices.php:999
|
1106 |
+
#: includes/class-wcj-pdf-invoices.php:1002
|
1107 |
+
msgid "Shipping Method"
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: includes/class-wcj-pdf-invoices.php:1008
|
1111 |
+
msgid "Additional Footer"
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: includes/class-wcj-pdf-invoices.php:1021
|
1115 |
+
msgid "Font size"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: includes/class-wcj-pdf-invoices.php:1022
|
1119 |
+
msgid "Default: 8"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: includes/class-wcj-pdf-invoices.php:1030
|
1123 |
+
msgid "CSS"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: includes/class-wcj-pdf-invoices.php:1045
|
1127 |
+
msgid "PDF Invoices for Customers (in My Account)"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/class-wcj-pdf-invoices.php:1046
|
1131 |
+
msgid "Enable the PDF Invoices in customers account"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/class-wcj-pdf-invoices.php:1055
|
1135 |
+
msgid "PDF Invoices for Customers (Email attachment)"
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: includes/class-wcj-pdf-invoices.php:1056
|
1139 |
+
msgid ""
|
1140 |
+
"Enable the PDF Invoices attachment files in customers email on order "
|
1141 |
+
"completed"
|
1142 |
+
msgstr ""
|
1143 |
+
|
1144 |
+
#: includes/class-wcj-pdf-invoices.php:1065
|
1145 |
+
msgid "Enable Save as"
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: includes/class-wcj-pdf-invoices.php:1066
|
1149 |
+
msgid "Enable save as pdf instead of view pdf"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: includes/class-wcj-price-labels.php:119
|
1153 |
+
msgid "Migrate from Custom Price Labels (Pro)"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: includes/class-wcj-price-labels.php:121
|
1157 |
+
msgid ""
|
1158 |
+
"Tool lets you copy all the data (that is labels) from Custom Price labels "
|
1159 |
+
"(Pro) plugin to WooCommerce Jetpack."
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: includes/class-wcj-price-labels.php:131
|
1163 |
+
msgid "Migrate from Custom Price Labels"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/class-wcj-price-labels.php:143
|
1167 |
+
msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/class-wcj-price-labels.php:191
|
1171 |
+
msgid "Migrating: "
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/class-wcj-price-labels.php:192
|
1175 |
+
msgid "Result: "
|
|
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/class-wcj-price-labels.php:199
|
1179 |
+
msgid "Found data to migrate: "
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/class-wcj-price-labels.php:213
|
1183 |
+
msgid "No data to migrate found"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/class-wcj-price-labels.php:217
|
1187 |
+
msgid "No products found"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/class-wcj-price-labels.php:222
|
1191 |
+
msgid ""
|
1192 |
+
"Press button below to copy all labels from Custom Price Labels (Pro) plugin. "
|
1193 |
+
"Old labels will NOT be deleted. New labels will be overwritten."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/class-wcj-price-labels.php:223
|
1197 |
+
msgid "Migrate data"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/class-wcj-price-labels.php:502
|
1201 |
+
msgid "Custom Price Labels Options"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/class-wcj-price-labels.php:505
|
1205 |
+
#: includes/class-wcj-price-labels.php:599
|
1206 |
+
msgid "Custom Price Labels"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: includes/class-wcj-price-labels.php:506
|
1210 |
+
msgid "Enable the Custom Price Labels feature"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/class-wcj-price-labels.php:507
|
1214 |
+
msgid "Create any custom price label for any product."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/class-wcj-price-labels.php:515
|
1218 |
+
msgid "Global Custom Price Labels"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/class-wcj-price-labels.php:515
|
1222 |
+
msgid "This section lets you set price labels for all products globally."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: includes/class-wcj-price-labels.php:518
|
1226 |
+
msgid "Add before the price"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: includes/class-wcj-price-labels.php:519
|
1230 |
+
msgid "Enter text to add before all products prices. Leave blank to disable."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/class-wcj-price-labels.php:530
|
1234 |
+
msgid "Add after the price"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/class-wcj-price-labels.php:531
|
1238 |
+
msgid "Enter text to add after all products prices. Leave blank to disable."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/class-wcj-price-labels.php:542
|
1242 |
+
msgid "Remove from price"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: includes/class-wcj-price-labels.php:544
|
1246 |
+
msgid "Enter text to remove from all products prices. Leave blank to disable."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: includes/class-wcj-price-labels.php:555
|
1250 |
+
msgid "Replace in price"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: includes/class-wcj-price-labels.php:556
|
1254 |
+
msgid "Enter text to replace in all products prices. Leave blank to disable."
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: includes/class-wcj-price-labels.php:568
|
1258 |
+
msgid "Enter text to replace with. Leave blank to disable."
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: includes/class-wcj-price-labels.php:580
|
1262 |
+
msgid "Migrate from Custom Price Labels (Pro) Options"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/class-wcj-price-labels.php:580
|
1266 |
msgid ""
|
1267 |
+
"This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
|
|
|
|
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: includes/class-wcj-product-info.php:27
|
1271 |
+
msgid "Before product"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: includes/class-wcj-product-info.php:28
|
1275 |
+
msgid "Before product title"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: includes/class-wcj-product-info.php:29
|
1279 |
+
msgid "After product"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/class-wcj-product-info.php:30
|
1283 |
+
msgid "After product title"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: includes/class-wcj-product-info.php:35
|
1287 |
+
msgid "Inside single product summary"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/class-wcj-product-info.php:36
|
1291 |
+
msgid "Before single product summary"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: includes/class-wcj-product-info.php:37
|
1295 |
+
msgid "After single product summary"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/class-wcj-product-info.php:169
|
1299 |
msgid "Product Info Options"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/class-wcj-product-info.php:172
|
1303 |
+
#: includes/class-wcj-product-info.php:406
|
1304 |
msgid "Product Info"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/class-wcj-product-info.php:173
|
1308 |
msgid "Enable the Product Info feature"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/class-wcj-product-info.php:174
|
1312 |
+
msgid "Customize single product tabs, change related products number."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/class-wcj-product-info.php:183
|
1316 |
+
msgid "More Products Info"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/class-wcj-product-info.php:186
|
1320 |
+
msgid "Product Info on Archive Pages"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: includes/class-wcj-product-info.php:195
|
1324 |
+
#: includes/class-wcj-product-info.php:232
|
1325 |
+
msgid "HTML info. Predefined: %total_sales%, %sku%"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: includes/class-wcj-product-info.php:204
|
1329 |
+
#: includes/class-wcj-product-info.php:244
|
1330 |
+
msgid "Position"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/class-wcj-product-info.php:216
|
1334 |
+
#: includes/class-wcj-product-info.php:256
|
1335 |
+
#: includes/class-wcj-product-info.php:276
|
1336 |
+
#: includes/class-wcj-product-info.php:302
|
1337 |
+
#: includes/class-wcj-product-info.php:328
|
1338 |
+
msgid "Priority (i.e. Order)"
|
1339 |
+
msgstr ""
|
1340 |
+
|
1341 |
+
#: includes/class-wcj-product-info.php:223
|
1342 |
+
msgid "Product Info on Single Product Pages"
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: includes/class-wcj-product-info.php:265
|
1346 |
+
msgid "Product Tabs Options"
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: includes/class-wcj-product-info.php:268
|
1350 |
+
msgid "Description Tab"
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: includes/class-wcj-product-info.php:269
|
1354 |
+
#: includes/class-wcj-product-info.php:295
|
1355 |
+
#: includes/class-wcj-product-info.php:321
|
1356 |
+
msgid "Remove tab from product page"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/class-wcj-product-info.php:286
|
1360 |
+
#: includes/class-wcj-product-info.php:312
|
1361 |
+
#: includes/class-wcj-product-info.php:338
|
1362 |
+
#: includes/class-wcj-product-info.php:379
|
1363 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:56
|
1364 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:62
|
1365 |
+
msgid "Title"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: includes/class-wcj-product-info.php:287
|
1369 |
+
#: includes/class-wcj-product-info.php:313
|
1370 |
+
#: includes/class-wcj-product-info.php:339
|
1371 |
+
msgid "Leave blank for WooCommerce defaults"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: includes/class-wcj-product-info.php:294
|
1375 |
+
msgid "Reviews Tab"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: includes/class-wcj-product-info.php:320
|
1379 |
+
msgid "Additional Information Tab"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: includes/class-wcj-product-info.php:348
|
1383 |
+
msgid "Related Products Options"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: includes/class-wcj-product-info.php:358
|
1387 |
+
msgid "Related Products Number"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: includes/class-wcj-product-info.php:365
|
1391 |
+
msgid "Related Products Columns"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: includes/class-wcj-product-info.php:372
|
1395 |
+
msgid "Order by"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: includes/class-wcj-product-info.php:377
|
1399 |
+
msgid "Random"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/class-wcj-product-info.php:378
|
1403 |
+
msgid "Date"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/class-wcj-product-info.php:384
|
1407 |
+
msgid "Order"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/class-wcj-product-info.php:385
|
1411 |
+
msgid "Ignored if order by \"Random\" is selected above."
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/class-wcj-product-info.php:390
|
1415 |
+
msgid "Ascending"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: includes/class-wcj-product-info.php:391
|
1419 |
+
msgid "Descending"
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/class-wcj-product-listings.php:55
|
1423 |
+
msgid "Product Listings Options"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: includes/class-wcj-product-listings.php:58
|
1427 |
+
#: includes/class-wcj-product-listings.php:136
|
1428 |
+
msgid "Product Listings"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: includes/class-wcj-product-listings.php:59
|
1432 |
+
msgid "Enable the Product Listings feature"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: includes/class-wcj-product-listings.php:60
|
1436 |
msgid ""
|
1437 |
+
"Change display options for shop and category pages: show/hide categories "
|
1438 |
+
"count, exclude categories, show/hide empty categories."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: includes/class-wcj-product-listings.php:68
|
1442 |
+
msgid "Shop Page Display Options"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: includes/class-wcj-product-listings.php:68
|
1446 |
+
msgid ""
|
1447 |
+
"This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > "
|
1448 |
+
"Products > Product Listings\" is set to \"Show subcategories\" or \"Show both"
|
1449 |
+
"\"."
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: includes/class-wcj-product-listings.php:71
|
1453 |
+
msgid "Categories Count"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: includes/class-wcj-product-listings.php:72
|
1457 |
+
#: includes/class-wcj-product-listings.php:155
|
1458 |
+
msgid "Hide categories count on shop page"
|
1459 |
+
msgstr ""
|
1460 |
+
|
1461 |
+
#: includes/class-wcj-product-listings.php:79
|
1462 |
+
msgid "Exclude Categories"
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: includes/class-wcj-product-listings.php:80
|
1466 |
+
#: includes/class-wcj-product-listings.php:163
|
1467 |
+
msgid ""
|
1468 |
+
" Excludes one or more categories from the shop page. This parameter takes a "
|
1469 |
+
"comma-separated list of categories by unique ID, in ascending order. Leave "
|
1470 |
+
"blank to disable."
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: includes/class-wcj-product-listings.php:88
|
1474 |
+
#: includes/class-wcj-product-listings.php:119
|
1475 |
+
msgid "Hide Empty"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: includes/class-wcj-product-listings.php:89
|
1479 |
+
#: includes/class-wcj-product-listings.php:172
|
1480 |
+
msgid "Hide empty categories on shop page"
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: includes/class-wcj-product-listings.php:97
|
1484 |
+
msgid "Category Display Options"
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: includes/class-wcj-product-listings.php:97
|
1488 |
+
msgid ""
|
1489 |
+
"This will work only when \"Default Category Display\" in \"WooCommerce > "
|
1490 |
+
"Settings > Products > Product Listings\" is set to \"Show subcategories\" or "
|
1491 |
+
"\"Show both\"."
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: includes/class-wcj-product-listings.php:100
|
1495 |
+
msgid "Subcategories Count"
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: includes/class-wcj-product-listings.php:101
|
1499 |
+
#: includes/class-wcj-product-listings.php:184
|
1500 |
+
msgid "Hide subcategories count on category pages"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: includes/class-wcj-product-listings.php:110
|
1504 |
+
msgid "Exclude Subcategories"
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: includes/class-wcj-product-listings.php:111
|
1508 |
+
#: includes/class-wcj-product-listings.php:194
|
1509 |
+
msgid ""
|
1510 |
+
" Excludes one or more categories from the category (archive) pages. This "
|
1511 |
+
"parameter takes a comma-separated list of categories by unique ID, in "
|
1512 |
+
"ascending order. Leave blank to disable."
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: includes/class-wcj-product-listings.php:120
|
1516 |
+
#: includes/class-wcj-product-listings.php:203
|
1517 |
+
msgid "Hide empty subcategories on category pages"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: includes/class-wcj-product-listings.php:154
|
1521 |
+
msgid "WooJetpack: Categories Count"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: includes/class-wcj-product-listings.php:162
|
1525 |
+
msgid "WooJetpack: Exclude Categories on Shop Page"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: includes/class-wcj-product-listings.php:171
|
1529 |
+
#: includes/class-wcj-product-listings.php:202
|
1530 |
+
msgid "WooJetpack: Hide Empty"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: includes/class-wcj-product-listings.php:183
|
1534 |
+
msgid "WooJetpack: Subcategories Count"
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: includes/class-wcj-product-listings.php:193
|
1538 |
+
msgid "WooJetpack: Exclude Subcategories on Category Pages"
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: includes/class-wcj-reports.php:44 includes/class-wcj-reports.php:85
|
1542 |
+
msgid "Smart Reports"
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: includes/class-wcj-reports.php:65
|
1546 |
+
msgid "Reports Options"
|
1547 |
+
msgstr ""
|
1548 |
+
|
1549 |
+
#: includes/class-wcj-reports.php:68 includes/class-wcj-reports.php:256
|
1550 |
+
msgid "Reports"
|
1551 |
+
msgstr ""
|
1552 |
+
|
1553 |
+
#: includes/class-wcj-reports.php:69
|
1554 |
+
msgid "Enable the Reports feature"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
+
#: includes/class-wcj-reports.php:277
|
1558 |
+
msgid "Product"
|
1559 |
+
msgstr ""
|
1560 |
+
|
1561 |
+
#: includes/class-wcj-reports.php:278
|
1562 |
+
msgid "Price"
|
1563 |
+
msgstr ""
|
1564 |
+
|
1565 |
+
#: includes/class-wcj-reports.php:279
|
1566 |
+
msgid "Stock"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: includes/class-wcj-reports.php:280
|
1570 |
+
msgid "Stock price"
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: includes/class-wcj-reports.php:282
|
1574 |
+
msgid "Last sale"
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: includes/class-wcj-reports.php:283 includes/class-wcj-reports.php:284
|
1578 |
+
msgid "Sales in last %s days"
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: includes/class-wcj-reports.php:286
|
1582 |
+
msgid "Total sales"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: includes/class-wcj-reports.php:361
|
1586 |
+
msgid "No sales yet"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/class-wcj-reports.php:378
|
1590 |
+
msgid "Total current stock value"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/class-wcj-reports.php:379
|
1594 |
+
msgid "Total stock value"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: includes/class-wcj-reports.php:380
|
1598 |
+
msgid "Product stock value average"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: includes/class-wcj-reports.php:381
|
1602 |
+
msgid "Product stock average"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: includes/class-wcj-reports.php:439
|
1606 |
+
msgid "All Products on Stock"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/class-wcj-reports.php:440
|
1610 |
+
msgid "Report shows all products that are on stock."
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: includes/class-wcj-reports.php:497
|
1614 |
+
msgid ""
|
1615 |
+
"Here you can generate reports. Some reports are generated using all your "
|
1616 |
+
"orders and products, so if you have a lot of them - it may take a while."
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: includes/class-wcj-shipping.php:63
|
1620 |
+
msgid "WooCommerce Jetpack: Hide shipping"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: includes/class-wcj-shipping.php:64 includes/class-wcj-shipping.php:170
|
1624 |
+
msgid "Hide local delivery when free is available"
|
1625 |
+
msgstr ""
|
1626 |
+
|
1627 |
+
#: includes/class-wcj-shipping.php:75 includes/class-wcj-shipping.php:180
|
1628 |
+
msgid "Hide all when free is available"
|
1629 |
+
msgstr ""
|
1630 |
+
|
1631 |
+
#: includes/class-wcj-shipping.php:152
|
1632 |
+
msgid "Shipping Options"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: includes/class-wcj-shipping.php:156
|
1636 |
+
msgid "Enable the Shipping feature"
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: includes/class-wcj-shipping.php:157
|
1640 |
+
msgid "Hide shipping when free is available."
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: includes/class-wcj-shipping.php:165
|
1644 |
+
msgid "Hide if free is available"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: includes/class-wcj-shipping.php:165
|
1648 |
+
msgid ""
|
1649 |
+
"This section lets you hide other shipping options when free shipping is "
|
1650 |
+
"available on shop frontend."
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: includes/class-wcj-shipping.php:169
|
1654 |
+
msgid "Hide shipping"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/class-wcj-sorting.php:75
|
1658 |
+
msgid "WooJetpack: Remove All Sorting"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/class-wcj-sorting.php:79
|
1662 |
msgid "Completely remove sorting from the shop front end"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: includes/class-wcj-sorting.php:165
|
1666 |
msgid "Sorting Options"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: includes/class-wcj-sorting.php:168 includes/class-wcj-sorting.php:277
|
1670 |
msgid "Sorting"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: includes/class-wcj-sorting.php:169
|
1674 |
msgid "Enable the Sorting feature"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: includes/class-wcj-sorting.php:170
|
1678 |
msgid "Add more sorting options or remove all sorting including default."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: includes/class-wcj-sorting.php:178 includes/class-wcj-sorting.php:181
|
1682 |
+
msgid "Remove All Sorting"
|
1683 |
+
msgstr ""
|
1684 |
+
|
1685 |
+
#: includes/class-wcj-sorting.php:182
|
1686 |
msgid "Remove all sorting (including WooCommerce default)"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: includes/class-wcj-sorting.php:193
|
1690 |
msgid "Add More Sorting"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: includes/class-wcj-sorting.php:196
|
1694 |
msgid "Sort by Name - Asc"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: includes/class-wcj-sorting.php:197 includes/class-wcj-sorting.php:215
|
1698 |
+
#: includes/class-wcj-sorting.php:233 includes/class-wcj-sorting.php:251
|
1699 |
msgid "Text visible at front end"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: includes/class-wcj-sorting.php:214
|
|
|
|
|
|
|
|
|
|
|
1703 |
msgid "Sort by Name - Desc"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: includes/class-wcj-sorting.php:232
|
1707 |
msgid "Sort by SKU - Asc"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: includes/class-wcj-sorting.php:250
|
1711 |
msgid "Sort by SKU - Desc"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:50
|
1715 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:56
|
1716 |
+
msgid "Enable/Disable"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:52
|
1720 |
+
msgid "Enable Custom Payment"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:58
|
1724 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:64
|
1725 |
+
msgid "This controls the title which the user sees during checkout."
|
1726 |
+
msgstr ""
|
1727 |
+
|
1728 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:59
|
1729 |
+
msgid "Custom Payment"
|
1730 |
+
msgstr ""
|
1731 |
+
|
1732 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:65
|
1733 |
+
msgid "Payment method description that the customer will see on your checkout."
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:66
|
1737 |
+
msgid "Custom Payment Description."
|
1738 |
+
msgstr ""
|
1739 |
+
|
1740 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:70
|
1741 |
+
msgid "Instructions"
|
1742 |
+
msgstr ""
|
1743 |
+
|
1744 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:72
|
1745 |
+
msgid "Instructions that will be added to the thank you page."
|
1746 |
+
msgstr ""
|
1747 |
+
|
1748 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:77
|
1749 |
+
msgid "Email Instructions"
|
1750 |
+
msgstr ""
|
1751 |
+
|
1752 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:79
|
1753 |
+
msgid "Instructions that will be added to the emails."
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:84
|
1757 |
+
msgid "Icon"
|
1758 |
+
msgstr ""
|
1759 |
+
|
1760 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:92
|
1761 |
+
msgid "Minimum order amount"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:94
|
1765 |
+
msgid ""
|
1766 |
+
"If you want to set minimum order amount to show this gateway on frontend, "
|
1767 |
+
"enter a number here. Set to 0 to disable."
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:101
|
1771 |
+
msgid "Enable for shipping methods"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:106
|
1775 |
+
msgid ""
|
1776 |
+
"If gateway is only available for certain shipping methods, set it up here. "
|
1777 |
+
"Leave blank to enable for all methods."
|
1778 |
+
msgstr ""
|
1779 |
+
|
1780 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:110
|
1781 |
+
msgid "Select shipping methods"
|
1782 |
+
msgstr ""
|
1783 |
+
|
1784 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:114
|
1785 |
+
msgid "Enable for virtual orders"
|
1786 |
+
msgstr ""
|
1787 |
+
|
1788 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:115
|
1789 |
+
msgid "Enable gateway if the order is virtual"
|
1790 |
+
msgstr ""
|
1791 |
+
|
1792 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:254
|
1793 |
+
msgid "Awaiting payment"
|
1794 |
+
msgstr ""
|
1795 |
+
|
1796 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:275
|
1797 |
+
msgid "Custom Gateway"
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:276
|
1801 |
+
msgid "WooCommerce Jetpack: Custom Payment Gateway"
|
1802 |
+
msgstr ""
|
1803 |
+
|
1804 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:19
|
1805 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:65
|
1806 |
+
msgid "Custom Shipping"
|
1807 |
+
msgstr ""
|
1808 |
+
|
1809 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:20
|
1810 |
+
msgid "WooCommerce Jetpack: Custom Shipping Method"
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:58
|
1814 |
+
msgid "Enable Custom Shipping"
|
1815 |
+
msgstr ""
|
1816 |
+
|
1817 |
+
#. #-#-#-#-# plugin.pot (WooCommerce Jetpack 1.7.6) #-#-#-#-#
|
1818 |
+
#. Plugin Name of the plugin/theme
|
1819 |
+
#: woocommerce-jetpack.php:94
|
1820 |
+
msgid "WooCommerce Jetpack"
|
1821 |
+
msgstr ""
|
1822 |
+
|
1823 |
+
#: woocommerce-jetpack.php:94
|
1824 |
+
msgid "Jetpack Settings"
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: woocommerce-jetpack.php:105
|
1828 |
+
msgid "Settings"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: woocommerce-jetpack.php:106
|
1832 |
+
msgid "Docs"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: woocommerce-jetpack.php:107
|
1836 |
+
msgid "Unlock all"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: woocommerce-jetpack.php:120
|
1840 |
msgid "Install WooCommerce Jetpack Plus to unlock all features"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: woocommerce-jetpack.php:121
|
1844 |
msgid ""
|
1845 |
"Some settings fields are locked and you will need %s to modify all locked "
|
1846 |
"fields."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: woocommerce-jetpack.php:122
|
1850 |
+
msgid "Buy now"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: woocommerce-jetpack.php:122
|
1854 |
msgid "Visit %s"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: woocommerce-jetpack.php:126
|
1858 |
msgid ""
|
1859 |
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
1860 |
"Jetpack Plus</a> to change value."
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: woocommerce-jetpack.php:129
|
1864 |
msgid ""
|
1865 |
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
1866 |
"Jetpack Plus</a> to change values below."
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: woocommerce-jetpack.php:132
|
1870 |
+
msgid ""
|
1871 |
+
"Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce "
|
1872 |
+
"Jetpack Plus</a> to change values above."
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: woocommerce-jetpack.php:135
|
1876 |
+
msgid "Get WooCommerce Jetpack Plus to change value."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
#. Plugin URI of the plugin/theme
|
1885 |
msgstr ""
|
1886 |
|
1887 |
#. Author of the plugin/theme
|
1888 |
+
msgid "Algoritmika Ltd"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
#. Author URI of the plugin/theme
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://algoritmika.com/donate/
|
|
4 |
Tags: woocommerce,woocommerce jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs,add to cart text,order number,sequential order numbering,email pdf invoice,pdf invoice,pdf invoices,already in cart,empty cart,redirect to checkout,minimum order amount,customize checkout fields,checkout fields,email,customize product tabs,product tabs,related products number,empty cart,redirect add to cart,redirect to checkout,product already in cart,custom payment gateway,payment gateway icon,auto-complete all orders,custom order statuses,custom order status,remove text from price,custom css,hide categories count,hide subcategories count,hide category count,hide subcategory count,display total sales
|
5 |
Requires at least: 3.9.1
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -68,13 +68,13 @@ Please let us know if you want anything added to list by <a href="http://woojetp
|
|
68 |
|
69 |
If you wish that some task would go up the queue to make it faster, please contact us by <a href="http://woojetpack.com/contact-us/">filling this form</a>. We are listening carefully to our users!
|
70 |
|
71 |
-
= 1.7.
|
72 |
-
* Tweak - Custom Price Labels - Add "Migrate from Custom Price Labels" tool to tools dashboard.
|
73 |
* New Feature - Smart Reports - Various reports based on products prices, sales, stock.
|
74 |
* Upgrade Feature - PDF Invoices - International date formats. Idea by Jean-Marc.
|
75 |
* Upgrade Feature - Shipping - Advance free shipping - Free shipping for multiple country/places. Each country/places different prices. Idea by LQTOYS.
|
76 |
* Upgrade Feature - PDF Invoices - Make emailing PDF as attachment option available for certain payment methods only (user selection). Idea by Jen.
|
77 |
* Upgrade Feature - PDF Invoices - Sending invoice on customer's request. Idea by Jen.
|
|
|
78 |
|
79 |
= 1.8.0 - 13/10/2014 =
|
80 |
* New Feature - Checkout to PDF (wish list). Idea by Mick 01/10/2014.
|
@@ -91,7 +91,6 @@ If you wish that some task would go up the queue to make it faster, please conta
|
|
91 |
* Upgrade Feature - Smart Reports - Export to CSV file.
|
92 |
* Upgrade Feature - Call for Price - Call for price for variable products (all variations or only some).
|
93 |
* Upgrade Feature - Custom Statuses - Bulk change status.
|
94 |
-
* Dev - Custom Price Labels - Rearrange settings in product edit (something like `postbox`es).
|
95 |
|
96 |
= 1.9.0 - 20/10/2014 =
|
97 |
* Upgrade Feature - Custom Price Labels - ?Add "local remove".
|
@@ -118,6 +117,19 @@ If you wish that some task would go up the queue to make it faster, please conta
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
= 1.7.5 - 08/10/2014 =
|
122 |
* Feature Upgraded - Custom Price Labels - "Global labels" section extended: `add after price`, `add before price`, `replace in price`.
|
123 |
`Remove from price` code also have been moved (and now in one place with all Global Labels) - before that it was called multiple times, fixed.
|
@@ -283,6 +295,9 @@ If you wish that some task would go up the queue to make it faster, please conta
|
|
283 |
|
284 |
== Upgrade Notice ==
|
285 |
|
|
|
|
|
|
|
286 |
= 1.7.1 =
|
287 |
Bug causing "PHP Parse error" (reported on servers running PHP 5.3) fixed. Upgrade immediately.
|
288 |
|
4 |
Tags: woocommerce,woocommerce jetpack,custom price labels,call for price,currency symbol,remove sorting,remove old product slugs,add to cart text,order number,sequential order numbering,email pdf invoice,pdf invoice,pdf invoices,already in cart,empty cart,redirect to checkout,minimum order amount,customize checkout fields,checkout fields,email,customize product tabs,product tabs,related products number,empty cart,redirect add to cart,redirect to checkout,product already in cart,custom payment gateway,payment gateway icon,auto-complete all orders,custom order statuses,custom order status,remove text from price,custom css,hide categories count,hide subcategories count,hide category count,hide subcategory count,display total sales
|
5 |
Requires at least: 3.9.1
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 1.7.6
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
68 |
|
69 |
If you wish that some task would go up the queue to make it faster, please contact us by <a href="http://woojetpack.com/contact-us/">filling this form</a>. We are listening carefully to our users!
|
70 |
|
71 |
+
= 1.7.7 - 10/10/2014 =
|
|
|
72 |
* New Feature - Smart Reports - Various reports based on products prices, sales, stock.
|
73 |
* Upgrade Feature - PDF Invoices - International date formats. Idea by Jean-Marc.
|
74 |
* Upgrade Feature - Shipping - Advance free shipping - Free shipping for multiple country/places. Each country/places different prices. Idea by LQTOYS.
|
75 |
* Upgrade Feature - PDF Invoices - Make emailing PDF as attachment option available for certain payment methods only (user selection). Idea by Jen.
|
76 |
* Upgrade Feature - PDF Invoices - Sending invoice on customer's request. Idea by Jen.
|
77 |
+
* Checkout - Extra fee (e.g. for PayPal). Suggested by Daniele.
|
78 |
|
79 |
= 1.8.0 - 13/10/2014 =
|
80 |
* New Feature - Checkout to PDF (wish list). Idea by Mick 01/10/2014.
|
91 |
* Upgrade Feature - Smart Reports - Export to CSV file.
|
92 |
* Upgrade Feature - Call for Price - Call for price for variable products (all variations or only some).
|
93 |
* Upgrade Feature - Custom Statuses - Bulk change status.
|
|
|
94 |
|
95 |
= 1.9.0 - 20/10/2014 =
|
96 |
* Upgrade Feature - Custom Price Labels - ?Add "local remove".
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 1.7.6 - 09/10/2014 =
|
121 |
+
* Fix - Custom Price Labels - Bug causing setting all product's checkbox labels to off, fixed.
|
122 |
+
Bug was not resetting Text labels however (i.e. checkboxes only). Bug was in code since v.1.0.0.
|
123 |
+
The bug caused resetting all product's checkbox labels to off, when generally any product save, except "normal" conditions (i.e. saving through standard edit), happened:
|
124 |
+
- when any other plugin used `wp_update_post` function,
|
125 |
+
- when user updated product via Quick Edit,
|
126 |
+
- when user deactivated WooJetpack Plugin and then updated (saved) the product.
|
127 |
+
- could be more possible conditions.
|
128 |
+
* Fix - Custom Price Labels - "Migrate from Custom Price Labels" tool info added to tools dashboard.
|
129 |
+
* Dev - Custom Price Labels - Labels settings in product edit rearranged (to `table`).
|
130 |
+
* Dev - Tools Dashboard rearranged (to `table`).
|
131 |
+
* Dev - `FR_fr` translation updated by Jean-Marc Schreiber.
|
132 |
+
|
133 |
= 1.7.5 - 08/10/2014 =
|
134 |
* Feature Upgraded - Custom Price Labels - "Global labels" section extended: `add after price`, `add before price`, `replace in price`.
|
135 |
`Remove from price` code also have been moved (and now in one place with all Global Labels) - before that it was called multiple times, fixed.
|
295 |
|
296 |
== Upgrade Notice ==
|
297 |
|
298 |
+
= 1.7.6 =
|
299 |
+
Bug causing setting all product's checkbox labels to off, fixed. Upgrade immediately.
|
300 |
+
|
301 |
= 1.7.1 =
|
302 |
Bug causing "PHP Parse error" (reported on servers running PHP 5.3) fixed. Upgrade immediately.
|
303 |
|
woocommerce-jetpack.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WooCommerce Jetpack
|
4 |
Plugin URI: http://woojetpack.com
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
-
Version: 1.7.
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|
@@ -128,6 +128,9 @@ final class WC_Jetpack {
|
|
128 |
case 'desc_below':
|
129 |
return __( 'Get <a href="http://woojetpack.com/plus/" target="_blank">WooCommerce Jetpack Plus</a> to change values below.', 'woocommerce-jetpack' );
|
130 |
|
|
|
|
|
|
|
131 |
case 'desc_no_link':
|
132 |
return __( 'Get WooCommerce Jetpack Plus to change value.', 'woocommerce-jetpack' );
|
133 |
|
3 |
Plugin Name: WooCommerce Jetpack
|
4 |
Plugin URI: http://woojetpack.com
|
5 |
Description: Supercharge your WooCommerce site with these awesome powerful features.
|
6 |
+
Version: 1.7.6
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|
128 |
case 'desc_below':
|
129 |
return __( 'Get <a href="http://woojetpack.com/plus/" target="_blank">WooCommerce Jetpack Plus</a> to change values below.', 'woocommerce-jetpack' );
|
130 |
|
131 |
+
case 'desc_above':
|
132 |
+
return __( 'Get <a href="http://woojetpack.com/plus/" target="_blank">WooCommerce Jetpack Plus</a> to change values above.', 'woocommerce-jetpack' );
|
133 |
+
|
134 |
case 'desc_no_link':
|
135 |
return __( 'Get WooCommerce Jetpack Plus to change value.', 'woocommerce-jetpack' );
|
136 |
|