Version Description
- 13/11/2014 =
- Fix - Payment Gateways - Bug causing displaying fee type as percent instead of fixed, fixed. This did not affect Plus version.
- Dev - French translation updated.
- Dev - POT file updated.
- Tweak - Submenus added in admin's WooCommerce > Settings > Jetpack.
Download this release
Release Info
Developer | algoritmika |
Plugin | Booster for WooCommerce |
Version | 1.9.1 |
Comparing to | |
See all releases |
Code changes from version 1.9.0 to 1.9.1
- includes/admin/settings/class-wc-settings-jetpack.php +132 -7
- includes/class-wcj-payment-gateways.php +2 -2
- langs/woocommerce-jetpack-fr_FR.mo +0 -0
- langs/woocommerce-jetpack-fr_FR.po +912 -121
- langs/woocommerce-jetpack.pot +929 -390
- readme.txt +9 -52
- woocommerce-jetpack.php +21 -15
includes/admin/settings/class-wc-settings-jetpack.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Settings class.
|
6 |
*
|
7 |
* @class WC_Settings_Jetpack
|
8 |
-
* @version 1.
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
@@ -22,11 +22,136 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
|
|
22 |
public function __construct() {
|
23 |
$this->id = 'jetpack';
|
24 |
$this->label = __( 'Jetpack', 'woocommerce-jetpack' );
|
25 |
-
add_filter( 'woocommerce_settings_tabs_array',
|
26 |
-
add_action( 'woocommerce_settings_' . $this->id,
|
27 |
-
add_action( 'woocommerce_settings_save_' . $this->id,
|
28 |
-
add_action( 'woocommerce_sections_' . $this->id,
|
|
|
29 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
/**
|
32 |
* Get sections
|
@@ -59,7 +184,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
|
|
59 |
if ( '' != $current_section )
|
60 |
WC_Admin_Settings::output_fields( $settings );
|
61 |
else {
|
62 |
-
|
63 |
$the_settings = $this->get_settings();
|
64 |
|
65 |
echo '<h3>' . $the_settings[0]['title'] . '</h3>';
|
@@ -102,7 +227,7 @@ class WC_Settings_Jetpack extends WC_Settings_Page {
|
|
102 |
$section = str_replace( '_enabled', '', $section );
|
103 |
if ( 'currency' === $section ) $section = 'currencies';
|
104 |
|
105 |
-
$html .= '<span class="0"><a href="' . admin_url() . 'admin.php?page=wc-settings&tab=jetpack§ion=' . $section . '">Settings</a></span>';
|
106 |
$html .= '</div>';
|
107 |
$html .= '</td>';
|
108 |
|
5 |
* The WooCommerce Jetpack Settings class.
|
6 |
*
|
7 |
* @class WC_Settings_Jetpack
|
8 |
+
* @version 1.2.0
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
22 |
public function __construct() {
|
23 |
$this->id = 'jetpack';
|
24 |
$this->label = __( 'Jetpack', 'woocommerce-jetpack' );
|
25 |
+
add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 20 );
|
26 |
+
add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) );
|
27 |
+
add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) );
|
28 |
+
add_action( 'woocommerce_sections_' . $this->id, array( $this, 'output_cats' ) );
|
29 |
+
add_action( 'woocommerce_sections_' . $this->id, array( $this, 'output_sections' ) );
|
30 |
}
|
31 |
+
|
32 |
+
/**
|
33 |
+
* Output sections
|
34 |
+
*/
|
35 |
+
public function output_sections() {
|
36 |
+
global $current_section;
|
37 |
+
|
38 |
+
$sections = $this->get_sections();
|
39 |
+
|
40 |
+
// Cats
|
41 |
+
$current_cat = empty( $_REQUEST['wcj-cat'] ) ? 'dashboard' : sanitize_title( $_REQUEST['wcj-cat'] );
|
42 |
+
if ( 'dashboard' === $current_cat )
|
43 |
+
return;
|
44 |
+
if ( ! empty( $this->cats[ $current_cat ]['all_cat_ids'] ) )
|
45 |
+
foreach ( $sections as $id => $label )
|
46 |
+
if ( ! in_array( $id, $this->cats[ $current_cat ]['all_cat_ids'] ) )
|
47 |
+
unset( $sections[ $id ] );
|
48 |
+
|
49 |
+
if ( empty( $sections ) || 1 === count( $sections ) ) {
|
50 |
+
return;
|
51 |
+
}
|
52 |
+
|
53 |
+
echo '<ul class="subsubsub">';
|
54 |
+
|
55 |
+
$array_keys = array_keys( $sections );
|
56 |
+
|
57 |
+
foreach ( $sections as $id => $label ) {
|
58 |
+
echo '<li><a href="' . admin_url( 'admin.php?page=wc-settings&tab=' . $this->id . '&wcj-cat=' . $current_cat . '§ion=' . sanitize_title( $id ) ) . '" class="' . ( $current_section == $id ? 'current' : '' ) . '">' . $label . '</a> ' . ( end( $array_keys ) == $id ? '' : '|' ) . ' </li>';
|
59 |
+
}
|
60 |
+
|
61 |
+
echo '</ul><br class="clear" />';
|
62 |
+
}
|
63 |
+
|
64 |
+
/**
|
65 |
+
* get_cat_by_section
|
66 |
+
*/
|
67 |
+
public function get_cat_by_section( $section ) {
|
68 |
+
foreach ( $this->cats as $id => $label_info ) {
|
69 |
+
if ( ! empty( $label_info['all_cat_ids'] ) )
|
70 |
+
if ( in_array( $section, $label_info['all_cat_ids'] ) )
|
71 |
+
return $id;
|
72 |
+
}
|
73 |
+
return '';
|
74 |
+
}
|
75 |
+
|
76 |
+
/**
|
77 |
+
* Output cats
|
78 |
+
*/
|
79 |
+
public function output_cats() {
|
80 |
+
//global $current_section;
|
81 |
+
$current_cat = empty( $_REQUEST['wcj-cat'] ) ? 'dashboard' : sanitize_title( $_REQUEST['wcj-cat'] );
|
82 |
+
|
83 |
+
$this->cats = array(
|
84 |
+
'dashboard' => array(
|
85 |
+
'label' => __( 'Dashboard', 'woocommerce-jetpack' ),
|
86 |
+
'cat_id' => '',
|
87 |
+
'all_cat_ids' => array( '' ),
|
88 |
+
),
|
89 |
+
'price_labels' => array(
|
90 |
+
'label' => __( 'Price Labels', 'woocommerce-jetpack' ),
|
91 |
+
'cat_id' => 'price_labels',
|
92 |
+
'all_cat_ids' => array( 'price_labels', 'call_for_price', ),
|
93 |
+
),
|
94 |
+
'products' => array(
|
95 |
+
'label' => __( 'Products', 'woocommerce-jetpack' ),
|
96 |
+
'cat_id' => 'product_listings',
|
97 |
+
'all_cat_ids' => array( 'product_listings', 'product_tabs', 'product_info', 'sorting', ),
|
98 |
+
),
|
99 |
+
'cart' => array(
|
100 |
+
'label' => __( 'Cart', 'woocommerce-jetpack' ),
|
101 |
+
'cat_id' => 'cart',
|
102 |
+
'all_cat_ids' => array( 'cart', 'add_to_cart', ),
|
103 |
+
),
|
104 |
+
'checkout' => array(
|
105 |
+
'label' => __( 'Checkout', 'woocommerce-jetpack' ),
|
106 |
+
'cat_id' => 'checkout',
|
107 |
+
'all_cat_ids' => array( 'checkout', 'payment_gateways', ),
|
108 |
+
),
|
109 |
+
'shipping' => array(
|
110 |
+
'label' => __( 'Shipping', 'woocommerce-jetpack' ),
|
111 |
+
'cat_id' => 'shipping',
|
112 |
+
'all_cat_ids' => array( 'shipping', ),
|
113 |
+
),
|
114 |
+
'orders' => array(
|
115 |
+
'label' => __( 'Orders', 'woocommerce-jetpack' ),
|
116 |
+
'cat_id' => 'orders',
|
117 |
+
'all_cat_ids' => array( 'orders', ),
|
118 |
+
),
|
119 |
+
'pdf_invoices' => array(
|
120 |
+
'label' => __( 'PDF Invoices', 'woocommerce-jetpack' ),
|
121 |
+
'cat_id' => 'pdf_invoices',
|
122 |
+
'all_cat_ids' => array( 'pdf_invoices', ),
|
123 |
+
),
|
124 |
+
'emails' => array(
|
125 |
+
'label' => __( 'Emails', 'woocommerce-jetpack' ),
|
126 |
+
'cat_id' => 'emails',
|
127 |
+
'all_cat_ids' => array( 'emails', ),
|
128 |
+
),
|
129 |
+
'currencies' => array(
|
130 |
+
'label' => __( 'Currencies', 'woocommerce-jetpack' ),
|
131 |
+
'cat_id' => 'currencies',
|
132 |
+
'all_cat_ids' => array( 'currencies', ),
|
133 |
+
),
|
134 |
+
'misc' => array(
|
135 |
+
'label' => __( 'Misc.', 'woocommerce-jetpack' ),
|
136 |
+
'cat_id' => 'general',
|
137 |
+
'all_cat_ids' => array( 'general', 'old_slugs', 'reports', ),
|
138 |
+
),
|
139 |
+
);
|
140 |
+
|
141 |
+
if ( empty( $this->cats ) ) {
|
142 |
+
return;
|
143 |
+
}
|
144 |
+
|
145 |
+
echo '<ul class="subsubsub" style="text-transform: uppercase !important;">';
|
146 |
+
|
147 |
+
$array_keys = array_keys( $this->cats );
|
148 |
+
|
149 |
+
foreach ( $this->cats as $id => $label_info ) {
|
150 |
+
echo '<li><a href="' . admin_url( 'admin.php?page=wc-settings&tab=' . $this->id . '&wcj-cat=' . sanitize_title( $id ) ) . '§ion=' . $label_info['cat_id'] . '" class="' . ( $current_cat == $id ? 'current' : '' ) . '">' . $label_info['label'] . '</a> ' . ( end( $array_keys ) == $id ? '' : '|' ) . ' </li>';
|
151 |
+
}
|
152 |
+
|
153 |
+
echo '</ul><br class="clear" />';
|
154 |
+
}
|
155 |
|
156 |
/**
|
157 |
* Get sections
|
184 |
if ( '' != $current_section )
|
185 |
WC_Admin_Settings::output_fields( $settings );
|
186 |
else {
|
187 |
+
// Dashboard
|
188 |
$the_settings = $this->get_settings();
|
189 |
|
190 |
echo '<h3>' . $the_settings[0]['title'] . '</h3>';
|
227 |
$section = str_replace( '_enabled', '', $section );
|
228 |
if ( 'currency' === $section ) $section = 'currencies';
|
229 |
|
230 |
+
$html .= '<span class="0"><a href="' . admin_url() . 'admin.php?page=wc-settings&tab=jetpack&wcj-cat=' . $this->get_cat_by_section( $section ) . '§ion=' . $section . '">Settings</a></span>';
|
231 |
$html .= '</div>';
|
232 |
$html .= '</td>';
|
233 |
|
includes/class-wcj-payment-gateways.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* The WooCommerce Jetpack Payment Gateways class.
|
6 |
*
|
7 |
* @class WCJ_Payment_Gateways
|
8 |
-
* @version 1.1.
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
@@ -185,8 +185,8 @@ class WCJ_Payment_Gateways {
|
|
185 |
'default' => 'fixed',
|
186 |
'type' => 'select',
|
187 |
'options' => array(
|
188 |
-
'percent' => __( 'Percent', 'woocommerce-jetpack' ),
|
189 |
'fixed' => __( 'Fixed', 'woocommerce-jetpack' ),
|
|
|
190 |
),
|
191 |
),
|
192 |
|
5 |
* The WooCommerce Jetpack Payment Gateways class.
|
6 |
*
|
7 |
* @class WCJ_Payment_Gateways
|
8 |
+
* @version 1.1.1
|
9 |
* @category Class
|
10 |
* @author Algoritmika Ltd.
|
11 |
*/
|
185 |
'default' => 'fixed',
|
186 |
'type' => 'select',
|
187 |
'options' => array(
|
|
|
188 |
'fixed' => __( 'Fixed', 'woocommerce-jetpack' ),
|
189 |
+
'percent' => __( 'Percent', 'woocommerce-jetpack' ),
|
190 |
),
|
191 |
),
|
192 |
|
langs/woocommerce-jetpack-fr_FR.mo
CHANGED
Binary file
|
langs/woocommerce-jetpack-fr_FR.po
CHANGED
@@ -3,7 +3,7 @@ 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-
|
7 |
"Last-Translator: admin <postmaster@gobeletspersonnalises.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -71,7 +71,7 @@ msgstr "Croissant"
|
|
71 |
#: includes/class-wcj-call-for-price.php:158
|
72 |
#@ woocommerce-jetpack
|
73 |
msgid "Call for Price"
|
74 |
-
msgstr "
|
75 |
|
76 |
#: includes/class-wcj-call-for-price.php:72
|
77 |
#@ woocommerce-jetpack
|
@@ -283,7 +283,7 @@ msgstr "Tout masquer lorsque la livraison gratuite est disponible"
|
|
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
|
@@ -319,12 +319,12 @@ msgstr "Texte pour les produits seul"
|
|
319 |
#: includes/class-wcj-product-info.php:384
|
320 |
#@ woocommerce-jetpack
|
321 |
msgid "Order"
|
322 |
-
msgstr "
|
323 |
|
324 |
#: includes/class-wcj-product-info.php:372
|
325 |
#@ woocommerce-jetpack
|
326 |
msgid "Order by"
|
327 |
-
msgstr "
|
328 |
|
329 |
#: includes/class-wcj-orders.php:404
|
330 |
#: includes/class-wcj-orders.php:555
|
@@ -382,7 +382,7 @@ msgstr "Options: Produits en relation"
|
|
382 |
#: includes/class-wcj-sorting.php:181
|
383 |
#@ woocommerce-jetpack
|
384 |
msgid "Remove All Sorting"
|
385 |
-
msgstr "
|
386 |
|
387 |
#: includes/class-wcj-old-slugs.php:60
|
388 |
#@ woocommerce-jetpack
|
@@ -435,11 +435,6 @@ msgstr "Tri"
|
|
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."
|
@@ -464,7 +459,7 @@ msgstr "Titre"
|
|
464 |
#: includes/admin/tools/class-wcj-tools.php:34
|
465 |
#@ woocommerce-jetpack
|
466 |
msgid "Tools Dashboard"
|
467 |
-
msgstr "
|
468 |
|
469 |
#: includes/class-wcj-add-to-cart.php:199
|
470 |
#@ woocommerce-jetpack
|
@@ -531,26 +526,6 @@ msgstr "URL de redirection. Laisser vide pour rediriger sur la page de commande.
|
|
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."
|
@@ -757,11 +732,6 @@ msgstr "Options: Liens périmés"
|
|
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."
|
@@ -1125,7 +1095,7 @@ msgstr "Activer les factures au format PDF"
|
|
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'
|
1129 |
|
1130 |
#: includes/class-wcj-pdf-invoices.php:644
|
1131 |
#@ woocommerce-jetpack
|
@@ -1526,26 +1496,6 @@ msgstr "Activer [Enregistrer sous] à la place de visualiser le PDF"
|
|
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"
|
@@ -1656,11 +1606,6 @@ msgstr "Avant la description du produit"
|
|
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"
|
@@ -1671,13 +1616,6 @@ msgstr "Options: Plus de produits"
|
|
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
|
@@ -1767,7 +1705,7 @@ msgstr "Exclure des catégories"
|
|
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
|
@@ -1784,7 +1722,7 @@ msgstr "Masquer les catégories vides sur les pages boutiques"
|
|
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
|
@@ -1811,7 +1749,7 @@ msgstr "Exclure les sous-catégories"
|
|
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
|
@@ -1827,7 +1765,7 @@ msgstr ""
|
|
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
|
@@ -1838,12 +1776,12 @@ msgstr "WooJetpack: Masquer si vide"
|
|
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
|
@@ -1865,7 +1803,7 @@ msgstr "Rapports"
|
|
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
|
@@ -1885,7 +1823,7 @@ msgstr "Stock"
|
|
1885 |
#: includes/class-wcj-reports.php:280
|
1886 |
#@ woocommerce-jetpack
|
1887 |
msgid "Stock price"
|
1888 |
-
msgstr "
|
1889 |
|
1890 |
#: includes/class-wcj-reports.php:282
|
1891 |
#@ woocommerce-jetpack
|
@@ -1897,48 +1835,43 @@ msgstr "Dernière vente"
|
|
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 "
|
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."
|
@@ -1969,34 +1902,6 @@ msgstr "Permet d'ajouter ou de supprimer des options de tri."
|
|
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
|
@@ -2197,15 +2102,901 @@ msgstr "Visite %s"
|
|
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 "
|
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 "
|
2206 |
|
2207 |
#: woocommerce-jetpack.php:132
|
2208 |
#@ woocommerce-jetpack
|
2209 |
msgid "Get WooCommerce Jetpack Plus to change value."
|
2210 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2211 |
|
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-11-11 14:25:38+0000\n"
|
7 |
"Last-Translator: admin <postmaster@gobeletspersonnalises.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
71 |
#: includes/class-wcj-call-for-price.php:158
|
72 |
#@ woocommerce-jetpack
|
73 |
msgid "Call for Price"
|
74 |
+
msgstr "Contactez-nous"
|
75 |
|
76 |
#: includes/class-wcj-call-for-price.php:72
|
77 |
#@ woocommerce-jetpack
|
283 |
#: includes/class-wcj-shipping.php:165
|
284 |
#@ woocommerce-jetpack
|
285 |
msgid "Hide if free is available"
|
286 |
+
msgstr "Option: Masquer si l'option de livraison gratuite est disponible"
|
287 |
|
288 |
#: includes/class-wcj-shipping.php:64
|
289 |
#: includes/class-wcj-shipping.php:170
|
319 |
#: includes/class-wcj-product-info.php:384
|
320 |
#@ woocommerce-jetpack
|
321 |
msgid "Order"
|
322 |
+
msgstr "Ordre"
|
323 |
|
324 |
#: includes/class-wcj-product-info.php:372
|
325 |
#@ woocommerce-jetpack
|
326 |
msgid "Order by"
|
327 |
+
msgstr "Trier par"
|
328 |
|
329 |
#: includes/class-wcj-orders.php:404
|
330 |
#: includes/class-wcj-orders.php:555
|
382 |
#: includes/class-wcj-sorting.php:181
|
383 |
#@ woocommerce-jetpack
|
384 |
msgid "Remove All Sorting"
|
385 |
+
msgstr "Réinitialiser les paramètres de tri"
|
386 |
|
387 |
#: includes/class-wcj-old-slugs.php:60
|
388 |
#@ woocommerce-jetpack
|
435 |
msgid "Sorting Options"
|
436 |
msgstr "Options: Tri"
|
437 |
|
|
|
|
|
|
|
|
|
|
|
438 |
#: includes/class-wcj-orders.php:282
|
439 |
#@ woocommerce-jetpack
|
440 |
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."
|
459 |
#: includes/admin/tools/class-wcj-tools.php:34
|
460 |
#@ woocommerce-jetpack
|
461 |
msgid "Tools Dashboard"
|
462 |
+
msgstr "Tableau de bord des Outils"
|
463 |
|
464 |
#: includes/class-wcj-add-to-cart.php:199
|
465 |
#@ woocommerce-jetpack
|
526 |
msgid "Other product"
|
527 |
msgstr "Autres produits"
|
528 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
#: includes/class-wcj-call-for-price.php:72
|
530 |
#@ woocommerce-jetpack
|
531 |
msgid "Leave price empty when adding or editing products. Then set the options here."
|
732 |
msgid "Old Slugs"
|
733 |
msgstr "Permaliens"
|
734 |
|
|
|
|
|
|
|
|
|
|
|
735 |
#: includes/class-wcj-old-slugs.php:161
|
736 |
#@ woocommerce-jetpack
|
737 |
msgid "Tool removes old slugs/permalinks from database."
|
1095 |
#: includes/class-wcj-pdf-invoices.php:636
|
1096 |
#@ woocommerce-jetpack
|
1097 |
msgid "Add PDF invoices for the store owners and for the customers."
|
1098 |
+
msgstr "Permet d'éditer des factures au format PDF pour les clients."
|
1099 |
|
1100 |
#: includes/class-wcj-pdf-invoices.php:644
|
1101 |
#@ woocommerce-jetpack
|
1496 |
msgid "Migrate from Custom Price Labels"
|
1497 |
msgstr "Migrer depuis [Custom Price Labels]"
|
1498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1499 |
#: includes/class-wcj-price-labels.php:192
|
1500 |
#@ woocommerce-jetpack
|
1501 |
msgid "No data to migrate found"
|
1606 |
msgid "After single product summary"
|
1607 |
msgstr "Après la description du produit"
|
1608 |
|
|
|
|
|
|
|
|
|
|
|
1609 |
#: includes/class-wcj-product-info.php:183
|
1610 |
#@ woocommerce-jetpack
|
1611 |
msgid "More Products Info"
|
1616 |
msgid "Product Info on Archive Pages"
|
1617 |
msgstr "Pages Archivées"
|
1618 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1619 |
#: includes/class-wcj-product-info.php:204
|
1620 |
#: includes/class-wcj-product-info.php:244
|
1621 |
#@ woocommerce-jetpack
|
1705 |
#: includes/class-wcj-product-listings.php:163
|
1706 |
#@ woocommerce-jetpack
|
1707 |
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."
|
1708 |
+
msgstr "Permet d'exclure une ou plusieurs catégories de la page boutique. Utilisez une virgule pour séparer les identifiants des catégories. Laisser vide pour ne pas utiliser cette fonction."
|
1709 |
|
1710 |
#: includes/class-wcj-product-listings.php:88
|
1711 |
#: includes/class-wcj-product-listings.php:119
|
1722 |
#: includes/class-wcj-product-listings.php:97
|
1723 |
#@ woocommerce-jetpack
|
1724 |
msgid "Category Display Options"
|
1725 |
+
msgstr "Options: Affichage des catégories"
|
1726 |
|
1727 |
#: includes/class-wcj-product-listings.php:97
|
1728 |
#@ woocommerce-jetpack
|
1749 |
#: includes/class-wcj-product-listings.php:194
|
1750 |
#@ woocommerce-jetpack
|
1751 |
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."
|
1752 |
+
msgstr "Permet d'exclure une ou plusieurs catégories des pages d'archives. Utilisez une virgule pour séparer les identifiants des catégories. Laisser vide pour ne pas utiliser cette fonction."
|
1753 |
|
1754 |
#: includes/class-wcj-product-listings.php:120
|
1755 |
#: includes/class-wcj-product-listings.php:203
|
1765 |
#: includes/class-wcj-product-listings.php:162
|
1766 |
#@ woocommerce-jetpack
|
1767 |
msgid "WooJetpack: Exclude Categories on Shop Page"
|
1768 |
+
msgstr "WooJetpack: Exclure les catégories de la page Boutique "
|
1769 |
|
1770 |
#: includes/class-wcj-product-listings.php:171
|
1771 |
#: includes/class-wcj-product-listings.php:202
|
1776 |
#: includes/class-wcj-product-listings.php:183
|
1777 |
#@ woocommerce-jetpack
|
1778 |
msgid "WooJetpack: Subcategories Count"
|
1779 |
+
msgstr "WooJetpack : Produits dans les sous-catégories"
|
1780 |
|
1781 |
#: includes/class-wcj-product-listings.php:193
|
1782 |
#@ woocommerce-jetpack
|
1783 |
msgid "WooJetpack: Exclude Subcategories on Category Pages"
|
1784 |
+
msgstr "WooJetpack: Exclure les sous-catégories des pages de catégories"
|
1785 |
|
1786 |
#: includes/class-wcj-reports.php:44
|
1787 |
#: includes/class-wcj-reports.php:85
|
1803 |
#: includes/class-wcj-reports.php:69
|
1804 |
#@ woocommerce-jetpack
|
1805 |
msgid "Enable the Reports feature"
|
1806 |
+
msgstr "Activer la fonction de rapports"
|
1807 |
|
1808 |
#: includes/class-wcj-reports.php:277
|
1809 |
#@ woocommerce-jetpack
|
1823 |
#: includes/class-wcj-reports.php:280
|
1824 |
#@ woocommerce-jetpack
|
1825 |
msgid "Stock price"
|
1826 |
+
msgstr "Valeur du Stock"
|
1827 |
|
1828 |
#: includes/class-wcj-reports.php:282
|
1829 |
#@ woocommerce-jetpack
|
1835 |
#, php-format
|
1836 |
#@ woocommerce-jetpack
|
1837 |
msgid "Sales in last %s days"
|
1838 |
+
msgstr "Ventes dans les %s derniers jours"
|
1839 |
|
1840 |
#: includes/class-wcj-reports.php:286
|
1841 |
#@ woocommerce-jetpack
|
1842 |
msgid "Total sales"
|
1843 |
+
msgstr "Total des ventes"
|
1844 |
|
1845 |
#: includes/class-wcj-reports.php:361
|
1846 |
#@ woocommerce-jetpack
|
1847 |
msgid "No sales yet"
|
1848 |
+
msgstr "Aucune vente"
|
1849 |
|
1850 |
#: includes/class-wcj-reports.php:378
|
1851 |
#@ woocommerce-jetpack
|
1852 |
msgid "Total current stock value"
|
1853 |
+
msgstr "Valeur du stock réel"
|
1854 |
|
1855 |
#: includes/class-wcj-reports.php:379
|
1856 |
#@ woocommerce-jetpack
|
1857 |
msgid "Total stock value"
|
1858 |
+
msgstr "Valeur du Stock"
|
1859 |
|
1860 |
#: includes/class-wcj-reports.php:380
|
1861 |
#@ woocommerce-jetpack
|
1862 |
msgid "Product stock value average"
|
1863 |
+
msgstr "Valeur moyenne des produits"
|
1864 |
|
1865 |
#: includes/class-wcj-reports.php:381
|
1866 |
#@ woocommerce-jetpack
|
1867 |
msgid "Product stock average"
|
1868 |
+
msgstr "Valeur des produits"
|
1869 |
|
1870 |
#: includes/class-wcj-reports.php:439
|
1871 |
#@ woocommerce-jetpack
|
1872 |
msgid "All Products on Stock"
|
1873 |
msgstr ""
|
1874 |
|
|
|
|
|
|
|
|
|
|
|
1875 |
#: includes/class-wcj-reports.php:497
|
1876 |
#@ woocommerce-jetpack
|
1877 |
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."
|
1902 |
msgid "Remove all sorting (including WooCommerce default)"
|
1903 |
msgstr "Supprimer tous les paramètres de tri (cela inclus les paramètres par défaut de Woocommerce)"
|
1904 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1905 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:50
|
1906 |
#: includes/shipping/class-wc-shipping-wcj-custom.php:56
|
1907 |
#@ woocommerce
|
2102 |
#: woocommerce-jetpack.php:126
|
2103 |
#@ woocommerce-jetpack
|
2104 |
msgid "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> to change value."
|
2105 |
+
msgstr "Passez à <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> pour pouvoir modifier cette valeur."
|
2106 |
|
2107 |
#: woocommerce-jetpack.php:129
|
2108 |
#@ woocommerce-jetpack
|
2109 |
msgid "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> to change values below."
|
2110 |
+
msgstr "Passez à <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> pour pouvoir modifier cette valeur."
|
2111 |
|
2112 |
#: woocommerce-jetpack.php:132
|
2113 |
#@ woocommerce-jetpack
|
2114 |
msgid "Get WooCommerce Jetpack Plus to change value."
|
2115 |
+
msgstr "Passez à WooCommerce Jetpack Plus pour modifier cette valeur."
|
2116 |
+
|
2117 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:71
|
2118 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:78
|
2119 |
+
#@ woocommerce-jetpack
|
2120 |
+
msgid "Select All"
|
2121 |
+
msgstr ""
|
2122 |
+
|
2123 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:72
|
2124 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:79
|
2125 |
+
#@ woocommerce-jetpack
|
2126 |
+
msgid "Feature"
|
2127 |
+
msgstr ""
|
2128 |
+
|
2129 |
+
#: includes/admin/tools/class-wcj-tools.php:63
|
2130 |
+
#@ woocommerce-jetpack
|
2131 |
+
msgid "WooCommerce Jetpack Tools Dashboard"
|
2132 |
+
msgstr "Tableau de bord de WooCommerce Jetpack"
|
2133 |
+
|
2134 |
+
#: includes/admin/tools/class-wcj-tools.php:64
|
2135 |
+
#@ woocommerce-jetpack
|
2136 |
+
msgid "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."
|
2137 |
+
msgstr "Ce tableau de bord vous permet de visualiser les statuts ainsi qu'une descritpion des outils disponibles. Ces outils peuvent être activés dans les paramètres de Woocomerce, onglet Jetpack."
|
2138 |
+
|
2139 |
+
#: includes/admin/tools/class-wcj-tools.php:67
|
2140 |
+
#@ woocommerce-jetpack
|
2141 |
+
msgid "Tool"
|
2142 |
+
msgstr "Outil"
|
2143 |
+
|
2144 |
+
#: includes/admin/tools/class-wcj-tools.php:68
|
2145 |
+
#@ woocommerce-jetpack
|
2146 |
+
msgid "Status"
|
2147 |
+
msgstr "Statut"
|
2148 |
+
|
2149 |
+
#: includes/class-wcj-add-to-cart.php:237
|
2150 |
+
#@ woocommerce-jetpack
|
2151 |
+
msgid "Single product view."
|
2152 |
+
msgstr "Sur la Fiche produit."
|
2153 |
+
|
2154 |
+
#: includes/class-wcj-add-to-cart.php:238
|
2155 |
+
#: includes/class-wcj-add-to-cart.php:258
|
2156 |
+
#: includes/class-wcj-add-to-cart.php:316
|
2157 |
+
#: includes/class-wcj-add-to-cart.php:342
|
2158 |
+
#: includes/class-wcj-payment-gateways.php:172
|
2159 |
+
#@ woocommerce-jetpack
|
2160 |
+
msgid "Leave blank to disable."
|
2161 |
+
msgstr "Laisser vide pour ne pas utiliser cette option."
|
2162 |
+
|
2163 |
+
#: includes/class-wcj-add-to-cart.php:238
|
2164 |
+
#: includes/class-wcj-add-to-cart.php:258
|
2165 |
+
#: includes/class-wcj-add-to-cart.php:318
|
2166 |
+
#: includes/class-wcj-add-to-cart.php:344
|
2167 |
+
#: includes/class-wcj-sorting.php:228
|
2168 |
+
#: includes/class-wcj-sorting.php:238
|
2169 |
+
#: includes/class-wcj-sorting.php:248
|
2170 |
+
#: includes/class-wcj-sorting.php:258
|
2171 |
+
#: includes/class-wcj-sorting.php:268
|
2172 |
+
#: includes/class-wcj-sorting.php:278
|
2173 |
+
#@ woocommerce-jetpack
|
2174 |
+
msgid "Default: "
|
2175 |
+
msgstr "Défaut: "
|
2176 |
+
|
2177 |
+
#: includes/class-wcj-add-to-cart.php:257
|
2178 |
+
#@ woocommerce-jetpack
|
2179 |
+
msgid "Product category (archive) view."
|
2180 |
+
msgstr "Dans les catégories (archive)."
|
2181 |
+
|
2182 |
+
#: includes/class-wcj-add-to-cart.php:281
|
2183 |
+
#@ woocommerce-jetpack
|
2184 |
+
msgid "Products with price set to 0 (i.e. free). Single product view."
|
2185 |
+
msgstr "Dans les produits avec un prix égal à 0, sur la fiche produit."
|
2186 |
+
|
2187 |
+
#: includes/class-wcj-add-to-cart.php:282
|
2188 |
+
#: includes/class-wcj-add-to-cart.php:291
|
2189 |
+
#@ woocommerce-jetpack
|
2190 |
+
msgid "Leave blank to disable. Default: Add to cart"
|
2191 |
+
msgstr "Laisser vide pour ne pas utiliser cette option. Par défaut: Ajouter au panier"
|
2192 |
+
|
2193 |
+
#: includes/class-wcj-add-to-cart.php:284
|
2194 |
+
#: includes/class-wcj-add-to-cart.php:293
|
2195 |
+
#: includes/class-wcj-add-to-cart.php:318
|
2196 |
+
#: includes/class-wcj-add-to-cart.php:320
|
2197 |
+
#: includes/class-wcj-add-to-cart.php:344
|
2198 |
+
#: includes/class-wcj-add-to-cart.php:346
|
2199 |
+
#@ woocommerce-jetpack
|
2200 |
+
msgid "Add to cart"
|
2201 |
+
msgstr "Ajouter au panier"
|
2202 |
+
|
2203 |
+
#: includes/class-wcj-add-to-cart.php:290
|
2204 |
+
#@ woocommerce-jetpack
|
2205 |
+
msgid "Products with price set to 0 (i.e. free). Product category (archive) view."
|
2206 |
+
msgstr "Dans les produits avec un prix égal à 0, dans l'affichage des catégories (archives)."
|
2207 |
+
|
2208 |
+
#: includes/class-wcj-add-to-cart.php:300
|
2209 |
+
#@ woocommerce-jetpack
|
2210 |
+
msgid "Products with empty price. Product category (archive) view."
|
2211 |
+
msgstr "Dans les produits sans aucun prix, dans l'affichage des catégories (archives)."
|
2212 |
+
|
2213 |
+
#: includes/class-wcj-add-to-cart.php:301
|
2214 |
+
#@ woocommerce-jetpack
|
2215 |
+
msgid "Leave blank to disable. Default: Read More"
|
2216 |
+
msgstr "Laisser vide pour ne pas utiliser cette option. Par défaut: Afficher la suite"
|
2217 |
+
|
2218 |
+
#: includes/class-wcj-add-to-cart.php:303
|
2219 |
+
#@ woocommerce-jetpack
|
2220 |
+
msgid "Read More"
|
2221 |
+
msgstr "Lire la suite"
|
2222 |
+
|
2223 |
+
#: includes/class-wcj-add-to-cart.php:315
|
2224 |
+
#@ woocommerce-jetpack
|
2225 |
+
msgid "Already in cart. Single product view."
|
2226 |
+
msgstr "Déjà dans le panier, sur la fiche produit."
|
2227 |
+
|
2228 |
+
#: includes/class-wcj-add-to-cart.php:317
|
2229 |
+
#: includes/class-wcj-add-to-cart.php:343
|
2230 |
+
#@ woocommerce-jetpack
|
2231 |
+
msgid "Try: "
|
2232 |
+
msgstr "Essais: "
|
2233 |
+
|
2234 |
+
#: includes/class-wcj-add-to-cart.php:317
|
2235 |
+
#: includes/class-wcj-add-to-cart.php:343
|
2236 |
+
#@ woocommerce-jetpack
|
2237 |
+
msgid "Already in cart - Add Again?"
|
2238 |
+
msgstr ""
|
2239 |
+
|
2240 |
+
#: includes/class-wcj-add-to-cart.php:341
|
2241 |
+
#@ woocommerce-jetpack
|
2242 |
+
msgid "Already in cart. Product category (archive) view."
|
2243 |
+
msgstr "Déjà dans le panier, dans l'affichage des catégories (archives)."
|
2244 |
+
|
2245 |
+
#: includes/class-wcj-old-slugs.php:49
|
2246 |
+
#: includes/class-wcj-orders.php:110
|
2247 |
+
#: includes/class-wcj-orders.php:262
|
2248 |
+
#: includes/class-wcj-price-labels.php:116
|
2249 |
+
#@ woocommerce-jetpack
|
2250 |
+
msgid "enabled"
|
2251 |
+
msgstr "Actif"
|
2252 |
+
|
2253 |
+
#: includes/class-wcj-old-slugs.php:51
|
2254 |
+
#: includes/class-wcj-orders.php:112
|
2255 |
+
#: includes/class-wcj-orders.php:264
|
2256 |
+
#: includes/class-wcj-price-labels.php:118
|
2257 |
+
#@ woocommerce-jetpack
|
2258 |
+
msgid "disabled"
|
2259 |
+
msgstr "désactivé"
|
2260 |
+
|
2261 |
+
#: includes/class-wcj-old-slugs.php:91
|
2262 |
+
#, php-format
|
2263 |
+
#@ woocommerce-jetpack
|
2264 |
+
msgid "Remove old product slugs. When enabled, the tool is accessible through <a href=\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce > Jetpack Tools > Remove Old Slugs</a>."
|
2265 |
+
msgstr "Permet de supprimer les permaliens des produits obsolètes. Lorsqu'elle est activée, cette fonction est accessible via <a href=\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce > Jetpack Tools > Gestion des permaliens</a>."
|
2266 |
+
|
2267 |
+
#: includes/class-wcj-orders.php:115
|
2268 |
+
#@ woocommerce-jetpack
|
2269 |
+
msgid "Tool lets you add or delete any custom status for WooCommerce orders."
|
2270 |
+
msgstr "Outils permettant de créer ou de supprimer des statuts personnalisés pour les commandes WooCommerce."
|
2271 |
+
|
2272 |
+
#: includes/class-wcj-orders.php:157
|
2273 |
+
#@ woocommerce-jetpack
|
2274 |
+
msgid "The length of status slug must be 17 or less characters."
|
2275 |
+
msgstr ""
|
2276 |
+
|
2277 |
+
#: includes/class-wcj-orders.php:265
|
2278 |
+
#@ woocommerce-jetpack
|
2279 |
+
msgid "Orders Renumerate"
|
2280 |
+
msgstr "Numérotation des commandes"
|
2281 |
+
|
2282 |
+
#: includes/class-wcj-orders.php:267
|
2283 |
+
#@ woocommerce-jetpack
|
2284 |
+
msgid "Tool renumerates all orders."
|
2285 |
+
msgstr "Outils pour re-numéroter toutes les commandes."
|
2286 |
+
|
2287 |
+
#: includes/class-wcj-orders.php:478
|
2288 |
+
#@ woocommerce-jetpack
|
2289 |
+
msgid "Order Number Custom Suffix"
|
2290 |
+
msgstr ""
|
2291 |
+
|
2292 |
+
#: includes/class-wcj-orders.php:480
|
2293 |
+
#@ woocommerce-jetpack
|
2294 |
+
msgid "Suffix before order number (optional). This will change the suffixes for all existing orders."
|
2295 |
+
msgstr ""
|
2296 |
+
|
2297 |
+
#: includes/class-wcj-orders.php:560
|
2298 |
+
#, php-format
|
2299 |
+
#@ woocommerce-jetpack
|
2300 |
+
msgid "When enabled, the Custom Statuses tool is accessible through <a href=\"%sadmin.php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack Tools > Custom Statuses</a>."
|
2301 |
+
msgstr ""
|
2302 |
+
|
2303 |
+
#: includes/class-wcj-payment-gateways.php:151
|
2304 |
+
#: includes/class-wcj-payment-gateways.php:342
|
2305 |
+
#@ woocommerce-jetpack
|
2306 |
+
msgid "Payment Gateways Fees Options"
|
2307 |
+
msgstr "Options: Frais concernant les Passerelles de paiement"
|
2308 |
+
|
2309 |
+
#: includes/class-wcj-payment-gateways.php:153
|
2310 |
+
#@ woocommerce-jetpack
|
2311 |
+
msgid "This section lets you set extra fees for payment gateways."
|
2312 |
+
msgstr "Permet d'ajouter des frais pour l'utilisation des modes de paiement."
|
2313 |
+
|
2314 |
+
#: includes/class-wcj-payment-gateways.php:154
|
2315 |
+
#@ woocommerce-jetpack
|
2316 |
+
msgid "Fees are applied BEFORE taxes."
|
2317 |
+
msgstr ""
|
2318 |
+
|
2319 |
+
#: includes/class-wcj-payment-gateways.php:171
|
2320 |
+
#@ woocommerce-jetpack
|
2321 |
+
msgid "Fee title to show to customer."
|
2322 |
+
msgstr "Frais à afficher pour le client."
|
2323 |
+
|
2324 |
+
#: includes/class-wcj-payment-gateways.php:180
|
2325 |
+
#@ woocommerce-jetpack
|
2326 |
+
msgid "Fee type."
|
2327 |
+
msgstr "Type de frais."
|
2328 |
+
|
2329 |
+
#: includes/class-wcj-payment-gateways.php:181
|
2330 |
+
#@ woocommerce-jetpack
|
2331 |
+
msgid "Percent or fixed value."
|
2332 |
+
msgstr ""
|
2333 |
+
|
2334 |
+
#: includes/class-wcj-payment-gateways.php:188
|
2335 |
+
#@ woocommerce-jetpack
|
2336 |
+
msgid "Percent"
|
2337 |
+
msgstr ""
|
2338 |
+
|
2339 |
+
#: includes/class-wcj-payment-gateways.php:189
|
2340 |
+
#@ woocommerce-jetpack
|
2341 |
+
msgid "Fixed"
|
2342 |
+
msgstr ""
|
2343 |
+
|
2344 |
+
#: includes/class-wcj-payment-gateways.php:195
|
2345 |
+
#@ woocommerce-jetpack
|
2346 |
+
msgid "Fee value."
|
2347 |
+
msgstr "Montant des frais."
|
2348 |
+
|
2349 |
+
#: includes/class-wcj-payment-gateways.php:196
|
2350 |
+
#@ woocommerce-jetpack
|
2351 |
+
msgid "The value."
|
2352 |
+
msgstr ""
|
2353 |
+
|
2354 |
+
#: includes/class-wcj-payment-gateways.php:230
|
2355 |
+
#@ woocommerce-jetpack
|
2356 |
+
msgid "Payment Gateways Attach PDF Invoice Options"
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: includes/class-wcj-payment-gateways.php:230
|
2360 |
+
#@ woocommerce-jetpack
|
2361 |
+
msgid "This section lets you choose when to attach PDF invoice to customers emails."
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: includes/class-wcj-payment-gateways.php:240
|
2365 |
+
#@ woocommerce-jetpack
|
2366 |
+
msgid "Attach PDF invoice."
|
2367 |
+
msgstr ""
|
2368 |
+
|
2369 |
+
#: includes/class-wcj-payment-gateways.php:342
|
2370 |
+
#@ woocommerce-jetpack
|
2371 |
+
msgid "This section lets you enable extra fees for payment gateways. When enabled all options are added to WooCommerce > Settings > Checkout"
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
+
#: includes/class-wcj-payment-gateways.php:345
|
2375 |
+
#@ woocommerce-jetpack
|
2376 |
+
msgid "Payment Gateways Fees"
|
2377 |
+
msgstr "Frais pour les passerelles de paiement"
|
2378 |
+
|
2379 |
+
#: includes/class-wcj-payment-gateways.php:346
|
2380 |
+
#@ woocommerce-jetpack
|
2381 |
+
msgid "Enable the Payment Gateways Fees"
|
2382 |
+
msgstr "Activer la gestion des frais"
|
2383 |
+
|
2384 |
+
#: includes/class-wcj-pdf-invoices.php:712
|
2385 |
+
#@ woocommerce-jetpack
|
2386 |
+
msgid "Order Date"
|
2387 |
+
msgstr ""
|
2388 |
+
|
2389 |
+
#: includes/class-wcj-pdf-invoices.php:713
|
2390 |
+
#@ woocommerce-jetpack
|
2391 |
+
msgid "Default: Order date"
|
2392 |
+
msgstr "Par défaut: Date de la commande"
|
2393 |
+
|
2394 |
+
#: includes/class-wcj-pdf-invoices.php:716
|
2395 |
+
#@ woocommerce-jetpack
|
2396 |
+
msgid "Order date"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: includes/class-wcj-pdf-invoices.php:722
|
2400 |
+
#@ woocommerce-jetpack
|
2401 |
+
msgid "Order Time"
|
2402 |
+
msgstr ""
|
2403 |
+
|
2404 |
+
#: includes/class-wcj-pdf-invoices.php:723
|
2405 |
+
#@ woocommerce-jetpack
|
2406 |
+
msgid "Default: Order time"
|
2407 |
+
msgstr "Par défaut: Heure de la commande"
|
2408 |
+
|
2409 |
+
#: includes/class-wcj-pdf-invoices.php:726
|
2410 |
+
#@ woocommerce-jetpack
|
2411 |
+
msgid "Order time"
|
2412 |
+
msgstr ""
|
2413 |
+
|
2414 |
+
#: includes/class-wcj-pdf-invoices.php:781
|
2415 |
+
#@ woocommerce-jetpack
|
2416 |
+
msgid "Additional Header"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: includes/class-wcj-pdf-invoices.php:782
|
2420 |
+
#@ woocommerce-jetpack
|
2421 |
+
msgid "Additional header - will be displayed above all data on invoice. You can use html and/or shortcodes here."
|
2422 |
+
msgstr ""
|
2423 |
+
|
2424 |
+
#: includes/class-wcj-pdf-invoices.php:903
|
2425 |
+
#@ woocommerce-jetpack
|
2426 |
+
msgid "Item Name Additional Info"
|
2427 |
+
msgstr "Information produit supplémentaire"
|
2428 |
+
|
2429 |
+
#: includes/class-wcj-pdf-invoices.php:904
|
2430 |
+
#, php-format
|
2431 |
+
#@ woocommerce-jetpack
|
2432 |
+
msgid "Here you can add more info to item's name column (e.g. sku). Default is (SKU: %sku%)"
|
2433 |
+
msgstr "Permet de rajouter des infos dans la colonne [nom] du produit. Par défaut (SKU: %sku%)"
|
2434 |
+
|
2435 |
+
#: includes/class-wcj-pdf-invoices.php:906
|
2436 |
+
#, php-format
|
2437 |
+
#@ woocommerce-jetpack
|
2438 |
+
msgid "(SKU: %sku%)"
|
2439 |
+
msgstr "(GCU: %sku%)"
|
2440 |
+
|
2441 |
+
#: includes/class-wcj-pdf-invoices.php:1064
|
2442 |
+
#: includes/class-wcj-pdf-invoices.php:1067
|
2443 |
+
#@ woocommerce-jetpack
|
2444 |
+
msgid "Shipping Address"
|
2445 |
+
msgstr "Adresse de livraison"
|
2446 |
+
|
2447 |
+
#: includes/class-wcj-pdf-invoices.php:1065
|
2448 |
+
#@ woocommerce-jetpack
|
2449 |
+
msgid "Will be displayed only if customer's shipping address differs from billing address. Leave blank to disable"
|
2450 |
+
msgstr ""
|
2451 |
+
|
2452 |
+
#: includes/class-wcj-pdf-invoices.php:1074
|
2453 |
+
#@ woocommerce-jetpack
|
2454 |
+
msgid "Additional footer - will be displayed below all other data on invoice. You can use html and/or shortcodes here."
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
+
#: includes/class-wcj-price-labels.php:119
|
2458 |
+
#@ woocommerce-jetpack
|
2459 |
+
msgid "Migrate from Custom Price Labels (Pro)"
|
2460 |
+
msgstr "Migrer depuis Custom Price Labels (Pro)"
|
2461 |
+
|
2462 |
+
#: includes/class-wcj-price-labels.php:121
|
2463 |
+
#@ woocommerce-jetpack
|
2464 |
+
msgid "Tool lets you copy all the data (that is labels) from Custom Price labels (Pro) plugin to WooCommerce Jetpack."
|
2465 |
+
msgstr "Outils permettant d'importer les données du plugin Custom Price labels (Pro) dans WooCommerce Jetpack."
|
2466 |
+
|
2467 |
+
#: includes/class-wcj-price-labels.php:143
|
2468 |
+
#@ woocommerce-jetpack
|
2469 |
+
msgid "WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)"
|
2470 |
+
msgstr "WooCommerce Jetpack - Importer depuis Custom Price Labels (Pro)"
|
2471 |
+
|
2472 |
+
#: includes/class-wcj-price-labels.php:191
|
2473 |
+
#@ woocommerce-jetpack
|
2474 |
+
msgid "Migrating (product ID "
|
2475 |
+
msgstr ""
|
2476 |
+
|
2477 |
+
#: includes/class-wcj-price-labels.php:192
|
2478 |
+
#@ woocommerce-jetpack
|
2479 |
+
msgid "Result: "
|
2480 |
+
msgstr "Résultat: "
|
2481 |
+
|
2482 |
+
#: includes/class-wcj-price-labels.php:214
|
2483 |
+
#@ woocommerce-jetpack
|
2484 |
+
msgid "Found data to migrate (product ID "
|
2485 |
+
msgstr ""
|
2486 |
+
|
2487 |
+
#: includes/class-wcj-price-labels.php:237
|
2488 |
+
#@ woocommerce-jetpack
|
2489 |
+
msgid "Press button below to copy all labels from Custom Price Labels (Pro) plugin. Old labels will NOT be deleted. New labels will be overwritten."
|
2490 |
+
msgstr ""
|
2491 |
+
|
2492 |
+
#: includes/class-wcj-price-labels.php:238
|
2493 |
+
#@ woocommerce-jetpack
|
2494 |
+
msgid "Migrate data"
|
2495 |
+
msgstr ""
|
2496 |
+
|
2497 |
+
#: includes/class-wcj-product-info.php:118
|
2498 |
+
#@ woocommerce-jetpack
|
2499 |
+
msgid "Available shortcodes are:"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: includes/class-wcj-product-info.php:385
|
2503 |
+
#, php-format
|
2504 |
+
#@ woocommerce-jetpack
|
2505 |
+
msgid "%s ago"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: includes/class-wcj-product-info.php:455
|
2509 |
+
#@ woocommerce-jetpack
|
2510 |
+
msgid "Number of product info fields. Click \"Save changes\" after you change this number."
|
2511 |
+
msgstr ""
|
2512 |
+
|
2513 |
+
#: includes/class-wcj-product-info.php:478
|
2514 |
+
#, php-format
|
2515 |
+
#@ woocommerce-jetpack
|
2516 |
+
msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
|
2517 |
+
msgstr "Vous économisez: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
|
2518 |
+
|
2519 |
+
#: includes/class-wcj-product-info.php:479
|
2520 |
+
#: includes/class-wcj-product-info.php:593
|
2521 |
+
#, php-format
|
2522 |
+
#@ woocommerce-jetpack
|
2523 |
+
msgid "Total sales: %total_sales%"
|
2524 |
+
msgstr "Remises: %total_sales%"
|
2525 |
+
|
2526 |
+
#: includes/class-wcj-product-info.php:482
|
2527 |
+
#@ woocommerce-jetpack
|
2528 |
+
msgid "Default"
|
2529 |
+
msgstr "Défaut"
|
2530 |
+
|
2531 |
+
#: includes/class-wcj-product-info.php:484
|
2532 |
+
#@ woocommerce-jetpack
|
2533 |
+
msgid "Field Nr. "
|
2534 |
+
msgstr ""
|
2535 |
+
|
2536 |
+
#: includes/class-wcj-product-info.php:484
|
2537 |
+
#@ woocommerce-jetpack
|
2538 |
+
msgid "Available short codes: "
|
2539 |
+
msgstr ""
|
2540 |
+
|
2541 |
+
#: includes/class-wcj-product-info.php:519
|
2542 |
+
#@ woocommerce-jetpack
|
2543 |
+
msgid "Add additional info to product, change related products number."
|
2544 |
+
msgstr "Permet d'ajouter des informations au produit. Permet de changer les produits en relation."
|
2545 |
+
|
2546 |
+
#: includes/class-wcj-product-info.php:529
|
2547 |
+
#@ woocommerce-jetpack
|
2548 |
+
msgid "For full list of short codes, please visit <a target=\"_blank\" href=\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/features/product-info/</a>"
|
2549 |
+
msgstr ""
|
2550 |
+
|
2551 |
+
#: includes/class-wcj-product-info.php:535
|
2552 |
+
#@ woocommerce-jetpack
|
2553 |
+
msgid "Product Info on Single Pages"
|
2554 |
+
msgstr "Information produit sur les pages seules"
|
2555 |
+
|
2556 |
+
#: includes/class-wcj-product-info.php:542
|
2557 |
+
#@ woocommerce-jetpack
|
2558 |
+
msgid "Even More Products Info"
|
2559 |
+
msgstr "Options: Plus d'informations sur le produit."
|
2560 |
+
|
2561 |
+
#: includes/class-wcj-product-info.php:554
|
2562 |
+
#: includes/class-wcj-product-info.php:591
|
2563 |
+
#@ woocommerce-jetpack
|
2564 |
+
msgid "HTML info."
|
2565 |
+
msgstr ""
|
2566 |
+
|
2567 |
+
#: includes/class-wcj-product-info.php:556
|
2568 |
+
#, php-format
|
2569 |
+
#@ woocommerce-jetpack
|
2570 |
+
msgid "SKU: %sku%"
|
2571 |
+
msgstr "GCU: %sku%"
|
2572 |
+
|
2573 |
+
#: includes/class-wcj-product-input-fields.php:89
|
2574 |
+
#@ woocommerce-jetpack
|
2575 |
+
msgid "Text Fields"
|
2576 |
+
msgstr ""
|
2577 |
+
|
2578 |
+
#: includes/class-wcj-product-input-fields.php:110
|
2579 |
+
#@ woocommerce-jetpack
|
2580 |
+
msgid "Required"
|
2581 |
+
msgstr ""
|
2582 |
+
|
2583 |
+
#: includes/class-wcj-product-input-fields.php:139
|
2584 |
+
#@ woocommerce-jetpack
|
2585 |
+
msgid "Fill text box before adding to cart."
|
2586 |
+
msgstr ""
|
2587 |
+
|
2588 |
+
#: includes/class-wcj-product-input-fields.php:202
|
2589 |
+
#@ woocommerce-jetpack
|
2590 |
+
msgid "Product Custom Input Options"
|
2591 |
+
msgstr ""
|
2592 |
+
|
2593 |
+
#: includes/class-wcj-product-input-fields.php:202
|
2594 |
+
#: includes/class-wcj-product-input-fields.php:207
|
2595 |
+
#@ woocommerce-jetpack
|
2596 |
+
msgid "Product Custom Input."
|
2597 |
+
msgstr ""
|
2598 |
+
|
2599 |
+
#: includes/class-wcj-product-input-fields.php:205
|
2600 |
+
#: includes/class-wcj-product-input-fields.php:223
|
2601 |
+
#@ woocommerce-jetpack
|
2602 |
+
msgid "Product Custom Input"
|
2603 |
+
msgstr ""
|
2604 |
+
|
2605 |
+
#: includes/class-wcj-product-input-fields.php:206
|
2606 |
+
#@ woocommerce-jetpack
|
2607 |
+
msgid "Enable the Product Custom Input feature"
|
2608 |
+
msgstr ""
|
2609 |
+
|
2610 |
+
#: includes/class-wcj-product-listings.php:97
|
2611 |
+
#: includes/class-wcj-product-listings.php:136
|
2612 |
+
#@ woocommerce-jetpack
|
2613 |
+
msgid "Show Products"
|
2614 |
+
msgstr "Afficher les produits"
|
2615 |
+
|
2616 |
+
#: includes/class-wcj-product-listings.php:98
|
2617 |
+
#: includes/class-wcj-product-listings.php:197
|
2618 |
+
#@ woocommerce-jetpack
|
2619 |
+
msgid "Show products if no categories are displayed on shop page"
|
2620 |
+
msgstr "Afficher les produits si aucune catégorie ne s'affiche sur la page boutique"
|
2621 |
+
|
2622 |
+
#: includes/class-wcj-product-listings.php:137
|
2623 |
+
#: includes/class-wcj-product-listings.php:235
|
2624 |
+
#@ woocommerce-jetpack
|
2625 |
+
msgid "Show products if no categories are displayed on category page"
|
2626 |
+
msgstr "Afficher les produits si aucune catégorie ne s'affiche sur la page des catégories"
|
2627 |
+
|
2628 |
+
#: includes/class-wcj-product-listings.php:196
|
2629 |
+
#: includes/class-wcj-product-listings.php:234
|
2630 |
+
#@ woocommerce-jetpack
|
2631 |
+
msgid "WooJetpack: Show Products"
|
2632 |
+
msgstr "WooJetpack: Afficher les produits"
|
2633 |
+
|
2634 |
+
#: includes/class-wcj-product-tabs.php:223
|
2635 |
+
#@ woocommerce-jetpack
|
2636 |
+
msgid "Total number of custom tabs"
|
2637 |
+
msgstr ""
|
2638 |
+
|
2639 |
+
#: includes/class-wcj-product-tabs.php:229
|
2640 |
+
#@ woocommerce-jetpack
|
2641 |
+
msgid "Click \"Update\" product after you change this number."
|
2642 |
+
msgstr ""
|
2643 |
+
|
2644 |
+
#: includes/class-wcj-product-tabs.php:243
|
2645 |
+
#@ woocommerce-jetpack
|
2646 |
+
msgid "Priority"
|
2647 |
+
msgstr ""
|
2648 |
+
|
2649 |
+
#: includes/class-wcj-product-tabs.php:248
|
2650 |
+
#: includes/class-wcj-product-tabs.php:357
|
2651 |
+
#@ woocommerce-jetpack
|
2652 |
+
msgid "Content"
|
2653 |
+
msgstr "Contenu"
|
2654 |
+
|
2655 |
+
#: includes/class-wcj-product-tabs.php:252
|
2656 |
+
#@ woocommerce-jetpack
|
2657 |
+
msgid "Customize the tab(s)"
|
2658 |
+
msgstr ""
|
2659 |
+
|
2660 |
+
#: includes/class-wcj-product-tabs.php:256
|
2661 |
+
#: includes/class-wcj-product-tabs.php:341
|
2662 |
+
#@ woocommerce-jetpack
|
2663 |
+
msgid "Custom Product Tab"
|
2664 |
+
msgstr "Onglet personnalisé"
|
2665 |
+
|
2666 |
+
#: includes/class-wcj-product-tabs.php:299
|
2667 |
+
#: includes/class-wcj-product-tabs.php:313
|
2668 |
+
#@ woocommerce-jetpack
|
2669 |
+
msgid "Product Tabs"
|
2670 |
+
msgstr "Onglets produit"
|
2671 |
+
|
2672 |
+
#: includes/class-wcj-product-tabs.php:314
|
2673 |
+
#@ woocommerce-jetpack
|
2674 |
+
msgid "Enable the Product Tabs feature"
|
2675 |
+
msgstr "Activer les options des onglets de produit"
|
2676 |
+
|
2677 |
+
#: includes/class-wcj-product-tabs.php:315
|
2678 |
+
#@ woocommerce-jetpack
|
2679 |
+
msgid "Add custom product tabs - globally or per product. Customize or completely remove WooCommerce default product tabs."
|
2680 |
+
msgstr "Permet de personnaliser les onglets de produit. Permet de supprimer complètement les onglets de produit de WooCommerce."
|
2681 |
+
|
2682 |
+
#: includes/class-wcj-product-tabs.php:323
|
2683 |
+
#@ woocommerce-jetpack
|
2684 |
+
msgid "Custom Product Tabs Options"
|
2685 |
+
msgstr "Options: Onglets produit personnalisés"
|
2686 |
+
|
2687 |
+
#: includes/class-wcj-product-tabs.php:326
|
2688 |
+
#@ woocommerce-jetpack
|
2689 |
+
msgid "Custom Product Tabs Number"
|
2690 |
+
msgstr "Nombre d'onglets personnalisés"
|
2691 |
+
|
2692 |
+
#: includes/class-wcj-product-tabs.php:327
|
2693 |
+
#@ woocommerce-jetpack
|
2694 |
+
msgid "Click \"Save changes\" after you change this number."
|
2695 |
+
msgstr ""
|
2696 |
+
|
2697 |
+
#: includes/class-wcj-product-tabs.php:358
|
2698 |
+
#@ woocommerce-jetpack
|
2699 |
+
msgid "You can use shortcodes here..."
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: includes/class-wcj-product-tabs.php:366
|
2703 |
+
#@ woocommerce-jetpack
|
2704 |
+
msgid "Comma separated PRODUCT IDs to HIDE this tab"
|
2705 |
+
msgstr "ID des PRODUITS sur lesquels cet onglet NE DOIT PAS s'afficher (séparer par des virgules)."
|
2706 |
+
|
2707 |
+
#: includes/class-wcj-product-tabs.php:367
|
2708 |
+
#@ woocommerce-jetpack
|
2709 |
+
msgid "To hide this tab from some products, enter product IDs here."
|
2710 |
+
msgstr "Pour masquer cet onglet dans certains produits, entrez son ID ici."
|
2711 |
+
|
2712 |
+
#: includes/class-wcj-product-tabs.php:375
|
2713 |
+
#@ woocommerce-jetpack
|
2714 |
+
msgid "Comma separated CATEGORY IDs to HIDE this tab"
|
2715 |
+
msgstr "ID des CATEGORIES sur lesquels cet onglet NE DOIT PAS s'afficher (séparer par des virgules)."
|
2716 |
+
|
2717 |
+
#: includes/class-wcj-product-tabs.php:376
|
2718 |
+
#@ woocommerce-jetpack
|
2719 |
+
msgid "To hide this tab from some categories, enter category IDs here."
|
2720 |
+
msgstr "Pour masquer cet onglet dans certaines catégories, entrez son ID ici."
|
2721 |
+
|
2722 |
+
#: includes/class-wcj-product-tabs.php:384
|
2723 |
+
#@ woocommerce-jetpack
|
2724 |
+
msgid "Comma separated PRODUCT IDs to SHOW this tab"
|
2725 |
+
msgstr "ID des PRODUITS sur lesquels cet onglet DOIT s'afficher (séparer par des virgules)."
|
2726 |
+
|
2727 |
+
#: includes/class-wcj-product-tabs.php:385
|
2728 |
+
#@ woocommerce-jetpack
|
2729 |
+
msgid "To show this tab only for some products, enter product IDs here."
|
2730 |
+
msgstr "Pour afficher cet onglet dans certains produits, entrez son ID ici."
|
2731 |
+
|
2732 |
+
#: includes/class-wcj-product-tabs.php:393
|
2733 |
+
#@ woocommerce-jetpack
|
2734 |
+
msgid "Comma separated CATEGORY IDs to SHOW this tab"
|
2735 |
+
msgstr "ID des CATEGORIES sur lesquels cet onglet DOIT s'afficher (séparer par des virgules)."
|
2736 |
+
|
2737 |
+
#: includes/class-wcj-product-tabs.php:394
|
2738 |
+
#@ woocommerce-jetpack
|
2739 |
+
msgid "To show this tab only for some categories, enter category IDs here."
|
2740 |
+
msgstr "Pour afficher cet onglet dans certaines catégories, entrez son ID ici."
|
2741 |
+
|
2742 |
+
#: includes/class-wcj-product-tabs.php:408
|
2743 |
+
#@ woocommerce-jetpack
|
2744 |
+
msgid "Local Custom Product Tabs"
|
2745 |
+
msgstr ""
|
2746 |
+
|
2747 |
+
#: includes/class-wcj-product-tabs.php:411
|
2748 |
+
#@ woocommerce-jetpack
|
2749 |
+
msgid "Enable Custom Product Tabs"
|
2750 |
+
msgstr "Activer les onglets personnalisés"
|
2751 |
+
|
2752 |
+
#: includes/class-wcj-product-tabs.php:419
|
2753 |
+
#@ woocommerce-jetpack
|
2754 |
+
msgid "Default Local Custom Product Tabs Number"
|
2755 |
+
msgstr ""
|
2756 |
+
|
2757 |
+
#: includes/class-wcj-product-tabs.php:431
|
2758 |
+
#@ woocommerce-jetpack
|
2759 |
+
msgid "WooCommerce Standard Product Tabs Options"
|
2760 |
+
msgstr "Options: Onglets de produit standard de WooCommerce"
|
2761 |
+
|
2762 |
+
#: includes/class-wcj-reports.php:88
|
2763 |
+
#@ woocommerce-jetpack
|
2764 |
+
msgid "Total customers"
|
2765 |
+
msgstr ""
|
2766 |
+
|
2767 |
+
#: includes/class-wcj-reports.php:98
|
2768 |
+
#@ woocommerce-jetpack
|
2769 |
+
msgid "Country Code"
|
2770 |
+
msgstr ""
|
2771 |
+
|
2772 |
+
#: includes/class-wcj-reports.php:99
|
2773 |
+
#@ woocommerce-jetpack
|
2774 |
+
msgid "Customers Count"
|
2775 |
+
msgstr ""
|
2776 |
+
|
2777 |
+
#: includes/class-wcj-reports.php:100
|
2778 |
+
#@ woocommerce-jetpack
|
2779 |
+
msgid "Percent of total"
|
2780 |
+
msgstr ""
|
2781 |
+
|
2782 |
+
#: includes/class-wcj-reports.php:135
|
2783 |
+
#@ woocommerce-jetpack
|
2784 |
+
msgid "WooJetpack: All in stock (with sales info)"
|
2785 |
+
msgstr "WooJetpack: En stock (avec les informations de ventes)"
|
2786 |
+
|
2787 |
+
#: includes/class-wcj-reports.php:161
|
2788 |
+
#@ woocommerce-jetpack
|
2789 |
+
msgid "WooJetpack: Customers by Country"
|
2790 |
+
msgstr "WooJetpack: Clients par Pays"
|
2791 |
+
|
2792 |
+
#: includes/class-wcj-reports.php:180
|
2793 |
+
#@ woocommerce-jetpack
|
2794 |
+
msgid "<i>BETA Version</i>"
|
2795 |
+
msgstr ""
|
2796 |
+
|
2797 |
+
#: includes/class-wcj-reports.php:206
|
2798 |
+
#@ woocommerce-jetpack
|
2799 |
+
msgid "Stock, sales, customers etc. reports."
|
2800 |
+
msgstr "Rapports des stocks, ventes, clients etc."
|
2801 |
+
|
2802 |
+
#: includes/class-wcj-reports.php:217
|
2803 |
+
#@ woocommerce-jetpack
|
2804 |
+
msgid "WooJetpack: Customers by Country. Available in WooCommerce > Reports > Customers."
|
2805 |
+
msgstr "WooJetpack: Clients par Pays: Dans WooCommerce > Rapports > Clients."
|
2806 |
+
|
2807 |
+
#: includes/class-wcj-reports.php:218
|
2808 |
+
#@ woocommerce-jetpack
|
2809 |
+
msgid "WooJetpack: All in stock (with sales info). Available in WooCommerce > Reports > Stock."
|
2810 |
+
msgstr "WooJetpack: En stock (avec les informations de ventes): Dans WooCommerce > Rapports > Stock."
|
2811 |
+
|
2812 |
+
#: includes/class-wcj-reports.php:223
|
2813 |
+
#@ woocommerce-jetpack
|
2814 |
+
msgid "European Union as single country"
|
2815 |
+
msgstr ""
|
2816 |
+
|
2817 |
+
#: includes/class-wcj-reports.php:224
|
2818 |
+
#@ woocommerce-jetpack
|
2819 |
+
msgid "When checked all EU contries are counted as one country in all reports."
|
2820 |
+
msgstr ""
|
2821 |
+
|
2822 |
+
#: includes/class-wcj-reports.php:240
|
2823 |
+
#@ woocommerce-jetpack
|
2824 |
+
msgid " - <em>BETA</em>"
|
2825 |
+
msgstr ""
|
2826 |
+
|
2827 |
+
#: includes/class-wcj-reports.php:604
|
2828 |
+
#@ woocommerce-jetpack
|
2829 |
+
msgid "Report shows all products that are on stock and some sales info."
|
2830 |
+
msgstr ""
|
2831 |
+
|
2832 |
+
#: includes/class-wcj-reports.php:665
|
2833 |
+
#@ woocommerce-jetpack
|
2834 |
+
msgid "Stock based reports"
|
2835 |
+
msgstr ""
|
2836 |
+
|
2837 |
+
#: includes/class-wcj-reports.php:678
|
2838 |
+
#@ woocommerce-jetpack
|
2839 |
+
msgid "Please enable stock management in <strong>WooCommerce > Settings > Products > Inventory</strong> to generate stock based reports."
|
2840 |
+
msgstr ""
|
2841 |
+
|
2842 |
+
#: includes/class-wcj-sorting.php:227
|
2843 |
+
#@ woocommerce-jetpack
|
2844 |
+
msgid "Sort by Name"
|
2845 |
+
msgstr "Tri par intitulé"
|
2846 |
+
|
2847 |
+
#: includes/class-wcj-sorting.php:228
|
2848 |
+
#: includes/class-wcj-sorting.php:231
|
2849 |
+
#@ woocommerce-jetpack
|
2850 |
+
msgid "Sort by title: A to Z"
|
2851 |
+
msgstr "Ordre alphabétique: A à Z"
|
2852 |
+
|
2853 |
+
#: includes/class-wcj-sorting.php:229
|
2854 |
+
#: includes/class-wcj-sorting.php:239
|
2855 |
+
#: includes/class-wcj-sorting.php:249
|
2856 |
+
#: includes/class-wcj-sorting.php:259
|
2857 |
+
#: includes/class-wcj-sorting.php:269
|
2858 |
+
#: includes/class-wcj-sorting.php:279
|
2859 |
+
#@ woocommerce-jetpack
|
2860 |
+
msgid "Text to show on frontend. Leave blank to disable."
|
2861 |
+
msgstr ""
|
2862 |
+
|
2863 |
+
#: includes/class-wcj-sorting.php:238
|
2864 |
+
#: includes/class-wcj-sorting.php:241
|
2865 |
+
#@ woocommerce-jetpack
|
2866 |
+
msgid "Sort by title: Z to A"
|
2867 |
+
msgstr "Ordre alphabétique: Z à A"
|
2868 |
+
|
2869 |
+
#: includes/class-wcj-sorting.php:247
|
2870 |
+
#@ woocommerce-jetpack
|
2871 |
+
msgid "Sort by SKU"
|
2872 |
+
msgstr "Tri par GCU"
|
2873 |
+
|
2874 |
+
#: includes/class-wcj-sorting.php:248
|
2875 |
+
#: includes/class-wcj-sorting.php:251
|
2876 |
+
#@ woocommerce-jetpack
|
2877 |
+
msgid "Sort by SKU: low to high"
|
2878 |
+
msgstr "GCU: croissant"
|
2879 |
+
|
2880 |
+
#: includes/class-wcj-sorting.php:258
|
2881 |
+
#: includes/class-wcj-sorting.php:261
|
2882 |
+
#@ woocommerce-jetpack
|
2883 |
+
msgid "Sort by SKU: high to low"
|
2884 |
+
msgstr "GCU: décroissant"
|
2885 |
+
|
2886 |
+
#: includes/class-wcj-sorting.php:267
|
2887 |
+
#@ woocommerce-jetpack
|
2888 |
+
msgid "Sort by stock quantity"
|
2889 |
+
msgstr "Tri par le stock"
|
2890 |
+
|
2891 |
+
#: includes/class-wcj-sorting.php:268
|
2892 |
+
#: includes/class-wcj-sorting.php:271
|
2893 |
+
#@ woocommerce-jetpack
|
2894 |
+
msgid "Sort by stock quantity: low to high"
|
2895 |
+
msgstr "quantité en stock: croissant"
|
2896 |
+
|
2897 |
+
#: includes/class-wcj-sorting.php:278
|
2898 |
+
#: includes/class-wcj-sorting.php:281
|
2899 |
+
#@ woocommerce-jetpack
|
2900 |
+
msgid "Sort by stock quantity: high to low"
|
2901 |
+
msgstr "quantité en stock: décroissant"
|
2902 |
+
|
2903 |
+
#: woocommerce-jetpack.php:132
|
2904 |
+
#@ woocommerce-jetpack
|
2905 |
+
msgid "Get <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> to change values above."
|
2906 |
+
msgstr "Acheter <a href=\"http://woojetpack.com/plus/\" target=\"_blank\">WooCommerce Jetpack Plus</a> pour modifier ces valeurs.."
|
2907 |
+
|
2908 |
+
#: includes/class-wcj-price-labels.php:175
|
2909 |
+
#@ woocommerce-jetpack
|
2910 |
+
msgid " Result: "
|
2911 |
+
msgstr " Résultat: "
|
2912 |
+
|
2913 |
+
#: includes/class-wcj-price-labels.php:126
|
2914 |
+
#@ woocommerce-jetpack
|
2915 |
+
msgid "<h2>WooCommerce Jetpack - Migrate from Custom Price Labels (Pro)</h2>"
|
2916 |
+
msgstr "<h2>WooCommerce Jetpack - importation des paramètres du plugin Custom Price Labels (Pro)</h2>"
|
2917 |
+
|
2918 |
+
#: includes/class-wcj-product-info.php:174
|
2919 |
+
#@ woocommerce-jetpack
|
2920 |
+
msgid "Customize single product tabs, change related products number."
|
2921 |
+
msgstr "Permet de modifier les onglets dans les fiches produit. Permet de changer le nombre de produits en relation."
|
2922 |
+
|
2923 |
+
#: includes/class-wcj-add-to-cart.php:298
|
2924 |
+
#@ woocommerce-jetpack
|
2925 |
+
msgid "Enable \"Already in cart\" on product archives"
|
2926 |
+
msgstr "Activer [Déjà dans le panier] sur les pages produits archivés."
|
2927 |
+
|
2928 |
+
#: includes/class-wcj-add-to-cart.php:279
|
2929 |
+
#@ woocommerce-jetpack
|
2930 |
+
msgid "Enable \"Already in cart\" on single product pages"
|
2931 |
+
msgstr "Activer [Déjà dans le panier] sur les pages produits."
|
2932 |
+
|
2933 |
+
#: includes/class-wcj-add-to-cart.php:254
|
2934 |
+
#@ woocommerce-jetpack
|
2935 |
+
msgid "Enable on product archives"
|
2936 |
+
msgstr "Activer sur produits archivés"
|
2937 |
+
|
2938 |
+
#: includes/class-wcj-add-to-cart.php:235
|
2939 |
+
#@ woocommerce-jetpack
|
2940 |
+
msgid "Enable on single product pages"
|
2941 |
+
msgstr "Activer sur les pages produits"
|
2942 |
+
|
2943 |
+
#: includes/class-wcj-price-labels.php:179
|
2944 |
+
#@ woocommerce-jetpack
|
2945 |
+
msgid "Found data to migrate: "
|
2946 |
+
msgstr "Données à importer: "
|
2947 |
+
|
2948 |
+
#: includes/class-wcj-product-info.php:195
|
2949 |
+
#: includes/class-wcj-product-info.php:232
|
2950 |
+
#, php-format
|
2951 |
+
#@ woocommerce-jetpack
|
2952 |
+
msgid "HTML info. Predefined: %total_sales%, %sku%"
|
2953 |
+
msgstr "Info HTML. Prédéfini: %total_sales%, %sku%"
|
2954 |
+
|
2955 |
+
#: includes/class-wcj-price-labels.php:174
|
2956 |
+
#@ woocommerce-jetpack
|
2957 |
+
msgid "Migrating: "
|
2958 |
+
msgstr "Migration: "
|
2959 |
+
|
2960 |
+
#: includes/class-wcj-old-slugs.php:88
|
2961 |
+
#@ woocommerce-jetpack
|
2962 |
+
msgid "Remove old product slugs."
|
2963 |
+
msgstr "Permet de supprimer les Permaliens des produits non utilisés."
|
2964 |
+
|
2965 |
+
#: includes/class-wcj-reports.php:440
|
2966 |
+
#@ woocommerce-jetpack
|
2967 |
+
msgid "Report shows all products that are on stock."
|
2968 |
+
msgstr ""
|
2969 |
+
|
2970 |
+
#: includes/class-wcj-sorting.php:196
|
2971 |
+
#@ woocommerce-jetpack
|
2972 |
+
msgid "Sort by Name - Asc"
|
2973 |
+
msgstr "Trier par noms [ASC]"
|
2974 |
+
|
2975 |
+
#: includes/class-wcj-sorting.php:214
|
2976 |
+
#@ woocommerce-jetpack
|
2977 |
+
msgid "Sort by Name - Desc"
|
2978 |
+
msgstr "Trier par noms [DESC]"
|
2979 |
+
|
2980 |
+
#: includes/class-wcj-sorting.php:232
|
2981 |
+
#@ woocommerce-jetpack
|
2982 |
+
msgid "Sort by SKU - Asc"
|
2983 |
+
msgstr "Trier par UGS [ASC]"
|
2984 |
+
|
2985 |
+
#: includes/class-wcj-sorting.php:250
|
2986 |
+
#@ woocommerce-jetpack
|
2987 |
+
msgid "Sort by SKU - Desc"
|
2988 |
+
msgstr "Trier par UGS [DESC]"
|
2989 |
+
|
2990 |
+
#: includes/class-wcj-sorting.php:197
|
2991 |
+
#: includes/class-wcj-sorting.php:215
|
2992 |
+
#: includes/class-wcj-sorting.php:233
|
2993 |
+
#: includes/class-wcj-sorting.php:251
|
2994 |
+
#@ woocommerce-jetpack
|
2995 |
+
msgid "Text visible at front end"
|
2996 |
+
msgstr "Texte visible par le client"
|
2997 |
+
|
2998 |
+
#: includes/class-wcj-orders.php:257
|
2999 |
+
#@ woocommerce-jetpack
|
3000 |
+
msgid "The tool renumerates all orders."
|
3001 |
+
msgstr "Les outils de re-numérotation des commandes"
|
3002 |
|
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"
|
@@ -16,11 +16,28 @@ msgstr ""
|
|
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 "WooCommerce Jetpack Dashboard"
|
25 |
msgstr ""
|
26 |
|
@@ -48,109 +65,168 @@ msgstr ""
|
|
48 |
msgid "Status"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/
|
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:
|
61 |
-
#: includes/class-wcj-add-to-cart.php:
|
62 |
msgid "Add to Cart"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: includes/class-wcj-add-to-cart.php:
|
66 |
msgid "Enable the Add to Cart feature"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/class-wcj-add-to-cart.php:
|
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:
|
77 |
msgid "Add to Cart Redirect Options"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: includes/class-wcj-add-to-cart.php:
|
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:
|
88 |
msgid "Redirect"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: includes/class-wcj-add-to-cart.php:
|
92 |
-
#: includes/class-wcj-add-to-cart.php:
|
93 |
-
#: includes/class-wcj-cart.php:168 includes/class-wcj-orders.php:
|
94 |
-
#: includes/class-wcj-orders.php:
|
95 |
-
#: includes/class-wcj-price-labels.php:
|
96 |
-
#: includes/class-wcj-product-info.php:
|
97 |
-
#: includes/class-wcj-product-info.php:
|
98 |
-
#: includes/class-wcj-product-info.php:
|
99 |
-
#: includes/class-wcj-
|
100 |
-
#: includes/class-wcj-
|
|
|
101 |
msgid "Enable"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: includes/class-wcj-add-to-cart.php:
|
105 |
msgid "Redirect URL"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/class-wcj-add-to-cart.php:
|
109 |
msgid "Redirect URL. Leave empty to redirect to checkout."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/class-wcj-add-to-cart.php:
|
113 |
msgid "Add to Cart Button Text Options"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: includes/class-wcj-add-to-cart.php:
|
117 |
msgid "Add to cart text"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/class-wcj-add-to-cart.php:
|
121 |
msgid "Simple product"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: includes/class-wcj-add-to-cart.php:
|
125 |
msgid "Variable product"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: includes/class-wcj-add-to-cart.php:
|
129 |
msgid "External product"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: includes/class-wcj-add-to-cart.php:
|
133 |
msgid "Grouped product"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/class-wcj-add-to-cart.php:
|
137 |
msgid "Other product"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/class-wcj-add-to-cart.php:
|
141 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: includes/class-wcj-add-to-cart.php:
|
145 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/class-wcj-add-to-cart.php:
|
149 |
-
msgid "
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/class-wcj-add-to-cart.php:
|
153 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
msgstr ""
|
155 |
|
156 |
#: includes/class-wcj-call-for-price.php:72
|
@@ -380,7 +456,7 @@ msgstr ""
|
|
380 |
msgid "Email Forwarding Options"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/class-wcj-general.php:70 includes/class-wcj-pdf-invoices.php:
|
384 |
msgid "General Options"
|
385 |
msgstr ""
|
386 |
|
@@ -413,12 +489,12 @@ 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:
|
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:
|
422 |
msgid "disabled"
|
423 |
msgstr ""
|
424 |
|
@@ -442,8 +518,11 @@ msgstr ""
|
|
442 |
msgid "Enable the Remove Old Product Slugs feature"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/class-wcj-old-slugs.php:
|
446 |
-
msgid "
|
|
|
|
|
|
|
447 |
msgstr ""
|
448 |
|
449 |
#: includes/class-wcj-old-slugs.php:164
|
@@ -498,7 +577,7 @@ msgid "Failed"
|
|
498 |
msgstr ""
|
499 |
|
500 |
#: includes/class-wcj-orders.php:113 includes/class-wcj-orders.php:125
|
501 |
-
#: includes/class-wcj-orders.php:
|
502 |
msgid "Custom Statuses"
|
503 |
msgstr ""
|
504 |
|
@@ -511,136 +590,140 @@ 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:
|
518 |
msgid "Duplicate slug. Status not added."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: includes/class-wcj-orders.php:
|
522 |
msgid "New status have been successfully added!"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/class-wcj-orders.php:
|
526 |
msgid "Status was not added."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/class-wcj-orders.php:
|
530 |
msgid "Status have been successfully deleted."
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/class-wcj-orders.php:
|
534 |
msgid "Delete failed."
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: includes/class-wcj-orders.php:
|
538 |
msgid "WooCommerce Jetpack - Custom Statuses"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: includes/class-wcj-orders.php:
|
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:
|
547 |
msgid "Statuses"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: includes/class-wcj-orders.php:
|
551 |
msgid "Slug"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: includes/class-wcj-orders.php:
|
555 |
msgid "Label"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: includes/class-wcj-orders.php:
|
559 |
msgid "Delete"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: includes/class-wcj-orders.php:
|
563 |
msgid "Slug (without wc- prefix)"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: includes/class-wcj-orders.php:
|
567 |
msgid "Orders Renumerate"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: includes/class-wcj-orders.php:
|
571 |
msgid "Tool renumerates all orders."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: includes/class-wcj-orders.php:
|
575 |
msgid "Renumerate orders"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: includes/class-wcj-orders.php:
|
579 |
msgid "WooCommerce Jetpack - Renumerate Orders"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: includes/class-wcj-orders.php:
|
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:
|
590 |
msgid "Orders Options"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/class-wcj-orders.php:
|
594 |
msgid "Orders"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: includes/class-wcj-orders.php:
|
598 |
msgid "Enable the Orders feature"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: includes/class-wcj-orders.php:
|
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:
|
608 |
msgid "Order Numbers"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: includes/class-wcj-orders.php:
|
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:
|
618 |
msgid "This will enable sequential order numbering and custom prefixes."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/class-wcj-orders.php:
|
622 |
msgid "Next Order Number"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/class-wcj-orders.php:
|
626 |
msgid "Next new order will be given this number."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: includes/class-wcj-orders.php:
|
630 |
msgid "Order Number Custom Prefix"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/class-wcj-orders.php:
|
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:
|
640 |
msgid "Order Number Date Prefix"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/class-wcj-orders.php:
|
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 "
|
@@ -649,11 +732,11 @@ msgid ""
|
|
649 |
"d- or mdy."
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: includes/class-wcj-orders.php:
|
653 |
msgid "Order Number Width"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: includes/class-wcj-orders.php:
|
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 "
|
@@ -661,491 +744,643 @@ msgid ""
|
|
661 |
"Leave zero to disable."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: includes/class-wcj-orders.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
665 |
msgid "Order Minimum Amount"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: includes/class-wcj-orders.php:
|
669 |
msgid "This section lets you set minimum order amount."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: includes/class-wcj-orders.php:
|
673 |
msgid "Amount"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: includes/class-wcj-orders.php:
|
677 |
msgid "Minimum order amount. Set to 0 to disable."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: includes/class-wcj-orders.php:
|
681 |
msgid "Error message"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/class-wcj-orders.php:
|
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:
|
692 |
msgid "Add notice to cart page also"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: includes/class-wcj-orders.php:
|
696 |
msgid "Add"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: includes/class-wcj-orders.php:
|
700 |
msgid "Message on cart page"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: includes/class-wcj-orders.php:
|
704 |
msgid ""
|
705 |
"Stop customer from seeing the Checkout page if minimum amount not reached."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: includes/class-wcj-orders.php:
|
709 |
msgid "Redirect back to Cart page"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: includes/class-wcj-orders.php:
|
713 |
msgid "Orders Auto-Complete"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: includes/class-wcj-orders.php:
|
717 |
msgid "This section lets you enable orders auto-complete function."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: includes/class-wcj-orders.php:
|
721 |
msgid "Auto-complete all WooCommerce orders"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: includes/class-wcj-orders.php:
|
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:
|
731 |
msgid "This section lets you enable custom statuses tool."
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: includes/class-wcj-payment-gateways.php:
|
739 |
-
#: includes/class-wcj-payment-gateways.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
747 |
msgid "Payment Gateways Options"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: includes/class-wcj-payment-gateways.php:
|
751 |
-
#: includes/class-wcj-payment-gateways.php:
|
752 |
msgid "Payment Gateways"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: includes/class-wcj-payment-gateways.php:
|
756 |
msgid "Enable the Payment Gateways feature"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/class-wcj-payment-gateways.php:
|
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:
|
766 |
msgid "Custom Payment Gateways Options"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/class-wcj-payment-gateways.php:
|
770 |
msgid "Number of Gateways"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: includes/class-wcj-payment-gateways.php:
|
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:
|
780 |
msgid "Default WooCommerce Payment Gateways Options"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: includes/class-wcj-
|
784 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
785 |
msgid "Invoice"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: includes/class-wcj-pdf-invoices.php:
|
789 |
-
#: includes/class-wcj-pdf-invoices.php:
|
790 |
msgid "PDF Invoice"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/class-wcj-pdf-invoices.php:
|
794 |
msgid "PDF Invoices Options"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/class-wcj-pdf-invoices.php:
|
798 |
-
#: includes/class-wcj-pdf-invoices.php:
|
799 |
msgid "PDF Invoices"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: includes/class-wcj-pdf-invoices.php:
|
803 |
msgid "Enable the PDF Invoices feature"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: includes/class-wcj-pdf-invoices.php:
|
807 |
msgid "Add PDF invoices for the store owners and for the customers."
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: includes/class-wcj-pdf-invoices.php:
|
811 |
msgid "Invoice Header"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
821 |
msgid "Your Logo URL"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
831 |
-
#: includes/class-wcj-pdf-invoices.php:
|
832 |
-
#: includes/class-wcj-pdf-invoices.php:
|
833 |
-
#: includes/class-wcj-pdf-invoices.php:
|
834 |
-
#: includes/class-wcj-pdf-invoices.php:
|
835 |
-
#: includes/class-wcj-pdf-invoices.php:
|
836 |
-
#: includes/class-wcj-pdf-invoices.php:
|
837 |
-
#: includes/class-wcj-pdf-invoices.php:
|
838 |
-
#: includes/class-wcj-pdf-invoices.php:
|
839 |
-
#: includes/class-wcj-pdf-invoices.php:
|
840 |
-
#: includes/class-wcj-pdf-invoices.php:
|
841 |
-
#: includes/class-wcj-pdf-invoices.php:
|
842 |
-
#: includes/class-wcj-pdf-invoices.php:
|
843 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
|
|
844 |
msgid "Leave blank to disable"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: includes/class-wcj-pdf-invoices.php:
|
848 |
msgid "Header Text"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: includes/class-wcj-pdf-invoices.php:
|
852 |
msgid "Default: INVOICE"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: includes/class-wcj-pdf-invoices.php:
|
856 |
msgid "INVOICE"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: includes/class-wcj-pdf-invoices.php:
|
860 |
msgid "Invoice Number"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/class-wcj-pdf-invoices.php:
|
864 |
msgid "Default: Invoice number"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: includes/class-wcj-pdf-invoices.php:
|
868 |
msgid "Invoice number"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
872 |
msgid "Invoice Date"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: includes/class-wcj-pdf-invoices.php:
|
876 |
msgid "Default: Invoice date"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: includes/class-wcj-pdf-invoices.php:
|
880 |
msgid "Invoice date"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: includes/class-wcj-pdf-invoices.php:
|
884 |
msgid "Default: Invoice due date"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/class-wcj-pdf-invoices.php:
|
888 |
msgid "Invoice due date"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: includes/class-wcj-pdf-invoices.php:
|
892 |
-
#: includes/class-wcj-pdf-invoices.php:
|
893 |
msgid "days"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: includes/class-wcj-pdf-invoices.php:
|
897 |
msgid "Default: Invoice fulfillment date"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: includes/class-wcj-pdf-invoices.php:
|
901 |
msgid "Invoice fulfillment date"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
905 |
msgid "Seller and Buyer Info"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: includes/class-wcj-pdf-invoices.php:
|
909 |
-
#: includes/class-wcj-pdf-invoices.php:
|
910 |
msgid "Seller"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: includes/class-wcj-pdf-invoices.php:
|
914 |
msgid "Your business information"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: includes/class-wcj-pdf-invoices.php:
|
918 |
msgid "New lines are added automatically."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: includes/class-wcj-pdf-invoices.php:
|
922 |
msgid "<strong>Company Name</strong>"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: includes/class-wcj-pdf-invoices.php:
|
926 |
-
#: includes/class-wcj-pdf-invoices.php:
|
927 |
msgid "Buyer"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/class-wcj-pdf-invoices.php:
|
931 |
-
#: includes/class-wcj-pdf-invoices.php:
|
932 |
msgid "Items"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: includes/class-wcj-pdf-invoices.php:
|
936 |
msgid "Items Table Heading Text"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: includes/class-wcj-pdf-invoices.php:
|
940 |
msgid "Shipping as Item"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: includes/class-wcj-pdf-invoices.php:
|
944 |
msgid "Display shipping as item"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: includes/class-wcj-pdf-invoices.php:
|
948 |
-
#: includes/class-wcj-pdf-invoices.php:
|
949 |
msgid "Add shipping method info"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: includes/class-wcj-pdf-invoices.php:
|
953 |
msgid "Do not add shipping method info"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: includes/class-wcj-pdf-invoices.php:
|
957 |
msgid "Replace with shipping method info"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/class-wcj-pdf-invoices.php:
|
961 |
msgid "Discount as Item"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: includes/class-wcj-pdf-invoices.php:
|
965 |
msgid "Display discount as item"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/class-wcj-pdf-invoices.php:
|
969 |
msgid "Items Columns"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
979 |
-
#: includes/class-wcj-pdf-invoices.php:
|
980 |
msgid "Nr."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: includes/class-wcj-pdf-invoices.php:
|
984 |
-
#: includes/class-wcj-pdf-invoices.php:
|
985 |
msgid "Item Name"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: includes/class-wcj-pdf-invoices.php:
|
989 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
990 |
msgid "Qty"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/class-wcj-pdf-invoices.php:
|
994 |
msgid "Single Item Price (TAX excl.)"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: includes/class-wcj-pdf-invoices.php:
|
998 |
msgid "Price (TAX excl.)"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1002 |
msgid "Single Item TAX"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1006 |
msgid "TAX"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1010 |
msgid "Single Item Price (TAX incl.)"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1014 |
msgid "Price (TAX incl.)"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1018 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1019 |
msgid "Sum (TAX excl.)"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1023 |
msgid "Tax Percent"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1027 |
msgid "Taxes %"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1031 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1032 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1033 |
msgid "Taxes"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1037 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1038 |
msgid "Sum (TAX incl.)"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1042 |
msgid "Totals"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1046 |
msgid "This section lets you set texts for totals table."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1050 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1051 |
msgid "Order Subtotal"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1055 |
msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1059 |
msgid "Order Shipping Price"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1063 |
-
#: includes/class-wcj-shipping.php:200
|
1064 |
msgid "Shipping"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1068 |
msgid "Total Discount"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1072 |
msgid "Discount"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1076 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1077 |
msgid "Order Total (TAX excl.)"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1088 |
msgid "Order Total Taxes"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1092 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1093 |
msgid "Order Total"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1097 |
msgid "Footer"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1101 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1102 |
msgid "Payment Method"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1106 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1107 |
msgid "Shipping Method"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1111 |
msgid "Additional Footer"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/class-wcj-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1115 |
msgid "Font size"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1119 |
msgid "Default: 8"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1123 |
msgid "CSS"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1127 |
msgid "PDF Invoices for Customers (in My Account)"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1131 |
msgid "Enable the PDF Invoices in customers account"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1135 |
msgid "PDF Invoices for Customers (Email attachment)"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/class-wcj-pdf-invoices.php:
|
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:
|
1145 |
msgid "Enable Save as"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/class-wcj-pdf-invoices.php:
|
1149 |
msgid "Enable save as pdf instead of view pdf"
|
1150 |
msgstr ""
|
1151 |
|
@@ -1168,454 +1403,737 @@ 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:
|
1179 |
-
msgid "Found data to migrate
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/class-wcj-price-labels.php:
|
1183 |
msgid "No data to migrate found"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: includes/class-wcj-price-labels.php:
|
1187 |
msgid "No products found"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/class-wcj-price-labels.php:
|
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:
|
1197 |
msgid "Migrate data"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/class-wcj-price-labels.php:
|
1201 |
msgid "Custom Price Labels Options"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/class-wcj-price-labels.php:
|
1205 |
-
#: includes/class-wcj-price-labels.php:
|
1206 |
msgid "Custom Price Labels"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: includes/class-wcj-price-labels.php:
|
1210 |
msgid "Enable the Custom Price Labels feature"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: includes/class-wcj-price-labels.php:
|
1214 |
msgid "Create any custom price label for any product."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: includes/class-wcj-price-labels.php:
|
1218 |
msgid "Global Custom Price Labels"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: includes/class-wcj-price-labels.php:
|
1222 |
msgid "This section lets you set price labels for all products globally."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: includes/class-wcj-price-labels.php:
|
1226 |
msgid "Add before the price"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: includes/class-wcj-price-labels.php:
|
1230 |
msgid "Enter text to add before all products prices. Leave blank to disable."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: includes/class-wcj-price-labels.php:
|
1234 |
msgid "Add after the price"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/class-wcj-price-labels.php:
|
1238 |
msgid "Enter text to add after all products prices. Leave blank to disable."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: includes/class-wcj-price-labels.php:
|
1242 |
msgid "Remove from price"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/class-wcj-price-labels.php:
|
1246 |
msgid "Enter text to remove from all products prices. Leave blank to disable."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: includes/class-wcj-price-labels.php:
|
1250 |
msgid "Replace in price"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: includes/class-wcj-price-labels.php:
|
1254 |
msgid "Enter text to replace in all products prices. Leave blank to disable."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: includes/class-wcj-price-labels.php:
|
1258 |
msgid "Enter text to replace with. Leave blank to disable."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/class-wcj-price-labels.php:
|
1262 |
msgid "Migrate from Custom Price Labels (Pro) Options"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/class-wcj-price-labels.php:
|
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:
|
1271 |
msgid "Before product"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/class-wcj-product-info.php:
|
1275 |
msgid "Before product title"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/class-wcj-product-info.php:
|
1279 |
msgid "After product"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/class-wcj-product-info.php:
|
1283 |
msgid "After product title"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/class-wcj-product-info.php:
|
1287 |
msgid "Inside single product summary"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/class-wcj-product-info.php:
|
1291 |
msgid "Before single product summary"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: includes/class-wcj-product-info.php:
|
1295 |
msgid "After single product summary"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: includes/class-wcj-product-info.php:
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: includes/class-wcj-product-info.php:
|
1303 |
-
|
1304 |
-
msgid "Product Info"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/class-wcj-product-info.php:
|
1308 |
-
|
|
|
|
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/class-wcj-product-info.php:
|
1312 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: includes/class-wcj-product-info.php:
|
1316 |
-
msgid "
|
|
|
|
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/class-wcj-product-info.php:
|
1320 |
-
msgid "
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/class-wcj-product-info.php:
|
1324 |
-
#: includes/class-wcj-product-info.php:
|
1325 |
-
msgid "
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: includes/class-wcj-product-info.php:
|
1329 |
-
|
1330 |
-
msgid "Position"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: includes/class-wcj-product-info.php:
|
1334 |
-
|
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:
|
1342 |
-
msgid "
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: includes/class-wcj-product-info.php:
|
1346 |
-
msgid "Product
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/class-wcj-product-info.php:
|
1350 |
-
|
|
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/class-wcj-product-info.php:
|
1354 |
-
|
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:
|
1360 |
-
|
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:
|
1369 |
-
|
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:
|
1375 |
-
msgid "
|
|
|
|
|
|
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: includes/class-wcj-product-info.php:
|
1379 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: includes/class-wcj-product-info.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1383 |
msgid "Related Products Options"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: includes/class-wcj-product-info.php:
|
1387 |
msgid "Related Products Number"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: includes/class-wcj-product-info.php:
|
1391 |
msgid "Related Products Columns"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: includes/class-wcj-product-info.php:
|
1395 |
msgid "Order by"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: includes/class-wcj-product-info.php:
|
1399 |
msgid "Random"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: includes/class-wcj-product-info.php:
|
1403 |
msgid "Date"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: includes/class-wcj-product-info.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1407 |
msgid "Order"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: includes/class-wcj-product-info.php:
|
1411 |
msgid "Ignored if order by \"Random\" is selected above."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: includes/class-wcj-product-info.php:
|
1415 |
msgid "Ascending"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: includes/class-wcj-product-info.php:
|
1419 |
msgid "Descending"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: includes/class-wcj-product-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1423 |
msgid "Product Listings Options"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: includes/class-wcj-product-listings.php:
|
1427 |
-
#: includes/class-wcj-product-listings.php:
|
1428 |
msgid "Product Listings"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: includes/class-wcj-product-listings.php:
|
1432 |
msgid "Enable the Product Listings feature"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: includes/class-wcj-product-listings.php:
|
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:
|
1442 |
msgid "Shop Page Display Options"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: includes/class-wcj-product-listings.php:
|
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:
|
1453 |
msgid "Categories Count"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: includes/class-wcj-product-listings.php:
|
1457 |
-
#: includes/class-wcj-product-listings.php:
|
1458 |
msgid "Hide categories count on shop page"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: includes/class-wcj-product-listings.php:
|
1462 |
msgid "Exclude Categories"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: includes/class-wcj-product-listings.php:
|
1466 |
-
#: includes/class-wcj-product-listings.php:
|
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:
|
1474 |
-
#: includes/class-wcj-product-listings.php:
|
1475 |
msgid "Hide Empty"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: includes/class-wcj-product-listings.php:
|
1479 |
-
#: includes/class-wcj-product-listings.php:
|
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:
|
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:
|
1495 |
msgid "Subcategories Count"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: includes/class-wcj-product-listings.php:
|
1499 |
-
#: includes/class-wcj-product-listings.php:
|
1500 |
msgid "Hide subcategories count on category pages"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: includes/class-wcj-product-listings.php:
|
1504 |
msgid "Exclude Subcategories"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: includes/class-wcj-product-listings.php:
|
1508 |
-
#: includes/class-wcj-product-listings.php:
|
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:
|
1516 |
-
#: includes/class-wcj-product-listings.php:
|
1517 |
msgid "Hide empty subcategories on category pages"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: includes/class-wcj-product-listings.php:
|
|
|
|
|
|
|
|
|
|
|
1521 |
msgid "WooJetpack: Categories Count"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: includes/class-wcj-product-listings.php:
|
1525 |
msgid "WooJetpack: Exclude Categories on Shop Page"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: includes/class-wcj-product-listings.php:
|
1529 |
-
#: includes/class-wcj-product-listings.php:
|
1530 |
msgid "WooJetpack: Hide Empty"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: includes/class-wcj-product-listings.php:
|
|
|
|
|
|
|
|
|
|
|
1534 |
msgid "WooJetpack: Subcategories Count"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: includes/class-wcj-product-listings.php:
|
1538 |
msgid "WooJetpack: Exclude Subcategories on Category Pages"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: includes/class-wcj-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1542 |
msgid "Smart Reports"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: includes/class-wcj-reports.php:
|
|
|
|
|
|
|
|
|
1546 |
msgid "Reports Options"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: includes/class-wcj-reports.php:
|
|
|
1550 |
msgid "Reports"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: includes/class-wcj-reports.php:
|
1554 |
msgid "Enable the Reports feature"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: includes/class-wcj-reports.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1558 |
msgid "Product"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: includes/class-wcj-reports.php:
|
1562 |
msgid "Price"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: includes/class-wcj-reports.php:
|
1566 |
msgid "Stock"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: includes/class-wcj-reports.php:
|
1570 |
msgid "Stock price"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: includes/class-wcj-reports.php:
|
1574 |
msgid "Last sale"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: includes/class-wcj-reports.php:
|
1578 |
msgid "Sales in last %s days"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: includes/class-wcj-reports.php:
|
1582 |
msgid "Total sales"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: includes/class-wcj-reports.php:
|
1586 |
msgid "No sales yet"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: includes/class-wcj-reports.php:
|
1590 |
msgid "Total current stock value"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: includes/class-wcj-reports.php:
|
1594 |
msgid "Total stock value"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: includes/class-wcj-reports.php:
|
1598 |
msgid "Product stock value average"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: includes/class-wcj-reports.php:
|
1602 |
msgid "Product stock average"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: includes/class-wcj-reports.php:
|
1606 |
msgid "All Products on Stock"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: includes/class-wcj-reports.php:
|
1610 |
-
msgid "Report shows all products that are on stock."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: includes/class-wcj-reports.php:
|
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 ""
|
@@ -1654,61 +2172,82 @@ msgstr ""
|
|
1654 |
msgid "Hide shipping"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/class-wcj-sorting.php:
|
1658 |
msgid "WooJetpack: Remove All Sorting"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/class-wcj-sorting.php:
|
1662 |
msgid "Completely remove sorting from the shop front end"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: includes/class-wcj-sorting.php:
|
1666 |
msgid "Sorting Options"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: includes/class-wcj-sorting.php:
|
1670 |
msgid "Sorting"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: includes/class-wcj-sorting.php:
|
1674 |
msgid "Enable the Sorting feature"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: includes/class-wcj-sorting.php:
|
1678 |
msgid "Add more sorting options or remove all sorting including default."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: includes/class-wcj-sorting.php:
|
1682 |
msgid "Remove All Sorting"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: includes/class-wcj-sorting.php:
|
1686 |
msgid "Remove all sorting (including WooCommerce default)"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: includes/class-wcj-sorting.php:
|
1690 |
msgid "Add More Sorting"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: includes/class-wcj-sorting.php:
|
1694 |
-
msgid "Sort by Name
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: includes/class-wcj-sorting.php:
|
1698 |
-
|
1699 |
-
msgid "Text visible at front end"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: includes/class-wcj-sorting.php:
|
1703 |
-
msgid "Sort by
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: includes/class-wcj-sorting.php:
|
1707 |
-
msgid "Sort by
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: includes/class-wcj-sorting.php:
|
1711 |
-
msgid "Sort by
|
1712 |
msgstr ""
|
1713 |
|
1714 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:50
|
@@ -1814,7 +2353,7 @@ msgstr ""
|
|
1814 |
msgid "Enable Custom Shipping"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#. #-#-#-#-# plugin.pot (WooCommerce Jetpack 1.
|
1818 |
#. Plugin Name of the plugin/theme
|
1819 |
#: woocommerce-jetpack.php:94
|
1820 |
msgid "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.9.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/woocommerce-jetpack\n"
|
7 |
+
"POT-Creation-Date: 2014-11-13 01:22:15+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
msgid "Jetpack"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:38
|
20 |
msgid "Dashboard"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:71
|
24 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:78
|
25 |
+
msgid "Select All"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:72
|
29 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:79
|
30 |
+
msgid "Feature"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:73
|
34 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:80
|
35 |
+
#: includes/admin/tools/class-wcj-tools.php:69
|
36 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:63
|
37 |
+
msgid "Description"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: includes/admin/settings/class-wc-settings-jetpack.php:141
|
41 |
msgid "WooCommerce Jetpack Dashboard"
|
42 |
msgstr ""
|
43 |
|
65 |
msgid "Status"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/class-wcj-add-to-cart.php:151
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid "Add to Cart Options"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/class-wcj-add-to-cart.php:154
|
73 |
+
#: includes/class-wcj-add-to-cart.php:372
|
74 |
msgid "Add to Cart"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: includes/class-wcj-add-to-cart.php:155
|
78 |
msgid "Enable the Add to Cart feature"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: includes/class-wcj-add-to-cart.php:156
|
82 |
msgid ""
|
83 |
"Set any url to redirect to on add to cart. Change text for Add to cart "
|
84 |
"button by product type. Display \"Already in cart\" instead of \"Add to cart"
|
85 |
"\" button if current product is already in cart."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: includes/class-wcj-add-to-cart.php:168
|
89 |
msgid "Add to Cart Redirect Options"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/class-wcj-add-to-cart.php:168
|
93 |
msgid ""
|
94 |
"This section lets you set any url to redirect to after successfully adding "
|
95 |
"product to cart. Leave empty to redirect to checkout page (skipping the cart "
|
96 |
"page)."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: includes/class-wcj-add-to-cart.php:171
|
100 |
msgid "Redirect"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/class-wcj-add-to-cart.php:172
|
104 |
+
#: includes/class-wcj-add-to-cart.php:194 includes/class-wcj-cart.php:135
|
105 |
+
#: includes/class-wcj-cart.php:168 includes/class-wcj-orders.php:429
|
106 |
+
#: includes/class-wcj-orders.php:546 includes/class-wcj-orders.php:559
|
107 |
+
#: includes/class-wcj-price-labels.php:602
|
108 |
+
#: includes/class-wcj-product-info.php:427
|
109 |
+
#: includes/class-wcj-product-info.php:546
|
110 |
+
#: includes/class-wcj-product-info.php:583
|
111 |
+
#: includes/class-wcj-product-info.php:627
|
112 |
+
#: includes/class-wcj-product-input-fields.php:99
|
113 |
+
#: includes/class-wcj-sorting.php:220
|
114 |
msgid "Enable"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: includes/class-wcj-add-to-cart.php:179
|
118 |
msgid "Redirect URL"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: includes/class-wcj-add-to-cart.php:180
|
122 |
msgid "Redirect URL. Leave empty to redirect to checkout."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: includes/class-wcj-add-to-cart.php:190
|
126 |
msgid "Add to Cart Button Text Options"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: includes/class-wcj-add-to-cart.php:193
|
130 |
msgid "Add to cart text"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/class-wcj-add-to-cart.php:204
|
134 |
msgid "Simple product"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/class-wcj-add-to-cart.php:209
|
138 |
msgid "Variable product"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/class-wcj-add-to-cart.php:214
|
142 |
msgid "External product"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/class-wcj-add-to-cart.php:219
|
146 |
msgid "Grouped product"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/class-wcj-add-to-cart.php:224
|
150 |
msgid "Other product"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/class-wcj-add-to-cart.php:237
|
154 |
+
msgid "Single product view."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: includes/class-wcj-add-to-cart.php:238
|
158 |
+
#: includes/class-wcj-add-to-cart.php:258
|
159 |
+
#: includes/class-wcj-add-to-cart.php:316
|
160 |
+
#: includes/class-wcj-add-to-cart.php:342
|
161 |
+
#: includes/class-wcj-payment-gateways.php:172
|
162 |
+
msgid "Leave blank to disable."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/class-wcj-add-to-cart.php:238
|
166 |
+
#: includes/class-wcj-add-to-cart.php:258
|
167 |
+
#: includes/class-wcj-add-to-cart.php:318
|
168 |
+
#: includes/class-wcj-add-to-cart.php:344 includes/class-wcj-sorting.php:228
|
169 |
+
#: includes/class-wcj-sorting.php:238 includes/class-wcj-sorting.php:248
|
170 |
+
#: includes/class-wcj-sorting.php:258 includes/class-wcj-sorting.php:268
|
171 |
+
#: includes/class-wcj-sorting.php:278
|
172 |
+
msgid "Default: "
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/class-wcj-add-to-cart.php:257
|
176 |
+
msgid "Product category (archive) view."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/class-wcj-add-to-cart.php:281
|
180 |
+
msgid "Products with price set to 0 (i.e. free). Single product view."
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/class-wcj-add-to-cart.php:282
|
184 |
+
#: includes/class-wcj-add-to-cart.php:291
|
185 |
+
msgid "Leave blank to disable. Default: Add to cart"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/class-wcj-add-to-cart.php:284
|
189 |
+
#: includes/class-wcj-add-to-cart.php:293
|
190 |
+
#: includes/class-wcj-add-to-cart.php:318
|
191 |
+
#: includes/class-wcj-add-to-cart.php:320
|
192 |
+
#: includes/class-wcj-add-to-cart.php:344
|
193 |
+
#: includes/class-wcj-add-to-cart.php:346
|
194 |
+
msgid "Add to cart"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/class-wcj-add-to-cart.php:290
|
198 |
+
msgid ""
|
199 |
+
"Products with price set to 0 (i.e. free). Product category (archive) view."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/class-wcj-add-to-cart.php:300
|
203 |
+
msgid "Products with empty price. Product category (archive) view."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/class-wcj-add-to-cart.php:301
|
207 |
+
msgid "Leave blank to disable. Default: Read More"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/class-wcj-add-to-cart.php:303
|
211 |
+
msgid "Read More"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/class-wcj-add-to-cart.php:315
|
215 |
+
msgid "Already in cart. Single product view."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/class-wcj-add-to-cart.php:317
|
219 |
+
#: includes/class-wcj-add-to-cart.php:343
|
220 |
+
msgid "Try: "
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: includes/class-wcj-add-to-cart.php:317
|
224 |
+
#: includes/class-wcj-add-to-cart.php:343
|
225 |
+
msgid "Already in cart - Add Again?"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: includes/class-wcj-add-to-cart.php:341
|
229 |
+
msgid "Already in cart. Product category (archive) view."
|
230 |
msgstr ""
|
231 |
|
232 |
#: includes/class-wcj-call-for-price.php:72
|
456 |
msgid "Email Forwarding Options"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/class-wcj-general.php:70 includes/class-wcj-pdf-invoices.php:1083
|
460 |
msgid "General Options"
|
461 |
msgstr ""
|
462 |
|
489 |
msgstr ""
|
490 |
|
491 |
#: includes/class-wcj-old-slugs.php:49 includes/class-wcj-orders.php:110
|
492 |
+
#: includes/class-wcj-orders.php:262 includes/class-wcj-price-labels.php:116
|
493 |
msgid "enabled"
|
494 |
msgstr ""
|
495 |
|
496 |
#: includes/class-wcj-old-slugs.php:51 includes/class-wcj-orders.php:112
|
497 |
+
#: includes/class-wcj-orders.php:264 includes/class-wcj-price-labels.php:118
|
498 |
msgid "disabled"
|
499 |
msgstr ""
|
500 |
|
518 |
msgid "Enable the Remove Old Product Slugs feature"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/class-wcj-old-slugs.php:91
|
522 |
+
msgid ""
|
523 |
+
"Remove old product slugs. When enabled, the tool is accessible through <a "
|
524 |
+
"href=\"%sadmin.php?page=wcj-tools&tab=old_slugs\">WooCommerce > Jetpack "
|
525 |
+
"Tools > Remove Old Slugs</a>."
|
526 |
msgstr ""
|
527 |
|
528 |
#: includes/class-wcj-old-slugs.php:164
|
577 |
msgstr ""
|
578 |
|
579 |
#: includes/class-wcj-orders.php:113 includes/class-wcj-orders.php:125
|
580 |
+
#: includes/class-wcj-orders.php:555 includes/class-wcj-orders.php:558
|
581 |
msgid "Custom Statuses"
|
582 |
msgstr ""
|
583 |
|
590 |
msgstr ""
|
591 |
|
592 |
#: includes/class-wcj-orders.php:157
|
593 |
+
msgid "The length of status slug must be 17 or less characters."
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/class-wcj-orders.php:159
|
597 |
msgid "Status label is empty. Status not added."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/class-wcj-orders.php:165
|
601 |
msgid "Duplicate slug. Status not added."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/class-wcj-orders.php:171
|
605 |
msgid "New status have been successfully added!"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/class-wcj-orders.php:173
|
609 |
msgid "Status was not added."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/class-wcj-orders.php:189
|
613 |
msgid "Status have been successfully deleted."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/class-wcj-orders.php:191
|
617 |
msgid "Delete failed."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/class-wcj-orders.php:194
|
621 |
msgid "WooCommerce Jetpack - Custom Statuses"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: includes/class-wcj-orders.php:195
|
625 |
msgid ""
|
626 |
"The tool lets you add or delete any custom status for WooCommerce orders."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: includes/class-wcj-orders.php:197
|
630 |
msgid "Statuses"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: includes/class-wcj-orders.php:200
|
634 |
msgid "Slug"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: includes/class-wcj-orders.php:201 includes/class-wcj-orders.php:226
|
638 |
msgid "Label"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: includes/class-wcj-orders.php:203 includes/class-wcj-orders.php:213
|
642 |
msgid "Delete"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: includes/class-wcj-orders.php:225
|
646 |
msgid "Slug (without wc- prefix)"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: includes/class-wcj-orders.php:265
|
650 |
msgid "Orders Renumerate"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: includes/class-wcj-orders.php:267
|
654 |
msgid "Tool renumerates all orders."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: includes/class-wcj-orders.php:277
|
658 |
msgid "Renumerate orders"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: includes/class-wcj-orders.php:292
|
662 |
msgid "WooCommerce Jetpack - Renumerate Orders"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: includes/class-wcj-orders.php:293
|
666 |
msgid ""
|
667 |
"The tool renumerates all orders. Press the button below to renumerate all "
|
668 |
"existing orders starting from order counter settings in WooCommerce > "
|
669 |
"Settings > Jetpack > Order Numbers."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: includes/class-wcj-orders.php:412
|
673 |
msgid "Orders Options"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/class-wcj-orders.php:415 includes/class-wcj-orders.php:577
|
677 |
msgid "Orders"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/class-wcj-orders.php:416
|
681 |
msgid "Enable the Orders feature"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/class-wcj-orders.php:417
|
685 |
msgid ""
|
686 |
"Sequential order numbering, custom order number prefix and number width. "
|
687 |
"Minimum order amount."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: includes/class-wcj-orders.php:425 includes/class-wcj-orders.php:428
|
691 |
msgid "Order Numbers"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/class-wcj-orders.php:425
|
695 |
msgid ""
|
696 |
"This section lets you enable sequential order numbering, set custom number "
|
697 |
"prefix and width."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/class-wcj-orders.php:430
|
701 |
msgid "This will enable sequential order numbering and custom prefixes."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/class-wcj-orders.php:437
|
705 |
msgid "Next Order Number"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/class-wcj-orders.php:438
|
709 |
msgid "Next new order will be given this number."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/class-wcj-orders.php:445
|
713 |
msgid "Order Number Custom Prefix"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/class-wcj-orders.php:447
|
717 |
msgid ""
|
718 |
"Prefix before order number (optional). This will change the prefixes for all "
|
719 |
"existing orders."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: includes/class-wcj-orders.php:456
|
723 |
msgid "Order Number Date Prefix"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/class-wcj-orders.php:458
|
727 |
msgid ""
|
728 |
"Date prefix before order number (optional). This will change the prefixes "
|
729 |
"for all existing orders. Value is passed directly to PHP `date` function, so "
|
732 |
"d- or mdy."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: includes/class-wcj-orders.php:467
|
736 |
msgid "Order Number Width"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: includes/class-wcj-orders.php:469
|
740 |
msgid ""
|
741 |
"Minimum width of number without prefix (zeros will be added to the left "
|
742 |
"side). This will change the minimum width of order number for all existing "
|
744 |
"Leave zero to disable."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/class-wcj-orders.php:478
|
748 |
+
msgid "Order Number Custom Suffix"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: includes/class-wcj-orders.php:480
|
752 |
+
msgid ""
|
753 |
+
"Suffix before order number (optional). This will change the suffixes for all "
|
754 |
+
"existing orders."
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: includes/class-wcj-orders.php:490
|
758 |
msgid "Order Minimum Amount"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: includes/class-wcj-orders.php:490
|
762 |
msgid "This section lets you set minimum order amount."
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: includes/class-wcj-orders.php:493
|
766 |
msgid "Amount"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/class-wcj-orders.php:494
|
770 |
msgid "Minimum order amount. Set to 0 to disable."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/class-wcj-orders.php:501
|
774 |
msgid "Error message"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/class-wcj-orders.php:503 includes/class-wcj-orders.php:523
|
778 |
msgid ""
|
779 |
"Message to customer if order is below minimum amount. Default: You must have "
|
780 |
"an order with a minimum of %s to place your order, your current order total "
|
781 |
"is %s."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: includes/class-wcj-orders.php:513
|
785 |
msgid "Add notice to cart page also"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/class-wcj-orders.php:514
|
789 |
msgid "Add"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: includes/class-wcj-orders.php:521
|
793 |
msgid "Message on cart page"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/class-wcj-orders.php:533
|
797 |
msgid ""
|
798 |
"Stop customer from seeing the Checkout page if minimum amount not reached."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/class-wcj-orders.php:534
|
802 |
msgid "Redirect back to Cart page"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/class-wcj-orders.php:542
|
806 |
msgid "Orders Auto-Complete"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: includes/class-wcj-orders.php:542
|
810 |
msgid "This section lets you enable orders auto-complete function."
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: includes/class-wcj-orders.php:545
|
814 |
msgid "Auto-complete all WooCommerce orders"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: includes/class-wcj-orders.php:547
|
818 |
msgid ""
|
819 |
"E.g. if you sell digital products then you are not shipping anything and you "
|
820 |
"may want auto-complete all your orders."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: includes/class-wcj-orders.php:555
|
824 |
msgid "This section lets you enable custom statuses tool."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/class-wcj-orders.php:560
|
828 |
+
msgid ""
|
829 |
+
"When enabled, the Custom Statuses tool is accessible through <a href="
|
830 |
+
"\"%sadmin.php?page=wcj-tools&tab=custom_statuses\">WooCommerce > Jetpack "
|
831 |
+
"Tools > Custom Statuses</a>."
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: includes/class-wcj-payment-gateways.php:118
|
835 |
msgid "WooCommerce Jetpack: Default WooCommerce Payment Gateways Options"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: includes/class-wcj-payment-gateways.php:118
|
839 |
+
#: includes/class-wcj-payment-gateways.php:315
|
840 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:86
|
841 |
msgid ""
|
842 |
"If you want to show an image next to the gateway's name on the frontend, "
|
843 |
"enter a URL to an image."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: includes/class-wcj-payment-gateways.php:151
|
847 |
+
#: includes/class-wcj-payment-gateways.php:342
|
848 |
+
msgid "Payment Gateways Fees Options"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: includes/class-wcj-payment-gateways.php:153
|
852 |
+
msgid "This section lets you set extra fees for payment gateways."
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: includes/class-wcj-payment-gateways.php:154
|
856 |
+
msgid "Fees are applied BEFORE taxes."
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/class-wcj-payment-gateways.php:171
|
860 |
+
msgid "Fee title to show to customer."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/class-wcj-payment-gateways.php:180
|
864 |
+
msgid "Fee type."
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/class-wcj-payment-gateways.php:181
|
868 |
+
msgid "Percent or fixed value."
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: includes/class-wcj-payment-gateways.php:188
|
872 |
+
msgid "Percent"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: includes/class-wcj-payment-gateways.php:189
|
876 |
+
msgid "Fixed"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: includes/class-wcj-payment-gateways.php:195
|
880 |
+
msgid "Fee value."
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: includes/class-wcj-payment-gateways.php:196
|
884 |
+
msgid "The value."
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: includes/class-wcj-payment-gateways.php:230
|
888 |
+
msgid "Payment Gateways Attach PDF Invoice Options"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
#: includes/class-wcj-payment-gateways.php:230
|
892 |
+
msgid ""
|
893 |
+
"This section lets you choose when to attach PDF invoice to customers emails."
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: includes/class-wcj-payment-gateways.php:240
|
897 |
+
msgid "Attach PDF invoice."
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: includes/class-wcj-payment-gateways.php:283
|
901 |
msgid "Payment Gateways Options"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/class-wcj-payment-gateways.php:286
|
905 |
+
#: includes/class-wcj-payment-gateways.php:362
|
906 |
msgid "Payment Gateways"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: includes/class-wcj-payment-gateways.php:287
|
910 |
msgid "Enable the Payment Gateways feature"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/class-wcj-payment-gateways.php:288
|
914 |
msgid ""
|
915 |
"Add custom payment gateway, change icons (images) for all default "
|
916 |
"WooCommerce payment gateways."
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/class-wcj-payment-gateways.php:296
|
920 |
msgid "Custom Payment Gateways Options"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/class-wcj-payment-gateways.php:299
|
924 |
msgid "Number of Gateways"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/class-wcj-payment-gateways.php:301
|
928 |
msgid ""
|
929 |
"Number of custom payments gateways to be added. All settings for each new "
|
930 |
"gateway are in WooCommerce > Settings > Checkout."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: includes/class-wcj-payment-gateways.php:315
|
934 |
msgid "Default WooCommerce Payment Gateways Options"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: includes/class-wcj-payment-gateways.php:342
|
938 |
+
msgid ""
|
939 |
+
"This section lets you enable extra fees for payment gateways. When enabled "
|
940 |
+
"all options are added to WooCommerce > Settings > Checkout"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: includes/class-wcj-payment-gateways.php:345
|
944 |
+
msgid "Payment Gateways Fees"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: includes/class-wcj-payment-gateways.php:346
|
948 |
+
msgid "Enable the Payment Gateways Fees"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: includes/class-wcj-pdf-invoices.php:83
|
952 |
+
#: includes/class-wcj-pdf-invoices.php:88
|
953 |
msgid "Invoice"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/class-wcj-pdf-invoices.php:636
|
957 |
+
#: includes/class-wcj-pdf-invoices.php:642
|
958 |
msgid "PDF Invoice"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: includes/class-wcj-pdf-invoices.php:667
|
962 |
msgid "PDF Invoices Options"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: includes/class-wcj-pdf-invoices.php:670
|
966 |
+
#: includes/class-wcj-pdf-invoices.php:1150
|
967 |
msgid "PDF Invoices"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: includes/class-wcj-pdf-invoices.php:671
|
971 |
msgid "Enable the PDF Invoices feature"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: includes/class-wcj-pdf-invoices.php:672
|
975 |
msgid "Add PDF invoices for the store owners and for the customers."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/class-wcj-pdf-invoices.php:680
|
979 |
msgid "Invoice Header"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: includes/class-wcj-pdf-invoices.php:680
|
983 |
msgid ""
|
984 |
"This section lets you set texts for required invoice number and date, and "
|
985 |
"optional logo, header text, invoice due and fulfillment dates."
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: includes/class-wcj-pdf-invoices.php:683
|
989 |
msgid "Your Logo URL"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: includes/class-wcj-pdf-invoices.php:684
|
993 |
msgid ""
|
994 |
"Enter a URL to an image you want to show in the invoice's header. Upload "
|
995 |
"your image using the <a href=\"/wp-admin/media-new.php\">media uploader</a>."
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/class-wcj-pdf-invoices.php:685
|
999 |
+
#: includes/class-wcj-pdf-invoices.php:694
|
1000 |
+
#: includes/class-wcj-pdf-invoices.php:714
|
1001 |
+
#: includes/class-wcj-pdf-invoices.php:724
|
1002 |
+
#: includes/class-wcj-pdf-invoices.php:743
|
1003 |
+
#: includes/class-wcj-pdf-invoices.php:763
|
1004 |
+
#: includes/class-wcj-pdf-invoices.php:836
|
1005 |
+
#: includes/class-wcj-pdf-invoices.php:871
|
1006 |
+
#: includes/class-wcj-pdf-invoices.php:922
|
1007 |
+
#: includes/class-wcj-pdf-invoices.php:931
|
1008 |
+
#: includes/class-wcj-pdf-invoices.php:940
|
1009 |
+
#: includes/class-wcj-pdf-invoices.php:949
|
1010 |
+
#: includes/class-wcj-pdf-invoices.php:958
|
1011 |
+
#: includes/class-wcj-pdf-invoices.php:967
|
1012 |
+
#: includes/class-wcj-pdf-invoices.php:1047
|
1013 |
+
#: includes/class-wcj-pdf-invoices.php:1056
|
1014 |
msgid "Leave blank to disable"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: includes/class-wcj-pdf-invoices.php:693
|
1018 |
msgid "Header Text"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: includes/class-wcj-pdf-invoices.php:695
|
1022 |
msgid "Default: INVOICE"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/class-wcj-pdf-invoices.php:697
|
1026 |
msgid "INVOICE"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/class-wcj-pdf-invoices.php:703
|
1030 |
msgid "Invoice Number"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/class-wcj-pdf-invoices.php:704
|
1034 |
msgid "Default: Invoice number"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: includes/class-wcj-pdf-invoices.php:706
|
1038 |
msgid "Invoice number"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: includes/class-wcj-pdf-invoices.php:712
|
1042 |
+
msgid "Order Date"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: includes/class-wcj-pdf-invoices.php:713
|
1046 |
+
msgid "Default: Order date"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: includes/class-wcj-pdf-invoices.php:716
|
1050 |
+
msgid "Order date"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: includes/class-wcj-pdf-invoices.php:722
|
1054 |
+
msgid "Order Time"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: includes/class-wcj-pdf-invoices.php:723
|
1058 |
+
msgid "Default: Order time"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: includes/class-wcj-pdf-invoices.php:726
|
1062 |
+
msgid "Order time"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: includes/class-wcj-pdf-invoices.php:732
|
1066 |
msgid "Invoice Date"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: includes/class-wcj-pdf-invoices.php:733
|
1070 |
msgid "Default: Invoice date"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/class-wcj-pdf-invoices.php:735
|
1074 |
msgid "Invoice date"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: includes/class-wcj-pdf-invoices.php:742
|
1078 |
msgid "Default: Invoice due date"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: includes/class-wcj-pdf-invoices.php:745
|
1082 |
msgid "Invoice due date"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: includes/class-wcj-pdf-invoices.php:752
|
1086 |
+
#: includes/class-wcj-pdf-invoices.php:772
|
1087 |
msgid "days"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/class-wcj-pdf-invoices.php:762
|
1091 |
msgid "Default: Invoice fulfillment date"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/class-wcj-pdf-invoices.php:765
|
1095 |
msgid "Invoice fulfillment date"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/class-wcj-pdf-invoices.php:781
|
1099 |
+
msgid "Additional Header"
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: includes/class-wcj-pdf-invoices.php:782
|
1103 |
+
msgid ""
|
1104 |
+
"Additional header - will be displayed above all data on invoice. You can use "
|
1105 |
+
"html and/or shortcodes here."
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: includes/class-wcj-pdf-invoices.php:791
|
1109 |
msgid "Seller and Buyer Info"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/class-wcj-pdf-invoices.php:794
|
1113 |
+
#: includes/class-wcj-pdf-invoices.php:797
|
1114 |
msgid "Seller"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/class-wcj-pdf-invoices.php:803
|
1118 |
msgid "Your business information"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/class-wcj-pdf-invoices.php:805
|
1122 |
msgid "New lines are added automatically."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/class-wcj-pdf-invoices.php:807
|
1126 |
msgid "<strong>Company Name</strong>"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: includes/class-wcj-pdf-invoices.php:813
|
1130 |
+
#: includes/class-wcj-pdf-invoices.php:816
|
1131 |
msgid "Buyer"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/class-wcj-pdf-invoices.php:823
|
1135 |
+
#: includes/class-wcj-pdf-invoices.php:829
|
1136 |
msgid "Items"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/class-wcj-pdf-invoices.php:826
|
1140 |
msgid "Items Table Heading Text"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/class-wcj-pdf-invoices.php:835
|
1144 |
msgid "Shipping as Item"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/class-wcj-pdf-invoices.php:837
|
1148 |
msgid "Display shipping as item"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: includes/class-wcj-pdf-invoices.php:855
|
1152 |
+
#: includes/class-wcj-pdf-invoices.php:863
|
1153 |
msgid "Add shipping method info"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/class-wcj-pdf-invoices.php:862
|
1157 |
msgid "Do not add shipping method info"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/class-wcj-pdf-invoices.php:864
|
1161 |
msgid "Replace with shipping method info"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/class-wcj-pdf-invoices.php:870
|
1165 |
msgid "Discount as Item"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/class-wcj-pdf-invoices.php:872
|
1169 |
msgid "Display discount as item"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/class-wcj-pdf-invoices.php:882
|
1173 |
msgid "Items Columns"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/class-wcj-pdf-invoices.php:882
|
1177 |
msgid ""
|
1178 |
"This section lets you set column names in invoice items table. You can "
|
1179 |
"disable some columns by leaving blank column name."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/class-wcj-pdf-invoices.php:885
|
1183 |
+
#: includes/class-wcj-pdf-invoices.php:888
|
1184 |
msgid "Nr."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/class-wcj-pdf-invoices.php:894
|
1188 |
+
#: includes/class-wcj-pdf-invoices.php:897
|
1189 |
msgid "Item Name"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/class-wcj-pdf-invoices.php:903
|
1193 |
+
msgid "Item Name Additional Info"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: includes/class-wcj-pdf-invoices.php:904
|
1197 |
+
msgid ""
|
1198 |
+
"Here you can add more info to item's name column (e.g. sku). Default is "
|
1199 |
+
"(SKU: %sku%)"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/class-wcj-pdf-invoices.php:906
|
1203 |
+
msgid "(SKU: %sku%)"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: includes/class-wcj-pdf-invoices.php:912
|
1207 |
+
#: includes/class-wcj-pdf-invoices.php:915
|
1208 |
msgid "Qty"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/class-wcj-pdf-invoices.php:921
|
1212 |
msgid "Single Item Price (TAX excl.)"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/class-wcj-pdf-invoices.php:924
|
1216 |
msgid "Price (TAX excl.)"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: includes/class-wcj-pdf-invoices.php:930
|
1220 |
msgid "Single Item TAX"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: includes/class-wcj-pdf-invoices.php:933
|
1224 |
msgid "TAX"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/class-wcj-pdf-invoices.php:939
|
1228 |
msgid "Single Item Price (TAX incl.)"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/class-wcj-pdf-invoices.php:942
|
1232 |
msgid "Price (TAX incl.)"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/class-wcj-pdf-invoices.php:948
|
1236 |
+
#: includes/class-wcj-pdf-invoices.php:951
|
1237 |
msgid "Sum (TAX excl.)"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/class-wcj-pdf-invoices.php:957
|
1241 |
msgid "Tax Percent"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/class-wcj-pdf-invoices.php:960
|
1245 |
msgid "Taxes %"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/class-wcj-pdf-invoices.php:966
|
1249 |
+
#: includes/class-wcj-pdf-invoices.php:969
|
1250 |
+
#: includes/class-wcj-pdf-invoices.php:1027
|
1251 |
msgid "Taxes"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/class-wcj-pdf-invoices.php:975
|
1255 |
+
#: includes/class-wcj-pdf-invoices.php:978
|
1256 |
msgid "Sum (TAX incl.)"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/class-wcj-pdf-invoices.php:985
|
1260 |
msgid "Totals"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/class-wcj-pdf-invoices.php:985
|
1264 |
msgid "This section lets you set texts for totals table."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/class-wcj-pdf-invoices.php:988
|
1268 |
+
#: includes/class-wcj-pdf-invoices.php:991
|
1269 |
msgid "Order Subtotal"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/class-wcj-pdf-invoices.php:989
|
1273 |
msgid "Order Subtotal = Total - Taxes - Shipping - Discounts"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/class-wcj-pdf-invoices.php:997
|
1277 |
msgid "Order Shipping Price"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/class-wcj-pdf-invoices.php:1000
|
1281 |
+
#: includes/class-wcj-shipping.php:155 includes/class-wcj-shipping.php:200
|
1282 |
msgid "Shipping"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/class-wcj-pdf-invoices.php:1006
|
1286 |
msgid "Total Discount"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/class-wcj-pdf-invoices.php:1009
|
1290 |
msgid "Discount"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/class-wcj-pdf-invoices.php:1015
|
1294 |
+
#: includes/class-wcj-pdf-invoices.php:1018
|
1295 |
msgid "Order Total (TAX excl.)"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/class-wcj-pdf-invoices.php:1016
|
1299 |
msgid ""
|
1300 |
"Order Total (TAX excl.) = Total - Taxes. Shown only if discount or shipping "
|
1301 |
"is not equal to zero. In other words: if \"Order Total (TAX excl.)\" not "
|
1302 |
"equal to \"Order Subtotal\""
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/class-wcj-pdf-invoices.php:1024
|
1306 |
msgid "Order Total Taxes"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/class-wcj-pdf-invoices.php:1033
|
1310 |
+
#: includes/class-wcj-pdf-invoices.php:1036
|
1311 |
msgid "Order Total"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: includes/class-wcj-pdf-invoices.php:1043
|
1315 |
msgid "Footer"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: includes/class-wcj-pdf-invoices.php:1046
|
1319 |
+
#: includes/class-wcj-pdf-invoices.php:1049
|
1320 |
msgid "Payment Method"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/class-wcj-pdf-invoices.php:1055
|
1324 |
+
#: includes/class-wcj-pdf-invoices.php:1058
|
1325 |
msgid "Shipping Method"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: includes/class-wcj-pdf-invoices.php:1064
|
1329 |
+
#: includes/class-wcj-pdf-invoices.php:1067
|
1330 |
+
msgid "Shipping Address"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/class-wcj-pdf-invoices.php:1065
|
1334 |
+
msgid ""
|
1335 |
+
"Will be displayed only if customer's shipping address differs from billing "
|
1336 |
+
"address. Leave blank to disable"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: includes/class-wcj-pdf-invoices.php:1073
|
1340 |
msgid "Additional Footer"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: includes/class-wcj-pdf-invoices.php:1074
|
1344 |
+
msgid ""
|
1345 |
+
"Additional footer - will be displayed below all other data on invoice. You "
|
1346 |
+
"can use html and/or shortcodes here."
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: includes/class-wcj-pdf-invoices.php:1086
|
1350 |
msgid "Font size"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/class-wcj-pdf-invoices.php:1087
|
1354 |
msgid "Default: 8"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/class-wcj-pdf-invoices.php:1095
|
1358 |
msgid "CSS"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: includes/class-wcj-pdf-invoices.php:1110
|
1362 |
msgid "PDF Invoices for Customers (in My Account)"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: includes/class-wcj-pdf-invoices.php:1111
|
1366 |
msgid "Enable the PDF Invoices in customers account"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: includes/class-wcj-pdf-invoices.php:1120
|
1370 |
msgid "PDF Invoices for Customers (Email attachment)"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: includes/class-wcj-pdf-invoices.php:1121
|
1374 |
msgid ""
|
1375 |
"Enable the PDF Invoices attachment files in customers email on order "
|
1376 |
"completed"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: includes/class-wcj-pdf-invoices.php:1130
|
1380 |
msgid "Enable Save as"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: includes/class-wcj-pdf-invoices.php:1131
|
1384 |
msgid "Enable save as pdf instead of view pdf"
|
1385 |
msgstr ""
|
1386 |
|
1403 |
msgstr ""
|
1404 |
|
1405 |
#: includes/class-wcj-price-labels.php:191
|
1406 |
+
msgid "Migrating (product ID "
|
1407 |
msgstr ""
|
1408 |
|
1409 |
#: includes/class-wcj-price-labels.php:192
|
1410 |
msgid "Result: "
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: includes/class-wcj-price-labels.php:214
|
1414 |
+
msgid "Found data to migrate (product ID "
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: includes/class-wcj-price-labels.php:228
|
1418 |
msgid "No data to migrate found"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: includes/class-wcj-price-labels.php:232
|
1422 |
msgid "No products found"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: includes/class-wcj-price-labels.php:237
|
1426 |
msgid ""
|
1427 |
"Press button below to copy all labels from Custom Price Labels (Pro) plugin. "
|
1428 |
"Old labels will NOT be deleted. New labels will be overwritten."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: includes/class-wcj-price-labels.php:238
|
1432 |
msgid "Migrate data"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: includes/class-wcj-price-labels.php:521
|
1436 |
msgid "Custom Price Labels Options"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: includes/class-wcj-price-labels.php:524
|
1440 |
+
#: includes/class-wcj-price-labels.php:617
|
1441 |
msgid "Custom Price Labels"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: includes/class-wcj-price-labels.php:525
|
1445 |
msgid "Enable the Custom Price Labels feature"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: includes/class-wcj-price-labels.php:526
|
1449 |
msgid "Create any custom price label for any product."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: includes/class-wcj-price-labels.php:534
|
1453 |
msgid "Global Custom Price Labels"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: includes/class-wcj-price-labels.php:534
|
1457 |
msgid "This section lets you set price labels for all products globally."
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: includes/class-wcj-price-labels.php:537
|
1461 |
msgid "Add before the price"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: includes/class-wcj-price-labels.php:538
|
1465 |
msgid "Enter text to add before all products prices. Leave blank to disable."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: includes/class-wcj-price-labels.php:549
|
1469 |
msgid "Add after the price"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: includes/class-wcj-price-labels.php:550
|
1473 |
msgid "Enter text to add after all products prices. Leave blank to disable."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: includes/class-wcj-price-labels.php:561
|
1477 |
msgid "Remove from price"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: includes/class-wcj-price-labels.php:563
|
1481 |
msgid "Enter text to remove from all products prices. Leave blank to disable."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: includes/class-wcj-price-labels.php:574
|
1485 |
msgid "Replace in price"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: includes/class-wcj-price-labels.php:575
|
1489 |
msgid "Enter text to replace in all products prices. Leave blank to disable."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: includes/class-wcj-price-labels.php:587
|
1493 |
msgid "Enter text to replace with. Leave blank to disable."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: includes/class-wcj-price-labels.php:599
|
1497 |
msgid "Migrate from Custom Price Labels (Pro) Options"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: includes/class-wcj-price-labels.php:599
|
1501 |
msgid ""
|
1502 |
"This section lets you enable \"Migrate from Custom Price Labels (Pro)\" tool."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: includes/class-wcj-product-info.php:26
|
1506 |
msgid "Before product"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: includes/class-wcj-product-info.php:27
|
1510 |
msgid "Before product title"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: includes/class-wcj-product-info.php:28
|
1514 |
msgid "After product"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: includes/class-wcj-product-info.php:29
|
1518 |
msgid "After product title"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: includes/class-wcj-product-info.php:34
|
1522 |
msgid "Inside single product summary"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: includes/class-wcj-product-info.php:35
|
1526 |
msgid "Before single product summary"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: includes/class-wcj-product-info.php:36
|
1530 |
msgid "After single product summary"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: includes/class-wcj-product-info.php:118
|
1534 |
+
msgid "Available shortcodes are:"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: includes/class-wcj-product-info.php:385
|
1538 |
+
msgid "%s ago"
|
|
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: includes/class-wcj-product-info.php:435
|
1542 |
+
#: includes/class-wcj-product-info.php:563
|
1543 |
+
#: includes/class-wcj-product-info.php:603
|
1544 |
+
msgid "Position"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: includes/class-wcj-product-info.php:447
|
1548 |
+
#: includes/class-wcj-product-info.php:575
|
1549 |
+
#: includes/class-wcj-product-info.php:615
|
1550 |
+
#: includes/class-wcj-product-tabs.php:350
|
1551 |
+
#: includes/class-wcj-product-tabs.php:442
|
1552 |
+
#: includes/class-wcj-product-tabs.php:468
|
1553 |
+
#: includes/class-wcj-product-tabs.php:494
|
1554 |
+
msgid "Priority (i.e. Order)"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: includes/class-wcj-product-info.php:455
|
1558 |
+
msgid ""
|
1559 |
+
"Number of product info fields. Click \"Save changes\" after you change this "
|
1560 |
+
"number."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: includes/class-wcj-product-info.php:478
|
1564 |
+
msgid "You save: <strong>%you_save_formatted%</strong> (%you_save_percent%%)"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: includes/class-wcj-product-info.php:479
|
1568 |
+
#: includes/class-wcj-product-info.php:593
|
1569 |
+
msgid "Total sales: %total_sales%"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: includes/class-wcj-product-info.php:482
|
1573 |
+
msgid "Default"
|
|
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: includes/class-wcj-product-info.php:484
|
1577 |
+
msgid "Field Nr. "
|
|
|
|
|
|
|
|
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: includes/class-wcj-product-info.php:484
|
1581 |
+
msgid "Available short codes: "
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: includes/class-wcj-product-info.php:514
|
1585 |
+
msgid "Product Info Options"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: includes/class-wcj-product-info.php:517
|
1589 |
+
#: includes/class-wcj-product-info.php:682
|
1590 |
+
msgid "Product Info"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: includes/class-wcj-product-info.php:518
|
1594 |
+
msgid "Enable the Product Info feature"
|
|
|
|
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: includes/class-wcj-product-info.php:519
|
1598 |
+
msgid "Add additional info to product, change related products number."
|
|
|
|
|
|
|
|
|
|
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: includes/class-wcj-product-info.php:528
|
1602 |
+
msgid "More Products Info"
|
|
|
|
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: includes/class-wcj-product-info.php:529
|
1606 |
+
msgid ""
|
1607 |
+
"For full list of short codes, please visit <a target=\"_blank\" href="
|
1608 |
+
"\"http://woojetpack.com/features/product-info/\">http://woojetpack.com/"
|
1609 |
+
"features/product-info/</a>"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: includes/class-wcj-product-info.php:534
|
1613 |
+
#: includes/class-wcj-product-info.php:545
|
1614 |
+
msgid "Product Info on Archive Pages"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: includes/class-wcj-product-info.php:535
|
1618 |
+
msgid "Product Info on Single Pages"
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: includes/class-wcj-product-info.php:542
|
1622 |
+
msgid "Even More Products Info"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: includes/class-wcj-product-info.php:554
|
1626 |
+
#: includes/class-wcj-product-info.php:591
|
1627 |
+
msgid "HTML info."
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: includes/class-wcj-product-info.php:556
|
1631 |
+
msgid "SKU: %sku%"
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: includes/class-wcj-product-info.php:582
|
1635 |
+
msgid "Product Info on Single Product Pages"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: includes/class-wcj-product-info.php:624
|
1639 |
msgid "Related Products Options"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: includes/class-wcj-product-info.php:634
|
1643 |
msgid "Related Products Number"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: includes/class-wcj-product-info.php:641
|
1647 |
msgid "Related Products Columns"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: includes/class-wcj-product-info.php:648
|
1651 |
msgid "Order by"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: includes/class-wcj-product-info.php:653
|
1655 |
msgid "Random"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: includes/class-wcj-product-info.php:654
|
1659 |
msgid "Date"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: includes/class-wcj-product-info.php:655
|
1663 |
+
#: includes/class-wcj-product-input-fields.php:121
|
1664 |
+
#: includes/class-wcj-product-tabs.php:238
|
1665 |
+
#: includes/class-wcj-product-tabs.php:342
|
1666 |
+
#: includes/class-wcj-product-tabs.php:452
|
1667 |
+
#: includes/class-wcj-product-tabs.php:478
|
1668 |
+
#: includes/class-wcj-product-tabs.php:504
|
1669 |
+
#: includes/gateways/class-wc-gateway-wcj-custom.php:56
|
1670 |
+
#: includes/shipping/class-wc-shipping-wcj-custom.php:62
|
1671 |
+
msgid "Title"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: includes/class-wcj-product-info.php:660
|
1675 |
msgid "Order"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: includes/class-wcj-product-info.php:661
|
1679 |
msgid "Ignored if order by \"Random\" is selected above."
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: includes/class-wcj-product-info.php:666
|
1683 |
msgid "Ascending"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: includes/class-wcj-product-info.php:667
|
1687 |
msgid "Descending"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: includes/class-wcj-product-input-fields.php:89
|
1691 |
+
msgid "Text Fields"
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: includes/class-wcj-product-input-fields.php:110
|
1695 |
+
msgid "Required"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: includes/class-wcj-product-input-fields.php:139
|
1699 |
+
msgid "Fill text box before adding to cart."
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: includes/class-wcj-product-input-fields.php:202
|
1703 |
+
msgid "Product Custom Input Options"
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: includes/class-wcj-product-input-fields.php:202
|
1707 |
+
#: includes/class-wcj-product-input-fields.php:207
|
1708 |
+
msgid "Product Custom Input."
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: includes/class-wcj-product-input-fields.php:205
|
1712 |
+
#: includes/class-wcj-product-input-fields.php:223
|
1713 |
+
msgid "Product Custom Input"
|
1714 |
+
msgstr ""
|
1715 |
+
|
1716 |
+
#: includes/class-wcj-product-input-fields.php:206
|
1717 |
+
msgid "Enable the Product Custom Input feature"
|
1718 |
+
msgstr ""
|
1719 |
+
|
1720 |
+
#: includes/class-wcj-product-listings.php:56
|
1721 |
msgid "Product Listings Options"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: includes/class-wcj-product-listings.php:59
|
1725 |
+
#: includes/class-wcj-product-listings.php:153
|
1726 |
msgid "Product Listings"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: includes/class-wcj-product-listings.php:60
|
1730 |
msgid "Enable the Product Listings feature"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: includes/class-wcj-product-listings.php:61
|
1734 |
msgid ""
|
1735 |
"Change display options for shop and category pages: show/hide categories "
|
1736 |
"count, exclude categories, show/hide empty categories."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: includes/class-wcj-product-listings.php:69
|
1740 |
msgid "Shop Page Display Options"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: includes/class-wcj-product-listings.php:69
|
1744 |
msgid ""
|
1745 |
"This will work only when \"Shop Page Display\" in \"WooCommerce > Settings > "
|
1746 |
"Products > Product Listings\" is set to \"Show subcategories\" or \"Show both"
|
1747 |
"\"."
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: includes/class-wcj-product-listings.php:72
|
1751 |
msgid "Categories Count"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: includes/class-wcj-product-listings.php:73
|
1755 |
+
#: includes/class-wcj-product-listings.php:172
|
1756 |
msgid "Hide categories count on shop page"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: includes/class-wcj-product-listings.php:80
|
1760 |
msgid "Exclude Categories"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: includes/class-wcj-product-listings.php:81
|
1764 |
+
#: includes/class-wcj-product-listings.php:180
|
1765 |
msgid ""
|
1766 |
" Excludes one or more categories from the shop page. This parameter takes a "
|
1767 |
"comma-separated list of categories by unique ID, in ascending order. Leave "
|
1768 |
"blank to disable."
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: includes/class-wcj-product-listings.php:89
|
1772 |
+
#: includes/class-wcj-product-listings.php:128
|
1773 |
msgid "Hide Empty"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: includes/class-wcj-product-listings.php:90
|
1777 |
+
#: includes/class-wcj-product-listings.php:189
|
1778 |
msgid "Hide empty categories on shop page"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
#: includes/class-wcj-product-listings.php:97
|
1782 |
+
#: includes/class-wcj-product-listings.php:136
|
1783 |
+
msgid "Show Products"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: includes/class-wcj-product-listings.php:98
|
1787 |
+
#: includes/class-wcj-product-listings.php:197
|
1788 |
+
msgid "Show products if no categories are displayed on shop page"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: includes/class-wcj-product-listings.php:106
|
1792 |
msgid "Category Display Options"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: includes/class-wcj-product-listings.php:106
|
1796 |
msgid ""
|
1797 |
"This will work only when \"Default Category Display\" in \"WooCommerce > "
|
1798 |
"Settings > Products > Product Listings\" is set to \"Show subcategories\" or "
|
1799 |
"\"Show both\"."
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: includes/class-wcj-product-listings.php:109
|
1803 |
msgid "Subcategories Count"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: includes/class-wcj-product-listings.php:110
|
1807 |
+
#: includes/class-wcj-product-listings.php:208
|
1808 |
msgid "Hide subcategories count on category pages"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: includes/class-wcj-product-listings.php:119
|
1812 |
msgid "Exclude Subcategories"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: includes/class-wcj-product-listings.php:120
|
1816 |
+
#: includes/class-wcj-product-listings.php:218
|
1817 |
msgid ""
|
1818 |
" Excludes one or more categories from the category (archive) pages. This "
|
1819 |
"parameter takes a comma-separated list of categories by unique ID, in "
|
1820 |
"ascending order. Leave blank to disable."
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: includes/class-wcj-product-listings.php:129
|
1824 |
+
#: includes/class-wcj-product-listings.php:227
|
1825 |
msgid "Hide empty subcategories on category pages"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: includes/class-wcj-product-listings.php:137
|
1829 |
+
#: includes/class-wcj-product-listings.php:235
|
1830 |
+
msgid "Show products if no categories are displayed on category page"
|
1831 |
+
msgstr ""
|
1832 |
+
|
1833 |
+
#: includes/class-wcj-product-listings.php:171
|
1834 |
msgid "WooJetpack: Categories Count"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: includes/class-wcj-product-listings.php:179
|
1838 |
msgid "WooJetpack: Exclude Categories on Shop Page"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: includes/class-wcj-product-listings.php:188
|
1842 |
+
#: includes/class-wcj-product-listings.php:226
|
1843 |
msgid "WooJetpack: Hide Empty"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: includes/class-wcj-product-listings.php:196
|
1847 |
+
#: includes/class-wcj-product-listings.php:234
|
1848 |
+
msgid "WooJetpack: Show Products"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: includes/class-wcj-product-listings.php:207
|
1852 |
msgid "WooJetpack: Subcategories Count"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: includes/class-wcj-product-listings.php:217
|
1856 |
msgid "WooJetpack: Exclude Subcategories on Category Pages"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: includes/class-wcj-product-tabs.php:223
|
1860 |
+
msgid "Total number of custom tabs"
|
1861 |
+
msgstr ""
|
1862 |
+
|
1863 |
+
#: includes/class-wcj-product-tabs.php:229
|
1864 |
+
msgid "Click \"Update\" product after you change this number."
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: includes/class-wcj-product-tabs.php:243
|
1868 |
+
msgid "Priority"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: includes/class-wcj-product-tabs.php:248
|
1872 |
+
#: includes/class-wcj-product-tabs.php:357
|
1873 |
+
msgid "Content"
|
1874 |
+
msgstr ""
|
1875 |
+
|
1876 |
+
#: includes/class-wcj-product-tabs.php:252
|
1877 |
+
msgid "Customize the tab(s)"
|
1878 |
+
msgstr ""
|
1879 |
+
|
1880 |
+
#: includes/class-wcj-product-tabs.php:256
|
1881 |
+
#: includes/class-wcj-product-tabs.php:341
|
1882 |
+
msgid "Custom Product Tab"
|
1883 |
+
msgstr ""
|
1884 |
+
|
1885 |
+
#: includes/class-wcj-product-tabs.php:299
|
1886 |
+
#: includes/class-wcj-product-tabs.php:313
|
1887 |
+
msgid "Product Tabs"
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: includes/class-wcj-product-tabs.php:310
|
1891 |
+
msgid "Product Tabs Options"
|
1892 |
+
msgstr ""
|
1893 |
+
|
1894 |
+
#: includes/class-wcj-product-tabs.php:314
|
1895 |
+
msgid "Enable the Product Tabs feature"
|
1896 |
+
msgstr ""
|
1897 |
+
|
1898 |
+
#: includes/class-wcj-product-tabs.php:315
|
1899 |
+
msgid ""
|
1900 |
+
"Add custom product tabs - globally or per product. Customize or completely "
|
1901 |
+
"remove WooCommerce default product tabs."
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: includes/class-wcj-product-tabs.php:323
|
1905 |
+
msgid "Custom Product Tabs Options"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: includes/class-wcj-product-tabs.php:326
|
1909 |
+
msgid "Custom Product Tabs Number"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: includes/class-wcj-product-tabs.php:327
|
1913 |
+
msgid "Click \"Save changes\" after you change this number."
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: includes/class-wcj-product-tabs.php:358
|
1917 |
+
msgid "You can use shortcodes here..."
|
1918 |
+
msgstr ""
|
1919 |
+
|
1920 |
+
#: includes/class-wcj-product-tabs.php:366
|
1921 |
+
msgid "Comma separated PRODUCT IDs to HIDE this tab"
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: includes/class-wcj-product-tabs.php:367
|
1925 |
+
msgid "To hide this tab from some products, enter product IDs here."
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: includes/class-wcj-product-tabs.php:375
|
1929 |
+
msgid "Comma separated CATEGORY IDs to HIDE this tab"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: includes/class-wcj-product-tabs.php:376
|
1933 |
+
msgid "To hide this tab from some categories, enter category IDs here."
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: includes/class-wcj-product-tabs.php:384
|
1937 |
+
msgid "Comma separated PRODUCT IDs to SHOW this tab"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: includes/class-wcj-product-tabs.php:385
|
1941 |
+
msgid "To show this tab only for some products, enter product IDs here."
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: includes/class-wcj-product-tabs.php:393
|
1945 |
+
msgid "Comma separated CATEGORY IDs to SHOW this tab"
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: includes/class-wcj-product-tabs.php:394
|
1949 |
+
msgid "To show this tab only for some categories, enter category IDs here."
|
1950 |
+
msgstr ""
|
1951 |
+
|
1952 |
+
#: includes/class-wcj-product-tabs.php:408
|
1953 |
+
msgid "Local Custom Product Tabs"
|
1954 |
+
msgstr ""
|
1955 |
+
|
1956 |
+
#: includes/class-wcj-product-tabs.php:411
|
1957 |
+
msgid "Enable Custom Product Tabs"
|
1958 |
+
msgstr ""
|
1959 |
+
|
1960 |
+
#: includes/class-wcj-product-tabs.php:419
|
1961 |
+
msgid "Default Local Custom Product Tabs Number"
|
1962 |
+
msgstr ""
|
1963 |
+
|
1964 |
+
#: includes/class-wcj-product-tabs.php:431
|
1965 |
+
msgid "WooCommerce Standard Product Tabs Options"
|
1966 |
+
msgstr ""
|
1967 |
+
|
1968 |
+
#: includes/class-wcj-product-tabs.php:434
|
1969 |
+
msgid "Description Tab"
|
1970 |
+
msgstr ""
|
1971 |
+
|
1972 |
+
#: includes/class-wcj-product-tabs.php:435
|
1973 |
+
#: includes/class-wcj-product-tabs.php:461
|
1974 |
+
#: includes/class-wcj-product-tabs.php:487
|
1975 |
+
msgid "Remove tab from product page"
|
1976 |
+
msgstr ""
|
1977 |
+
|
1978 |
+
#: includes/class-wcj-product-tabs.php:453
|
1979 |
+
#: includes/class-wcj-product-tabs.php:479
|
1980 |
+
#: includes/class-wcj-product-tabs.php:505
|
1981 |
+
msgid "Leave blank for WooCommerce defaults"
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: includes/class-wcj-product-tabs.php:460
|
1985 |
+
msgid "Additional Information Tab"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: includes/class-wcj-product-tabs.php:486
|
1989 |
+
msgid "Reviews Tab"
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: includes/class-wcj-reports.php:88
|
1993 |
+
msgid "Total customers"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: includes/class-wcj-reports.php:98
|
1997 |
+
msgid "Country Code"
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: includes/class-wcj-reports.php:99
|
2001 |
+
msgid "Customers Count"
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: includes/class-wcj-reports.php:100
|
2005 |
+
msgid "Percent of total"
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: includes/class-wcj-reports.php:135
|
2009 |
+
msgid "WooJetpack: All in stock (with sales info)"
|
2010 |
+
msgstr ""
|
2011 |
+
|
2012 |
+
#: includes/class-wcj-reports.php:161
|
2013 |
+
msgid "WooJetpack: Customers by Country"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: includes/class-wcj-reports.php:180
|
2017 |
msgid "Smart Reports"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: includes/class-wcj-reports.php:180
|
2021 |
+
msgid "<i>BETA Version</i>"
|
2022 |
+
msgstr ""
|
2023 |
+
|
2024 |
+
#: includes/class-wcj-reports.php:201 includes/class-wcj-reports.php:215
|
2025 |
msgid "Reports Options"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: includes/class-wcj-reports.php:204 includes/class-wcj-reports.php:240
|
2029 |
+
#: includes/class-wcj-reports.php:420
|
2030 |
msgid "Reports"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: includes/class-wcj-reports.php:205
|
2034 |
msgid "Enable the Reports feature"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: includes/class-wcj-reports.php:206
|
2038 |
+
msgid "Stock, sales, customers etc. reports."
|
2039 |
+
msgstr ""
|
2040 |
+
|
2041 |
+
#: includes/class-wcj-reports.php:217
|
2042 |
+
msgid ""
|
2043 |
+
"WooJetpack: Customers by Country. Available in WooCommerce > Reports > "
|
2044 |
+
"Customers."
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: includes/class-wcj-reports.php:218
|
2048 |
+
msgid ""
|
2049 |
+
"WooJetpack: All in stock (with sales info). Available in WooCommerce > "
|
2050 |
+
"Reports > Stock."
|
2051 |
+
msgstr ""
|
2052 |
+
|
2053 |
+
#: includes/class-wcj-reports.php:223
|
2054 |
+
msgid "European Union as single country"
|
2055 |
+
msgstr ""
|
2056 |
+
|
2057 |
+
#: includes/class-wcj-reports.php:224
|
2058 |
+
msgid "When checked all EU contries are counted as one country in all reports."
|
2059 |
+
msgstr ""
|
2060 |
+
|
2061 |
+
#: includes/class-wcj-reports.php:240
|
2062 |
+
msgid " - <em>BETA</em>"
|
2063 |
+
msgstr ""
|
2064 |
+
|
2065 |
+
#: includes/class-wcj-reports.php:441
|
2066 |
msgid "Product"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
#: includes/class-wcj-reports.php:442
|
2070 |
msgid "Price"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: includes/class-wcj-reports.php:443
|
2074 |
msgid "Stock"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
+
#: includes/class-wcj-reports.php:444
|
2078 |
msgid "Stock price"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: includes/class-wcj-reports.php:446
|
2082 |
msgid "Last sale"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: includes/class-wcj-reports.php:447 includes/class-wcj-reports.php:448
|
2086 |
msgid "Sales in last %s days"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: includes/class-wcj-reports.php:450
|
2090 |
msgid "Total sales"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: includes/class-wcj-reports.php:525
|
2094 |
msgid "No sales yet"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: includes/class-wcj-reports.php:542
|
2098 |
msgid "Total current stock value"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: includes/class-wcj-reports.php:543
|
2102 |
msgid "Total stock value"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: includes/class-wcj-reports.php:544
|
2106 |
msgid "Product stock value average"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: includes/class-wcj-reports.php:545
|
2110 |
msgid "Product stock average"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: includes/class-wcj-reports.php:603
|
2114 |
msgid "All Products on Stock"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: includes/class-wcj-reports.php:604
|
2118 |
+
msgid "Report shows all products that are on stock and some sales info."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: includes/class-wcj-reports.php:663
|
2122 |
msgid ""
|
2123 |
"Here you can generate reports. Some reports are generated using all your "
|
2124 |
"orders and products, so if you have a lot of them - it may take a while."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: includes/class-wcj-reports.php:665
|
2128 |
+
msgid "Stock based reports"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: includes/class-wcj-reports.php:678
|
2132 |
+
msgid ""
|
2133 |
+
"Please enable stock management in <strong>WooCommerce > Settings > Products "
|
2134 |
+
"> Inventory</strong> to generate stock based reports."
|
2135 |
+
msgstr ""
|
2136 |
+
|
2137 |
#: includes/class-wcj-shipping.php:63
|
2138 |
msgid "WooCommerce Jetpack: Hide shipping"
|
2139 |
msgstr ""
|
2172 |
msgid "Hide shipping"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: includes/class-wcj-sorting.php:78
|
2176 |
msgid "WooJetpack: Remove All Sorting"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: includes/class-wcj-sorting.php:82
|
2180 |
msgid "Completely remove sorting from the shop front end"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: includes/class-wcj-sorting.php:188
|
2184 |
msgid "Sorting Options"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: includes/class-wcj-sorting.php:191 includes/class-wcj-sorting.php:296
|
2188 |
msgid "Sorting"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: includes/class-wcj-sorting.php:192
|
2192 |
msgid "Enable the Sorting feature"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: includes/class-wcj-sorting.php:193
|
2196 |
msgid "Add more sorting options or remove all sorting including default."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: includes/class-wcj-sorting.php:201 includes/class-wcj-sorting.php:204
|
2200 |
msgid "Remove All Sorting"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: includes/class-wcj-sorting.php:205
|
2204 |
msgid "Remove all sorting (including WooCommerce default)"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: includes/class-wcj-sorting.php:216 includes/class-wcj-sorting.php:219
|
2208 |
msgid "Add More Sorting"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: includes/class-wcj-sorting.php:227
|
2212 |
+
msgid "Sort by Name"
|
2213 |
+
msgstr ""
|
2214 |
+
|
2215 |
+
#: includes/class-wcj-sorting.php:228 includes/class-wcj-sorting.php:231
|
2216 |
+
msgid "Sort by title: A to Z"
|
2217 |
+
msgstr ""
|
2218 |
+
|
2219 |
+
#: includes/class-wcj-sorting.php:229 includes/class-wcj-sorting.php:239
|
2220 |
+
#: includes/class-wcj-sorting.php:249 includes/class-wcj-sorting.php:259
|
2221 |
+
#: includes/class-wcj-sorting.php:269 includes/class-wcj-sorting.php:279
|
2222 |
+
msgid "Text to show on frontend. Leave blank to disable."
|
2223 |
+
msgstr ""
|
2224 |
+
|
2225 |
+
#: includes/class-wcj-sorting.php:238 includes/class-wcj-sorting.php:241
|
2226 |
+
msgid "Sort by title: Z to A"
|
2227 |
+
msgstr ""
|
2228 |
+
|
2229 |
+
#: includes/class-wcj-sorting.php:247
|
2230 |
+
msgid "Sort by SKU"
|
2231 |
+
msgstr ""
|
2232 |
+
|
2233 |
+
#: includes/class-wcj-sorting.php:248 includes/class-wcj-sorting.php:251
|
2234 |
+
msgid "Sort by SKU: low to high"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: includes/class-wcj-sorting.php:258 includes/class-wcj-sorting.php:261
|
2238 |
+
msgid "Sort by SKU: high to low"
|
|
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: includes/class-wcj-sorting.php:267
|
2242 |
+
msgid "Sort by stock quantity"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: includes/class-wcj-sorting.php:268 includes/class-wcj-sorting.php:271
|
2246 |
+
msgid "Sort by stock quantity: low to high"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: includes/class-wcj-sorting.php:278 includes/class-wcj-sorting.php:281
|
2250 |
+
msgid "Sort by stock quantity: high to low"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:50
|
2353 |
msgid "Enable Custom Shipping"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#. #-#-#-#-# plugin.pot (WooCommerce Jetpack 1.9.0) #-#-#-#-#
|
2357 |
#. Plugin Name of the plugin/theme
|
2358 |
#: woocommerce-jetpack.php:94
|
2359 |
msgid "WooCommerce Jetpack"
|
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,custom product tabs,remove product tab,payment gateway fee,
|
5 |
Requires at least: 3.9.1
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 1.9.
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -62,58 +62,15 @@ To unlock all WooCommerce Jetpack features, please install additional <a href="h
|
|
62 |
|
63 |
1. Plugin admin area.
|
64 |
|
65 |
-
== TODO List ==
|
66 |
-
|
67 |
-
Please note that this list is only preliminary and may be corrected at any time.
|
68 |
-
|
69 |
-
Please let us know if you want anything added to list by <a href="http://woojetpack.com/submit-idea/">filling the form</a>.
|
70 |
-
|
71 |
-
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!
|
72 |
-
|
73 |
-
= The list =
|
74 |
-
* Reported bug in `Empty cart` feature. Checking on our test site didn't show any problems. Reported by Patryk.
|
75 |
-
* Upgrade Feature - Shipping - Add "Custom Shipping Method".
|
76 |
-
Advance free shipping - Free shipping for multiple country/places. Each country/places different prices. Idea by LQTOYS.
|
77 |
-
* New Feature - Custom Product Input Fields - Fields to fill before adding product to cart. Idea by Mangesh.
|
78 |
-
* Upgrade Feature - Orders - Order Numbers - Custom order number date suffix. Idea by Patryk.
|
79 |
-
* Upgrade Feature - PDF Invoices - Sending invoice on customer's request. Idea by Jen.
|
80 |
-
This modification will consist also of **Checkout** feature upgrade, as sending invoice on customer's request will require custom checkout fields.
|
81 |
-
Additional (custom) checkout fields idea by Tom.
|
82 |
-
* Upgrade Feature - PDF Invoices - Bilingual invoice. Idea by Tudor.
|
83 |
-
* Upgrade Feature - PDF Invoices - Second currency in invoice. Idea by Tudor.
|
84 |
-
* New Feature - Checkout to PDF (wish list). Idea by Mick.
|
85 |
-
* Upgrade Feature - PDF Invoices - Shipping labels. Suggested by Glenda.
|
86 |
-
* New Feature - Different prices for different countries. Suggested by Illona.
|
87 |
-
* New Feature - Facebook like and share buttons. Idea by Kristof.
|
88 |
-
* My account page customization. Idea by Adeyemi.
|
89 |
-
* New Feature - Set SKUs as product IDs.
|
90 |
-
* New Feature - Add second currency to the price (i.e. display multiple currencies).
|
91 |
-
* New Feature - Products per Page - Add "products per page" option for customers (i.e. front end).
|
92 |
-
* Upgrade Feature - PDF Invoices - Separate numbering for invoices option, then can add `add_order_number_to_invoice` option.
|
93 |
-
* Upgrade Feature - Custom Price Labels - Add price countdown.
|
94 |
-
* Upgrade Feature - Product Info - Add widget.
|
95 |
-
* Upgrade Feature - Product Info - Today's deal.
|
96 |
-
* Upgrade Feature - Product Info - Images for variations.
|
97 |
-
* Upgrade Feature - Orders - Custom Order Statuses - Add options for selecting icons and color.
|
98 |
-
* Upgrade Feature - Smart Reports - Export to CSV file.
|
99 |
-
* Upgrade Feature - Call for Price - Call for price for variable products (all variations or only some).
|
100 |
-
* Upgrade Feature - Custom Statuses - Bulk change status.
|
101 |
-
* Upgrade Feature - Orders - Bulk orders i.e. "Buy More - Pay Less". Start from global discount for all products, i.e. cart discount; later - discounts for individual products.
|
102 |
-
* Upgrade Feature - Custom Price Labels - Add different labels for archives, single, homepage, related. Add option to select which price hooks to use. Different labels for variable and variation.
|
103 |
-
* Upgrade Feature - Custom Price Labels - Custom free price.
|
104 |
-
* Upgrade Feature - Checkout - Custom checkout fields.
|
105 |
-
* Upgrade Feature - Orders - Maximum weight - "Contact us" to place order with products total weight over some amount.
|
106 |
-
* Upgrade Feature - Sorting - Add sorting by popularity in e.g. 90 days (not by `total_sales` as it is by default in WooCommerce).
|
107 |
-
* Dev - Product info - On "Home Page".
|
108 |
-
* Dev - Reports - Stock buy price.
|
109 |
-
* Dev - Two Companies - Idea by Ireneusz.
|
110 |
-
* Dev - Add to cart. Idea by Craig.
|
111 |
-
* Dev - Second currency in shop (i.e. display different currency depending on product). Idea by Leon.
|
112 |
-
* Dev - Product Info - Related Products Options: 3+ requires additional css code. Suggested by Patryk.
|
113 |
-
* Dev - PDF Invoices - Use shortcodes for template.
|
114 |
-
|
115 |
== Changelog ==
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
= 1.9.0 - 10/11/2014 =
|
118 |
* Feature Upgraded - **Payment Gateways** - Payment Gateways Fees, added. Idea by Daniele.
|
119 |
Also made changes to *PDF Invoices* - fees now displayed in invoice.
|
@@ -132,7 +89,7 @@ If you wish that some task would go up the queue to make it faster, please conta
|
|
132 |
Shortcode has `visibility` parameter which gives the possibility to show shortcode's product info to admin only.
|
133 |
* Feature Upgraded - **Product Info** - `%stock_quantity%` WooJetpack Shortcode added.
|
134 |
* Dev - **Product Info** - `the_content` filter added to result. Now shortcodes will be displayed properly.
|
135 |
-
* Tweak - **Add to Cart** - Removed *enable* checkboxes in admin settings. Now need to leave the value empty to disable.
|
136 |
* Tweak - Added some info to *Old Slugs*, *Custom Statuses* and *Product Tabs* features. Suggested by Patryk.
|
137 |
* New Feature - **Reports** - Various sales, stock, customers etc. reports. *BETA* version.
|
138 |
|
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,custom product tabs,remove product tab,payment gateway fee,
|
5 |
Requires at least: 3.9.1
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 1.9.1
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
62 |
|
63 |
1. Plugin admin area.
|
64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
== Changelog ==
|
66 |
|
67 |
+
= 1.9.1 - 13/11/2014 =
|
68 |
+
* Fix - **Payment Gateways** - Bug causing displaying *fee type* as *percent* instead of *fixed*, fixed.
|
69 |
+
This did not affect Plus version.
|
70 |
+
* Dev - French translation updated.
|
71 |
+
* Dev - POT file updated.
|
72 |
+
* Tweak - Submenus added in admin's WooCommerce > Settings > Jetpack.
|
73 |
+
|
74 |
= 1.9.0 - 10/11/2014 =
|
75 |
* Feature Upgraded - **Payment Gateways** - Payment Gateways Fees, added. Idea by Daniele.
|
76 |
Also made changes to *PDF Invoices* - fees now displayed in invoice.
|
89 |
Shortcode has `visibility` parameter which gives the possibility to show shortcode's product info to admin only.
|
90 |
* Feature Upgraded - **Product Info** - `%stock_quantity%` WooJetpack Shortcode added.
|
91 |
* Dev - **Product Info** - `the_content` filter added to result. Now shortcodes will be displayed properly.
|
92 |
+
* Tweak - **Add to Cart** and **Sorting** - Removed *enable* checkboxes in admin settings. Now need to leave the value empty to disable.
|
93 |
* Tweak - Added some info to *Old Slugs*, *Custom Statuses* and *Product Tabs* features. Suggested by Patryk.
|
94 |
* New Feature - **Reports** - Various sales, stock, customers etc. reports. *BETA* version.
|
95 |
|
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.9.
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|
@@ -77,10 +77,10 @@ final class WC_Jetpack {
|
|
77 |
|
78 |
// Settings
|
79 |
if ( is_admin() ) {
|
80 |
-
add_filter( 'woocommerce_get_settings_pages',
|
81 |
-
add_filter( 'get_wc_jetpack_plus_message',
|
82 |
-
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ),
|
83 |
-
add_action( 'admin_menu',
|
84 |
}
|
85 |
|
86 |
// Loaded action
|
@@ -157,30 +157,36 @@ final class WC_Jetpack {
|
|
157 |
|
158 |
include_once( 'includes/admin/tools/class-wcj-tools.php' );
|
159 |
|
160 |
-
$settings = array();
|
161 |
-
|
162 |
-
$settings[] = include_once( 'includes/class-wcj-general.php' );
|
163 |
|
164 |
$settings[] = include_once( 'includes/class-wcj-price-labels.php' );
|
165 |
$settings[] = include_once( 'includes/class-wcj-call-for-price.php' );
|
166 |
-
|
167 |
-
$settings[] = include_once( 'includes/class-wcj-sorting.php' );
|
168 |
-
//$settings[] = include_once( 'includes/class-wcj-product-input-fields.php' );
|
169 |
$settings[] = include_once( 'includes/class-wcj-product-listings.php' );
|
|
|
170 |
$settings[] = include_once( 'includes/class-wcj-product-info.php' );
|
171 |
$settings[] = include_once( 'includes/class-wcj-product-tabs.php' );
|
|
|
172 |
|
173 |
-
$settings[] = include_once( 'includes/class-wcj-add-to-cart.php' );
|
174 |
$settings[] = include_once( 'includes/class-wcj-cart.php' );
|
175 |
-
$settings[] = include_once( 'includes/class-wcj-
|
|
|
176 |
$settings[] = include_once( 'includes/class-wcj-checkout.php' );
|
177 |
$settings[] = include_once( 'includes/class-wcj-payment-gateways.php' );
|
178 |
|
|
|
|
|
179 |
$settings[] = include_once( 'includes/class-wcj-orders.php' );
|
|
|
|
|
|
|
180 |
$settings[] = include_once( 'includes/class-wcj-emails.php' );
|
181 |
-
|
182 |
-
$settings[] = include_once( 'includes/class-wcj-
|
|
|
|
|
183 |
$settings[] = include_once( 'includes/class-wcj-old-slugs.php' );
|
|
|
184 |
|
185 |
// Add options
|
186 |
if ( is_admin() ) {
|
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.9.1
|
7 |
Author: Algoritmika Ltd
|
8 |
Author URI: http://www.algoritmika.com
|
9 |
Copyright: © 2014 Algoritmika Ltd.
|
77 |
|
78 |
// Settings
|
79 |
if ( is_admin() ) {
|
80 |
+
add_filter( 'woocommerce_get_settings_pages', array( $this, 'add_wcj_settings_tab' ) );
|
81 |
+
add_filter( 'get_wc_jetpack_plus_message', array( $this, 'get_wcj_plus_message' ), 100, 2 );
|
82 |
+
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'action_links' ) );
|
83 |
+
add_action( 'admin_menu', array( $this, 'jetpack_menu' ), 100 );
|
84 |
}
|
85 |
|
86 |
// Loaded action
|
157 |
|
158 |
include_once( 'includes/admin/tools/class-wcj-tools.php' );
|
159 |
|
160 |
+
$settings = array();
|
|
|
|
|
161 |
|
162 |
$settings[] = include_once( 'includes/class-wcj-price-labels.php' );
|
163 |
$settings[] = include_once( 'includes/class-wcj-call-for-price.php' );
|
164 |
+
|
|
|
|
|
165 |
$settings[] = include_once( 'includes/class-wcj-product-listings.php' );
|
166 |
+
$settings[] = include_once( 'includes/class-wcj-sorting.php' );
|
167 |
$settings[] = include_once( 'includes/class-wcj-product-info.php' );
|
168 |
$settings[] = include_once( 'includes/class-wcj-product-tabs.php' );
|
169 |
+
//$settings[] = include_once( 'includes/class-wcj-product-input-fields.php' );
|
170 |
|
|
|
171 |
$settings[] = include_once( 'includes/class-wcj-cart.php' );
|
172 |
+
$settings[] = include_once( 'includes/class-wcj-add-to-cart.php' );
|
173 |
+
|
174 |
$settings[] = include_once( 'includes/class-wcj-checkout.php' );
|
175 |
$settings[] = include_once( 'includes/class-wcj-payment-gateways.php' );
|
176 |
|
177 |
+
$settings[] = include_once( 'includes/class-wcj-shipping.php' );
|
178 |
+
|
179 |
$settings[] = include_once( 'includes/class-wcj-orders.php' );
|
180 |
+
|
181 |
+
$settings[] = include_once( 'includes/class-wcj-pdf-invoices.php' );
|
182 |
+
|
183 |
$settings[] = include_once( 'includes/class-wcj-emails.php' );
|
184 |
+
|
185 |
+
$settings[] = include_once( 'includes/class-wcj-currencies.php' );
|
186 |
+
|
187 |
+
$settings[] = include_once( 'includes/class-wcj-general.php' );
|
188 |
$settings[] = include_once( 'includes/class-wcj-old-slugs.php' );
|
189 |
+
$settings[] = include_once( 'includes/class-wcj-reports.php' );
|
190 |
|
191 |
// Add options
|
192 |
if ( is_admin() ) {
|