Version Description
- Updates: Interface updated.
- Updates: Tested OK with WC 3.3.3
Download this release
Release Info
Developer | mujeebur |
Plugin | Product Import Export for WooCommerce |
Version | 1.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.4.1 to 1.4.3
- images/documentation.png +0 -0
- images/support.png +0 -0
- images/video.png +0 -0
- includes/class-wf-prodimpexpcsv-admin-screen.php +123 -73
- includes/exporter/class-wf-prodimpexpcsv-exporter.php +1 -1
- includes/importer/class-wf-csv-parser.php +8 -6
- includes/importer/class-wf-prodimpexpcsv-product-import.php +17 -9
- includes/importer/data/data-wf-reserved-fields-pair.php +1 -1
- includes/importer/views/html-wf-import-greeting.php +79 -50
- includes/importer/views/html-wf-import-options.php +23 -7
- includes/views/export/html-wf-export-products.php +99 -72
- includes/views/html-wf-admin-screen.php +18 -10
- includes/views/html-wf-help-guide.php +56 -0
- includes/views/market.php +39 -95
- lang/wf_csv_import_export-de_DE.mo +0 -0
- lang/wf_csv_import_export-de_DE.po +569 -243
- lang/wf_csv_import_export-fr_FR.mo +0 -0
- lang/wf_csv_import_export-fr_FR.po +585 -205
- lang/wf_csv_import_export-hu_HU.mo +0 -0
- lang/wf_csv_import_export-hu_HU.po +577 -205
- lang/wf_csv_import_export-it_IT.mo +0 -0
- lang/wf_csv_import_export-it_IT.po +586 -205
- license.txt +5 -8
- product-csv-import-export.php +417 -179
- readme.txt +21 -87
- styles/wf-style.css +121 -2
images/documentation.png
ADDED
Binary file
|
images/support.png
ADDED
Binary file
|
images/video.png
ADDED
Binary file
|
includes/class-wf-prodimpexpcsv-admin-screen.php
CHANGED
@@ -1,81 +1,131 @@
|
|
1 |
<?php
|
2 |
-
if (
|
3 |
-
|
4 |
}
|
5 |
|
6 |
class WF_ProdImpExpCsv_Admin_Screen {
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
}
|
80 |
|
81 |
new WF_ProdImpExpCsv_Admin_Screen();
|
1 |
<?php
|
2 |
+
if (!defined('ABSPATH')) {
|
3 |
+
exit;
|
4 |
}
|
5 |
|
6 |
class WF_ProdImpExpCsv_Admin_Screen {
|
7 |
|
8 |
+
/**
|
9 |
+
* Constructor
|
10 |
+
*/
|
11 |
+
public function __construct() {
|
12 |
+
|
13 |
+
add_action('admin_menu', array($this, 'admin_menu'));
|
14 |
+
add_action('admin_print_styles', array($this, 'admin_scripts'));
|
15 |
+
add_action('admin_notices', array($this, 'admin_notices'));
|
16 |
+
|
17 |
+
add_action('in_admin_header', array($this, 'render_review_text'), 1);
|
18 |
+
add_action('wp_ajax_review_rated', array($this, 'review_rated'));
|
19 |
+
}
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Notices in admin
|
23 |
+
*/
|
24 |
+
public function admin_notices() {
|
25 |
+
if (!function_exists('mb_detect_encoding')) {
|
26 |
+
echo '<div class="error"><p>' . __('Product CSV Import Export requires the function <code>mb_detect_encoding</code> to import and export CSV files. Please ask your hosting provider to enable this function.', 'wf_csv_import_export') . '</p></div>';
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
/**
|
31 |
+
* Admin Menu
|
32 |
+
*/
|
33 |
+
public function admin_menu() {
|
34 |
+
$page1 = add_submenu_page('edit.php?post_type=product', __('Product Im-Ex', 'wf_csv_import_export'), __('Product Im-Ex', 'wf_csv_import_export'), apply_filters('woocommerce_csv_product_role', 'manage_woocommerce'), 'wf_woocommerce_csv_im_ex', array($this, 'output'));
|
35 |
+
$page = add_submenu_page('woocommerce', __('Product Import-Export', 'wf_csv_import_export'), __('Product Import-Export', 'wf_csv_import_export'), apply_filters('woocommerce_csv_product_role', 'manage_woocommerce'), 'wf_woocommerce_csv_im_ex', array($this, 'output'));
|
36 |
+
|
37 |
+
}
|
38 |
+
|
39 |
+
/**
|
40 |
+
* Admin Scripts
|
41 |
+
*/
|
42 |
+
public function admin_scripts() {
|
43 |
+
wp_enqueue_style('woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css');
|
44 |
+
wp_enqueue_style('woocommerce-product-csv-importer', plugins_url(basename(plugin_dir_path(WF_ProdImpExpCsv_FILE)) . '/styles/wf-style.css', basename(__FILE__)), '', '1.4.4', 'screen');
|
45 |
+
}
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Admin Screen output
|
49 |
+
*/
|
50 |
+
public function output() {
|
51 |
+
|
52 |
+
$tab = '';
|
53 |
+
if (!empty($_GET['tab'])) {
|
54 |
+
if ($_GET['tab'] == 'help') {
|
55 |
+
$tab = 'help';
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
include( 'views/html-wf-admin-screen.php' );
|
60 |
+
}
|
61 |
+
|
62 |
+
/**
|
63 |
+
* Admin Page for exporting
|
64 |
+
*/
|
65 |
+
public function admin_export_page() {
|
66 |
+
$post_columns = include( 'exporter/data/data-wf-post-columns.php' );
|
67 |
+
include( 'views/export/html-wf-export-products.php' );
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* Admin Page for help
|
72 |
+
*/
|
73 |
+
public function admin_help_page() {
|
74 |
+
include('views/html-wf-help-guide.php');
|
75 |
+
}
|
76 |
+
|
77 |
+
/**
|
78 |
+
* Change the admin header text on WooCommerce admin pages.
|
79 |
+
*
|
80 |
+
* @since 1.4.3
|
81 |
+
* @param string $header_text
|
82 |
+
* @return string
|
83 |
+
*/
|
84 |
+
public function render_review_text($header_text) {
|
85 |
+
|
86 |
+
if (strtotime(get_option('xa_pipe_plugin_installed_date')) < strtotime('-7 days')) {
|
87 |
+
|
88 |
+
if (!current_user_can('manage_woocommerce') || !function_exists('wc_get_screen_ids')) {
|
89 |
+
return $header_text;
|
90 |
+
}
|
91 |
+
|
92 |
+
$current_screen = get_current_screen();
|
93 |
+
|
94 |
+
$xa_pages = array('product_page_wf_woocommerce_csv_im_ex');
|
95 |
+
|
96 |
+
if (isset($current_screen->id) && apply_filters('xa_display_admin_footer_text', in_array($current_screen->id, $xa_pages))) {
|
97 |
+
|
98 |
+
if (!get_option('xa_pipe_plugin_review_rated')) {
|
99 |
+
$header_text = sprintf(
|
100 |
+
__('<div class="updated"><p>You have been using %1$s for a while. If you like the plugin please leave us a %2$s review!<p></div>', 'wf_csv_import_export'), sprintf('<strong>%s</strong>', esc_html__('Product Import Export for WooCommerce', 'wf_csv_import_export')), '<a href="https://wordpress.org/support/plugin/product-import-export-for-woo/reviews?rate=5#new-post" target="_blank" class="xa-pipe-rating-link" data-reviewed="' . esc_attr__('Thanks for the review.', 'wf_csv_import_export') . '">★★★★★</a>'
|
101 |
+
);
|
102 |
+
wc_enqueue_js("
|
103 |
+
jQuery( 'a.xa-pipe-rating-link' ).click( function() {
|
104 |
+
jQuery.post( '" . admin_url("admin-ajax.php") . "', { action: 'review_rated' } );
|
105 |
+
jQuery( this ).parent().text( jQuery( this ).data( 'reviewed' ) );
|
106 |
+
});
|
107 |
+
");
|
108 |
+
} else {
|
109 |
+
$header_text = '';
|
110 |
+
}
|
111 |
+
}
|
112 |
+
|
113 |
+
echo $header_text;
|
114 |
+
}
|
115 |
+
}
|
116 |
+
|
117 |
+
/**
|
118 |
+
* Fired when clicking the rating header.
|
119 |
+
*/
|
120 |
+
public function review_rated() {
|
121 |
+
|
122 |
+
if (!current_user_can('manage_woocommerce')) {
|
123 |
+
wp_die(-1);
|
124 |
+
}
|
125 |
+
update_option('xa_pipe_plugin_review_rated', 1);
|
126 |
+
wp_die();
|
127 |
+
}
|
128 |
+
|
129 |
}
|
130 |
|
131 |
new WF_ProdImpExpCsv_Admin_Screen();
|
includes/exporter/class-wf-prodimpexpcsv-exporter.php
CHANGED
@@ -50,7 +50,7 @@ class WF_ProdImpExpCsv_Exporter {
|
|
50 |
$found_product_meta = array();
|
51 |
// Some of the values may not be usable (e.g. arrays of arrays) but the worse
|
52 |
// that can happen is we get an empty column.
|
53 |
-
|
54 |
if ( ! $meta ) continue;
|
55 |
if ( ! $include_hidden_meta && ! in_array( $meta, array_keys( $csv_columns ) ) && substr( (string)$meta, 0, 1 ) == '_' )
|
56 |
continue;
|
50 |
$found_product_meta = array();
|
51 |
// Some of the values may not be usable (e.g. arrays of arrays) but the worse
|
52 |
// that can happen is we get an empty column.
|
53 |
+
foreach ( $all_meta_keys as $meta ) {
|
54 |
if ( ! $meta ) continue;
|
55 |
if ( ! $include_hidden_meta && ! in_array( $meta, array_keys( $csv_columns ) ) && substr( (string)$meta, 0, 1 ) == '_' )
|
56 |
continue;
|
includes/importer/class-wf-csv-parser.php
CHANGED
@@ -16,6 +16,7 @@ class WF_CSV_Parser {
|
|
16 |
* Constructor
|
17 |
*/
|
18 |
public function __construct( $post_type = 'product' ) {
|
|
|
19 |
$this->post_type = $post_type;
|
20 |
$this->reserved_fields = include( 'data/data-wf-reserved-fields.php' );
|
21 |
$this->post_defaults = include( 'data/data-wf-post-defaults.php' );
|
@@ -56,7 +57,7 @@ class WF_CSV_Parser {
|
|
56 |
* @return array
|
57 |
*/
|
58 |
public function parse_data( $file, $delimiter, $mapping, $start_pos = 0, $end_pos = null, $eval_field ) {
|
59 |
-
// Set locale
|
60 |
$enc = mb_detect_encoding( $file, 'UTF-8, ISO-8859-1', true );
|
61 |
if ( $enc )
|
62 |
setlocale( LC_ALL, 'en_US.' . $enc );
|
@@ -129,13 +130,13 @@ class WF_CSV_Parser {
|
|
129 |
}
|
130 |
|
131 |
private function evaluate_field($value, $evaluation_field){
|
132 |
-
|
133 |
$processed_value = $value;
|
134 |
if(!empty($evaluation_field)){
|
135 |
$operator = substr($evaluation_field, 0, 1);
|
136 |
if(in_array($operator, array('=', '+', '-', '*', '/', '&'))){
|
137 |
$eval_val = substr($evaluation_field, 1);
|
138 |
-
|
139 |
switch($operator){
|
140 |
case '=':
|
141 |
$processed_value = trim($eval_val);
|
@@ -173,6 +174,7 @@ class WF_CSV_Parser {
|
|
173 |
* @return array
|
174 |
*/
|
175 |
public function parse_product( $item, $merge_empty_cells = 0 ) {
|
|
|
176 |
global $WF_CSV_Product_Import, $wpdb;
|
177 |
$this->row++;
|
178 |
|
@@ -180,7 +182,7 @@ class WF_CSV_Parser {
|
|
180 |
$attributes = $default_attributes = $gpf_data = null;
|
181 |
|
182 |
// Merging
|
183 |
-
$merging = ( ! empty( $_GET['merge'] ) && $_GET['merge'] ) ?
|
184 |
//if($item['post_parent']!== '' && $item['parent_sku'] !== ''){
|
185 |
|
186 |
$this->post_defaults['post_type'] = 'product';
|
@@ -865,9 +867,9 @@ class WF_CSV_Parser {
|
|
865 |
unset( $item, $terms_array, $postmeta, $attributes, $gpf_data, $images );
|
866 |
return $product;
|
867 |
}
|
868 |
-
function hf_currency_formatter($price){
|
|
|
869 |
$decimal_seperator = wc_get_price_decimal_separator();
|
870 |
-
//return ereg_replace("[^0-9\\'.$decimal_seperator.']", "", $price);
|
871 |
return preg_replace("[^0-9\\'.$decimal_seperator.']", "", $price);
|
872 |
}
|
873 |
}
|
16 |
* Constructor
|
17 |
*/
|
18 |
public function __construct( $post_type = 'product' ) {
|
19 |
+
|
20 |
$this->post_type = $post_type;
|
21 |
$this->reserved_fields = include( 'data/data-wf-reserved-fields.php' );
|
22 |
$this->post_defaults = include( 'data/data-wf-post-defaults.php' );
|
57 |
* @return array
|
58 |
*/
|
59 |
public function parse_data( $file, $delimiter, $mapping, $start_pos = 0, $end_pos = null, $eval_field ) {
|
60 |
+
// Set locale
|
61 |
$enc = mb_detect_encoding( $file, 'UTF-8, ISO-8859-1', true );
|
62 |
if ( $enc )
|
63 |
setlocale( LC_ALL, 'en_US.' . $enc );
|
130 |
}
|
131 |
|
132 |
private function evaluate_field($value, $evaluation_field){
|
133 |
+
|
134 |
$processed_value = $value;
|
135 |
if(!empty($evaluation_field)){
|
136 |
$operator = substr($evaluation_field, 0, 1);
|
137 |
if(in_array($operator, array('=', '+', '-', '*', '/', '&'))){
|
138 |
$eval_val = substr($evaluation_field, 1);
|
139 |
+
|
140 |
switch($operator){
|
141 |
case '=':
|
142 |
$processed_value = trim($eval_val);
|
174 |
* @return array
|
175 |
*/
|
176 |
public function parse_product( $item, $merge_empty_cells = 0 ) {
|
177 |
+
|
178 |
global $WF_CSV_Product_Import, $wpdb;
|
179 |
$this->row++;
|
180 |
|
182 |
$attributes = $default_attributes = $gpf_data = null;
|
183 |
|
184 |
// Merging
|
185 |
+
$merging = ( ! empty( $_GET['merge'] ) && $_GET['merge'] ) ? 1 : 0;
|
186 |
//if($item['post_parent']!== '' && $item['parent_sku'] !== ''){
|
187 |
|
188 |
$this->post_defaults['post_type'] = 'product';
|
867 |
unset( $item, $terms_array, $postmeta, $attributes, $gpf_data, $images );
|
868 |
return $product;
|
869 |
}
|
870 |
+
public function hf_currency_formatter($price){
|
871 |
+
|
872 |
$decimal_seperator = wc_get_price_decimal_separator();
|
|
|
873 |
return preg_replace("[^0-9\\'.$decimal_seperator.']", "", $price);
|
874 |
}
|
875 |
}
|
includes/importer/class-wf-prodimpexpcsv-product-import.php
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
2 |
/**
|
3 |
* WordPress Importer class for managing the import process of a CSV file
|
4 |
*
|
@@ -13,6 +16,7 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
|
|
13 |
var $id;
|
14 |
var $file_url;
|
15 |
var $delimiter;
|
|
|
16 |
var $merge_empty_cells;
|
17 |
|
18 |
// mappings from old information to new
|
@@ -40,7 +44,7 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
|
|
40 |
|
41 |
}
|
42 |
|
43 |
-
$this->import_page = '
|
44 |
$this->file_url_import_enabled = apply_filters( 'woocommerce_csv_product_file_url_import_enabled', true );
|
45 |
}
|
46 |
|
@@ -60,7 +64,13 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
|
|
60 |
|
61 |
if ( ! $this->delimiter )
|
62 |
$this->delimiter = ',';
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
if ( ! empty( $_POST['merge_empty_cells'] ) || ! empty( $_GET['merge_empty_cells'] ) ) {
|
65 |
$this->merge_empty_cells = 1;
|
66 |
} else{
|
@@ -148,6 +158,7 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
|
|
148 |
eval_field: '<?php echo stripslashes(json_encode(($_POST['eval_field']),JSON_HEX_APOS)) ?>',
|
149 |
delimiter: '<?php echo $this->delimiter; ?>',
|
150 |
merge_empty_cells: '<?php echo $this->merge_empty_cells; ?>',
|
|
|
151 |
start_pos: start_pos,
|
152 |
end_pos: end_pos,
|
153 |
};
|
@@ -516,15 +527,13 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
|
|
516 |
$saved_evaluation = null;
|
517 |
if($mapping_from_db && is_array($mapping_from_db) && count($mapping_from_db) == 2 && empty($_GET['clearmapping'])){
|
518 |
//if(count(array_intersect_key ( $mapping_from_db[0] , $row)) == count($mapping_from_db[0])){
|
519 |
-
$reset_action = 'admin.php?clearmapping=1&import=' . $this->import_page . '&step=1&merge=' .
|
520 |
$reset_action = esc_attr(wp_nonce_url($reset_action, 'import-upload'));
|
521 |
echo '<h3>' . __( 'Map to fields are pre-selected based on your last import. <a href="'.$reset_action.'">Click here</a> to clear saved mapping.', 'wf_csv_import_export' ) . '</h3>';
|
522 |
$saved_mapping = $mapping_from_db[0];
|
523 |
$saved_evaluation = $mapping_from_db[1];
|
524 |
//}
|
525 |
}
|
526 |
-
|
527 |
-
$merge = (!empty($_GET['merge']) && $_GET['merge']) ? 1 : 0;
|
528 |
|
529 |
$attrs = self::get_all_product_attributes();
|
530 |
$attr_keys = array_values($attrs);
|
@@ -1428,11 +1437,10 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
|
|
1428 |
|
1429 |
// Display import page title
|
1430 |
public function header() {
|
1431 |
-
echo '<div class="wrap"><div class="icon32" id="icon-woocommerce-importer"><br></div>';
|
1432 |
-
echo '<h2>' . ( empty( $_GET['merge'] ) ? __( 'Import', 'wf_csv_import_export' ) : __( 'Merge Products', 'wf_csv_import_export' ) ) . '</h2>';
|
1433 |
}
|
1434 |
|
1435 |
-
// Close div.wrap
|
1436 |
public function footer() {
|
1437 |
echo '</div>';
|
1438 |
}
|
@@ -1441,7 +1449,7 @@ class WF_ProdImpExpCsv_Product_Import extends WP_Importer {
|
|
1441 |
* Display introductory text and file upload form
|
1442 |
*/
|
1443 |
public function greet() {
|
1444 |
-
$action = 'admin.php?import=
|
1445 |
$bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
|
1446 |
$size = size_format( $bytes );
|
1447 |
$upload_dir = wp_upload_dir();
|
1 |
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
/**
|
6 |
* WordPress Importer class for managing the import process of a CSV file
|
7 |
*
|
16 |
var $id;
|
17 |
var $file_url;
|
18 |
var $delimiter;
|
19 |
+
var $merge;
|
20 |
var $merge_empty_cells;
|
21 |
|
22 |
// mappings from old information to new
|
44 |
|
45 |
}
|
46 |
|
47 |
+
$this->import_page = 'xa_woocommerce_csv';
|
48 |
$this->file_url_import_enabled = apply_filters( 'woocommerce_csv_product_file_url_import_enabled', true );
|
49 |
}
|
50 |
|
64 |
|
65 |
if ( ! $this->delimiter )
|
66 |
$this->delimiter = ',';
|
67 |
+
|
68 |
+
if ( ! empty( $_POST['merge'] ) || ! empty( $_GET['merge'] ) ) {
|
69 |
+
$this->merge = 1;
|
70 |
+
} else{
|
71 |
+
$this->merge = 0;
|
72 |
+
}
|
73 |
+
|
74 |
if ( ! empty( $_POST['merge_empty_cells'] ) || ! empty( $_GET['merge_empty_cells'] ) ) {
|
75 |
$this->merge_empty_cells = 1;
|
76 |
} else{
|
158 |
eval_field: '<?php echo stripslashes(json_encode(($_POST['eval_field']),JSON_HEX_APOS)) ?>',
|
159 |
delimiter: '<?php echo $this->delimiter; ?>',
|
160 |
merge_empty_cells: '<?php echo $this->merge_empty_cells; ?>',
|
161 |
+
merge: '<?php echo $this->merge; ?>',
|
162 |
start_pos: start_pos,
|
163 |
end_pos: end_pos,
|
164 |
};
|
527 |
$saved_evaluation = null;
|
528 |
if($mapping_from_db && is_array($mapping_from_db) && count($mapping_from_db) == 2 && empty($_GET['clearmapping'])){
|
529 |
//if(count(array_intersect_key ( $mapping_from_db[0] , $row)) == count($mapping_from_db[0])){
|
530 |
+
$reset_action = 'admin.php?clearmapping=1&import=' . $this->import_page . '&step=1&merge=' . $this->merge . '&file_url=' . $this->file_url . '&delimiter=' . $this->delimiter . '&merge_empty_cells=' . $this->merge_empty_cells . '&file_id=' . $this->id . '';
|
531 |
$reset_action = esc_attr(wp_nonce_url($reset_action, 'import-upload'));
|
532 |
echo '<h3>' . __( 'Map to fields are pre-selected based on your last import. <a href="'.$reset_action.'">Click here</a> to clear saved mapping.', 'wf_csv_import_export' ) . '</h3>';
|
533 |
$saved_mapping = $mapping_from_db[0];
|
534 |
$saved_evaluation = $mapping_from_db[1];
|
535 |
//}
|
536 |
}
|
|
|
|
|
537 |
|
538 |
$attrs = self::get_all_product_attributes();
|
539 |
$attr_keys = array_values($attrs);
|
1437 |
|
1438 |
// Display import page title
|
1439 |
public function header() {
|
1440 |
+
echo '<div class="pipe-import-wrap"><div class="icon32" id="icon-woocommerce-importer"><br></div>';
|
|
|
1441 |
}
|
1442 |
|
1443 |
+
// Close div.pipe-import-wrap
|
1444 |
public function footer() {
|
1445 |
echo '</div>';
|
1446 |
}
|
1449 |
* Display introductory text and file upload form
|
1450 |
*/
|
1451 |
public function greet() {
|
1452 |
+
$action = 'admin.php?import=xa_woocommerce_csv&step=1';
|
1453 |
$bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
|
1454 |
$size = size_format( $bytes );
|
1455 |
$upload_dir = wp_upload_dir();
|
includes/importer/data/data-wf-reserved-fields-pair.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
return array(
|
5 |
'id' => 'Product ID | Product ID',
|
6 |
'post_title' => 'Product Title | Product Title. ie Name of the product ',
|
7 |
-
'post_name' => 'Product
|
8 |
'post_status' => 'Product Status | Product Status ( published , draft ...)',
|
9 |
'post_content' => 'Product Description | Description about the Product',
|
10 |
'post_excerpt' => 'Product Short Description | Short description about the Product',
|
4 |
return array(
|
5 |
'id' => 'Product ID | Product ID',
|
6 |
'post_title' => 'Product Title | Product Title. ie Name of the product ',
|
7 |
+
'post_name' => 'Product Permalink | Unique part of the product link',
|
8 |
'post_status' => 'Product Status | Product Status ( published , draft ...)',
|
9 |
'post_content' => 'Product Description | Description about the Product',
|
10 |
'post_excerpt' => 'Product Short Description | Short description about the Product',
|
includes/importer/views/html-wf-import-greeting.php
CHANGED
@@ -1,55 +1,84 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
?>
|
19 |
-
<div>
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
</div>
|
1 |
<?php
|
2 |
+
if (!defined('ABSPATH')) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
|
6 |
+
$ftp_server = '';
|
7 |
+
$ftp_user = '';
|
8 |
+
$ftp_password = '';
|
9 |
+
$use_ftps = '';
|
10 |
+
$enable_ftp_ie = '';
|
11 |
+
$ftp_server_path = '';
|
12 |
+
if (!empty($ftp_settings)) {
|
13 |
+
$ftp_server = $ftp_settings['ftp_server'];
|
14 |
+
$ftp_user = $ftp_settings['ftp_user'];
|
15 |
+
$ftp_password = $ftp_settings['ftp_password'];
|
16 |
+
$use_ftps = $ftp_settings['use_ftps'];
|
17 |
+
$enable_ftp_ie = $ftp_settings['enable_ftp_ie'];
|
18 |
+
$ftp_server_path = $ftp_settings['ftp_server_path'];
|
19 |
+
}
|
|
|
20 |
?>
|
21 |
+
<div class="woocommerce">
|
22 |
+
|
23 |
+
<h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
|
24 |
+
<a href="<?php echo admin_url('admin.php?page=wf_woocommerce_csv_im_ex'); ?>" class="nav-tab"><?php _e('Product Export', 'wf_csv_import_export'); ?></a>
|
25 |
+
<a href="<?php echo admin_url('admin.php?import=xa_woocommerce_csv'); ?>" class="nav-tab nav-tab-active"><?php _e('Product Import', 'wf_csv_import_export'); ?></a>
|
26 |
+
<a href="<?php echo admin_url('admin.php?page=wf_woocommerce_csv_im_ex&tab=help'); ?>" class="nav-tab"><?php _e('Help', 'wf_csv_import_export'); ?></a>
|
27 |
+
<a href="https://www.xadapter.com/product/product-import-export-plugin-for-woocommerce/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
|
28 |
+
</h2>
|
29 |
|
30 |
+
<div class="pipe-main-box">
|
31 |
+
<div class="pipe-view bg-white p-20p">
|
32 |
+
<h3 class="title"><?php _e('Step 1: Import settings', 'wf_csv_import_export'); ?></h3>
|
33 |
+
<?php if (!empty($upload_dir['error'])) : ?>
|
34 |
+
<div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'wf_csv_import_export'); ?></p>
|
35 |
+
<p><strong><?php echo $upload_dir['error']; ?></strong></p></div>
|
36 |
+
<?php else : ?>
|
37 |
+
<div class="tool-box">
|
38 |
+
<p><?php _e('You can import products (in CSV format) in to the shop using by uploading a CSV file.', 'wf_csv_import_export'); ?></p>
|
39 |
+
<form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr(wp_nonce_url($action, 'import-upload')); ?>">
|
40 |
+
<table class="form-table">
|
41 |
+
<tbody>
|
42 |
+
<tr>
|
43 |
+
<th>
|
44 |
+
<label for="upload"><?php _e('Select a file from your computer', 'wf_csv_import_export'); ?></label>
|
45 |
+
</th>
|
46 |
+
<td>
|
47 |
+
<input type="file" id="upload" name="import" size="25" />
|
48 |
+
<input type="hidden" name="action" value="save" />
|
49 |
+
<input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" /><br/>
|
50 |
+
<small><?php _e('Please upload UTF-8 encoded CSV', 'wf_csv_import_export'); ?> -- <?php printf(__('Maximum size: %s', 'wf_csv_import_export'), $size); ?></small>
|
51 |
+
</td>
|
52 |
+
</tr>
|
53 |
+
<tr>
|
54 |
+
<th><label><?php _e('Update products if exists', 'wf_csv_import_export'); ?></label><br/></th>
|
55 |
+
<td>
|
56 |
+
<input type="checkbox" name="merge" id="merge">
|
57 |
+
<p><small><?php _e('Existing products are identified by their SKUs/IDs. If this option is not selected and if a product with same ID/SKU is found in the CSV, that product will not be imported.', 'wf_csv_import_export'); ?></small></p>
|
58 |
+
</td>
|
59 |
+
|
60 |
+
</tr>
|
61 |
+
<tr>
|
62 |
+
<th><label><?php _e('Delimiter', 'wf_csv_import_export'); ?></label><br/></th>
|
63 |
+
<td><input type="text" name="delimiter" placeholder="," size="2" /></td>
|
64 |
+
</tr>
|
65 |
+
<tr>
|
66 |
+
<th><label><?php _e('Merge empty cells', 'wf_csv_import_export'); ?></label><br/></th>
|
67 |
+
<td><input type="checkbox" name="merge_empty_cells" placeholder="," size="2" />
|
68 |
+
<p><small><?php _e('If this option is checked, empty attributes will be added to products with no value. You can leave this unchecked if you are not sure about this option.', 'wf_csv_import_export'); ?></small></p>
|
69 |
+
</td>
|
70 |
+
</tr>
|
71 |
+
</tbody>
|
72 |
+
</table>
|
73 |
+
<p class="submit">
|
74 |
+
<input type="submit" class="button button-primary" value="<?php esc_attr_e('Proceed to Import Mapping', 'wf_csv_import_export'); ?>" />
|
75 |
+
<p><span><i><?php _e('If you want to import from an FTP location or from a URL or to configure a scheduled import you may need to upgrade to premium version.', 'wf_csv_import_export'); ?></i></span></p>
|
76 |
+
</p>
|
77 |
+
</form>
|
78 |
+
<?php endif; ?>
|
79 |
+
</div>
|
80 |
+
</div>
|
81 |
+
<?php include(WF_ProdImpExpCsv_BASE . 'includes/views/market.php'); ?>
|
82 |
+
<div class="clearfix"></div>
|
83 |
+
</div>
|
84 |
</div>
|
includes/importer/views/html-wf-import-options.php
CHANGED
@@ -1,16 +1,28 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<?php wp_nonce_field('import-woocommerce'); ?>
|
3 |
<input type="hidden" name="import_id" value="<?php echo $this->id; ?>" />
|
4 |
<?php if ($this->file_url_import_enabled) : ?>
|
5 |
<input type="hidden" name="import_url" value="<?php echo $this->file_url; ?>" />
|
6 |
<?php endif; ?>
|
7 |
-
<h3><?php _e('
|
8 |
<p><?php _e('Here you can map your imported columns to product data fields.', 'wf_csv_import_export'); ?></p>
|
9 |
<table class="widefat widefat_importer">
|
10 |
<thead>
|
11 |
<tr>
|
12 |
-
<th><?php _e('
|
13 |
-
<th><?php _e('
|
14 |
<th><?php _e('Evaluation Field', 'wf_csv_import_export'); ?>
|
15 |
<?php $plugin_url = WC()->plugin_url(); ?>
|
16 |
<img class="help_tip" style="float:none;" data-tip="<?php _e('Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</br>Multiple 1.05 to Price:sale_price:</br>*1.05</br>Divide Price:sale_price by 2:</br>/2</br>Append a value By HikeFoce to post_title:</br>&By HikeFoce</br>Prepend a value HikeFoce to post_title:</br>&HikeFoce [VAL].', 'wf_csv_import_export'); ?>" src="<?php echo $plugin_url; ?>/assets/images/help.png" height="20" width="20" />
|
@@ -107,9 +119,13 @@
|
|
107 |
<?php endforeach; ?>
|
108 |
</tbody>
|
109 |
</table>
|
110 |
-
<p class="submit"
|
111 |
-
<
|
|
|
|
|
112 |
<input type="hidden" name="delimiter" value="<?php echo $this->delimiter ?>" />
|
113 |
<input type="hidden" name="merge_empty_cells" value="<?php echo $this->merge_empty_cells ?>" />
|
|
|
114 |
</p>
|
115 |
-
</form>
|
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
<h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
|
7 |
+
<a href="<?php echo admin_url('admin.php?page=wf_woocommerce_csv_im_ex'); ?>" class="nav-tab"><?php _e('Product Export', 'wf_csv_import_export'); ?></a>
|
8 |
+
<a href="<?php echo admin_url('admin.php?import=xa_woocommerce_csv'); ?>" class="nav-tab nav-tab-active"><?php _e('Product Import', 'wf_csv_import_export'); ?></a>
|
9 |
+
<a href="<?php echo admin_url('admin.php?page=wf_woocommerce_csv_im_ex&tab=help'); ?>" class="nav-tab"><?php _e('Help', 'wf_csv_import_export'); ?></a>
|
10 |
+
<a href="https://www.xadapter.com/product/product-import-export-plugin-for-woocommerce/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
|
11 |
+
</h2>
|
12 |
+
<div class="bg-white p-20p">
|
13 |
+
<form action="<?php echo admin_url('admin.php?import=' . $this->import_page . '&step=2&merge=' . $this->merge); ?>" method="post">
|
14 |
<?php wp_nonce_field('import-woocommerce'); ?>
|
15 |
<input type="hidden" name="import_id" value="<?php echo $this->id; ?>" />
|
16 |
<?php if ($this->file_url_import_enabled) : ?>
|
17 |
<input type="hidden" name="import_url" value="<?php echo $this->file_url; ?>" />
|
18 |
<?php endif; ?>
|
19 |
+
<h3><?php _e('Step 2: Import mapping', 'wf_csv_import_export'); ?></h3>
|
20 |
<p><?php _e('Here you can map your imported columns to product data fields.', 'wf_csv_import_export'); ?></p>
|
21 |
<table class="widefat widefat_importer">
|
22 |
<thead>
|
23 |
<tr>
|
24 |
+
<th><?php _e('Woocommerce product fields', 'wf_csv_import_export'); ?></th>
|
25 |
+
<th><?php _e('CSV column header(from imported file)', 'wf_csv_import_export'); ?></th>
|
26 |
<th><?php _e('Evaluation Field', 'wf_csv_import_export'); ?>
|
27 |
<?php $plugin_url = WC()->plugin_url(); ?>
|
28 |
<img class="help_tip" style="float:none;" data-tip="<?php _e('Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</br>Multiple 1.05 to Price:sale_price:</br>*1.05</br>Divide Price:sale_price by 2:</br>/2</br>Append a value By HikeFoce to post_title:</br>&By HikeFoce</br>Prepend a value HikeFoce to post_title:</br>&HikeFoce [VAL].', 'wf_csv_import_export'); ?>" src="<?php echo $plugin_url; ?>/assets/images/help.png" height="20" width="20" />
|
119 |
<?php endforeach; ?>
|
120 |
</tbody>
|
121 |
</table>
|
122 |
+
<p class="submit"><br/>
|
123 |
+
<span style="color:gray;"><i><?php _e('Time taken to Import the products depends on the time taken to fetch the images and the internet speed. If you have more than 1000 products we recommend doing the import in batches by splitting the CSV file. Please do not navigate away or close the window while the import is in progress.', 'wf_csv_import_export' ); ?></i></span>
|
124 |
+
<br/><br/>
|
125 |
+
<input type="submit" class="button button-primary" value="<?php esc_attr_e('Start Import', 'wf_csv_import_export'); ?>" />
|
126 |
<input type="hidden" name="delimiter" value="<?php echo $this->delimiter ?>" />
|
127 |
<input type="hidden" name="merge_empty_cells" value="<?php echo $this->merge_empty_cells ?>" />
|
128 |
+
<input type="hidden" name="merge" value="<?php echo $this->merge?>" />
|
129 |
</p>
|
130 |
+
</form>
|
131 |
+
</div>
|
includes/views/export/html-wf-export-products.php
CHANGED
@@ -1,74 +1,101 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
</
|
48 |
-
<
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
?>
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
</div>
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
<script>
|
7 |
+
jQuery(document).ready(function (a) {
|
8 |
+
"use strict";
|
9 |
+
// Listen for click on toggle checkbox
|
10 |
+
jQuery('#pselectall').live("click", function () {
|
11 |
+
// Iterate each checkbox
|
12 |
+
jQuery(':checkbox').each(function () {
|
13 |
+
this.checked = true;
|
14 |
+
});
|
15 |
+
});
|
16 |
+
jQuery('#punselectall').live("click", function () {
|
17 |
+
// Iterate each checkbox
|
18 |
+
jQuery(':checkbox').each(function () {
|
19 |
+
this.checked = false;
|
20 |
+
});
|
21 |
+
});
|
22 |
+
});
|
23 |
+
</script>
|
24 |
+
<div class="pipe-main-box">
|
25 |
+
<div class="tool-box bg-white p-20p pipe-view">
|
26 |
+
<h3 class="title" style="font-size: 1.3em !important;font-weight: 600;"><?php _e('Export Settings', 'wf_csv_import_export'); ?></h3>
|
27 |
+
<p><?php _e('Export and download your products in CSV file format. This file can be used to import products back into your WooCommerce store.', 'wf_csv_import_export'); ?></p>
|
28 |
+
<form action="<?php echo admin_url('admin.php?page=wf_woocommerce_csv_im_ex&action=export'); ?>" method="post">
|
29 |
+
<table class="form-table">
|
30 |
+
<tr>
|
31 |
+
<th>
|
32 |
+
<label for="v_offset"><?php _e('Offset', 'wf_csv_import_export'); ?></label>
|
33 |
+
</th>
|
34 |
+
<td>
|
35 |
+
<input type="text" name="offset" id="v_offset" placeholder="0" class="input-text" />
|
36 |
+
<p style="font-size: 12px"><?php _e('Number of products to skip before exporting. If the value is 0 no products are skipped. If value is 100, products from product id 101 will be exported.', 'wf_csv_import_export'); ?></p>
|
37 |
+
</td>
|
38 |
+
</tr>
|
39 |
+
<tr>
|
40 |
+
<th>
|
41 |
+
<label for="v_limit"><?php _e('Limit', 'wf_csv_import_export'); ?></label>
|
42 |
+
</th>
|
43 |
+
<td>
|
44 |
+
<input type="text" name="limit" id="v_limit" placeholder="<?php _e('Unlimited', 'wf_csv_import_export'); ?>" class="input-text" />
|
45 |
+
<p style="font-size: 12px"><?php _e('Number of products to export. If no value is given all products will be exported. This is useful if you have large number of products and want to export partial list of products.', 'wf_csv_import_export'); ?></p>
|
46 |
+
</td>
|
47 |
+
</tr>
|
48 |
+
<tr>
|
49 |
+
<th colspan="2">
|
50 |
+
<label for="v_columns"><?php _e('Columns', 'wf_csv_import_export'); ?></label>
|
51 |
+
<p style="font-size: 12px;font-weight:300;"><?php _e('Configure the Column Names of CSV file.', 'wf_csv_import_export'); ?></p>
|
52 |
+
</th>
|
53 |
+
<table id="datagrid">
|
54 |
+
<th style="text-align: left; padding:6px 25px !important; font-weight: normal !important;color:#000;">
|
55 |
+
<label for="v_columns"><?php _e('WooCommerce product field name', 'wf_csv_import_export'); ?></label>
|
56 |
+
</th>
|
57 |
+
<th style="text-align: left; padding:6px 25px !important; font-weight: normal !important;color:#000;">
|
58 |
+
<label for="v_columns_name"><?php _e('Column header name in the CSV file', 'wf_csv_import_export'); ?></label>
|
59 |
+
</th>
|
60 |
+
<!-- select all boxes -->
|
61 |
+
<tr>
|
62 |
+
<td style="padding: 10px;">
|
63 |
+
<a href="#" id="pselectall" onclick="return false;" ><?php _e('Select all', 'wf_csv_import_export'); ?></a> /
|
64 |
+
<a href="#" id="punselectall" onclick="return false;"><?php _e('Unselect all', 'wf_csv_import_export'); ?></a>
|
65 |
+
</td>
|
66 |
+
</tr>
|
67 |
+
<?php
|
68 |
+
$post_columns['images'] = 'Images (featured and gallery)';
|
69 |
+
$post_columns['file_paths'] = 'Downloadable file paths';
|
70 |
+
$post_columns['taxonomies'] = 'Taxonomies (cat/tags/shipping-class)';
|
71 |
+
$post_columns['attributes'] = 'Attributes';
|
72 |
?>
|
73 |
+
<?php foreach ($post_columns as $pkey => $pcolumn) {
|
74 |
+
?>
|
75 |
+
<tr>
|
76 |
+
<td>
|
77 |
+
<input name= "columns[<?php echo $pkey; ?>]" type="checkbox" value="<?php echo $pkey; ?>" checked>
|
78 |
+
<label for="columns[<?php echo $pkey; ?>]"><?php _e($pcolumn, 'wf_csv_import_export'); ?></label>
|
79 |
+
</td>
|
80 |
+
<td>
|
81 |
+
<?php
|
82 |
+
$tmpkey = $pkey;
|
83 |
+
if (strpos($pkey, 'yoast') === false) {
|
84 |
+
$tmpkey = ltrim($pkey, '_');
|
85 |
+
}
|
86 |
+
?>
|
87 |
+
<input type="text" name="columns_name[<?php echo $pkey; ?>]" value="<?php echo $tmpkey; ?>" class="input-text" />
|
88 |
+
</td>
|
89 |
+
</tr>
|
90 |
+
<?php } ?>
|
91 |
+
|
92 |
+
</table><br/>
|
93 |
+
</tr>
|
94 |
+
</table>
|
95 |
+
<p class="submit"><input type="submit" class="button button-primary" value="<?php _e('Export Products', 'wf_csv_import_export'); ?>" /></p>
|
96 |
+
<p><span><i><?php _e('With this version of the plugin you can export products (except variable products) in to a file. If you want to export to an FTP location (scheduled / manual ) you may need to upgrade to premium version.', 'wf_csv_import_export'); ?></i></span></p>
|
97 |
+
</form>
|
98 |
+
</div>
|
99 |
+
<?php include(WF_ProdImpExpCsv_BASE . 'includes/views/market.php'); ?>
|
100 |
+
<div class="clearfix"></div>
|
101 |
</div>
|
includes/views/html-wf-admin-screen.php
CHANGED
@@ -1,18 +1,26 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
4 |
<div class="icon32" id="icon-woocommerce-importer"><br></div>
|
5 |
<h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
|
6 |
-
<a href="<?php echo admin_url('admin.php?page=wf_woocommerce_csv_im_ex') ?>" class="nav-tab <?php echo ($tab
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
10 |
switch ($tab) {
|
11 |
-
case "
|
12 |
-
$this->
|
13 |
break;
|
|
|
|
|
14 |
default :
|
15 |
-
$this->
|
16 |
break;
|
17 |
}
|
18 |
?>
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
<div class="woocommerce">
|
7 |
<div class="icon32" id="icon-woocommerce-importer"><br></div>
|
8 |
<h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
|
9 |
+
<a href="<?php echo admin_url('admin.php?page=wf_woocommerce_csv_im_ex'); ?>" class="nav-tab <?php echo ('help' != $tab) ? 'nav-tab-active' : ''; ?>"><?php _e('Product Export', 'wf_csv_import_export'); ?></a>
|
10 |
+
<a href="<?php echo admin_url('admin.php?import=xa_woocommerce_csv'); ?>" class="nav-tab"><?php _e('Product Import', 'wf_csv_import_export'); ?></a>
|
11 |
+
<a href="<?php echo admin_url('admin.php?page=wf_woocommerce_csv_im_ex&tab=help'); ?>" class="nav-tab <?php echo ('help' == $tab) ? 'nav-tab-active' : ''; ?>"><?php _e('Help', 'wf_csv_import_export'); ?></a>
|
12 |
+
<a href="https://www.xadapter.com/product/product-import-export-plugin-for-woocommerce/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
|
13 |
+
|
14 |
+
</h2>
|
15 |
+
<?php
|
16 |
switch ($tab) {
|
17 |
+
case "help" :
|
18 |
+
$this->admin_help_page();
|
19 |
break;
|
20 |
+
|
21 |
+
case "export":
|
22 |
default :
|
23 |
+
$this->admin_export_page();
|
24 |
break;
|
25 |
}
|
26 |
?>
|
includes/views/html-wf-help-guide.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
<style>
|
7 |
+
.help-guide .cols {
|
8 |
+
display: flex;
|
9 |
+
}
|
10 |
+
.help-guide .inner-panel {
|
11 |
+
padding: 40px;
|
12 |
+
background-color: #FFF;
|
13 |
+
margin: 15px 10px;
|
14 |
+
box-shadow: 1px 1px 5px 1px rgba(0,0,0,.1);
|
15 |
+
text-align: center;
|
16 |
+
}
|
17 |
+
.help-guide .inner-panel p{
|
18 |
+
margin-bottom: 20px;
|
19 |
+
}
|
20 |
+
.help-guide .inner-panel img{
|
21 |
+
margin:30px 15px 0;
|
22 |
+
}
|
23 |
+
|
24 |
+
</style>
|
25 |
+
<div class="pipe-main-box">
|
26 |
+
<div class="tool-box bg-white p-20p pipe-view">
|
27 |
+
<div id="tab-help" class="coltwo-col panel help-guide">
|
28 |
+
<div class="cols">
|
29 |
+
<div class="inner-panel" style="">
|
30 |
+
<img src="<?php echo plugins_url(basename(plugin_dir_path(WF_ProdImpExpCsv_FILE))) . '/images/video.png'; ?>"/>
|
31 |
+
<h3><?php _e('How-to-setup', 'wf_csv_import_export'); ?></h3>
|
32 |
+
<p style=""><?php _e('Get to know about our produt in 3 minutes with this video', 'wf_csv_import_export'); ?></p>
|
33 |
+
<a href="https://www.xadapter.com/setting-up-product-import-export-plugin-for-woocommerce/" target="_blank" class="button button-primary">
|
34 |
+
<?php _e('Setup Guide', 'wf_csv_import_export'); ?></a>
|
35 |
+
</div>
|
36 |
+
|
37 |
+
<div class="inner-panel" style="">
|
38 |
+
<img src="<?php echo plugins_url(basename(plugin_dir_path(WF_ProdImpExpCsv_FILE))) . '/images/documentation.png'; ?>"/>
|
39 |
+
<h3><?php _e('Documentation', 'wf_csv_import_export'); ?></h3>
|
40 |
+
<p style=""><?php _e('Refer to our documentation to set and get started', 'wf_csv_import_export'); ?></p>
|
41 |
+
<a target="_blank" href="https://www.xadapter.com/category/product/product-import-export-plugin-for-woocommerce/" class="button-primary"><?php _e('Documentation', 'wf_csv_import_export'); ?></a>
|
42 |
+
</div>
|
43 |
+
|
44 |
+
<div class="inner-panel" style="">
|
45 |
+
<img src="<?php echo plugins_url(basename(plugin_dir_path(WF_ProdImpExpCsv_FILE))) . '/images/support.png'; ?>"/>
|
46 |
+
<h3><?php _e('Support', 'wf_csv_import_export'); ?></h3>
|
47 |
+
<p style=""><?php _e('We would love to help you on any queries or issues.', 'wf_csv_import_export'); ?></p>
|
48 |
+
<a href="https://support.xadapter.com/hc/en-us/requests/new?" target="_blank" class="button button-primary">
|
49 |
+
<?php _e('Contact Us', 'wf_csv_import_export'); ?></a>
|
50 |
+
</div>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
<?php include(WF_ProdImpExpCsv_BASE . 'includes/views/market.php'); ?>
|
55 |
+
<div class="clearfix"></div>
|
56 |
+
</div>
|
includes/views/market.php
CHANGED
@@ -1,97 +1,41 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
border: 1px solid #ccc;
|
14 |
-
-webkit-border-radius: 60px 5px;
|
15 |
-
-webkit-box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1) inset;
|
16 |
-
}
|
17 |
-
.box14_ribbon{
|
18 |
-
position:absolute;
|
19 |
-
top:0; right: 0;
|
20 |
-
width: 130px;
|
21 |
-
height: 40px;
|
22 |
-
background: -webkit-gradient(linear, 555% 20%, 0% 92%, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.0)), color-stop(.1,rgba(0, 0, 0, 0.2)));
|
23 |
-
border-left: 1px dashed rgba(0, 0, 0, 0.1);
|
24 |
-
border-right: 1px dashed rgba(0, 0, 0, 0.1);
|
25 |
-
-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
|
26 |
-
-webkit-transform: rotate(6deg) skew(0,0) translate(-60%,-5px);
|
27 |
-
}
|
28 |
-
.box14 h3
|
29 |
-
{
|
30 |
-
text-align:center;
|
31 |
-
margin:2px;
|
32 |
-
}
|
33 |
-
.box14 p
|
34 |
-
{
|
35 |
-
text-align:center;
|
36 |
-
margin:2px;
|
37 |
-
border-width:1px;
|
38 |
-
border-style:solid;
|
39 |
-
padding:5px;
|
40 |
-
border-color: rgb(204, 204, 204);
|
41 |
-
}
|
42 |
-
.box14 span
|
43 |
-
{
|
44 |
-
background:#fff;
|
45 |
-
padding:5px;
|
46 |
-
display:block;
|
47 |
-
box-shadow:green 0px 3px inset;
|
48 |
-
margin-top:10px;
|
49 |
-
}
|
50 |
-
.box14 img {
|
51 |
-
width: 40%;
|
52 |
-
padding-left:30%;
|
53 |
-
margin-top: 5px;
|
54 |
-
}
|
55 |
-
.table-box-main {
|
56 |
-
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
57 |
-
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
|
58 |
-
}
|
59 |
-
|
60 |
-
.table-box-main:hover {
|
61 |
-
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
|
62 |
-
}
|
63 |
-
</style>
|
64 |
-
<div class="box14 table-box-main">
|
65 |
-
<h3>
|
66 |
-
<center><a href="https://www.xadapter.com/" target="_blank" style="text-decoration: none;color:black;" >XAdapter</a></center></h3>
|
67 |
-
<hr>
|
68 |
-
<img src= <?php echo plugins_url()."/product-import-export-for-woo/images/Import-Export-for-WooCommerce-Product-Image.png"; ?>>
|
69 |
-
<h3>Product/Review Import Export Plugin For WooCommerce<br/></h3>
|
70 |
-
<!-- <p style="color:red;">
|
71 |
-
<strong>Your Business is precious. Go Premium!</strong>
|
72 |
-
</p> -->
|
73 |
-
<br/>
|
74 |
-
<center><a href="http://www.xadapter.com/product/product-import-export-plugin-for-woocommerce/" target="_blank" class="button button-primary"><?php _e( 'Upgrade to Premium Version', 'wf_csv_import_export'); ?></a></center>
|
75 |
<span>
|
76 |
-
|
77 |
-
|
78 |
-
<li
|
79 |
-
<li
|
80 |
-
<li
|
81 |
-
<li
|
82 |
-
<li
|
83 |
-
<li
|
84 |
-
<li
|
85 |
-
<li
|
86 |
-
<li
|
87 |
-
<li
|
88 |
-
|
|
|
|
|
|
|
|
|
89 |
</span>
|
90 |
-
|
91 |
-
<
|
92 |
-
<a
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
<
|
97 |
-
|
|
|
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
<div class="market-box table-box-main">
|
7 |
+
<div class="getting-started-video">
|
8 |
+
<h2><?php _e('Watch getting started video', 'wf_csv_import_export');?></h2>
|
9 |
+
<iframe src="https://www.youtube.com/embed/L-01qI1EZWE?rel=0&showinfo=0" frameborder="0" allowfullscreen="allowfullscreen" align="center"></iframe>
|
10 |
+
</div>
|
11 |
+
<div class="pipe-premium-features">
|
12 |
+
<center><a href="https://www.xadapter.com/product/product-import-export-plugin-for-woocommerce/" target="_blank" class="button button-primary button-go-pro"><?php _e('Upgrade to Premium Version', 'wf_csv_import_export'); ?></a></center>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
<span>
|
14 |
+
<ul>
|
15 |
+
<li><?php _e('Export simple, group, external and variation products.', 'wf_csv_import_export');?></li>
|
16 |
+
<li><?php _e('Import simple, group, external and variation products.', 'wf_csv_import_export');?></li>
|
17 |
+
<li><?php _e('Export products by category.', 'wf_csv_import_export');?></li>
|
18 |
+
<li><?php _e('Various filter options for exporting products.', 'wf_csv_import_export');?> </li>
|
19 |
+
<li><?php _e('Map and transform fields while importing products.', 'wf_csv_import_export');?></li>
|
20 |
+
<li><?php _e('Change values while importing products using evaluation fields.', 'wf_csv_import_export');?></li>
|
21 |
+
<li><?php _e('Choice to update or skip existing imported products.', 'wf_csv_import_export');?></li>
|
22 |
+
<li><?php _e('WPML supported. French and German support out of the box.', 'wf_csv_import_export');?></li>
|
23 |
+
<li><?php _e('Import/Export file via FTP.', 'wf_csv_import_export');?></li>
|
24 |
+
<li><?php _e('Import from URL.', 'wf_csv_import_export');?></li>
|
25 |
+
<li><?php _e('Automatic scheduled import and export.', 'wf_csv_import_export');?></li>
|
26 |
+
<li><?php _e('Supports product reviews export and import.', 'wf_csv_import_export');?></li>
|
27 |
+
<li><?php _e('30 Days Money Back Guarantee.', 'wf_csv_import_export');?></li>
|
28 |
+
<li><?php _e('More frequent plugin updates.', 'wf_csv_import_export');?></li>
|
29 |
+
<li><?php _e('Excellent Support for setting it up!', 'wf_csv_import_export');?></li>
|
30 |
+
</ul>
|
31 |
</span>
|
32 |
+
<center>
|
33 |
+
<a href="http://productimportexport.webtoffee.com/" target="_blank" class="button button-doc-demo"><?php _e('Live Demo', 'wf_csv_import_export'); ?></a>
|
34 |
+
<a href="https://www.xadapter.com/category/product/product-import-export-plugin-for-woocommerce/" target="_blank" class="button button-doc-demo"><?php _e('Documentation', 'wf_csv_import_export'); ?></a></center>
|
35 |
+
</div>
|
36 |
+
<div class="pipe-review-widget">
|
37 |
+
<?php
|
38 |
+
echo sprintf(__('<div class=""><p><i>If you like the plugin please leave us a %1$s review!</i><p></div>', 'wf_csv_import_export'), '<a href="https://wordpress.org/support/plugin/product-import-export-for-woo/reviews?rate=5#new-post" target="_blank" class="xa-pipe-rating-link" data-reviewed="' . esc_attr__('Thanks for the review.', 'wf_csv_import_export') . '">★★★★★</a>');
|
39 |
+
?>
|
40 |
+
</div>
|
41 |
+
</div>
|
lang/wf_csv_import_export-de_DE.mo
CHANGED
Binary file
|
lang/wf_csv_import_export-de_DE.po
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Product-Import-Export-Basic\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: HikeForce <support@hikeforce.com>\n"
|
8 |
"Language: de_DE\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
-
"X-Poedit-Basepath:
|
15 |
-
"X-Poedit-SearchPath-0:
|
16 |
|
17 |
-
#:
|
18 |
msgid ""
|
19 |
"Product CSV Import Export requires the function <code>mb_detect_encoding</"
|
20 |
"code> to import and export CSV files. Please ask your hosting provider to "
|
@@ -24,36 +24,46 @@ msgstr ""
|
|
24 |
"code> zum Importieren und Exportieren von CSV-Dateien. Bitte fragen Sie "
|
25 |
"Ihren Hosting-Anbieter diese Funktion zu aktivieren."
|
26 |
|
27 |
-
#:
|
|
|
28 |
msgid "Product Im-Ex"
|
29 |
msgstr "Produkt Im-Ex"
|
30 |
|
31 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
#, php-format
|
33 |
msgid "Failed resize: %s is an invalid image ID."
|
34 |
msgstr "Ändern der Bildgrößen fehlgeschlagen: %s ist keine gültige Bild ID"
|
35 |
|
36 |
-
#:
|
37 |
msgid "Your user account doesn't have permission to resize images"
|
38 |
msgstr ""
|
39 |
"Du hast nicht die erforderlichen Rechte für die Änderung der Bildgrößen."
|
40 |
|
41 |
-
#:
|
42 |
#, php-format
|
43 |
msgid "The originally uploaded image file cannot be found at %s"
|
44 |
msgstr "Das Originalbild kann unter %s nicht gefunden werden"
|
45 |
|
46 |
-
#:
|
47 |
msgid "Unknown failure reason."
|
48 |
msgstr "Unbekannter Fehler."
|
49 |
|
50 |
-
#:
|
51 |
#, php-format
|
52 |
msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
53 |
msgstr ""
|
54 |
""%1$s" (ID %2$s) wurde erfolgreich in %3$s Sekunden verkleinert."
|
55 |
|
56 |
-
#:
|
57 |
#, php-format
|
58 |
msgid ""
|
59 |
""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
@@ -61,168 +71,168 @@ msgstr ""
|
|
61 |
""%1$s" (ID %2$s) konnte nicht geändert werden. Die Fehlermeldung "
|
62 |
"lautet: %3$s"
|
63 |
|
64 |
-
#:
|
65 |
msgid "Delete Products"
|
66 |
msgstr "Produkte löschen"
|
67 |
|
68 |
-
#:
|
69 |
msgid "Delete ALL products"
|
70 |
msgstr "Alle Artikel löschen"
|
71 |
|
72 |
-
#:
|
73 |
msgid "This tool will delete all products allowing you to start fresh."
|
74 |
msgstr ""
|
75 |
"Dieses Tool löscht alle Produkte, so dass Sie Komplett neu beginnen können."
|
76 |
|
77 |
-
#:
|
78 |
msgid "Delete Variations"
|
79 |
msgstr "Alle Varianten löschen"
|
80 |
|
81 |
-
#:
|
82 |
msgid "Delete ALL variations"
|
83 |
msgstr "Alle Varianten löschen"
|
84 |
|
85 |
-
#:
|
86 |
msgid "This tool will delete all variations allowing you to start fresh."
|
87 |
msgstr ""
|
88 |
"Dieses Tool löscht alle Variationen, so dass Sie Komplett neu beginnen "
|
89 |
"können."
|
90 |
|
91 |
-
#:
|
92 |
msgid "Delete Orphans"
|
93 |
msgstr "Löschen von Waisen"
|
94 |
|
95 |
-
#:
|
96 |
msgid "Delete orphaned variations"
|
97 |
msgstr "Löschen verwaiste Variationen"
|
98 |
|
99 |
-
#:
|
100 |
msgid "This tool will delete variations which have no parent."
|
101 |
msgstr "Dieses Tool löscht Variationen, die keine Elternvariationen haben."
|
102 |
|
103 |
-
#:
|
104 |
#, php-format
|
105 |
msgid "%d Products Deleted"
|
106 |
msgstr "%d Produkte gelöscht"
|
107 |
|
108 |
-
#:
|
109 |
-
#:
|
110 |
#, php-format
|
111 |
msgid "%d Variations Deleted"
|
112 |
msgstr "%d Variationen gelöscht"
|
113 |
|
114 |
-
#:
|
115 |
#, php-format
|
116 |
msgid "> Row %s - preparing for merge."
|
117 |
msgstr "> Zeile %s - Seriendruck vorbereiten."
|
118 |
|
119 |
-
#:
|
120 |
msgid "> > Cannot merge without id or sku. Importing instead."
|
121 |
msgstr ""
|
122 |
">> Ohne Ausweis oder Sku kann nicht zusammengeführt werden. Stattdessen "
|
123 |
"werden importiert."
|
124 |
|
125 |
-
#:
|
126 |
#, php-format
|
127 |
msgid "> > Skipped. Cannot find product with sku %s. Importing instead."
|
128 |
msgstr ""
|
129 |
">> Übersprungen. Produkt mit Sku %s nicht finden stattdessen importieren."
|
130 |
|
131 |
-
#:
|
132 |
#, php-format
|
133 |
msgid "> > Found product with ID %s."
|
134 |
msgstr ">> Gefunden Sie Produkt mit ID %s."
|
135 |
|
136 |
-
#:
|
137 |
#, php-format
|
138 |
msgid "> Row %s - preparing for import."
|
139 |
msgstr "> Zeile %s - Vorbereitung für den Import."
|
140 |
|
141 |
-
#:
|
142 |
msgid "> > Skipped. No post_title set for new product."
|
143 |
msgstr ">> Übersprungen. Keine Post_title für neues Produkt festgelegt."
|
144 |
|
145 |
-
#:
|
146 |
msgid "No post_title set for new product."
|
147 |
msgstr "Keine Post_title für neues Produkt festgelegt."
|
148 |
|
149 |
-
#:
|
150 |
msgid "> > Skipped. No parent set for new variation product."
|
151 |
msgstr ""
|
152 |
">> Übersprungen. Kein übergeordnetes Element für neue Variation Produkt "
|
153 |
"festgelegt."
|
154 |
|
155 |
-
#:
|
156 |
msgid "No parent set for new variation product."
|
157 |
msgstr "Kein übergeordnetes Element für neue Variation Produkt festgelegt."
|
158 |
|
159 |
-
#:
|
160 |
#, php-format
|
161 |
msgid "> > Skipping taxonomy \"%s\" - it does not exist."
|
162 |
msgstr ">> Überspringen Taxonomie \"%s\" - Es ist nicht vorhanden."
|
163 |
|
164 |
-
#:
|
165 |
#, php-format
|
166 |
msgid "> > > Product type \"%s\" not allowed - using simple."
|
167 |
msgstr ">>> Produkt-Typ \"%s\" nicht erlaubt - mit einfachen."
|
168 |
|
169 |
-
#:
|
170 |
-
#:
|
171 |
msgid "> > ("
|
172 |
msgstr "> > ("
|
173 |
|
174 |
-
#:
|
175 |
-
#:
|
176 |
#, php-format
|
177 |
msgid "> > Failed to import term %s %s"
|
178 |
msgstr "Fehler beim Importieren von %s %s"
|
179 |
|
180 |
-
#:
|
181 |
#, php-format
|
182 |
msgid "> > Attribute taxonomy \"%s\" does not exist. Adding it. Nicename: %s"
|
183 |
msgstr ""
|
184 |
">> Attribut Taxonomie \"%s\" ist nicht vorhanden. Hinzufügen. Nicename: %s"
|
185 |
|
186 |
-
#:
|
187 |
#, php-format
|
188 |
msgid "> > Attribute taxonomy %s already exists in DB."
|
189 |
msgstr ">> Attribut Taxonomie %s existiert bereits in DB."
|
190 |
|
191 |
-
#:
|
192 |
#, php-format
|
193 |
msgid "> > Inserted Raw Term %s ID = %s"
|
194 |
msgstr ">> Eingefügt rohen Begriff %s ID = %s"
|
195 |
|
196 |
-
#:
|
197 |
#, php-format
|
198 |
msgid "> > Raw Term %s ID = %s"
|
199 |
msgstr ">> Roh Begriff %s ID = %s"
|
200 |
|
201 |
-
#:
|
202 |
msgid "Error with handle_upload!"
|
203 |
msgstr "Fehler mit Handle_upload!"
|
204 |
|
205 |
-
#:
|
206 |
msgid "Row"
|
207 |
msgstr "Zeile"
|
208 |
|
209 |
-
#:
|
210 |
msgid "SKU"
|
211 |
msgstr "SKU"
|
212 |
|
213 |
-
#:
|
214 |
msgid "Product"
|
215 |
msgstr "Produkt"
|
216 |
|
217 |
-
#:
|
218 |
msgid "Status Msg"
|
219 |
msgstr "Status Msg"
|
220 |
|
221 |
-
#:
|
222 |
msgid "AJAX Error"
|
223 |
msgstr "Ajax Fehler"
|
224 |
|
225 |
-
#:
|
226 |
#, php-format
|
227 |
msgid ""
|
228 |
"The resize request was abnormally terminated (ID %s). This is likely due to "
|
@@ -231,203 +241,231 @@ msgstr ""
|
|
231 |
"Die Größenänderung wurde abgebrochen (ID %s). Dies ist wahrscheinlich auf zu "
|
232 |
"wenig verfügbarem Speicher oder einen schwerwiegenden Fehler zurückzuführen."
|
233 |
|
234 |
-
#:
|
235 |
msgid "thumbnails regenerated"
|
236 |
msgstr "Miniaturansichten regeneriert"
|
237 |
|
238 |
-
#:
|
239 |
msgid "Error finding uploaded file!"
|
240 |
msgstr "Fehler beim suchen Datei hochgeladen!"
|
241 |
|
242 |
-
#:
|
243 |
msgid "Step 1..."
|
244 |
msgstr "1. Schritt"
|
245 |
|
246 |
-
#:
|
247 |
msgid "Step 2..."
|
248 |
msgstr "2. Schritt"
|
249 |
|
250 |
-
#:
|
251 |
msgid "Finalizing..."
|
252 |
msgstr "Finalisierung"
|
253 |
|
254 |
-
#:
|
255 |
msgid "Linking upsells..."
|
256 |
msgstr "Upsells verknüpft..."
|
257 |
|
258 |
-
#:
|
259 |
msgid "Linking crosssells..."
|
260 |
msgstr "Verknüpfen Crosssells..."
|
261 |
|
262 |
-
#:
|
263 |
msgid "Finished. Import complete."
|
264 |
msgstr "Fertig. Import abgeschlossen."
|
265 |
|
266 |
-
#:
|
267 |
msgid "Map to fields are pre-selected based on your last import. <a href=\""
|
268 |
msgstr ""
|
269 |
"Karte, um Felder sind vorausgewählt, basierend auf Ihren letzten Import. < "
|
270 |
"ein Href = \""
|
271 |
|
272 |
-
#:
|
273 |
msgid "Processing products."
|
274 |
msgstr "Verarbeitung von Produkten."
|
275 |
|
276 |
-
#:
|
277 |
msgid "Finished processing products."
|
278 |
msgstr "Produkte verarbeitet."
|
279 |
|
280 |
-
#:
|
281 |
msgid "Parsing products CSV."
|
282 |
msgstr "Parsen Produkte CSV."
|
283 |
|
284 |
-
#:
|
285 |
msgid "Finished parsing products CSV."
|
286 |
msgstr "Parsing Fertigprodukte CSV."
|
287 |
|
288 |
-
#:
|
289 |
-
#:
|
290 |
msgid "Sorry, there has been an error."
|
291 |
msgstr "Leider ist ein Fehler aufgetreten."
|
292 |
|
293 |
-
#:
|
294 |
msgid "Product already processed"
|
295 |
msgstr "Produkt bereits verarbeitet"
|
296 |
|
297 |
-
#:
|
298 |
msgid "> Post ID already processed. Skipping."
|
299 |
msgstr "> Post ID bereits verarbeitet. Wird übersprungen."
|
300 |
|
301 |
-
#:
|
302 |
msgid "Skipping auto-draft"
|
303 |
msgstr "Überspringen von Auto-Entwurf"
|
304 |
|
305 |
-
#:
|
306 |
msgid "> Skipping auto-draft."
|
307 |
msgstr "> Überspringen Auto-Entwurf."
|
308 |
|
309 |
-
#:
|
310 |
#, php-format
|
311 |
msgid "> “%s”"
|
312 |
msgstr "> “ %s ”"
|
313 |
|
314 |
-
#:
|
315 |
msgid "Importing post ID conflicts with an existing post ID"
|
316 |
msgstr ""
|
317 |
"Post-ID verursacht einen Konflikt mit einer vorhandenen Post-ID importieren"
|
318 |
|
319 |
-
#:
|
320 |
#, php-format
|
321 |
msgid "> “%s” ID already exists."
|
322 |
msgstr "> “ %s ” ID bereits vorhanden ist."
|
323 |
|
324 |
-
#:
|
325 |
msgid "Post is not a product"
|
326 |
msgstr "Post ist kein Produkt"
|
327 |
|
328 |
-
#:
|
329 |
#, php-format
|
330 |
msgid "> “%s” is not a product."
|
331 |
msgstr "> “ %s ” ist kein Produkt."
|
332 |
|
333 |
-
#:
|
334 |
#, php-format
|
335 |
msgid "> Merging post ID %s."
|
336 |
msgstr "> Post-ID %s zusammenführen."
|
337 |
|
338 |
-
#:
|
339 |
msgid "Failed to update product"
|
340 |
msgstr "Fehler beim Aktualisieren der Produkt"
|
341 |
|
342 |
-
#:
|
343 |
#, php-format
|
344 |
msgid "> Failed to update product %s"
|
345 |
msgstr "> Fehler beim Aktualisieren der Produkt %s"
|
346 |
|
347 |
-
#:
|
348 |
msgid "> Merged post data: "
|
349 |
msgstr "> Fusioniert post Daten:"
|
350 |
|
351 |
-
#:
|
352 |
#, php-format
|
353 |
msgid "> Inserting %s"
|
354 |
msgstr "> Einfügen von %s"
|
355 |
|
356 |
-
#:
|
357 |
msgid "Failed to import product"
|
358 |
msgstr "Fehler beim Importieren von Produkt"
|
359 |
|
360 |
-
#:
|
361 |
#, php-format
|
362 |
msgid "Failed to import product “%s”"
|
363 |
msgstr "Fehler beim Importieren von Produkt “ %s ”"
|
364 |
|
365 |
-
#:
|
366 |
#, php-format
|
367 |
msgid "> Inserted - post ID is %s."
|
368 |
msgstr "> Beitrags-ID ist eingefügt - ' %s'."
|
369 |
|
370 |
-
#:
|
371 |
#, php-format
|
372 |
msgid "> > Image exists - skipping %s"
|
373 |
msgstr ">> Bild existiert - überspringen von %s"
|
374 |
|
375 |
-
#:
|
376 |
#, php-format
|
377 |
msgid "> > Importing image \"%s\""
|
378 |
msgstr ">> Import von Bild \"%s\""
|
379 |
|
380 |
-
#:
|
381 |
#, php-format
|
382 |
msgid "> > Imported image \"%s\""
|
383 |
msgstr ">> Importierten Bildes \"%s\""
|
384 |
|
385 |
-
#:
|
386 |
#, php-format
|
387 |
msgid "> > Error importing image \"%s\""
|
388 |
msgstr ">> Fehler beim Importieren von Bild \"%s\""
|
389 |
|
390 |
-
#:
|
391 |
msgid "> > Images set"
|
392 |
msgstr ">> Bilder"
|
393 |
|
394 |
-
#:
|
395 |
#, php-format
|
396 |
msgid "> Finished merging post ID %s."
|
397 |
msgstr "> Zusammenführen von Post-ID %s beendet."
|
398 |
|
399 |
-
#:
|
400 |
#, php-format
|
401 |
msgid "> Finished importing post ID %s."
|
402 |
msgstr "> Importieren Post ID %s beendet."
|
403 |
|
404 |
-
#:
|
405 |
-
#:
|
406 |
msgid "Invalid file type"
|
407 |
msgstr "Ungültiger Dateityp"
|
408 |
|
409 |
-
#:
|
410 |
msgid "Local image did not exist!"
|
411 |
msgstr "Lokales Bild gab es nicht!"
|
412 |
|
413 |
-
#:
|
414 |
#, php-format
|
415 |
msgid "> > Inserted image attachment \"%s\""
|
416 |
msgstr ">> Anlage eingefügte Bild \"%s\""
|
417 |
|
418 |
-
#:
|
419 |
msgid "Zero size file downloaded"
|
420 |
msgstr "Datei ohne Inhalt heruntergeladen"
|
421 |
|
422 |
-
#:
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
429 |
|
430 |
-
#:
|
431 |
msgid ""
|
432 |
"You can import products (in CSV format) in to the shop using any of below "
|
433 |
"methods."
|
@@ -435,62 +473,81 @@ msgstr ""
|
|
435 |
"Sie können Produkte (im CSV-Format) in den Shop mit einer der folgenden "
|
436 |
"Methoden importieren."
|
437 |
|
438 |
-
#:
|
439 |
-
msgid ""
|
440 |
-
"Before you can upload your import file, you will need to fix the following "
|
441 |
-
"error:"
|
442 |
-
msgstr ""
|
443 |
-
"Bevor Sie Ihre Importdatei hochladen können, müssen Sie folgenden Fehler "
|
444 |
-
"beheben:"
|
445 |
-
|
446 |
-
#: product-import-export-for-woo/includes/importer/views/html-wf-import-greeting.php:31
|
447 |
msgid "Method 1: Select a file from your computer"
|
448 |
msgstr "Methode 1: Wählen Sie eine Datei von Ihrem computer"
|
449 |
|
450 |
-
#:
|
|
|
|
|
|
|
|
|
451 |
#, php-format
|
452 |
msgid "Maximum size: %s"
|
453 |
msgstr "Maximale Größe: %s"
|
454 |
|
455 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
msgid "Delimiter"
|
457 |
msgstr "Trennzeichen"
|
458 |
|
459 |
-
#:
|
460 |
msgid "Merge empty cells"
|
461 |
msgstr "Leere Zellen zusammenführen"
|
462 |
|
463 |
-
#:
|
464 |
msgid ""
|
465 |
-
"
|
466 |
-
"
|
467 |
msgstr ""
|
468 |
-
"
|
469 |
-
"
|
470 |
-
"
|
471 |
|
472 |
-
#:
|
473 |
-
msgid "
|
474 |
-
|
|
|
|
|
|
|
|
|
|
|
475 |
|
476 |
-
#:
|
|
|
|
|
|
|
|
|
477 |
msgid "Here you can map your imported columns to product data fields."
|
478 |
msgstr ""
|
479 |
"Hier können Sie Ihre importierten Spalten Produkt Datenfelder zuordnen."
|
480 |
|
481 |
-
#:
|
482 |
-
msgid "
|
483 |
-
msgstr "
|
484 |
|
485 |
-
#:
|
486 |
-
msgid "
|
487 |
-
msgstr "Spaltenkopf"
|
488 |
|
489 |
-
#:
|
490 |
msgid "Evaluation Field"
|
491 |
msgstr "Bewertung-Feld"
|
492 |
|
493 |
-
#:
|
494 |
msgid ""
|
495 |
"Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to "
|
496 |
"Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</"
|
@@ -505,186 +562,455 @@ msgstr ""
|
|
505 |
"Post_title:<br>& Durch HikeFoce</br>Einen Wert HikeFoce Post_title "
|
506 |
"voranstellen:<br>& HikeFoce [VAL]."
|
507 |
|
508 |
-
#:
|
509 |
msgid "Do not import"
|
510 |
msgstr "Nicht importieren"
|
511 |
|
512 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
msgid "Export Product in CSV Format:"
|
514 |
msgstr "Exportieren Sie Produkt im CSV-Format:"
|
515 |
|
516 |
-
#:
|
517 |
msgid ""
|
518 |
-
"Export and download your products in CSV format. This file can be used
|
519 |
-
"import products back into your
|
520 |
msgstr ""
|
521 |
-
"
|
522 |
-
"
|
523 |
-
"importieren."
|
524 |
|
525 |
-
#:
|
526 |
msgid "Offset"
|
527 |
msgstr "Mitarbeiter überspringen"
|
528 |
|
529 |
-
#:
|
530 |
-
msgid "
|
531 |
-
|
|
|
|
|
|
|
|
|
|
|
532 |
|
533 |
-
#:
|
534 |
msgid "Limit"
|
535 |
msgstr "Limit"
|
536 |
|
537 |
-
#:
|
538 |
msgid "Unlimited"
|
539 |
msgstr "Unbegrenzt"
|
540 |
|
541 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
msgid "Columns"
|
543 |
msgstr "Spalten"
|
544 |
|
545 |
-
#:
|
546 |
-
msgid "
|
547 |
-
|
|
|
|
|
|
|
|
|
|
|
548 |
|
549 |
-
#:
|
550 |
-
msgid "
|
551 |
-
msgstr "
|
552 |
|
553 |
-
#:
|
554 |
-
msgid "
|
555 |
-
msgstr "
|
556 |
|
557 |
-
#:
|
558 |
-
msgid "
|
559 |
-
msgstr "
|
560 |
|
561 |
-
#:
|
562 |
-
msgid "
|
563 |
-
msgstr "
|
564 |
|
565 |
-
#:
|
566 |
-
msgid "
|
567 |
-
msgstr "
|
568 |
|
569 |
-
#:
|
570 |
msgid ""
|
571 |
-
"
|
572 |
-
"
|
|
|
573 |
msgstr ""
|
574 |
-
"
|
575 |
-
"
|
|
|
|
|
576 |
|
577 |
-
#:
|
578 |
-
msgid ""
|
579 |
-
"
|
580 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
msgstr ""
|
582 |
-
"
|
583 |
-
"
|
584 |
|
585 |
-
#:
|
586 |
-
msgid ""
|
587 |
-
|
588 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
msgstr ""
|
590 |
-
"
|
591 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
|
593 |
-
#:
|
594 |
-
msgid "
|
|
|
|
|
|
|
|
|
595 |
msgstr "-Export der Produkte nach Kategorie."
|
596 |
|
597 |
-
#:
|
598 |
-
msgid "
|
599 |
msgstr "- Verschiedene Filteroptionen für Produkte zu exportieren."
|
600 |
|
601 |
-
#:
|
602 |
-
msgid "
|
603 |
msgstr "-Karte und Felder beim importieren Produkte zu verwandeln."
|
604 |
|
605 |
-
#:
|
606 |
-
msgid "
|
607 |
-
msgstr "
|
|
|
608 |
|
609 |
-
#:
|
610 |
-
msgid "
|
611 |
msgstr ""
|
612 |
"- Wahl zu aktualisieren oder zu überspringen bestehenden importierte "
|
613 |
"Produkte."
|
614 |
|
615 |
-
#:
|
616 |
-
msgid ""
|
617 |
-
"- WPML Supported. French and German (Deutschland) language support Out of "
|
618 |
-
"the Box."
|
619 |
msgstr ""
|
620 |
-
"
|
621 |
-
"Sprachunterstützung Out of the Box."
|
622 |
|
623 |
-
#:
|
624 |
-
msgid "
|
625 |
-
msgstr "
|
626 |
|
627 |
-
#:
|
628 |
-
msgid "
|
629 |
-
msgstr "
|
630 |
|
631 |
-
#:
|
632 |
-
msgid "
|
633 |
-
msgstr "
|
634 |
|
635 |
-
#:
|
636 |
-
msgid "
|
637 |
-
msgstr "
|
638 |
|
639 |
-
#:
|
640 |
-
msgid "
|
641 |
-
msgstr "
|
642 |
|
643 |
-
#:
|
644 |
-
msgid "
|
645 |
-
msgstr "
|
646 |
|
647 |
-
#:
|
648 |
-
msgid "
|
649 |
-
msgstr "
|
650 |
|
651 |
-
#:
|
652 |
-
msgid "
|
653 |
-
msgstr "
|
654 |
|
655 |
-
#:
|
|
|
656 |
msgid ""
|
657 |
-
"
|
658 |
-
"
|
659 |
msgstr ""
|
660 |
-
"
|
661 |
-
"
|
662 |
-
|
663 |
-
#: product-import-export-for-woo/includes/views/import/html-wf-import-products.php:42
|
664 |
-
msgid "Import Products"
|
665 |
-
msgstr "IMPORT PRODUKTE"
|
666 |
|
667 |
-
#: product-import-export
|
668 |
-
msgid "Merge products if exists"
|
669 |
-
msgstr "Produkte zu verschmelzen, wenn vorhanden"
|
670 |
-
|
671 |
-
#: product-import-export-for-woo/product-csv-import-export.php:54
|
672 |
msgid "Import Export"
|
673 |
msgstr "Importieren/ Exportieren"
|
674 |
|
675 |
-
#: product-
|
676 |
msgid "Premium Upgrade"
|
677 |
msgstr "Premium-Upgrade"
|
678 |
|
679 |
-
#: product-
|
680 |
-
msgid "
|
681 |
-
msgstr "
|
682 |
|
683 |
-
#: product-
|
684 |
msgid "Import <strong>products</strong> to your store via a csv file."
|
685 |
msgstr ""
|
686 |
"Importieren Sie <strong>Produkte</strong> in Ihrem Geschäft über eine Csv-"
|
687 |
"Datei."
|
688 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
689 |
#~ msgid "Successfully uploaded via FTP."
|
690 |
#~ msgstr "Avec succès téléchargé via FTP."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Product-Import-Export-Basic\n"
|
4 |
+
"POT-Creation-Date: 2018-02-22 14:43+0530\n"
|
5 |
+
"PO-Revision-Date: 2018-02-22 14:47+0530\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: HikeForce <support@hikeforce.com>\n"
|
8 |
"Language: de_DE\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.12\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
16 |
|
17 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:26
|
18 |
msgid ""
|
19 |
"Product CSV Import Export requires the function <code>mb_detect_encoding</"
|
20 |
"code> to import and export CSV files. Please ask your hosting provider to "
|
24 |
"code> zum Importieren und Exportieren von CSV-Dateien. Bitte fragen Sie "
|
25 |
"Ihren Hosting-Anbieter diese Funktion zu aktivieren."
|
26 |
|
27 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:34
|
28 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:35
|
29 |
msgid "Product Im-Ex"
|
30 |
msgstr "Produkt Im-Ex"
|
31 |
|
32 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:99
|
33 |
+
#, php-format
|
34 |
+
msgid ""
|
35 |
+
"<div class=\"updated\"><p>You have been using %1$s for a while. If you like "
|
36 |
+
"the plugin please leave us a %2$s review!<p></div>"
|
37 |
+
msgstr ""
|
38 |
+
"<div class=\"updated\"><p>Sie benutzen %1$s schon eine Weile. Wenn Ihnen das "
|
39 |
+
"Plugin gefällt, hinterlassen Sie uns bitte einen %2$s-Bericht!</p></div>"
|
40 |
+
|
41 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:36
|
42 |
#, php-format
|
43 |
msgid "Failed resize: %s is an invalid image ID."
|
44 |
msgstr "Ändern der Bildgrößen fehlgeschlagen: %s ist keine gültige Bild ID"
|
45 |
|
46 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:39
|
47 |
msgid "Your user account doesn't have permission to resize images"
|
48 |
msgstr ""
|
49 |
"Du hast nicht die erforderlichen Rechte für die Änderung der Bildgrößen."
|
50 |
|
51 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:44
|
52 |
#, php-format
|
53 |
msgid "The originally uploaded image file cannot be found at %s"
|
54 |
msgstr "Das Originalbild kann unter %s nicht gefunden werden"
|
55 |
|
56 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:53
|
57 |
msgid "Unknown failure reason."
|
58 |
msgstr "Unbekannter Fehler."
|
59 |
|
60 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:58
|
61 |
#, php-format
|
62 |
msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
63 |
msgstr ""
|
64 |
""%1$s" (ID %2$s) wurde erfolgreich in %3$s Sekunden verkleinert."
|
65 |
|
66 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:65
|
67 |
#, php-format
|
68 |
msgid ""
|
69 |
""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
71 |
""%1$s" (ID %2$s) konnte nicht geändert werden. Die Fehlermeldung "
|
72 |
"lautet: %3$s"
|
73 |
|
74 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:22
|
75 |
msgid "Delete Products"
|
76 |
msgstr "Produkte löschen"
|
77 |
|
78 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:23
|
79 |
msgid "Delete ALL products"
|
80 |
msgstr "Alle Artikel löschen"
|
81 |
|
82 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:24
|
83 |
msgid "This tool will delete all products allowing you to start fresh."
|
84 |
msgstr ""
|
85 |
"Dieses Tool löscht alle Produkte, so dass Sie Komplett neu beginnen können."
|
86 |
|
87 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:28
|
88 |
msgid "Delete Variations"
|
89 |
msgstr "Alle Varianten löschen"
|
90 |
|
91 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:29
|
92 |
msgid "Delete ALL variations"
|
93 |
msgstr "Alle Varianten löschen"
|
94 |
|
95 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:30
|
96 |
msgid "This tool will delete all variations allowing you to start fresh."
|
97 |
msgstr ""
|
98 |
"Dieses Tool löscht alle Variationen, so dass Sie Komplett neu beginnen "
|
99 |
"können."
|
100 |
|
101 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:34
|
102 |
msgid "Delete Orphans"
|
103 |
msgstr "Löschen von Waisen"
|
104 |
|
105 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:35
|
106 |
msgid "Delete orphaned variations"
|
107 |
msgstr "Löschen verwaiste Variationen"
|
108 |
|
109 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:36
|
110 |
msgid "This tool will delete variations which have no parent."
|
111 |
msgstr "Dieses Tool löscht Variationen, die keine Elternvariationen haben."
|
112 |
|
113 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:62
|
114 |
#, php-format
|
115 |
msgid "%d Products Deleted"
|
116 |
msgstr "%d Produkte gelöscht"
|
117 |
|
118 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:84
|
119 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:99
|
120 |
#, php-format
|
121 |
msgid "%d Variations Deleted"
|
122 |
msgstr "%d Variationen gelöscht"
|
123 |
|
124 |
+
#: includes/importer/class-wf-csv-parser.php:198
|
125 |
#, php-format
|
126 |
msgid "> Row %s - preparing for merge."
|
127 |
msgstr "> Zeile %s - Seriendruck vorbereiten."
|
128 |
|
129 |
+
#: includes/importer/class-wf-csv-parser.php:203
|
130 |
msgid "> > Cannot merge without id or sku. Importing instead."
|
131 |
msgstr ""
|
132 |
">> Ohne Ausweis oder Sku kann nicht zusammengeführt werden. Stattdessen "
|
133 |
"werden importiert."
|
134 |
|
135 |
+
#: includes/importer/class-wf-csv-parser.php:221
|
136 |
#, php-format
|
137 |
msgid "> > Skipped. Cannot find product with sku %s. Importing instead."
|
138 |
msgstr ""
|
139 |
">> Übersprungen. Produkt mit Sku %s nicht finden stattdessen importieren."
|
140 |
|
141 |
+
#: includes/importer/class-wf-csv-parser.php:228
|
142 |
#, php-format
|
143 |
msgid "> > Found product with ID %s."
|
144 |
msgstr ">> Gefunden Sie Produkt mit ID %s."
|
145 |
|
146 |
+
#: includes/importer/class-wf-csv-parser.php:239
|
147 |
#, php-format
|
148 |
msgid "> Row %s - preparing for import."
|
149 |
msgstr "> Zeile %s - Vorbereitung für den Import."
|
150 |
|
151 |
+
#: includes/importer/class-wf-csv-parser.php:243
|
152 |
msgid "> > Skipped. No post_title set for new product."
|
153 |
msgstr ">> Übersprungen. Keine Post_title für neues Produkt festgelegt."
|
154 |
|
155 |
+
#: includes/importer/class-wf-csv-parser.php:244
|
156 |
msgid "No post_title set for new product."
|
157 |
msgstr "Keine Post_title für neues Produkt festgelegt."
|
158 |
|
159 |
+
#: includes/importer/class-wf-csv-parser.php:247
|
160 |
msgid "> > Skipped. No parent set for new variation product."
|
161 |
msgstr ""
|
162 |
">> Übersprungen. Kein übergeordnetes Element für neue Variation Produkt "
|
163 |
"festgelegt."
|
164 |
|
165 |
+
#: includes/importer/class-wf-csv-parser.php:249
|
166 |
msgid "No parent set for new variation product."
|
167 |
msgstr "Kein übergeordnetes Element für neue Variation Produkt festgelegt."
|
168 |
|
169 |
+
#: includes/importer/class-wf-csv-parser.php:440
|
170 |
#, php-format
|
171 |
msgid "> > Skipping taxonomy \"%s\" - it does not exist."
|
172 |
msgstr ">> Überspringen Taxonomie \"%s\" - Es ist nicht vorhanden."
|
173 |
|
174 |
+
#: includes/importer/class-wf-csv-parser.php:449
|
175 |
#, php-format
|
176 |
msgid "> > > Product type \"%s\" not allowed - using simple."
|
177 |
msgstr ">>> Produkt-Typ \"%s\" nicht erlaubt - mit einfachen."
|
178 |
|
179 |
+
#: includes/importer/class-wf-csv-parser.php:506
|
180 |
+
#: includes/importer/class-wf-csv-parser.php:531
|
181 |
msgid "> > ("
|
182 |
msgstr "> > ("
|
183 |
|
184 |
+
#: includes/importer/class-wf-csv-parser.php:571
|
185 |
+
#: includes/importer/class-wf-csv-parser.php:678
|
186 |
#, php-format
|
187 |
msgid "> > Failed to import term %s %s"
|
188 |
msgstr "Fehler beim Importieren von %s %s"
|
189 |
|
190 |
+
#: includes/importer/class-wf-csv-parser.php:620
|
191 |
#, php-format
|
192 |
msgid "> > Attribute taxonomy \"%s\" does not exist. Adding it. Nicename: %s"
|
193 |
msgstr ""
|
194 |
">> Attribut Taxonomie \"%s\" ist nicht vorhanden. Hinzufügen. Nicename: %s"
|
195 |
|
196 |
+
#: includes/importer/class-wf-csv-parser.php:628
|
197 |
#, php-format
|
198 |
msgid "> > Attribute taxonomy %s already exists in DB."
|
199 |
msgstr ">> Attribut Taxonomie %s existiert bereits in DB."
|
200 |
|
201 |
+
#: includes/importer/class-wf-csv-parser.php:676
|
202 |
#, php-format
|
203 |
msgid "> > Inserted Raw Term %s ID = %s"
|
204 |
msgstr ">> Eingefügt rohen Begriff %s ID = %s"
|
205 |
|
206 |
+
#: includes/importer/class-wf-csv-parser.php:682
|
207 |
#, php-format
|
208 |
msgid "> > Raw Term %s ID = %s"
|
209 |
msgstr ">> Roh Begriff %s ID = %s"
|
210 |
|
211 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:100
|
212 |
msgid "Error with handle_upload!"
|
213 |
msgstr "Fehler mit Handle_upload!"
|
214 |
|
215 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:125
|
216 |
msgid "Row"
|
217 |
msgstr "Zeile"
|
218 |
|
219 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:126
|
220 |
msgid "SKU"
|
221 |
msgstr "SKU"
|
222 |
|
223 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:127
|
224 |
msgid "Product"
|
225 |
msgstr "Produkt"
|
226 |
|
227 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:128
|
228 |
msgid "Status Msg"
|
229 |
msgstr "Status Msg"
|
230 |
|
231 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:222
|
232 |
msgid "AJAX Error"
|
233 |
msgstr "Ajax Fehler"
|
234 |
|
235 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:322
|
236 |
#, php-format
|
237 |
msgid ""
|
238 |
"The resize request was abnormally terminated (ID %s). This is likely due to "
|
241 |
"Die Größenänderung wurde abgebrochen (ID %s). Dies ist wahrscheinlich auf zu "
|
242 |
"wenig verfügbarem Speicher oder einen schwerwiegenden Fehler zurückzuführen."
|
243 |
|
244 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:327
|
245 |
msgid "thumbnails regenerated"
|
246 |
msgstr "Miniaturansichten regeneriert"
|
247 |
|
248 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:365
|
249 |
msgid "Error finding uploaded file!"
|
250 |
msgstr "Fehler beim suchen Datei hochgeladen!"
|
251 |
|
252 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:430
|
253 |
msgid "Step 1..."
|
254 |
msgstr "1. Schritt"
|
255 |
|
256 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:435
|
257 |
msgid "Step 2..."
|
258 |
msgstr "2. Schritt"
|
259 |
|
260 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:450
|
261 |
msgid "Finalizing..."
|
262 |
msgstr "Finalisierung"
|
263 |
|
264 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:456
|
265 |
msgid "Linking upsells..."
|
266 |
msgstr "Upsells verknüpft..."
|
267 |
|
268 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:465
|
269 |
msgid "Linking crosssells..."
|
270 |
msgstr "Verknüpfen Crosssells..."
|
271 |
|
272 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:472
|
273 |
msgid "Finished. Import complete."
|
274 |
msgstr "Fertig. Import abgeschlossen."
|
275 |
|
276 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:532
|
277 |
msgid "Map to fields are pre-selected based on your last import. <a href=\""
|
278 |
msgstr ""
|
279 |
"Karte, um Felder sind vorausgewählt, basierend auf Ihren letzten Import. < "
|
280 |
"ein Href = \""
|
281 |
|
282 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:563
|
283 |
msgid "Processing products."
|
284 |
msgstr "Verarbeitung von Produkten."
|
285 |
|
286 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:574
|
287 |
msgid "Finished processing products."
|
288 |
msgstr "Produkte verarbeitet."
|
289 |
|
290 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:607
|
291 |
msgid "Parsing products CSV."
|
292 |
msgstr "Parsen Produkte CSV."
|
293 |
|
294 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:613
|
295 |
msgid "Finished parsing products CSV."
|
296 |
msgstr "Parsing Fertigprodukte CSV."
|
297 |
|
298 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:655
|
299 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:672
|
300 |
msgid "Sorry, there has been an error."
|
301 |
msgstr "Leider ist ein Fehler aufgetreten."
|
302 |
|
303 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:764
|
304 |
msgid "Product already processed"
|
305 |
msgstr "Produkt bereits verarbeitet"
|
306 |
|
307 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:765
|
308 |
msgid "> Post ID already processed. Skipping."
|
309 |
msgstr "> Post ID bereits verarbeitet. Wird übersprungen."
|
310 |
|
311 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:771
|
312 |
msgid "Skipping auto-draft"
|
313 |
msgstr "Überspringen von Auto-Entwurf"
|
314 |
|
315 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:772
|
316 |
msgid "> Skipping auto-draft."
|
317 |
msgstr "> Überspringen Auto-Entwurf."
|
318 |
|
319 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:786
|
320 |
#, php-format
|
321 |
msgid "> “%s”"
|
322 |
msgstr "> “ %s ”"
|
323 |
|
324 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:792
|
325 |
msgid "Importing post ID conflicts with an existing post ID"
|
326 |
msgstr ""
|
327 |
"Post-ID verursacht einen Konflikt mit einer vorhandenen Post-ID importieren"
|
328 |
|
329 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:793
|
330 |
#, php-format
|
331 |
msgid "> “%s” ID already exists."
|
332 |
msgstr "> “ %s ” ID bereits vorhanden ist."
|
333 |
|
334 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:801
|
335 |
msgid "Post is not a product"
|
336 |
msgstr "Post ist kein Produkt"
|
337 |
|
338 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:802
|
339 |
#, php-format
|
340 |
msgid "> “%s” is not a product."
|
341 |
msgstr "> “ %s ” ist kein Produkt."
|
342 |
|
343 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:812
|
344 |
#, php-format
|
345 |
msgid "> Merging post ID %s."
|
346 |
msgstr "> Post-ID %s zusammenführen."
|
347 |
|
348 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:875
|
349 |
msgid "Failed to update product"
|
350 |
msgstr "Fehler beim Aktualisieren der Produkt"
|
351 |
|
352 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:876
|
353 |
#, php-format
|
354 |
msgid "> Failed to update product %s"
|
355 |
msgstr "> Fehler beim Aktualisieren der Produkt %s"
|
356 |
|
357 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:880
|
358 |
msgid "> Merged post data: "
|
359 |
msgstr "> Fusioniert post Daten:"
|
360 |
|
361 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:909
|
362 |
#, php-format
|
363 |
msgid "> Inserting %s"
|
364 |
msgstr "> Einfügen von %s"
|
365 |
|
366 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:931
|
367 |
msgid "Failed to import product"
|
368 |
msgstr "Fehler beim Importieren von Produkt"
|
369 |
|
370 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:932
|
371 |
#, php-format
|
372 |
msgid "Failed to import product “%s”"
|
373 |
msgstr "Fehler beim Importieren von Produkt “ %s ”"
|
374 |
|
375 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:938
|
376 |
#, php-format
|
377 |
msgid "> Inserted - post ID is %s."
|
378 |
msgstr "> Beitrags-ID ist eingefügt - ' %s'."
|
379 |
|
380 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1036
|
381 |
#, php-format
|
382 |
msgid "> > Image exists - skipping %s"
|
383 |
msgstr ">> Bild existiert - überspringen von %s"
|
384 |
|
385 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1066
|
386 |
#, php-format
|
387 |
msgid "> > Importing image \"%s\""
|
388 |
msgstr ">> Import von Bild \"%s\""
|
389 |
|
390 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1081
|
391 |
#, php-format
|
392 |
msgid "> > Imported image \"%s\""
|
393 |
msgstr ">> Importierten Bildes \"%s\""
|
394 |
|
395 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1096
|
396 |
#, php-format
|
397 |
msgid "> > Error importing image \"%s\""
|
398 |
msgstr ">> Fehler beim Importieren von Bild \"%s\""
|
399 |
|
400 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1103
|
401 |
msgid "> > Images set"
|
402 |
msgstr ">> Bilder"
|
403 |
|
404 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1156
|
405 |
#, php-format
|
406 |
msgid "> Finished merging post ID %s."
|
407 |
msgstr "> Zusammenführen von Post-ID %s beendet."
|
408 |
|
409 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1159
|
410 |
#, php-format
|
411 |
msgid "> Finished importing post ID %s."
|
412 |
msgstr "> Importieren Post ID %s beendet."
|
413 |
|
414 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1225
|
415 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1249
|
416 |
msgid "Invalid file type"
|
417 |
msgstr "Ungültiger Dateityp"
|
418 |
|
419 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1232
|
420 |
msgid "Local image did not exist!"
|
421 |
msgstr "Lokales Bild gab es nicht!"
|
422 |
|
423 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1262
|
424 |
#, php-format
|
425 |
msgid "> > Inserted image attachment \"%s\""
|
426 |
msgstr ">> Anlage eingefügte Bild \"%s\""
|
427 |
|
428 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1327
|
429 |
msgid "Zero size file downloaded"
|
430 |
msgstr "Datei ohne Inhalt heruntergeladen"
|
431 |
|
432 |
+
#: includes/importer/views/html-wf-import-greeting.php:24
|
433 |
+
#: includes/importer/views/html-wf-import-options.php:7
|
434 |
+
#: includes/views/html-wf-admin-screen.php:9
|
435 |
+
msgid "Product Export"
|
436 |
+
msgstr "Produkt Export"
|
437 |
+
|
438 |
+
#: includes/importer/views/html-wf-import-greeting.php:25
|
439 |
+
#: includes/importer/views/html-wf-import-options.php:8
|
440 |
+
#: includes/views/html-wf-admin-screen.php:10
|
441 |
+
msgid "Product Import"
|
442 |
+
msgstr "Produkt Import"
|
443 |
+
|
444 |
+
#: includes/importer/views/html-wf-import-greeting.php:26
|
445 |
+
#: includes/importer/views/html-wf-import-options.php:9
|
446 |
+
#: includes/views/html-wf-admin-screen.php:11
|
447 |
+
msgid "Help"
|
448 |
+
msgstr "Hilfe"
|
449 |
+
|
450 |
+
#: includes/importer/views/html-wf-import-greeting.php:27
|
451 |
+
#: includes/importer/views/html-wf-import-options.php:10
|
452 |
+
#: includes/views/html-wf-admin-screen.php:12
|
453 |
+
msgid "Upgrade to Premium for More Features"
|
454 |
+
msgstr "Upgrade auf Premium für mehr Funktionen"
|
455 |
+
|
456 |
+
#: includes/importer/views/html-wf-import-greeting.php:32
|
457 |
+
msgid "Step 1: Import settings"
|
458 |
+
msgstr "Schritt 1: Einstellungen importieren"
|
459 |
+
|
460 |
+
#: includes/importer/views/html-wf-import-greeting.php:34
|
461 |
+
msgid ""
|
462 |
+
"Before you can upload your import file, you will need to fix the following "
|
463 |
+
"error:"
|
464 |
+
msgstr ""
|
465 |
+
"Bevor Sie Ihre Importdatei hochladen können, müssen Sie folgenden Fehler "
|
466 |
+
"beheben:"
|
467 |
|
468 |
+
#: includes/importer/views/html-wf-import-greeting.php:38
|
469 |
msgid ""
|
470 |
"You can import products (in CSV format) in to the shop using any of below "
|
471 |
"methods."
|
473 |
"Sie können Produkte (im CSV-Format) in den Shop mit einer der folgenden "
|
474 |
"Methoden importieren."
|
475 |
|
476 |
+
#: includes/importer/views/html-wf-import-greeting.php:44
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
msgid "Method 1: Select a file from your computer"
|
478 |
msgstr "Methode 1: Wählen Sie eine Datei von Ihrem computer"
|
479 |
|
480 |
+
#: includes/importer/views/html-wf-import-greeting.php:50
|
481 |
+
msgid "Please upload UTF-8 encoded CSV"
|
482 |
+
msgstr "Bitte laden Sie UTF-8-kodierte CSV-Dateien hoch."
|
483 |
+
|
484 |
+
#: includes/importer/views/html-wf-import-greeting.php:50
|
485 |
#, php-format
|
486 |
msgid "Maximum size: %s"
|
487 |
msgstr "Maximale Größe: %s"
|
488 |
|
489 |
+
#: includes/importer/views/html-wf-import-greeting.php:54
|
490 |
+
msgid "Update products if exists"
|
491 |
+
msgstr "Aktualisieren von Produkten, falls vorhanden"
|
492 |
+
|
493 |
+
#: includes/importer/views/html-wf-import-greeting.php:57
|
494 |
+
msgid ""
|
495 |
+
"Existing products are identified by their SKUs/IDs. If this option is not "
|
496 |
+
"selected and if a product with same ID/SKU is found in the CSV, that product "
|
497 |
+
"will not be imported."
|
498 |
+
msgstr ""
|
499 |
+
"Vorhandene Produkte werden durch ihre SKUs/IDs identifiziert. Wenn diese "
|
500 |
+
"Option nicht ausgewählt ist und ein Produkt mit der gleichen ID/SKU in der "
|
501 |
+
"CSV gefunden wird, wird dieses Produkt nicht importiert."
|
502 |
+
|
503 |
+
#: includes/importer/views/html-wf-import-greeting.php:62
|
504 |
msgid "Delimiter"
|
505 |
msgstr "Trennzeichen"
|
506 |
|
507 |
+
#: includes/importer/views/html-wf-import-greeting.php:66
|
508 |
msgid "Merge empty cells"
|
509 |
msgstr "Leere Zellen zusammenführen"
|
510 |
|
511 |
+
#: includes/importer/views/html-wf-import-greeting.php:68
|
512 |
msgid ""
|
513 |
+
"If this option is checked, empty attributes will be added to products with "
|
514 |
+
"no value. You can leave this unchecked if you are not sure about this option."
|
515 |
msgstr ""
|
516 |
+
"Wenn diese Option aktiviert ist, werden leere Attribute zu Produkten ohne "
|
517 |
+
"Wert hinzugefügt. Sie können diese Option deaktivieren, wenn Sie sich nicht "
|
518 |
+
"sicher sind."
|
519 |
|
520 |
+
#: includes/importer/views/html-wf-import-greeting.php:75
|
521 |
+
msgid ""
|
522 |
+
"If you want to import from FTP location or from a URL or to configure "
|
523 |
+
"scheduled import you may need to upgrade to premium version."
|
524 |
+
msgstr ""
|
525 |
+
"Wenn Sie von einem FTP-Speicherort oder von einer URL importieren oder den "
|
526 |
+
"zeitgesteuerten Import konfigurieren möchten, müssen Sie möglicherweise auf "
|
527 |
+
"die Premium-Version upgraden."
|
528 |
|
529 |
+
#: includes/importer/views/html-wf-import-options.php:19
|
530 |
+
msgid "Step 2: Import mapping"
|
531 |
+
msgstr "Schritt 2: Mapping importieren"
|
532 |
+
|
533 |
+
#: includes/importer/views/html-wf-import-options.php:20
|
534 |
msgid "Here you can map your imported columns to product data fields."
|
535 |
msgstr ""
|
536 |
"Hier können Sie Ihre importierten Spalten Produkt Datenfelder zuordnen."
|
537 |
|
538 |
+
#: includes/importer/views/html-wf-import-options.php:24
|
539 |
+
msgid "Woocommerce product fields"
|
540 |
+
msgstr "Woocommerce Produktbereiche"
|
541 |
|
542 |
+
#: includes/importer/views/html-wf-import-options.php:25
|
543 |
+
msgid "CSV column header(from imported file)"
|
544 |
+
msgstr "CSV-Spaltenkopf (aus importierter Datei)"
|
545 |
|
546 |
+
#: includes/importer/views/html-wf-import-options.php:26
|
547 |
msgid "Evaluation Field"
|
548 |
msgstr "Bewertung-Feld"
|
549 |
|
550 |
+
#: includes/importer/views/html-wf-import-options.php:28
|
551 |
msgid ""
|
552 |
"Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to "
|
553 |
"Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</"
|
562 |
"Post_title:<br>& Durch HikeFoce</br>Einen Wert HikeFoce Post_title "
|
563 |
"voranstellen:<br>& HikeFoce [VAL]."
|
564 |
|
565 |
+
#: includes/importer/views/html-wf-import-options.php:107
|
566 |
msgid "Do not import"
|
567 |
msgstr "Nicht importieren"
|
568 |
|
569 |
+
#: includes/importer/views/html-wf-import-options.php:123
|
570 |
+
msgid ""
|
571 |
+
"Time taken to Import the products depends on the time taken to fetch the "
|
572 |
+
"images and the internet speed. If you have more than 1000 products we "
|
573 |
+
"recommend doing the import in batches by splitting the CSV file. Please do "
|
574 |
+
"not navigate away or close the window while the import is in progress."
|
575 |
+
msgstr ""
|
576 |
+
"Die Zeit, die für den Import der Produkte benötigt wird, hängt von der Zeit "
|
577 |
+
"ab, die für den Abruf der Bilder und der Geschwindigkeit des Internets "
|
578 |
+
"benötigt wird. Wenn Sie mehr als 1000 Produkte haben, empfehlen wir Ihnen, "
|
579 |
+
"den Import in Stapeln durchzuführen, indem Sie die CSV-Datei aufteilen. "
|
580 |
+
"Bitte navigieren Sie während des Imports nicht weg oder schließen Sie das "
|
581 |
+
"Fenster."
|
582 |
+
|
583 |
+
#: includes/views/export/html-wf-export-products.php:26
|
584 |
msgid "Export Product in CSV Format:"
|
585 |
msgstr "Exportieren Sie Produkt im CSV-Format:"
|
586 |
|
587 |
+
#: includes/views/export/html-wf-export-products.php:27
|
588 |
msgid ""
|
589 |
+
"Export and download your products in CSV file format. This file can be used "
|
590 |
+
"to import products back into your WooCommerce store."
|
591 |
msgstr ""
|
592 |
+
"Eksporter og last ned produktene dine i CSV-format. Denne filen kan brukes "
|
593 |
+
"til å importere produkter tilbake til din Woocommerce shop"
|
|
|
594 |
|
595 |
+
#: includes/views/export/html-wf-export-products.php:32
|
596 |
msgid "Offset"
|
597 |
msgstr "Mitarbeiter überspringen"
|
598 |
|
599 |
+
#: includes/views/export/html-wf-export-products.php:36
|
600 |
+
msgid ""
|
601 |
+
"Number of products to skip before exporting. If the value is 0 no products "
|
602 |
+
"are skipped. If value is 100, products from product id 101 will be exported."
|
603 |
+
msgstr ""
|
604 |
+
"Anzahl der Produkte, die vor dem Export übersprungen werden sollen. Wenn der "
|
605 |
+
"Wert 0 ist, werden keine Produkte übersprungen. Wenn der Wert 100 ist, "
|
606 |
+
"werden Produkte der Produkt-ID 101 exportiert."
|
607 |
|
608 |
+
#: includes/views/export/html-wf-export-products.php:41
|
609 |
msgid "Limit"
|
610 |
msgstr "Limit"
|
611 |
|
612 |
+
#: includes/views/export/html-wf-export-products.php:44
|
613 |
msgid "Unlimited"
|
614 |
msgstr "Unbegrenzt"
|
615 |
|
616 |
+
#: includes/views/export/html-wf-export-products.php:45
|
617 |
+
msgid ""
|
618 |
+
"Number of products to export. If no value is given all products will be "
|
619 |
+
"exported. This is useful if you have large number of products and want to "
|
620 |
+
"export partial list of products."
|
621 |
+
msgstr ""
|
622 |
+
"Anzahl der zu exportierenden Produkte. Wenn kein Wert angegeben wird, werden "
|
623 |
+
"alle Produkte exportiert. Dies ist nützlich, wenn Sie eine große Anzahl von "
|
624 |
+
"Produkten haben und eine Teilliste von Produkten exportieren möchten."
|
625 |
+
|
626 |
+
#: includes/views/export/html-wf-export-products.php:50
|
627 |
msgid "Columns"
|
628 |
msgstr "Spalten"
|
629 |
|
630 |
+
#: includes/views/export/html-wf-export-products.php:51
|
631 |
+
msgid ""
|
632 |
+
"Configure the Column Names of CSV file. If the Column Names are not changed, "
|
633 |
+
"plugin can auto detect fields while importing."
|
634 |
+
msgstr ""
|
635 |
+
"Konfigurieren Sie die Spaltennamen der CSV-Datei. Wenn die Spaltennamen "
|
636 |
+
"nicht geändert werden, kann das Plugin Felder beim Importieren automatisch "
|
637 |
+
"erkennen."
|
638 |
|
639 |
+
#: includes/views/export/html-wf-export-products.php:55
|
640 |
+
msgid "WooCommerce product field name"
|
641 |
+
msgstr "WooCommerce Produkt Feldname"
|
642 |
|
643 |
+
#: includes/views/export/html-wf-export-products.php:58
|
644 |
+
msgid "Column header name in the CSV file"
|
645 |
+
msgstr "Spaltenkopfname in der CSV-Datei"
|
646 |
|
647 |
+
#: includes/views/export/html-wf-export-products.php:63
|
648 |
+
msgid "Select all"
|
649 |
+
msgstr "Alles auswählen"
|
650 |
|
651 |
+
#: includes/views/export/html-wf-export-products.php:64
|
652 |
+
msgid "Unselect all"
|
653 |
+
msgstr "Alle nicht markieren"
|
654 |
|
655 |
+
#: includes/views/export/html-wf-export-products.php:95
|
656 |
+
msgid "Export Products"
|
657 |
+
msgstr "Exportprodukte"
|
658 |
|
659 |
+
#: includes/views/export/html-wf-export-products.php:96
|
660 |
msgid ""
|
661 |
+
"With free version of the plugin you can export products (except variable "
|
662 |
+
"products) in to a file. If you want to configure scheduled export to a "
|
663 |
+
"folder or FTP location you may need to upgrade to premium version."
|
664 |
msgstr ""
|
665 |
+
"Mit der kostenlosen Version des Plugins können Sie Produkte (außer variable "
|
666 |
+
"Produkte) in eine Datei exportieren. Wenn Sie den zeitgesteuerten Export in "
|
667 |
+
"einen Ordner oder FTP-Speicherort konfigurieren möchten, müssen Sie "
|
668 |
+
"möglicherweise auf die Premium-Version aktualisieren."
|
669 |
|
670 |
+
#: includes/views/html-wf-help-guide.php:31
|
671 |
+
msgid "How-to-setup"
|
672 |
+
msgstr "Anleitung zur Einrichtung"
|
673 |
+
|
674 |
+
#: includes/views/html-wf-help-guide.php:32
|
675 |
+
msgid "Get to know about our produt in 3 minutes with this video"
|
676 |
+
msgstr "Lernen Sie unser Produkt in 3 Minuten mit diesem Video kennen."
|
677 |
+
|
678 |
+
#: includes/views/html-wf-help-guide.php:34
|
679 |
+
msgid "Setup Guide"
|
680 |
+
msgstr "Einrichtungsanleitung"
|
681 |
+
|
682 |
+
#: includes/views/html-wf-help-guide.php:39
|
683 |
+
#: includes/views/html-wf-help-guide.php:41 includes/views/market.php:34
|
684 |
+
msgid "Documentation"
|
685 |
+
msgstr "Dokumentation"
|
686 |
+
|
687 |
+
#: includes/views/html-wf-help-guide.php:40
|
688 |
+
msgid "Refer to our documentation to set and get started"
|
689 |
msgstr ""
|
690 |
+
"Schlagen Sie in unserer Dokumentation nach, um die Einstellungen vorzunehmen "
|
691 |
+
"und loszulegen."
|
692 |
|
693 |
+
#: includes/views/html-wf-help-guide.php:46 product-csv-import-export.php:69
|
694 |
+
msgid "Support"
|
695 |
+
msgstr "Unterstützung"
|
696 |
+
|
697 |
+
#: includes/views/html-wf-help-guide.php:47
|
698 |
+
msgid "We would love to help you on any queries or issues."
|
699 |
+
msgstr "Gerne stehen wir Ihnen bei Fragen und Problemen zur Verfügung."
|
700 |
+
|
701 |
+
#: includes/views/html-wf-help-guide.php:49
|
702 |
+
msgid "Contact Us"
|
703 |
msgstr ""
|
704 |
+
"Keine Lieferarten verfügbar. Bitte prüfen Sie Ihre Adresse – oder "
|
705 |
+
"kontaktieren Sie uns, wenn Sie Hilfe benötigen."
|
706 |
+
|
707 |
+
#: includes/views/market.php:8
|
708 |
+
msgid "Watch getting started video"
|
709 |
+
msgstr "Video zum Beginn anschauen"
|
710 |
+
|
711 |
+
#: includes/views/market.php:12
|
712 |
+
msgid "Upgrade to Premium Version"
|
713 |
+
msgstr "Upgrade auf Premium-Version"
|
714 |
+
|
715 |
+
#: includes/views/market.php:15
|
716 |
+
msgid "Export simple, group, external and variation products."
|
717 |
+
msgstr "Exportieren Sie einfache, Gruppen-, externe und Variationsprodukte."
|
718 |
|
719 |
+
#: includes/views/market.php:16
|
720 |
+
msgid "Import simple, group, external and variation products."
|
721 |
+
msgstr "Importieren Sie einfache, Gruppen-, externe und Variationsprodukte."
|
722 |
+
|
723 |
+
#: includes/views/market.php:17
|
724 |
+
msgid "Export products by category."
|
725 |
msgstr "-Export der Produkte nach Kategorie."
|
726 |
|
727 |
+
#: includes/views/market.php:18
|
728 |
+
msgid "Various filter options for exporting products."
|
729 |
msgstr "- Verschiedene Filteroptionen für Produkte zu exportieren."
|
730 |
|
731 |
+
#: includes/views/market.php:19
|
732 |
+
msgid "Map and transform fields while importing products."
|
733 |
msgstr "-Karte und Felder beim importieren Produkte zu verwandeln."
|
734 |
|
735 |
+
#: includes/views/market.php:20
|
736 |
+
msgid "Change values while importing products using evaluation fields."
|
737 |
+
msgstr ""
|
738 |
+
"- Endre verdier mens du importerer produkter ved hjelp av Evalueringsfelt."
|
739 |
|
740 |
+
#: includes/views/market.php:21
|
741 |
+
msgid "Choice to update or skip existing imported products."
|
742 |
msgstr ""
|
743 |
"- Wahl zu aktualisieren oder zu überspringen bestehenden importierte "
|
744 |
"Produkte."
|
745 |
|
746 |
+
#: includes/views/market.php:22
|
747 |
+
msgid "WPML supported. French and German support out of the box."
|
|
|
|
|
748 |
msgstr ""
|
749 |
+
"WPML unterstützt. Französische und deutsche Unterstützung aus der Schublade."
|
|
|
750 |
|
751 |
+
#: includes/views/market.php:23
|
752 |
+
msgid "Import/Export file via FTP."
|
753 |
+
msgstr "Importieren/Exportieren von Dateien über FTP."
|
754 |
|
755 |
+
#: includes/views/market.php:24
|
756 |
+
msgid "Import from URL."
|
757 |
+
msgstr "Von URL importieren"
|
758 |
|
759 |
+
#: includes/views/market.php:25
|
760 |
+
msgid "Automatic scheduled import and export."
|
761 |
+
msgstr "Automatischer Import und Export"
|
762 |
|
763 |
+
#: includes/views/market.php:26
|
764 |
+
msgid "Supports product reviews export and import."
|
765 |
+
msgstr "Unterstützt den Export und Import von Produktbewertungen."
|
766 |
|
767 |
+
#: includes/views/market.php:27
|
768 |
+
msgid "30 Days Money Back Guarantee."
|
769 |
+
msgstr "30 Tage Geld-zurück-Garantie."
|
770 |
|
771 |
+
#: includes/views/market.php:28
|
772 |
+
msgid "More frequent plugin updates."
|
773 |
+
msgstr "Häufigere Plugin-Updates."
|
774 |
|
775 |
+
#: includes/views/market.php:29
|
776 |
+
msgid "Excellent Support for setting it up!"
|
777 |
+
msgstr "-Hervorragende Unterstützung für sie eingerichtet!"
|
778 |
|
779 |
+
#: includes/views/market.php:33
|
780 |
+
msgid "Live Demo"
|
781 |
+
msgstr "Live Demo"
|
782 |
|
783 |
+
#: includes/views/market.php:38
|
784 |
+
#, php-format
|
785 |
msgid ""
|
786 |
+
"<div class=\"\"><p><i>If you like the plugin please leave us a %1$s review!</"
|
787 |
+
"i><p></div>"
|
788 |
msgstr ""
|
789 |
+
"<div class=\"\"><p><i>Wenn Ihnen das Plugin gefällt, lassen Sie uns bitte "
|
790 |
+
"eine %1$s Rezension zukommen!</i><p></div>"
|
|
|
|
|
|
|
|
|
791 |
|
792 |
+
#: product-csv-import-export.php:67
|
|
|
|
|
|
|
|
|
793 |
msgid "Import Export"
|
794 |
msgstr "Importieren/ Exportieren"
|
795 |
|
796 |
+
#: product-csv-import-export.php:68
|
797 |
msgid "Premium Upgrade"
|
798 |
msgstr "Premium-Upgrade"
|
799 |
|
800 |
+
#: product-csv-import-export.php:70
|
801 |
+
msgid "Review"
|
802 |
+
msgstr "Bewertung"
|
803 |
|
804 |
+
#: product-csv-import-export.php:117
|
805 |
msgid "Import <strong>products</strong> to your store via a csv file."
|
806 |
msgstr ""
|
807 |
"Importieren Sie <strong>Produkte</strong> in Ihrem Geschäft über eine Csv-"
|
808 |
"Datei."
|
809 |
|
810 |
+
#: product-csv-import-export.php:139
|
811 |
+
msgid "I couldn't understand how to make it work"
|
812 |
+
msgstr "Ich habe nicht verstanden, wie es funktioniert"
|
813 |
+
|
814 |
+
#: product-csv-import-export.php:141
|
815 |
+
msgid "Would you like us to assist you?"
|
816 |
+
msgstr "Möchtest Du Hilfe?"
|
817 |
+
|
818 |
+
#: product-csv-import-export.php:145
|
819 |
+
msgid "I found a better plugin"
|
820 |
+
msgstr "Ich fand ein besseres Plugin"
|
821 |
+
|
822 |
+
#: product-csv-import-export.php:147
|
823 |
+
msgid "Which plugin?"
|
824 |
+
msgstr "Welches Plugin?"
|
825 |
+
|
826 |
+
#: product-csv-import-export.php:151
|
827 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
828 |
+
msgstr ""
|
829 |
+
"Das Plugin ist großartig, aber ich brauche besondere Funktionen, die das "
|
830 |
+
"PlugIn nicht bietet"
|
831 |
+
|
832 |
+
#: product-csv-import-export.php:153
|
833 |
+
msgid "Could you tell us more about that feature?"
|
834 |
+
msgstr "Können Sie uns mehr über dieses Feature erzählen?"
|
835 |
+
|
836 |
+
#: product-csv-import-export.php:157
|
837 |
+
msgid "The plugin is not working"
|
838 |
+
msgstr "Das PlugIn funktioniert nicht"
|
839 |
+
|
840 |
+
#: product-csv-import-export.php:159
|
841 |
+
msgid "Could you tell us a bit more whats not working?"
|
842 |
+
msgstr "Können Sie uns mehr dazu sagen, was nicht funktioniert?"
|
843 |
+
|
844 |
+
#: product-csv-import-export.php:163
|
845 |
+
msgid "It's not what I was looking for"
|
846 |
+
msgstr "Es ist nicht das, was ich suchte"
|
847 |
+
|
848 |
+
#: product-csv-import-export.php:169
|
849 |
+
msgid "The plugin didn't work as expected"
|
850 |
+
msgstr "Das PlugIn funktioniert nicht wie erwartet"
|
851 |
+
|
852 |
+
#: product-csv-import-export.php:171
|
853 |
+
msgid "What did you expect?"
|
854 |
+
msgstr "Was haben Sie erwartet?"
|
855 |
+
|
856 |
+
#: product-csv-import-export.php:175
|
857 |
+
msgid "Other"
|
858 |
+
msgstr "Sonstiges"
|
859 |
+
|
860 |
+
#: product-csv-import-export.php:177
|
861 |
+
msgid "Could you tell us a bit more?"
|
862 |
+
msgstr "Könnten Sie uns noch etwas mehr erzählen?"
|
863 |
+
|
864 |
+
#: product-csv-import-export.php:197
|
865 |
+
msgid "If you have a moment, please let us know why you are deactivating:"
|
866 |
+
msgstr ""
|
867 |
+
"Wenn Du einen Moment Zeit hast, lass uns wissen, warum Du das Plugin "
|
868 |
+
"deaktivieren möchtest:"
|
869 |
+
|
870 |
+
#: product-csv-import-export.php:211
|
871 |
+
msgid "I rather wouldn't say"
|
872 |
+
msgstr "Ich würde das lieber nicht sagen"
|
873 |
+
|
874 |
+
#: product-csv-import-export.php:212
|
875 |
+
msgid "Submit & Deactivate"
|
876 |
+
msgstr "Absenden & Deaktivieren"
|
877 |
+
|
878 |
+
#: product-csv-import-export.php:213
|
879 |
+
msgid "Cancel"
|
880 |
+
msgstr "Abbrechen"
|
881 |
+
|
882 |
+
#: product-csv-import-export.php:378
|
883 |
+
msgid ""
|
884 |
+
"Is everything fine? You already have the Premium version installed in your "
|
885 |
+
"website. For any issues, kindly raise a ticket via <a target='_blank' "
|
886 |
+
"href='//support.xadapter.com/'>support.xadapter.com</a>"
|
887 |
+
msgstr ""
|
888 |
+
"Ist alles in Ordnung? Sie haben die Premium-Version bereits auf Ihrer "
|
889 |
+
"Website installiert. Für alle Probleme, bitte ein Ticket erstellen über <a "
|
890 |
+
"target='_blank' href='//support.xadapter.com/'>support.xadapter.com</a>"
|
891 |
+
|
892 |
+
#~ msgid "Import"
|
893 |
+
#~ msgstr "Importieren"
|
894 |
+
|
895 |
+
#~ msgid "Merge Products"
|
896 |
+
#~ msgstr "Produkte zusammenführen"
|
897 |
+
|
898 |
+
#~ msgid ""
|
899 |
+
#~ "Check this box to merge empty cells - otherwise (when merging) the empty "
|
900 |
+
#~ "cells will be ignored when importing things such as attributes."
|
901 |
+
#~ msgstr ""
|
902 |
+
#~ "Aktivieren Sie dieses Kontrollkästchen, um leere Zellen - ansonsten "
|
903 |
+
#~ "zusammenzuführen (beim Zusammenführen) die leeren Zellen werden "
|
904 |
+
#~ "ignoriert, wenn Dinge wie importieren Attribute."
|
905 |
+
|
906 |
+
#~ msgid "Map Fields"
|
907 |
+
#~ msgstr "Karte Felder"
|
908 |
+
|
909 |
+
#~ msgid "Map to"
|
910 |
+
#~ msgstr "map to, to"
|
911 |
+
|
912 |
+
#~ msgid "Column Header"
|
913 |
+
#~ msgstr "Spaltenkopf"
|
914 |
+
|
915 |
+
#~ msgid ""
|
916 |
+
#~ "Export and download your products in CSV format. This file can be used to "
|
917 |
+
#~ "import products back into your Woocommerce shop."
|
918 |
+
#~ msgstr ""
|
919 |
+
#~ "Exportieren Sie und herunterladen Sie Ihre Produkte im CSV-Format. Diese "
|
920 |
+
#~ "Datei kann verwendet werden, waren wieder in Ihrem Woocommerce Shop zu "
|
921 |
+
#~ "importieren."
|
922 |
+
|
923 |
+
#~ msgid "0"
|
924 |
+
#~ msgstr "0"
|
925 |
+
|
926 |
+
#~ msgid "Column"
|
927 |
+
#~ msgstr "Spalte"
|
928 |
+
|
929 |
+
#~ msgid "Column Name"
|
930 |
+
#~ msgstr "Spaltenname"
|
931 |
+
|
932 |
+
#~ msgid "Include hidden meta data"
|
933 |
+
#~ msgstr "Versteckte Metadaten enthalten"
|
934 |
+
|
935 |
+
#~ msgid "Product Import / Export"
|
936 |
+
#~ msgstr "Produktimport / Export"
|
937 |
+
|
938 |
+
#~ msgid "Your Business is precious! Go Premium!"
|
939 |
+
#~ msgstr "Ihr Geschäft ist kostbar! Go Premium-!"
|
940 |
+
|
941 |
+
#~ msgid ""
|
942 |
+
#~ "HikeForce Import Export Plugin Premium version helps you to seamlessly "
|
943 |
+
#~ "import/export products into your Woocommerce Store."
|
944 |
+
#~ msgstr ""
|
945 |
+
#~ "HikeForce Import Export Plugin Premium-Version können Sie nahtlos zu "
|
946 |
+
#~ "importieren / exportieren Produkte in den WooCommerce Store."
|
947 |
+
|
948 |
+
#~ msgid ""
|
949 |
+
#~ "- Export Products (Simple, Group, External and Variations) in to a CSV "
|
950 |
+
#~ "file <strong>( Basic version supports only Simple Products )</strong>."
|
951 |
+
#~ msgstr ""
|
952 |
+
#~ "-Exportieren Sie Produkte (einfache, Gruppe, extern und Variationen) in "
|
953 |
+
#~ "eine CSV-Datei <strong>(Basis-Version unterstützt nur einfache Produkte)</"
|
954 |
+
#~ "strong>."
|
955 |
+
|
956 |
+
#~ msgid ""
|
957 |
+
#~ "- Import Products (Simple, Group, External and Variations) in CSV format "
|
958 |
+
#~ "in to WooComemrce Store."
|
959 |
+
#~ msgstr ""
|
960 |
+
#~ "-Importieren Sie Produkte (einfache, Gruppe, extern und Variationen) im "
|
961 |
+
#~ "CSV-Format im WooComemrce Store."
|
962 |
+
|
963 |
+
#~ msgid "- Export Products by Category."
|
964 |
+
#~ msgstr "-Export der Produkte nach Kategorie."
|
965 |
+
|
966 |
+
#~ msgid "- Various Filter options for exporting Products."
|
967 |
+
#~ msgstr "- Verschiedene Filteroptionen für Produkte zu exportieren."
|
968 |
+
|
969 |
+
#~ msgid "- Map and Transform fields while Importing Products."
|
970 |
+
#~ msgstr "-Karte und Felder beim importieren Produkte zu verwandeln."
|
971 |
+
|
972 |
+
#~ msgid "- Change values while improting products using Evaluation Fields."
|
973 |
+
#~ msgstr "-Ändern Sie Werte und Improting Produkte mit Bewertung Felder."
|
974 |
+
|
975 |
+
#~ msgid "- Choice to Update or Skip existing imported products."
|
976 |
+
#~ msgstr ""
|
977 |
+
#~ "- Wahl zu aktualisieren oder zu überspringen bestehenden importierte "
|
978 |
+
#~ "Produkte."
|
979 |
+
|
980 |
+
#~ msgid ""
|
981 |
+
#~ "- WPML Supported. French and German (Deutschland) language support Out of "
|
982 |
+
#~ "the Box."
|
983 |
+
#~ msgstr ""
|
984 |
+
#~ "- WPML unterstützt. Französisch und Deutsch (Deutschland) "
|
985 |
+
#~ "Sprachunterstützung Out of the Box."
|
986 |
+
|
987 |
+
#~ msgid "- Import/Export file from/to a remote server via FTP."
|
988 |
+
#~ msgstr "-Datei Import/Export von/zu einem remote-Server per FTP."
|
989 |
+
|
990 |
+
#~ msgid "- Excellent Support for setting it up!"
|
991 |
+
#~ msgstr "-Hervorragende Unterstützung für sie eingerichtet!"
|
992 |
+
|
993 |
+
#~ msgid "Sample Commercial CSV"
|
994 |
+
#~ msgstr "Probe kommerzielle CSV"
|
995 |
+
|
996 |
+
#~ msgid "Sample WooCommerce CSV"
|
997 |
+
#~ msgstr "Probe WooCommerce CSV"
|
998 |
+
|
999 |
+
#~ msgid "Import Products in CSV Format:"
|
1000 |
+
#~ msgstr "Produkte im CSV-Format zu importieren:"
|
1001 |
+
|
1002 |
+
#~ msgid ""
|
1003 |
+
#~ "Import products in CSV format ( works for simple products) from "
|
1004 |
+
#~ "different sources"
|
1005 |
+
#~ msgstr ""
|
1006 |
+
#~ "Importieren Sie Produkte im CSV-Format (funktioniert für einfache "
|
1007 |
+
#~ "Produkte) aus verschiedenen Quellen"
|
1008 |
+
|
1009 |
+
#~ msgid "Import Products"
|
1010 |
+
#~ msgstr "IMPORT PRODUKTE"
|
1011 |
+
|
1012 |
+
#~ msgid "Merge products if exists"
|
1013 |
+
#~ msgstr "Produkte zu verschmelzen, wenn vorhanden"
|
1014 |
+
|
1015 |
#~ msgid "Successfully uploaded via FTP."
|
1016 |
#~ msgstr "Avec succès téléchargé via FTP."
|
lang/wf_csv_import_export-fr_FR.mo
CHANGED
Binary file
|
lang/wf_csv_import_export-fr_FR.po
CHANGED
@@ -1,53 +1,20 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Product-Import-Export-Basic\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: HikeForce <support@hikeforce.com>\n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
12 |
-
"X-Generator: Poedit 1.5.7\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
-
"X-Poedit-Basepath:
|
15 |
-
"X-Poedit-SearchPath-0:
|
16 |
-
|
17 |
-
#: product-import-export-for-woo/product-csv-import-export.php:59
|
18 |
-
msgid "Import Export"
|
19 |
-
msgstr "import Export"
|
20 |
-
|
21 |
-
#: product-import-export-for-woo/product-csv-import-export.php:60
|
22 |
-
msgid "Premium Upgrade"
|
23 |
-
msgstr "Mise à niveau haut de gamme"
|
24 |
-
|
25 |
-
#: product-import-export-for-woo/product-csv-import-export.php:61
|
26 |
-
msgid "Support"
|
27 |
-
msgstr "Soutien"
|
28 |
-
|
29 |
-
#: product-import-export-for-woo/product-csv-import-export.php:78
|
30 |
-
msgid "Successfully uploaded via FTP."
|
31 |
-
msgstr "Avec succès téléchargé via FTP."
|
32 |
-
|
33 |
-
#: product-import-export-for-woo/product-csv-import-export.php:81
|
34 |
-
msgid "Error while uploading via FTP."
|
35 |
-
msgstr "Erreur lors du transfert via FTP."
|
36 |
-
|
37 |
-
# msgid "Did this plugin work for you? Please rate and contact us at <i>support@hikeforce.com</i> to get $10 off on your next purchase."
|
38 |
-
# msgstr "Est-ce que ce travail de plug-in pour vous & nbsp?; S'il vous plaît noter et nous contacter à <i> support@hikeforce.com </ i> pour obtenir 10 $ de rabais sur votre prochain achat."
|
39 |
-
#: product-import-export-for-woo/product-csv-import-export.php:92
|
40 |
-
#: product-import-export-for-woo/product-csv-import-export.php:93
|
41 |
-
msgid "Review Now!"
|
42 |
-
msgstr "Review Now!"
|
43 |
-
|
44 |
-
#: product-import-export-for-woo/product-csv-import-export.php:145
|
45 |
-
msgid "Import <strong>products</strong> to your store via a csv file."
|
46 |
-
msgstr ""
|
47 |
-
"Donnez votre avis sur nImporter <strong> produits </ strong> à votre magasin "
|
48 |
-
"via un file.ow csv!"
|
49 |
|
50 |
-
#:
|
51 |
msgid ""
|
52 |
"Product CSV Import Export requires the function <code>mb_detect_encoding</"
|
53 |
"code> to import and export CSV files. Please ask your hosting provider to "
|
@@ -57,172 +24,216 @@ msgstr ""
|
|
57 |
"code> pour importer et exporter des fichiers CSV. S'il vous plaît demander à "
|
58 |
"votre fournisseur d'hébergement pour activer cette fonction."
|
59 |
|
60 |
-
#:
|
|
|
61 |
msgid "Product Im-Ex"
|
62 |
msgstr "Produit Im-Ex"
|
63 |
|
64 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
#, php-format
|
66 |
msgid "Failed resize: %s is an invalid image ID."
|
67 |
msgstr "resize Échec:% s est une image ID invalide."
|
68 |
|
69 |
-
#:
|
70 |
msgid "Your user account doesn't have permission to resize images"
|
71 |
msgstr ""
|
72 |
"Votre compte d'utilisateur n'a pas la permission de redimensionner les images"
|
73 |
|
74 |
-
#:
|
75 |
#, php-format
|
76 |
msgid "The originally uploaded image file cannot be found at %s"
|
77 |
msgstr "Le fichier image initialement téléchargé ne peut pas être trouvé à% s"
|
78 |
|
79 |
-
#:
|
80 |
msgid "Unknown failure reason."
|
81 |
msgstr "Inconnu raison de l'échec."
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
# msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
84 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) a été redimensionné avec succès en% des secondes de 3 $."
|
85 |
# msgid ""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
86 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) n'a pas réussi à redimensionner. Le message d'erreur était:% 3 $ s"
|
87 |
# msgid "Delete Products"
|
88 |
# msgstr "Supprimer Produits"
|
89 |
-
#:
|
90 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-ajax-handler.php:65
|
91 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-system-status-tools.php:22
|
92 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-system-status-tools.php:23
|
93 |
-
#, php-format
|
94 |
msgid "Delete ALL products"
|
95 |
msgstr "Supprimer tous les produits"
|
96 |
|
97 |
-
#:
|
98 |
msgid "This tool will delete all products allowing you to start fresh."
|
99 |
msgstr ""
|
100 |
"Cet outil permet de supprimer tous les produits vous permettant de commencer "
|
101 |
"frais."
|
102 |
|
103 |
-
#:
|
104 |
msgid "Delete Variations"
|
105 |
msgstr "Supprimer Variations"
|
106 |
|
107 |
-
#:
|
108 |
msgid "Delete ALL variations"
|
109 |
msgstr "Supprimer toutes les variantes"
|
110 |
|
111 |
-
#:
|
112 |
msgid "This tool will delete all variations allowing you to start fresh."
|
113 |
msgstr ""
|
114 |
"Cet outil permet de supprimer toutes les variantes vous permettant de "
|
115 |
"commencer frais."
|
116 |
|
117 |
-
#:
|
118 |
msgid "Delete Orphans"
|
119 |
msgstr "Supprimer les orphelins"
|
120 |
|
121 |
-
#:
|
122 |
msgid "Delete orphaned variations"
|
123 |
msgstr "Supprimer variations orphelins"
|
124 |
|
125 |
-
#:
|
126 |
msgid "This tool will delete variations which have no parent."
|
127 |
msgstr "Cet outil permet de supprimer les variations qui ont pas de parent."
|
128 |
|
129 |
-
#:
|
130 |
#, php-format
|
131 |
msgid "%d Products Deleted"
|
132 |
msgstr "%d Produits supprimés"
|
133 |
|
134 |
-
#:
|
135 |
-
#:
|
136 |
#, php-format
|
137 |
msgid "%d Variations Deleted"
|
138 |
msgstr "%d Variations Supprimé"
|
139 |
|
140 |
-
#:
|
141 |
#, php-format
|
142 |
msgid "> Row %s - preparing for merge."
|
143 |
msgstr ">%s Row - préparation de fusion."
|
144 |
|
145 |
-
#:
|
146 |
msgid "> > Cannot merge without id or sku. Importing instead."
|
147 |
msgstr ">> Vous ne pouvez pas fusionner sans id ou sku. Importation place."
|
148 |
|
149 |
-
#:
|
150 |
#, php-format
|
151 |
msgid "> > Skipped. Cannot find product with sku %s. Importing instead."
|
152 |
msgstr ">> Ignoré. Vous ne trouvez pas produit avec sku%s. Importation place."
|
153 |
|
154 |
-
#:
|
155 |
#, php-format
|
156 |
msgid "> > Found product with ID %s."
|
157 |
msgstr ">> Produit trouvé avec ID %s."
|
158 |
|
159 |
-
#:
|
160 |
#, php-format
|
161 |
msgid "> Row %s - preparing for import."
|
162 |
msgstr ">%s Row - préparation pour l'importation."
|
163 |
|
164 |
-
#:
|
165 |
msgid "> > Skipped. No post_title set for new product."
|
166 |
msgstr ">> Ignoré. Non post_title fixé pour le nouveau produit."
|
167 |
|
168 |
-
#:
|
169 |
msgid "No post_title set for new product."
|
170 |
msgstr "Non post_title fixé pour le nouveau produit."
|
171 |
|
172 |
-
#:
|
173 |
msgid "> > Skipped. No parent set for new variation product."
|
174 |
msgstr ">> Ignoré. Aucun parent fixé pour le produit de variation nouvelle."
|
175 |
|
176 |
-
#:
|
177 |
msgid "No parent set for new variation product."
|
178 |
msgstr "Aucun parent fixé pour le produit de variation nouvelle."
|
179 |
|
180 |
-
#:
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid "> > ("
|
183 |
msgstr "> > ("
|
184 |
|
185 |
-
#:
|
186 |
-
#:
|
187 |
#, php-format
|
188 |
msgid "> > Failed to import term %s %s"
|
189 |
msgstr "> > Impossible d'importer terme %s %s"
|
190 |
|
191 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
#, php-format
|
193 |
msgid "> > Inserted Raw Term %s ID = %s"
|
194 |
msgstr "> >Term Row Inséré %s ID = %s"
|
195 |
|
196 |
-
#:
|
197 |
#, php-format
|
198 |
msgid "> > Raw Term %s ID = %s"
|
199 |
msgstr "> > Raw terme %s ID = %s"
|
200 |
|
201 |
-
#:
|
202 |
msgid "Error with handle_upload!"
|
203 |
msgstr "Erreur avec poignée téléchargement!"
|
204 |
|
205 |
-
#:
|
206 |
msgid "Row"
|
207 |
msgstr "Rangée"
|
208 |
|
209 |
-
#:
|
210 |
msgid "SKU"
|
211 |
msgstr "SKU"
|
212 |
|
213 |
-
#:
|
214 |
msgid "Product"
|
215 |
msgstr "Produit"
|
216 |
|
217 |
-
#:
|
218 |
msgid "Status Msg"
|
219 |
msgstr "Statut Msg"
|
220 |
|
221 |
-
#:
|
222 |
msgid "AJAX Error"
|
223 |
msgstr "AJAX erreur"
|
224 |
|
225 |
-
#:
|
226 |
#, php-format
|
227 |
msgid ""
|
228 |
"The resize request was abnormally terminated (ID %s). This is likely due to "
|
@@ -232,201 +243,223 @@ msgstr ""
|
|
232 |
"Cela est probablement dû à l'image dépassant la mémoire disponible ou d'un "
|
233 |
"autre type d'erreur fatale."
|
234 |
|
235 |
-
#:
|
236 |
msgid "thumbnails regenerated"
|
237 |
msgstr "vignettes régénèrent"
|
238 |
|
239 |
-
#:
|
240 |
msgid "Error finding uploaded file!"
|
241 |
msgstr "constatation d'erreur de fichier téléchargé!"
|
242 |
|
243 |
-
#:
|
244 |
msgid "Step 1..."
|
245 |
msgstr "Étape 1..."
|
246 |
|
247 |
-
#:
|
248 |
msgid "Step 2..."
|
249 |
msgstr "Étape 2..."
|
250 |
|
251 |
-
#:
|
252 |
msgid "Finalizing..."
|
253 |
msgstr "Finalisation ..."
|
254 |
|
255 |
-
#:
|
256 |
msgid "Linking upsells..."
|
257 |
msgstr "Liaison upsells ..."
|
258 |
|
259 |
-
#:
|
260 |
msgid "Linking crosssells..."
|
261 |
msgstr "Lier croix vend ..."
|
262 |
|
263 |
-
#:
|
264 |
msgid "Finished. Import complete."
|
265 |
msgstr "Fini. Importation complète."
|
266 |
|
267 |
-
#:
|
268 |
msgid "Map to fields are pre-selected based on your last import. <a href=\""
|
269 |
msgstr ""
|
270 |
"Carte des champs sont pré-sélectionnés en fonction de votre dernière "
|
271 |
"importation. <a href=\""
|
272 |
|
273 |
-
#:
|
274 |
msgid "Processing products."
|
275 |
msgstr "produits de traitement."
|
276 |
|
277 |
-
#:
|
278 |
msgid "Finished processing products."
|
279 |
msgstr "produits de traitement fini."
|
280 |
|
281 |
-
#:
|
282 |
msgid "Parsing products CSV."
|
283 |
msgstr "Parsing produits CSV."
|
284 |
|
285 |
-
#:
|
286 |
msgid "Finished parsing products CSV."
|
287 |
msgstr "Produits finis parsing CSV."
|
288 |
|
289 |
-
#:
|
290 |
-
#:
|
291 |
msgid "Sorry, there has been an error."
|
292 |
msgstr "Désolé, il y a eu une erreur."
|
293 |
|
294 |
-
#:
|
295 |
msgid "Product already processed"
|
296 |
msgstr "Produit déjà traité"
|
297 |
|
298 |
-
#:
|
299 |
msgid "> Post ID already processed. Skipping."
|
300 |
msgstr "> Publier ID déjà traité. Saut."
|
301 |
|
302 |
-
#:
|
303 |
msgid "Skipping auto-draft"
|
304 |
msgstr "Saut auto-projet"
|
305 |
|
306 |
-
#:
|
307 |
msgid "> Skipping auto-draft."
|
308 |
msgstr "> Saut auto-projet."
|
309 |
|
310 |
-
#:
|
311 |
#, php-format
|
312 |
msgid "> “%s”"
|
313 |
msgstr "> “%s”"
|
314 |
|
315 |
-
#:
|
316 |
msgid "Importing post ID conflicts with an existing post ID"
|
317 |
msgstr ""
|
318 |
"Importation soumettre les conflits d'identité avec un ID de poste existant"
|
319 |
|
320 |
-
#:
|
321 |
#, php-format
|
322 |
msgid "> “%s” ID already exists."
|
323 |
msgstr "> “%s” ID existe déjà."
|
324 |
|
325 |
-
#:
|
326 |
msgid "Post is not a product"
|
327 |
msgstr "ne sont pas un produit...."
|
328 |
|
329 |
-
#:
|
330 |
#, php-format
|
331 |
msgid "> “%s” is not a product."
|
332 |
msgstr "> “%s” ne sont pas un produit."
|
333 |
|
334 |
-
#:
|
335 |
#, php-format
|
336 |
msgid "> Merging post ID %s."
|
337 |
msgstr "> Fusion de post ID %s."
|
338 |
|
339 |
-
#:
|
340 |
msgid "Failed to update product"
|
341 |
msgstr "Impossible de mettre à jour le produit"
|
342 |
|
343 |
-
#:
|
344 |
#, php-format
|
345 |
msgid "> Failed to update product %s"
|
346 |
msgstr "> Impossible de mettre à jour le produit %s"
|
347 |
|
348 |
-
#:
|
349 |
msgid "> Merged post data: "
|
350 |
msgstr "> Données de poste Fusionné:"
|
351 |
|
352 |
-
#:
|
353 |
#, php-format
|
354 |
msgid "> Inserting %s"
|
355 |
msgstr "> Insertion %s"
|
356 |
|
357 |
-
#:
|
358 |
msgid "Failed to import product"
|
359 |
msgstr "Impossible d'importer le produit"
|
360 |
|
361 |
-
#:
|
362 |
#, php-format
|
363 |
msgid "Failed to import product “%s”"
|
364 |
msgstr "Impossible d'importer le produit “%s”"
|
365 |
|
366 |
-
#:
|
367 |
#, php-format
|
368 |
msgid "> Inserted - post ID is %s."
|
369 |
msgstr "> Inséré - ID de message est %s."
|
370 |
|
371 |
-
#:
|
372 |
#, php-format
|
373 |
msgid "> > Image exists - skipping %s"
|
374 |
msgstr ">> Existe image - sauter %s"
|
375 |
|
376 |
-
#:
|
377 |
#, php-format
|
378 |
msgid "> > Importing image \"%s\""
|
379 |
msgstr "> > l'image importation \"%s\""
|
380 |
|
381 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "> > Images set"
|
383 |
msgstr ">> Images fixés"
|
384 |
|
385 |
-
#:
|
386 |
#, php-format
|
387 |
msgid "> Finished merging post ID %s."
|
388 |
msgstr "> Fini la fusion après ID %s."
|
389 |
|
390 |
-
#:
|
391 |
#, php-format
|
392 |
msgid "> Finished importing post ID %s."
|
393 |
msgstr "> Fini l'importation après ID %s."
|
394 |
|
395 |
-
#:
|
396 |
-
#:
|
397 |
msgid "Invalid file type"
|
398 |
msgstr "type de fichier invalide"
|
399 |
|
400 |
-
#:
|
401 |
msgid "Local image did not exist!"
|
402 |
msgstr "Image locale n'a pas existé!"
|
403 |
|
404 |
-
#:
|
405 |
#, php-format
|
406 |
msgid "> > Inserted image attachment \"%s\""
|
407 |
msgstr ">> Image jointe Inséré \"%s\""
|
408 |
|
409 |
-
#:
|
410 |
msgid "Zero size file downloaded"
|
411 |
msgstr "fichier Zéro taille téléchargé"
|
412 |
|
413 |
-
#:
|
414 |
-
|
415 |
-
|
|
|
|
|
416 |
|
417 |
-
#:
|
418 |
-
|
419 |
-
|
|
|
|
|
420 |
|
421 |
-
#:
|
422 |
-
|
423 |
-
|
424 |
-
"
|
425 |
-
msgstr ""
|
426 |
-
"Vous pouvez importer des produits (au format CSV) dans le magasin en "
|
427 |
-
"utilisant l'une des méthodes suivantes."
|
428 |
|
429 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
msgid ""
|
431 |
"Before you can upload your import file, you will need to fix the following "
|
432 |
"error:"
|
@@ -434,55 +467,90 @@ msgstr ""
|
|
434 |
"Avant de pouvoir télécharger votre fichier d'importation, vous devez "
|
435 |
"corriger l'erreur suivante:"
|
436 |
|
437 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
msgid "Method 1: Select a file from your computer"
|
439 |
msgstr "Méthode 1: Sélectionnez un fichier à partir de votre ordinateur"
|
440 |
|
441 |
-
#:
|
|
|
|
|
|
|
|
|
442 |
#, php-format
|
443 |
msgid "Maximum size: %s"
|
444 |
msgstr "Taille maximale: %s"
|
445 |
|
446 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgid "Delimiter"
|
448 |
msgstr "Séparateur"
|
449 |
|
450 |
-
#:
|
451 |
msgid "Merge empty cells"
|
452 |
msgstr "Fusionner les cellules vides"
|
453 |
|
454 |
-
#:
|
455 |
msgid ""
|
456 |
-
"
|
457 |
-
"
|
458 |
msgstr ""
|
459 |
-
"
|
460 |
-
"
|
461 |
-
"
|
462 |
|
463 |
-
#:
|
464 |
-
msgid "
|
465 |
-
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
-
#:
|
|
|
|
|
|
|
|
|
468 |
msgid "Here you can map your imported columns to product data fields."
|
469 |
msgstr ""
|
470 |
"Ici vous pouvez mapper vos colonnes importées aux champs de données du "
|
471 |
"produit."
|
472 |
|
473 |
-
#:
|
474 |
-
msgid "
|
475 |
-
msgstr "
|
476 |
|
477 |
-
#:
|
478 |
-
msgid "
|
479 |
-
msgstr "tête de colonne"
|
480 |
|
481 |
-
#:
|
482 |
msgid "Evaluation Field"
|
483 |
msgstr "Champ d'évaluation"
|
484 |
|
485 |
-
#:
|
486 |
msgid ""
|
487 |
"Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to "
|
488 |
"Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</"
|
@@ -497,86 +565,398 @@ msgstr ""
|
|
497 |
"valeur par HikeFoce à post_title: </ br> & par HikeFoce < / br> Prepend une "
|
498 |
"valeur HikeFoce à post_title: </ br> & HikeFoce [VAL]."
|
499 |
|
500 |
-
#:
|
501 |
msgid "Do not import"
|
502 |
msgstr "Ne pas importer"
|
503 |
|
504 |
-
#:
|
505 |
-
msgid "
|
506 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
|
508 |
-
#:
|
509 |
msgid "Export Product in CSV Format:"
|
510 |
msgstr "Exporter le produit au format CSV:"
|
511 |
|
512 |
-
#:
|
513 |
msgid ""
|
514 |
-
"Export and download your products in CSV format. This file can be used
|
515 |
-
"import products back into your
|
516 |
msgstr ""
|
517 |
-
"
|
518 |
-
"utilisé pour importer des produits dans votre magasin
|
519 |
|
520 |
-
#:
|
521 |
msgid "Offset"
|
522 |
msgstr "Offset"
|
523 |
|
524 |
-
#:
|
525 |
-
msgid "
|
526 |
-
|
|
|
|
|
|
|
|
|
|
|
527 |
|
528 |
-
#:
|
529 |
msgid "Limit"
|
530 |
msgstr "Limite"
|
531 |
|
532 |
-
#:
|
533 |
msgid "Unlimited"
|
534 |
msgstr "Illimité"
|
535 |
|
536 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
msgid "Columns"
|
538 |
msgstr "Colonnes"
|
539 |
|
540 |
-
#:
|
541 |
-
msgid "
|
542 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
|
544 |
-
#:
|
545 |
-
msgid "
|
546 |
-
msgstr "
|
547 |
|
548 |
-
#:
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
|
552 |
-
#:
|
553 |
msgid "Export Products"
|
554 |
msgstr "Export Produits"
|
555 |
|
556 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
msgid "Documentation"
|
558 |
msgstr "Documentation"
|
559 |
|
560 |
-
#:
|
561 |
-
msgid "
|
562 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
563 |
|
564 |
-
#:
|
565 |
-
msgid "Import
|
566 |
-
msgstr "
|
567 |
|
568 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
msgid ""
|
570 |
-
"
|
571 |
-
"
|
572 |
msgstr ""
|
573 |
-
"
|
574 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
|
576 |
-
|
577 |
-
|
578 |
-
msgstr "Importer des produits"
|
579 |
|
580 |
-
|
581 |
-
|
582 |
-
msgstr "Fusionner produits si elle existe"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Product-Import-Export-Basic\n"
|
4 |
+
"POT-Creation-Date: 2018-02-22 14:49+0530\n"
|
5 |
+
"PO-Revision-Date: 2018-02-22 14:59+0530\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: HikeForce <support@hikeforce.com>\n"
|
8 |
+
"Language: fr_FR\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.12\n"
|
|
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:26
|
18 |
msgid ""
|
19 |
"Product CSV Import Export requires the function <code>mb_detect_encoding</"
|
20 |
"code> to import and export CSV files. Please ask your hosting provider to "
|
24 |
"code> pour importer et exporter des fichiers CSV. S'il vous plaît demander à "
|
25 |
"votre fournisseur d'hébergement pour activer cette fonction."
|
26 |
|
27 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:34
|
28 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:35
|
29 |
msgid "Product Im-Ex"
|
30 |
msgstr "Produit Im-Ex"
|
31 |
|
32 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:99
|
33 |
+
#, php-format
|
34 |
+
msgid ""
|
35 |
+
"<div class=\"updated\"><p>You have been using %1$s for a while. If you like "
|
36 |
+
"the plugin please leave us a %2$s review!<p></div>"
|
37 |
+
msgstr ""
|
38 |
+
"<div class=\"updated\"><p> Vous utilisez%1$s depuis un moment. Si vous aimez "
|
39 |
+
"le plugin s'il vous plaît laissez-nous un commentaire%2$s! <p></div>"
|
40 |
+
|
41 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:36
|
42 |
#, php-format
|
43 |
msgid "Failed resize: %s is an invalid image ID."
|
44 |
msgstr "resize Échec:% s est une image ID invalide."
|
45 |
|
46 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:39
|
47 |
msgid "Your user account doesn't have permission to resize images"
|
48 |
msgstr ""
|
49 |
"Votre compte d'utilisateur n'a pas la permission de redimensionner les images"
|
50 |
|
51 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:44
|
52 |
#, php-format
|
53 |
msgid "The originally uploaded image file cannot be found at %s"
|
54 |
msgstr "Le fichier image initialement téléchargé ne peut pas être trouvé à% s"
|
55 |
|
56 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:53
|
57 |
msgid "Unknown failure reason."
|
58 |
msgstr "Inconnu raison de l'échec."
|
59 |
|
60 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:58
|
61 |
+
#, php-format
|
62 |
+
msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
63 |
+
msgstr ""
|
64 |
+
""%1$s" (ID %2$s) a été redimensionnée avec succès en %3$s secondes."
|
65 |
+
|
66 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:65
|
67 |
+
#, php-format
|
68 |
+
msgid ""
|
69 |
+
""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
70 |
+
msgstr ""
|
71 |
+
""%1$s" (ID %2$s) n'a pas pu être redimensionnée. Le message "
|
72 |
+
"d'erreur était : %3$s"
|
73 |
+
|
74 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:22
|
75 |
+
msgid "Delete Products"
|
76 |
+
msgstr "Supprimer des produits"
|
77 |
+
|
78 |
# msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
79 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) a été redimensionné avec succès en% des secondes de 3 $."
|
80 |
# msgid ""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
81 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) n'a pas réussi à redimensionner. Le message d'erreur était:% 3 $ s"
|
82 |
# msgid "Delete Products"
|
83 |
# msgstr "Supprimer Produits"
|
84 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:23
|
|
|
|
|
|
|
|
|
85 |
msgid "Delete ALL products"
|
86 |
msgstr "Supprimer tous les produits"
|
87 |
|
88 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:24
|
89 |
msgid "This tool will delete all products allowing you to start fresh."
|
90 |
msgstr ""
|
91 |
"Cet outil permet de supprimer tous les produits vous permettant de commencer "
|
92 |
"frais."
|
93 |
|
94 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:28
|
95 |
msgid "Delete Variations"
|
96 |
msgstr "Supprimer Variations"
|
97 |
|
98 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:29
|
99 |
msgid "Delete ALL variations"
|
100 |
msgstr "Supprimer toutes les variantes"
|
101 |
|
102 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:30
|
103 |
msgid "This tool will delete all variations allowing you to start fresh."
|
104 |
msgstr ""
|
105 |
"Cet outil permet de supprimer toutes les variantes vous permettant de "
|
106 |
"commencer frais."
|
107 |
|
108 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:34
|
109 |
msgid "Delete Orphans"
|
110 |
msgstr "Supprimer les orphelins"
|
111 |
|
112 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:35
|
113 |
msgid "Delete orphaned variations"
|
114 |
msgstr "Supprimer variations orphelins"
|
115 |
|
116 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:36
|
117 |
msgid "This tool will delete variations which have no parent."
|
118 |
msgstr "Cet outil permet de supprimer les variations qui ont pas de parent."
|
119 |
|
120 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:62
|
121 |
#, php-format
|
122 |
msgid "%d Products Deleted"
|
123 |
msgstr "%d Produits supprimés"
|
124 |
|
125 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:84
|
126 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:99
|
127 |
#, php-format
|
128 |
msgid "%d Variations Deleted"
|
129 |
msgstr "%d Variations Supprimé"
|
130 |
|
131 |
+
#: includes/importer/class-wf-csv-parser.php:198
|
132 |
#, php-format
|
133 |
msgid "> Row %s - preparing for merge."
|
134 |
msgstr ">%s Row - préparation de fusion."
|
135 |
|
136 |
+
#: includes/importer/class-wf-csv-parser.php:203
|
137 |
msgid "> > Cannot merge without id or sku. Importing instead."
|
138 |
msgstr ">> Vous ne pouvez pas fusionner sans id ou sku. Importation place."
|
139 |
|
140 |
+
#: includes/importer/class-wf-csv-parser.php:221
|
141 |
#, php-format
|
142 |
msgid "> > Skipped. Cannot find product with sku %s. Importing instead."
|
143 |
msgstr ">> Ignoré. Vous ne trouvez pas produit avec sku%s. Importation place."
|
144 |
|
145 |
+
#: includes/importer/class-wf-csv-parser.php:228
|
146 |
#, php-format
|
147 |
msgid "> > Found product with ID %s."
|
148 |
msgstr ">> Produit trouvé avec ID %s."
|
149 |
|
150 |
+
#: includes/importer/class-wf-csv-parser.php:239
|
151 |
#, php-format
|
152 |
msgid "> Row %s - preparing for import."
|
153 |
msgstr ">%s Row - préparation pour l'importation."
|
154 |
|
155 |
+
#: includes/importer/class-wf-csv-parser.php:243
|
156 |
msgid "> > Skipped. No post_title set for new product."
|
157 |
msgstr ">> Ignoré. Non post_title fixé pour le nouveau produit."
|
158 |
|
159 |
+
#: includes/importer/class-wf-csv-parser.php:244
|
160 |
msgid "No post_title set for new product."
|
161 |
msgstr "Non post_title fixé pour le nouveau produit."
|
162 |
|
163 |
+
#: includes/importer/class-wf-csv-parser.php:247
|
164 |
msgid "> > Skipped. No parent set for new variation product."
|
165 |
msgstr ">> Ignoré. Aucun parent fixé pour le produit de variation nouvelle."
|
166 |
|
167 |
+
#: includes/importer/class-wf-csv-parser.php:249
|
168 |
msgid "No parent set for new variation product."
|
169 |
msgstr "Aucun parent fixé pour le produit de variation nouvelle."
|
170 |
|
171 |
+
#: includes/importer/class-wf-csv-parser.php:440
|
172 |
+
#, php-format
|
173 |
+
msgid "> > Skipping taxonomy \"%s\" - it does not exist."
|
174 |
+
msgstr "> > Sauter taxonomie \"%s\" - elle n'existe pas."
|
175 |
+
|
176 |
+
#: includes/importer/class-wf-csv-parser.php:449
|
177 |
+
#, php-format
|
178 |
+
msgid "> > > Product type \"%s\" not allowed - using simple."
|
179 |
+
msgstr "> > >Type de produit \"%s\" on autorisés - en utilisant de simples."
|
180 |
+
|
181 |
+
#: includes/importer/class-wf-csv-parser.php:506
|
182 |
+
#: includes/importer/class-wf-csv-parser.php:531
|
183 |
msgid "> > ("
|
184 |
msgstr "> > ("
|
185 |
|
186 |
+
#: includes/importer/class-wf-csv-parser.php:571
|
187 |
+
#: includes/importer/class-wf-csv-parser.php:678
|
188 |
#, php-format
|
189 |
msgid "> > Failed to import term %s %s"
|
190 |
msgstr "> > Impossible d'importer terme %s %s"
|
191 |
|
192 |
+
#: includes/importer/class-wf-csv-parser.php:620
|
193 |
+
#, php-format
|
194 |
+
msgid "> > Attribute taxonomy \"%s\" does not exist. Adding it. Nicename: %s"
|
195 |
+
msgstr "> > Taxonomie attribut \"%s\" n'existe pas. ajouté. Nicename %s"
|
196 |
+
|
197 |
+
#: includes/importer/class-wf-csv-parser.php:628
|
198 |
+
#, php-format
|
199 |
+
msgid "> > Attribute taxonomy %s already exists in DB."
|
200 |
+
msgstr "> > Taxonomie attribut %s existe déjà dans la DB."
|
201 |
+
|
202 |
+
#: includes/importer/class-wf-csv-parser.php:676
|
203 |
#, php-format
|
204 |
msgid "> > Inserted Raw Term %s ID = %s"
|
205 |
msgstr "> >Term Row Inséré %s ID = %s"
|
206 |
|
207 |
+
#: includes/importer/class-wf-csv-parser.php:682
|
208 |
#, php-format
|
209 |
msgid "> > Raw Term %s ID = %s"
|
210 |
msgstr "> > Raw terme %s ID = %s"
|
211 |
|
212 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:100
|
213 |
msgid "Error with handle_upload!"
|
214 |
msgstr "Erreur avec poignée téléchargement!"
|
215 |
|
216 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:125
|
217 |
msgid "Row"
|
218 |
msgstr "Rangée"
|
219 |
|
220 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:126
|
221 |
msgid "SKU"
|
222 |
msgstr "SKU"
|
223 |
|
224 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:127
|
225 |
msgid "Product"
|
226 |
msgstr "Produit"
|
227 |
|
228 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:128
|
229 |
msgid "Status Msg"
|
230 |
msgstr "Statut Msg"
|
231 |
|
232 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:222
|
233 |
msgid "AJAX Error"
|
234 |
msgstr "AJAX erreur"
|
235 |
|
236 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:322
|
237 |
#, php-format
|
238 |
msgid ""
|
239 |
"The resize request was abnormally terminated (ID %s). This is likely due to "
|
243 |
"Cela est probablement dû à l'image dépassant la mémoire disponible ou d'un "
|
244 |
"autre type d'erreur fatale."
|
245 |
|
246 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:327
|
247 |
msgid "thumbnails regenerated"
|
248 |
msgstr "vignettes régénèrent"
|
249 |
|
250 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:365
|
251 |
msgid "Error finding uploaded file!"
|
252 |
msgstr "constatation d'erreur de fichier téléchargé!"
|
253 |
|
254 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:430
|
255 |
msgid "Step 1..."
|
256 |
msgstr "Étape 1..."
|
257 |
|
258 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:435
|
259 |
msgid "Step 2..."
|
260 |
msgstr "Étape 2..."
|
261 |
|
262 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:450
|
263 |
msgid "Finalizing..."
|
264 |
msgstr "Finalisation ..."
|
265 |
|
266 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:456
|
267 |
msgid "Linking upsells..."
|
268 |
msgstr "Liaison upsells ..."
|
269 |
|
270 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:465
|
271 |
msgid "Linking crosssells..."
|
272 |
msgstr "Lier croix vend ..."
|
273 |
|
274 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:472
|
275 |
msgid "Finished. Import complete."
|
276 |
msgstr "Fini. Importation complète."
|
277 |
|
278 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:532
|
279 |
msgid "Map to fields are pre-selected based on your last import. <a href=\""
|
280 |
msgstr ""
|
281 |
"Carte des champs sont pré-sélectionnés en fonction de votre dernière "
|
282 |
"importation. <a href=\""
|
283 |
|
284 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:563
|
285 |
msgid "Processing products."
|
286 |
msgstr "produits de traitement."
|
287 |
|
288 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:574
|
289 |
msgid "Finished processing products."
|
290 |
msgstr "produits de traitement fini."
|
291 |
|
292 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:607
|
293 |
msgid "Parsing products CSV."
|
294 |
msgstr "Parsing produits CSV."
|
295 |
|
296 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:613
|
297 |
msgid "Finished parsing products CSV."
|
298 |
msgstr "Produits finis parsing CSV."
|
299 |
|
300 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:655
|
301 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:672
|
302 |
msgid "Sorry, there has been an error."
|
303 |
msgstr "Désolé, il y a eu une erreur."
|
304 |
|
305 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:764
|
306 |
msgid "Product already processed"
|
307 |
msgstr "Produit déjà traité"
|
308 |
|
309 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:765
|
310 |
msgid "> Post ID already processed. Skipping."
|
311 |
msgstr "> Publier ID déjà traité. Saut."
|
312 |
|
313 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:771
|
314 |
msgid "Skipping auto-draft"
|
315 |
msgstr "Saut auto-projet"
|
316 |
|
317 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:772
|
318 |
msgid "> Skipping auto-draft."
|
319 |
msgstr "> Saut auto-projet."
|
320 |
|
321 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:786
|
322 |
#, php-format
|
323 |
msgid "> “%s”"
|
324 |
msgstr "> “%s”"
|
325 |
|
326 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:792
|
327 |
msgid "Importing post ID conflicts with an existing post ID"
|
328 |
msgstr ""
|
329 |
"Importation soumettre les conflits d'identité avec un ID de poste existant"
|
330 |
|
331 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:793
|
332 |
#, php-format
|
333 |
msgid "> “%s” ID already exists."
|
334 |
msgstr "> “%s” ID existe déjà."
|
335 |
|
336 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:801
|
337 |
msgid "Post is not a product"
|
338 |
msgstr "ne sont pas un produit...."
|
339 |
|
340 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:802
|
341 |
#, php-format
|
342 |
msgid "> “%s” is not a product."
|
343 |
msgstr "> “%s” ne sont pas un produit."
|
344 |
|
345 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:812
|
346 |
#, php-format
|
347 |
msgid "> Merging post ID %s."
|
348 |
msgstr "> Fusion de post ID %s."
|
349 |
|
350 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:875
|
351 |
msgid "Failed to update product"
|
352 |
msgstr "Impossible de mettre à jour le produit"
|
353 |
|
354 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:876
|
355 |
#, php-format
|
356 |
msgid "> Failed to update product %s"
|
357 |
msgstr "> Impossible de mettre à jour le produit %s"
|
358 |
|
359 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:880
|
360 |
msgid "> Merged post data: "
|
361 |
msgstr "> Données de poste Fusionné:"
|
362 |
|
363 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:909
|
364 |
#, php-format
|
365 |
msgid "> Inserting %s"
|
366 |
msgstr "> Insertion %s"
|
367 |
|
368 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:931
|
369 |
msgid "Failed to import product"
|
370 |
msgstr "Impossible d'importer le produit"
|
371 |
|
372 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:932
|
373 |
#, php-format
|
374 |
msgid "Failed to import product “%s”"
|
375 |
msgstr "Impossible d'importer le produit “%s”"
|
376 |
|
377 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:938
|
378 |
#, php-format
|
379 |
msgid "> Inserted - post ID is %s."
|
380 |
msgstr "> Inséré - ID de message est %s."
|
381 |
|
382 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1036
|
383 |
#, php-format
|
384 |
msgid "> > Image exists - skipping %s"
|
385 |
msgstr ">> Existe image - sauter %s"
|
386 |
|
387 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1066
|
388 |
#, php-format
|
389 |
msgid "> > Importing image \"%s\""
|
390 |
msgstr "> > l'image importation \"%s\""
|
391 |
|
392 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1081
|
393 |
+
#, php-format
|
394 |
+
msgid "> > Imported image \"%s\""
|
395 |
+
msgstr "> > image Importé \"%s\""
|
396 |
+
|
397 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1096
|
398 |
+
#, php-format
|
399 |
+
msgid "> > Error importing image \"%s\""
|
400 |
+
msgstr "> > Erreur d'import de l'image \"%s\""
|
401 |
+
|
402 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1103
|
403 |
msgid "> > Images set"
|
404 |
msgstr ">> Images fixés"
|
405 |
|
406 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1156
|
407 |
#, php-format
|
408 |
msgid "> Finished merging post ID %s."
|
409 |
msgstr "> Fini la fusion après ID %s."
|
410 |
|
411 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1159
|
412 |
#, php-format
|
413 |
msgid "> Finished importing post ID %s."
|
414 |
msgstr "> Fini l'importation après ID %s."
|
415 |
|
416 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1225
|
417 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1249
|
418 |
msgid "Invalid file type"
|
419 |
msgstr "type de fichier invalide"
|
420 |
|
421 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1232
|
422 |
msgid "Local image did not exist!"
|
423 |
msgstr "Image locale n'a pas existé!"
|
424 |
|
425 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1262
|
426 |
#, php-format
|
427 |
msgid "> > Inserted image attachment \"%s\""
|
428 |
msgstr ">> Image jointe Inséré \"%s\""
|
429 |
|
430 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1327
|
431 |
msgid "Zero size file downloaded"
|
432 |
msgstr "fichier Zéro taille téléchargé"
|
433 |
|
434 |
+
#: includes/importer/views/html-wf-import-greeting.php:24
|
435 |
+
#: includes/importer/views/html-wf-import-options.php:7
|
436 |
+
#: includes/views/html-wf-admin-screen.php:9
|
437 |
+
msgid "Product Export"
|
438 |
+
msgstr "Exportation de produit"
|
439 |
|
440 |
+
#: includes/importer/views/html-wf-import-greeting.php:25
|
441 |
+
#: includes/importer/views/html-wf-import-options.php:8
|
442 |
+
#: includes/views/html-wf-admin-screen.php:10
|
443 |
+
msgid "Product Import"
|
444 |
+
msgstr "Importation de produits / Export"
|
445 |
|
446 |
+
#: includes/importer/views/html-wf-import-greeting.php:26
|
447 |
+
#: includes/importer/views/html-wf-import-options.php:9
|
448 |
+
#: includes/views/html-wf-admin-screen.php:11
|
449 |
+
msgid "Help"
|
450 |
+
msgstr "Aide"
|
|
|
|
|
451 |
|
452 |
+
#: includes/importer/views/html-wf-import-greeting.php:27
|
453 |
+
#: includes/importer/views/html-wf-import-options.php:10
|
454 |
+
#: includes/views/html-wf-admin-screen.php:12
|
455 |
+
msgid "Upgrade to Premium for More Features"
|
456 |
+
msgstr "Mise à niveau vers Premium pour plus de fonctionnalités"
|
457 |
+
|
458 |
+
#: includes/importer/views/html-wf-import-greeting.php:32
|
459 |
+
msgid "Step 1: Import settings"
|
460 |
+
msgstr "Étape 1: Importer les paramètres"
|
461 |
+
|
462 |
+
#: includes/importer/views/html-wf-import-greeting.php:34
|
463 |
msgid ""
|
464 |
"Before you can upload your import file, you will need to fix the following "
|
465 |
"error:"
|
467 |
"Avant de pouvoir télécharger votre fichier d'importation, vous devez "
|
468 |
"corriger l'erreur suivante:"
|
469 |
|
470 |
+
#: includes/importer/views/html-wf-import-greeting.php:38
|
471 |
+
msgid ""
|
472 |
+
"You can import products (in CSV format) in to the shop using any of below "
|
473 |
+
"methods."
|
474 |
+
msgstr ""
|
475 |
+
"Vous pouvez importer des produits (au format CSV) dans le magasin en "
|
476 |
+
"utilisant l'une des méthodes suivantes."
|
477 |
+
|
478 |
+
#: includes/importer/views/html-wf-import-greeting.php:44
|
479 |
msgid "Method 1: Select a file from your computer"
|
480 |
msgstr "Méthode 1: Sélectionnez un fichier à partir de votre ordinateur"
|
481 |
|
482 |
+
#: includes/importer/views/html-wf-import-greeting.php:50
|
483 |
+
msgid "Please upload UTF-8 encoded CSV"
|
484 |
+
msgstr "S'il vous plaît télécharger CSV codé UTF-8"
|
485 |
+
|
486 |
+
#: includes/importer/views/html-wf-import-greeting.php:50
|
487 |
#, php-format
|
488 |
msgid "Maximum size: %s"
|
489 |
msgstr "Taille maximale: %s"
|
490 |
|
491 |
+
#: includes/importer/views/html-wf-import-greeting.php:54
|
492 |
+
msgid "Update products if exists"
|
493 |
+
msgstr "Mettre à jour les produits s'il existe"
|
494 |
+
|
495 |
+
#: includes/importer/views/html-wf-import-greeting.php:57
|
496 |
+
msgid ""
|
497 |
+
"Existing products are identified by their SKUs/IDs. If this option is not "
|
498 |
+
"selected and if a product with same ID/SKU is found in the CSV, that product "
|
499 |
+
"will not be imported."
|
500 |
+
msgstr ""
|
501 |
+
"Les produits existants sont identifiés par leurs références / identifiants. "
|
502 |
+
"Si cette option n'est pas sélectionnée et si un produit ayant le même ID / "
|
503 |
+
"SKU se trouve dans le fichier CSV, ce produit ne sera pas importé."
|
504 |
+
|
505 |
+
#: includes/importer/views/html-wf-import-greeting.php:62
|
506 |
msgid "Delimiter"
|
507 |
msgstr "Séparateur"
|
508 |
|
509 |
+
#: includes/importer/views/html-wf-import-greeting.php:66
|
510 |
msgid "Merge empty cells"
|
511 |
msgstr "Fusionner les cellules vides"
|
512 |
|
513 |
+
#: includes/importer/views/html-wf-import-greeting.php:68
|
514 |
msgid ""
|
515 |
+
"If this option is checked, empty attributes will be added to products with "
|
516 |
+
"no value. You can leave this unchecked if you are not sure about this option."
|
517 |
msgstr ""
|
518 |
+
"Si cette option est cochée, les attributs vides seront ajoutés aux produits "
|
519 |
+
"sans valeur. Vous pouvez ne rien cocher si vous n'êtes pas sûr de cette "
|
520 |
+
"option."
|
521 |
|
522 |
+
#: includes/importer/views/html-wf-import-greeting.php:75
|
523 |
+
msgid ""
|
524 |
+
"If you want to import from FTP location or from a URL or to configure "
|
525 |
+
"scheduled import you may need to upgrade to premium version."
|
526 |
+
msgstr ""
|
527 |
+
"Si vous souhaitez importer à partir d'un emplacement FTP ou d'une URL ou "
|
528 |
+
"pour configurer l'importation planifiée, vous devrez peut-être effectuer une "
|
529 |
+
"mise à niveau vers la version premium."
|
530 |
|
531 |
+
#: includes/importer/views/html-wf-import-options.php:19
|
532 |
+
msgid "Step 2: Import mapping"
|
533 |
+
msgstr "Étape 2: Importer la cartographie"
|
534 |
+
|
535 |
+
#: includes/importer/views/html-wf-import-options.php:20
|
536 |
msgid "Here you can map your imported columns to product data fields."
|
537 |
msgstr ""
|
538 |
"Ici vous pouvez mapper vos colonnes importées aux champs de données du "
|
539 |
"produit."
|
540 |
|
541 |
+
#: includes/importer/views/html-wf-import-options.php:24
|
542 |
+
msgid "Woocommerce product fields"
|
543 |
+
msgstr "Domaines de produits Woocommerce"
|
544 |
|
545 |
+
#: includes/importer/views/html-wf-import-options.php:25
|
546 |
+
msgid "CSV column header(from imported file)"
|
547 |
+
msgstr "En-tête de colonne CSV (à partir du fichier importé)"
|
548 |
|
549 |
+
#: includes/importer/views/html-wf-import-options.php:26
|
550 |
msgid "Evaluation Field"
|
551 |
msgstr "Champ d'évaluation"
|
552 |
|
553 |
+
#: includes/importer/views/html-wf-import-options.php:28
|
554 |
msgid ""
|
555 |
"Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to "
|
556 |
"Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</"
|
565 |
"valeur par HikeFoce à post_title: </ br> & par HikeFoce < / br> Prepend une "
|
566 |
"valeur HikeFoce à post_title: </ br> & HikeFoce [VAL]."
|
567 |
|
568 |
+
#: includes/importer/views/html-wf-import-options.php:107
|
569 |
msgid "Do not import"
|
570 |
msgstr "Ne pas importer"
|
571 |
|
572 |
+
#: includes/importer/views/html-wf-import-options.php:123
|
573 |
+
msgid ""
|
574 |
+
"Time taken to Import the products depends on the time taken to fetch the "
|
575 |
+
"images and the internet speed. If you have more than 1000 products we "
|
576 |
+
"recommend doing the import in batches by splitting the CSV file. Please do "
|
577 |
+
"not navigate away or close the window while the import is in progress."
|
578 |
+
msgstr ""
|
579 |
+
"Le temps nécessaire pour importer les produits dépend du temps nécessaire "
|
580 |
+
"pour aller chercher les images et la vitesse d'Internet. Si vous avez plus "
|
581 |
+
"de 1000 produits, nous vous recommandons d'effectuer l'importation par lots "
|
582 |
+
"en divisant le fichier CSV. Veuillez ne pas quitter ou fermer la fenêtre "
|
583 |
+
"pendant l'importation."
|
584 |
|
585 |
+
#: includes/views/export/html-wf-export-products.php:26
|
586 |
msgid "Export Product in CSV Format:"
|
587 |
msgstr "Exporter le produit au format CSV:"
|
588 |
|
589 |
+
#: includes/views/export/html-wf-export-products.php:27
|
590 |
msgid ""
|
591 |
+
"Export and download your products in CSV file format. This file can be used "
|
592 |
+
"to import products back into your WooCommerce store."
|
593 |
msgstr ""
|
594 |
+
"Exportez et téléchargez vos produits au format CSV. Ce fichier peut être "
|
595 |
+
"utilisé pour importer des produits dans votre magasin WooCommerce."
|
596 |
|
597 |
+
#: includes/views/export/html-wf-export-products.php:32
|
598 |
msgid "Offset"
|
599 |
msgstr "Offset"
|
600 |
|
601 |
+
#: includes/views/export/html-wf-export-products.php:36
|
602 |
+
msgid ""
|
603 |
+
"Number of products to skip before exporting. If the value is 0 no products "
|
604 |
+
"are skipped. If value is 100, products from product id 101 will be exported."
|
605 |
+
msgstr ""
|
606 |
+
"Nombre de produits à ignorer avant d'exporter. Si la valeur est 0, aucun "
|
607 |
+
"produit n'est ignoré. Si la valeur est 100, les produits de l'ID de produit "
|
608 |
+
"101 seront exportés."
|
609 |
|
610 |
+
#: includes/views/export/html-wf-export-products.php:41
|
611 |
msgid "Limit"
|
612 |
msgstr "Limite"
|
613 |
|
614 |
+
#: includes/views/export/html-wf-export-products.php:44
|
615 |
msgid "Unlimited"
|
616 |
msgstr "Illimité"
|
617 |
|
618 |
+
#: includes/views/export/html-wf-export-products.php:45
|
619 |
+
msgid ""
|
620 |
+
"Number of products to export. If no value is given all products will be "
|
621 |
+
"exported. This is useful if you have large number of products and want to "
|
622 |
+
"export partial list of products."
|
623 |
+
msgstr ""
|
624 |
+
"Nombre de produits à exporter. Si aucune valeur n'est donnée, tous les "
|
625 |
+
"produits seront exportés. Ceci est utile si vous avez un grand nombre de "
|
626 |
+
"produits et souhaitez exporter une liste partielle de produits."
|
627 |
+
|
628 |
+
#: includes/views/export/html-wf-export-products.php:50
|
629 |
msgid "Columns"
|
630 |
msgstr "Colonnes"
|
631 |
|
632 |
+
#: includes/views/export/html-wf-export-products.php:51
|
633 |
+
msgid ""
|
634 |
+
"Configure the Column Names of CSV file. If the Column Names are not changed, "
|
635 |
+
"plugin can auto detect fields while importing."
|
636 |
+
msgstr ""
|
637 |
+
"Configurez les noms de colonne du fichier CSV. Si les noms de colonne ne "
|
638 |
+
"sont pas modifiés, le plugin peut détecter automatiquement les champs lors "
|
639 |
+
"de l'importation."
|
640 |
+
|
641 |
+
#: includes/views/export/html-wf-export-products.php:55
|
642 |
+
msgid "WooCommerce product field name"
|
643 |
+
msgstr "Nom du champ de produit WooCommerce"
|
644 |
+
|
645 |
+
#: includes/views/export/html-wf-export-products.php:58
|
646 |
+
msgid "Column header name in the CSV file"
|
647 |
+
msgstr "Nom d'en-tête de colonne dans le fichier CSV"
|
648 |
|
649 |
+
#: includes/views/export/html-wf-export-products.php:63
|
650 |
+
msgid "Select all"
|
651 |
+
msgstr "Tout sélectionner"
|
652 |
|
653 |
+
#: includes/views/export/html-wf-export-products.php:64
|
654 |
+
msgid "Unselect all"
|
655 |
+
msgstr "Désélectionne tout"
|
656 |
|
657 |
+
#: includes/views/export/html-wf-export-products.php:95
|
658 |
msgid "Export Products"
|
659 |
msgstr "Export Produits"
|
660 |
|
661 |
+
#: includes/views/export/html-wf-export-products.php:96
|
662 |
+
msgid ""
|
663 |
+
"With free version of the plugin you can export products (except variable "
|
664 |
+
"products) in to a file. If you want to configure scheduled export to a "
|
665 |
+
"folder or FTP location you may need to upgrade to premium version."
|
666 |
+
msgstr ""
|
667 |
+
"Avec la version gratuite du plugin, vous pouvez exporter des produits (à "
|
668 |
+
"l'exception des produits variables) dans un fichier. Si vous souhaitez "
|
669 |
+
"configurer l'exportation planifiée vers un dossier ou un emplacement FTP, "
|
670 |
+
"vous devrez peut-être effectuer une mise à niveau vers la version premium."
|
671 |
+
|
672 |
+
#: includes/views/html-wf-help-guide.php:31
|
673 |
+
msgid "How-to-setup"
|
674 |
+
msgstr "Comment configurer"
|
675 |
+
|
676 |
+
#: includes/views/html-wf-help-guide.php:32
|
677 |
+
msgid "Get to know about our produt in 3 minutes with this video"
|
678 |
+
msgstr "Apprenez à connaître notre produit en 3 minutes avec cette vidéo"
|
679 |
+
|
680 |
+
#: includes/views/html-wf-help-guide.php:34
|
681 |
+
msgid "Setup Guide"
|
682 |
+
msgstr "Guide de configuration"
|
683 |
+
|
684 |
+
#: includes/views/html-wf-help-guide.php:39
|
685 |
+
#: includes/views/html-wf-help-guide.php:41 includes/views/market.php:34
|
686 |
msgid "Documentation"
|
687 |
msgstr "Documentation"
|
688 |
|
689 |
+
#: includes/views/html-wf-help-guide.php:40
|
690 |
+
msgid "Refer to our documentation to set and get started"
|
691 |
+
msgstr "Reportez-vous à notre documentation pour définir et commencer"
|
692 |
+
|
693 |
+
#: includes/views/html-wf-help-guide.php:46 product-csv-import-export.php:69
|
694 |
+
msgid "Support"
|
695 |
+
msgstr "Soutien"
|
696 |
+
|
697 |
+
#: includes/views/html-wf-help-guide.php:47
|
698 |
+
msgid "We would love to help you on any queries or issues."
|
699 |
+
msgstr "Nous serions ravis de vous aider pour toute question ou problème."
|
700 |
+
|
701 |
+
#: includes/views/html-wf-help-guide.php:49
|
702 |
+
msgid "Contact Us"
|
703 |
+
msgstr ""
|
704 |
+
"Il n'y a aucun mode de livraison disponible. Veuillez vérifier votre adresse "
|
705 |
+
"ou contactez-nous si vous avez besoin d'aide."
|
706 |
+
|
707 |
+
#: includes/views/market.php:8
|
708 |
+
msgid "Watch getting started video"
|
709 |
+
msgstr "Regarder la vidéo Mise en route"
|
710 |
+
|
711 |
+
#: includes/views/market.php:12
|
712 |
+
msgid "Upgrade to Premium Version"
|
713 |
+
msgstr "Passer à la version Premium"
|
714 |
+
|
715 |
+
#: includes/views/market.php:15
|
716 |
+
msgid "Export simple, group, external and variation products."
|
717 |
+
msgstr "Exporter des produits simples, de groupe, externes et de variation."
|
718 |
+
|
719 |
+
#: includes/views/market.php:16
|
720 |
+
msgid "Import simple, group, external and variation products."
|
721 |
+
msgstr "Importez des produits simples, de groupe, externes et de variation."
|
722 |
+
|
723 |
+
#: includes/views/market.php:17
|
724 |
+
msgid "Export products by category."
|
725 |
+
msgstr "Exporter des produits par catégorie."
|
726 |
+
|
727 |
+
#: includes/views/market.php:18
|
728 |
+
msgid "Various filter options for exporting products."
|
729 |
+
msgstr "Diverses options de filtre pour l'exportation de produits."
|
730 |
+
|
731 |
+
#: includes/views/market.php:19
|
732 |
+
msgid "Map and transform fields while importing products."
|
733 |
+
msgstr "Mappez et transformez les champs lors de l'importation de produits."
|
734 |
+
|
735 |
+
#: includes/views/market.php:20
|
736 |
+
msgid "Change values while importing products using evaluation fields."
|
737 |
+
msgstr ""
|
738 |
+
"Modifiez les valeurs lors de l'importation de produits à l'aide de champs "
|
739 |
+
"d'évaluation."
|
740 |
+
|
741 |
+
#: includes/views/market.php:21
|
742 |
+
msgid "Choice to update or skip existing imported products."
|
743 |
+
msgstr "Choix de mettre à jour ou d'ignorer les produits importés existants."
|
744 |
+
|
745 |
+
#: includes/views/market.php:22
|
746 |
+
msgid "WPML supported. French and German support out of the box."
|
747 |
+
msgstr "WPML pris en charge. Le support français et allemand hors de la boîte."
|
748 |
|
749 |
+
#: includes/views/market.php:23
|
750 |
+
msgid "Import/Export file via FTP."
|
751 |
+
msgstr "Importer / Exporter un fichier via FTP."
|
752 |
|
753 |
+
#: includes/views/market.php:24
|
754 |
+
msgid "Import from URL."
|
755 |
+
msgstr "Importer depuis une URL"
|
756 |
+
|
757 |
+
#: includes/views/market.php:25
|
758 |
+
msgid "Automatic scheduled import and export."
|
759 |
+
msgstr "Importation et exportation planifiées automatiques."
|
760 |
+
|
761 |
+
#: includes/views/market.php:26
|
762 |
+
msgid "Supports product reviews export and import."
|
763 |
+
msgstr "Supporte les revues de produits export et import."
|
764 |
+
|
765 |
+
#: includes/views/market.php:27
|
766 |
+
msgid "30 Days Money Back Guarantee."
|
767 |
+
msgstr "Garantie de remboursement de 30 jours."
|
768 |
+
|
769 |
+
#: includes/views/market.php:28
|
770 |
+
msgid "More frequent plugin updates."
|
771 |
+
msgstr "Mises à jour de plugins plus fréquentes."
|
772 |
+
|
773 |
+
#: includes/views/market.php:29
|
774 |
+
msgid "Excellent Support for setting it up!"
|
775 |
+
msgstr "Excellent support pour la mise en place!"
|
776 |
+
|
777 |
+
#: includes/views/market.php:33
|
778 |
+
msgid "Live Demo"
|
779 |
+
msgstr "Démo en direct"
|
780 |
+
|
781 |
+
#: includes/views/market.php:38
|
782 |
+
#, php-format
|
783 |
msgid ""
|
784 |
+
"<div class=\"\"><p><i>If you like the plugin please leave us a %1$s review!</"
|
785 |
+
"i><p></div>"
|
786 |
msgstr ""
|
787 |
+
"<div class=\"\"><p> <i>Si vous aimez le plugin s'il vous plaît laissez-nous "
|
788 |
+
"un commentaire%1$s!</i> <p></div>"
|
789 |
+
|
790 |
+
#: product-csv-import-export.php:67
|
791 |
+
msgid "Import Export"
|
792 |
+
msgstr "import Export"
|
793 |
+
|
794 |
+
#: product-csv-import-export.php:68
|
795 |
+
msgid "Premium Upgrade"
|
796 |
+
msgstr "Mise à niveau haut de gamme"
|
797 |
+
|
798 |
+
#: product-csv-import-export.php:70
|
799 |
+
msgid "Review"
|
800 |
+
msgstr "> Impossible de mettre à jour produit %s"
|
801 |
+
|
802 |
+
#: product-csv-import-export.php:117
|
803 |
+
msgid "Import <strong>products</strong> to your store via a csv file."
|
804 |
+
msgstr ""
|
805 |
+
"Donnez votre avis sur nImporter <strong> produits </ strong> à votre magasin "
|
806 |
+
"via un file.ow csv!"
|
807 |
+
|
808 |
+
#: product-csv-import-export.php:139
|
809 |
+
msgid "I couldn't understand how to make it work"
|
810 |
+
msgstr "Je n’arrive pas à comprendre comment le faire fonctionner"
|
811 |
+
|
812 |
+
#: product-csv-import-export.php:141
|
813 |
+
msgid "Would you like us to assist you?"
|
814 |
+
msgstr "Souhaitez-vous que nous vous aidions?"
|
815 |
+
|
816 |
+
#: product-csv-import-export.php:145
|
817 |
+
msgid "I found a better plugin"
|
818 |
+
msgstr "Trouvé un meilleur plugin"
|
819 |
+
|
820 |
+
#: product-csv-import-export.php:147
|
821 |
+
msgid "Which plugin?"
|
822 |
+
msgstr "Quel plugin"
|
823 |
+
|
824 |
+
#: product-csv-import-export.php:151
|
825 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
826 |
+
msgstr ""
|
827 |
+
"Le plugin est bien, mais j'ai besoin d'une fonctionnalité non supportée"
|
828 |
+
|
829 |
+
#: product-csv-import-export.php:153
|
830 |
+
msgid "Could you tell us more about that feature?"
|
831 |
+
msgstr "Pourriez-vous nous en dire plus sur cette fonctionnalité?"
|
832 |
+
|
833 |
+
#: product-csv-import-export.php:157
|
834 |
+
msgid "The plugin is not working"
|
835 |
+
msgstr "L’extension ne fonctionne pas"
|
836 |
+
|
837 |
+
#: product-csv-import-export.php:159
|
838 |
+
msgid "Could you tell us a bit more whats not working?"
|
839 |
+
msgstr "Pourriez-vous nous dire un peu plus ce qui ne fonctionne pas?"
|
840 |
+
|
841 |
+
#: product-csv-import-export.php:163
|
842 |
+
msgid "It's not what I was looking for"
|
843 |
+
msgstr "Ce n'est pas ce que je cherchais"
|
844 |
+
|
845 |
+
#: product-csv-import-export.php:169
|
846 |
+
msgid "The plugin didn't work as expected"
|
847 |
+
msgstr "Le plugin n'a pas fonctionné comme prévu"
|
848 |
+
|
849 |
+
#: product-csv-import-export.php:171
|
850 |
+
msgid "What did you expect?"
|
851 |
+
msgstr "A quoi vous attendiez-vous ?"
|
852 |
+
|
853 |
+
#: product-csv-import-export.php:175
|
854 |
+
msgid "Other"
|
855 |
+
msgstr "Autre"
|
856 |
+
|
857 |
+
#: product-csv-import-export.php:177
|
858 |
+
msgid "Could you tell us a bit more?"
|
859 |
+
msgstr "Pourriez-vous nous en dire un peu plus?"
|
860 |
+
|
861 |
+
#: product-csv-import-export.php:197
|
862 |
+
msgid "If you have a moment, please let us know why you are deactivating:"
|
863 |
+
msgstr ""
|
864 |
+
"Si vous avez un moment, faites-nous savoir pourquoi vous avez désactivé "
|
865 |
+
"l’extension:"
|
866 |
+
|
867 |
+
#: product-csv-import-export.php:211
|
868 |
+
msgid "I rather wouldn't say"
|
869 |
+
msgstr "Je préfère ne pas le dire"
|
870 |
+
|
871 |
+
#: product-csv-import-export.php:212
|
872 |
+
msgid "Submit & Deactivate"
|
873 |
+
msgstr "Soumettre et désactiver"
|
874 |
+
|
875 |
+
#: product-csv-import-export.php:213
|
876 |
+
msgid "Cancel"
|
877 |
+
msgstr "Annuler"
|
878 |
+
|
879 |
+
#: product-csv-import-export.php:378
|
880 |
+
msgid ""
|
881 |
+
"Is everything fine? You already have the Premium version installed in your "
|
882 |
+
"website. For any issues, kindly raise a ticket via <a target='_blank' "
|
883 |
+
"href='//support.xadapter.com/'>support.xadapter.com</a>"
|
884 |
+
msgstr ""
|
885 |
+
"Est-ce que tout va bien? Vous avez déjà installé la version Premium sur "
|
886 |
+
"votre site Web. Pour tout problème, veuillez lever un ticket via <a "
|
887 |
+
"target='_blank' href='//support.xadapter.com/'>support.xadapter.com</a>"
|
888 |
+
|
889 |
+
#~ msgid "Successfully uploaded via FTP."
|
890 |
+
#~ msgstr "Avec succès téléchargé via FTP."
|
891 |
+
|
892 |
+
#~ msgid "Error while uploading via FTP."
|
893 |
+
#~ msgstr "Erreur lors du transfert via FTP."
|
894 |
+
|
895 |
+
# msgid "Did this plugin work for you? Please rate and contact us at <i>support@hikeforce.com</i> to get $10 off on your next purchase."
|
896 |
+
# msgstr "Est-ce que ce travail de plug-in pour vous & nbsp?; S'il vous plaît noter et nous contacter à <i> support@hikeforce.com </ i> pour obtenir 10 $ de rabais sur votre prochain achat."
|
897 |
+
#~ msgid "Review Now!"
|
898 |
+
#~ msgstr "Review Now!"
|
899 |
+
|
900 |
+
#~ msgid "Import"
|
901 |
+
#~ msgstr "Importer"
|
902 |
+
|
903 |
+
#~ msgid "Merge Products"
|
904 |
+
#~ msgstr "Fusionner Produits"
|
905 |
+
|
906 |
+
#~ msgid ""
|
907 |
+
#~ "Check this box to merge empty cells - otherwise (when merging) the empty "
|
908 |
+
#~ "cells will be ignored when importing things such as attributes."
|
909 |
+
#~ msgstr ""
|
910 |
+
#~ "Cochez cette case pour fusionner les cellules vides - sinon (lors de la "
|
911 |
+
#~ "fusion), les cellules vides seront ignorés lors de l'importation des "
|
912 |
+
#~ "choses telles que les attributs."
|
913 |
+
|
914 |
+
#~ msgid "Map Fields"
|
915 |
+
#~ msgstr "Carte champs"
|
916 |
+
|
917 |
+
#~ msgid "Map to"
|
918 |
+
#~ msgstr "Carte à"
|
919 |
+
|
920 |
+
#~ msgid "Column Header"
|
921 |
+
#~ msgstr "tête de colonne"
|
922 |
+
|
923 |
+
#~ msgid "Product Import / Export"
|
924 |
+
#~ msgstr "Importation de produits / Export"
|
925 |
+
|
926 |
+
#~ msgid ""
|
927 |
+
#~ "Export and download your products in CSV format. This file can be used to "
|
928 |
+
#~ "import products back into your Woocommerce shop."
|
929 |
+
#~ msgstr ""
|
930 |
+
#~ "Export et télécharger vos produits au format CSV. Ce fichier peut être "
|
931 |
+
#~ "utilisé pour importer des produits dans votre magasin de WooCommerce."
|
932 |
+
|
933 |
+
#~ msgid "0"
|
934 |
+
#~ msgstr "0"
|
935 |
+
|
936 |
+
#~ msgid "Column"
|
937 |
+
#~ msgstr "Colonne"
|
938 |
+
|
939 |
+
#~ msgid "Column Name"
|
940 |
+
#~ msgstr "Nom de colonne"
|
941 |
+
|
942 |
+
#~ msgid "Include hidden meta data"
|
943 |
+
#~ msgstr "Inclure les métadonnées cachées"
|
944 |
+
|
945 |
+
#~ msgid "Sample CSV"
|
946 |
+
#~ msgstr "CSV Sample"
|
947 |
+
|
948 |
+
#~ msgid "Import Products in CSV Format:"
|
949 |
+
#~ msgstr "Produits d'importation au format CSV Format:"
|
950 |
+
|
951 |
+
#~ msgid ""
|
952 |
+
#~ "Import products in CSV format ( works for simple products) from "
|
953 |
+
#~ "different sources"
|
954 |
+
#~ msgstr ""
|
955 |
+
#~ "produits d'importation au format CSV (fonctionne pour des produits "
|
956 |
+
#~ "simples) provenant de différentes sources"
|
957 |
|
958 |
+
#~ msgid "Import Products"
|
959 |
+
#~ msgstr "Importer des produits"
|
|
|
960 |
|
961 |
+
#~ msgid "Merge products if exists"
|
962 |
+
#~ msgstr "Fusionner produits si elle existe"
|
|
lang/wf_csv_import_export-hu_HU.mo
CHANGED
Binary file
|
lang/wf_csv_import_export-hu_HU.po
CHANGED
@@ -1,53 +1,20 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Product-Import-Export-Basic\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: HikeForce <support@hikeforce.com>\n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
12 |
-
"X-Generator: Poedit 1.5.7\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
-
"X-Poedit-Basepath:
|
15 |
-
"X-Poedit-SearchPath-0:
|
16 |
-
|
17 |
-
#: product-import-export-for-woo/product-csv-import-export.php:59
|
18 |
-
msgid "Import Export"
|
19 |
-
msgstr "Import Export"
|
20 |
-
|
21 |
-
#: product-import-export-for-woo/product-csv-import-export.php:60
|
22 |
-
msgid "Premium Upgrade"
|
23 |
-
msgstr "Premium upgrade"
|
24 |
-
|
25 |
-
#: product-import-export-for-woo/product-csv-import-export.php:61
|
26 |
-
msgid "Support"
|
27 |
-
msgstr "Soutien"
|
28 |
-
|
29 |
-
#: product-import-export-for-woo/product-csv-import-export.php:78
|
30 |
-
msgid "Successfully uploaded via FTP."
|
31 |
-
msgstr "Avec succès téléchargé via FTP."
|
32 |
-
|
33 |
-
#: product-import-export-for-woo/product-csv-import-export.php:81
|
34 |
-
msgid "Error while uploading via FTP."
|
35 |
-
msgstr "Erreur lors du transfert via FTP."
|
36 |
-
|
37 |
-
# msgid "Did this plugin work for you? Please rate and contact us at <i>support@hikeforce.com</i> to get $10 off on your next purchase."
|
38 |
-
# msgstr "Est-ce que ce travail de plug-in pour vous & nbsp?; S'il vous plaît noter et nous contacter à <i> support@hikeforce.com </ i> pour obtenir 10 $ de rabais sur votre prochain achat."
|
39 |
-
#: product-import-export-for-woo/product-csv-import-export.php:92
|
40 |
-
#: product-import-export-for-woo/product-csv-import-export.php:93
|
41 |
-
msgid "Review Now!"
|
42 |
-
msgstr "Review Now!"
|
43 |
-
|
44 |
-
#: product-import-export-for-woo/product-csv-import-export.php:145
|
45 |
-
msgid "Import <strong>products</strong> to your store via a csv file."
|
46 |
-
msgstr ""
|
47 |
-
"Donnez votre avis sur nImporter <strong> produits </ strong> à votre magasin "
|
48 |
-
"via un file.ow csv!"
|
49 |
|
50 |
-
#:
|
51 |
msgid ""
|
52 |
"Product CSV Import Export requires the function <code>mb_detect_encoding</"
|
53 |
"code> to import and export CSV files. Please ask your hosting provider to "
|
@@ -57,172 +24,214 @@ msgstr ""
|
|
57 |
"code> pour importer et exporter des fichiers CSV. S'il vous plaît demander à "
|
58 |
"votre fournisseur d'hébergement pour activer cette fonction."
|
59 |
|
60 |
-
#:
|
|
|
61 |
msgid "Product Im-Ex"
|
62 |
msgstr "Termék Im-Ex"
|
63 |
|
64 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
#, php-format
|
66 |
msgid "Failed resize: %s is an invalid image ID."
|
67 |
msgstr "resize Échec:% s est une image ID invalide."
|
68 |
|
69 |
-
#:
|
70 |
msgid "Your user account doesn't have permission to resize images"
|
71 |
msgstr ""
|
72 |
"Votre compte d'utilisateur n'a pas la permission de redimensionner les images"
|
73 |
|
74 |
-
#:
|
75 |
#, php-format
|
76 |
msgid "The originally uploaded image file cannot be found at %s"
|
77 |
msgstr "Le fichier image initialement téléchargé ne peut pas être trouvé à% s"
|
78 |
|
79 |
-
#:
|
80 |
msgid "Unknown failure reason."
|
81 |
msgstr "Inconnu raison de l'échec."
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
# msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
84 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) a été redimensionné avec succès en% des secondes de 3 $."
|
85 |
# msgid ""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
86 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) n'a pas réussi à redimensionner. Le message d'erreur était:% 3 $ s"
|
87 |
# msgid "Delete Products"
|
88 |
# msgstr "Supprimer Produits"
|
89 |
-
#:
|
90 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-ajax-handler.php:65
|
91 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-system-status-tools.php:22
|
92 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-system-status-tools.php:23
|
93 |
-
#, php-format
|
94 |
msgid "Delete ALL products"
|
95 |
msgstr "Supprimer tous les produits"
|
96 |
|
97 |
-
#:
|
98 |
msgid "This tool will delete all products allowing you to start fresh."
|
99 |
msgstr ""
|
100 |
"Cet outil permet de supprimer tous les produits vous permettant de commencer "
|
101 |
"frais."
|
102 |
|
103 |
-
#:
|
104 |
msgid "Delete Variations"
|
105 |
msgstr "Supprimer Variations"
|
106 |
|
107 |
-
#:
|
108 |
msgid "Delete ALL variations"
|
109 |
msgstr "Supprimer toutes les variantes"
|
110 |
|
111 |
-
#:
|
112 |
msgid "This tool will delete all variations allowing you to start fresh."
|
113 |
msgstr ""
|
114 |
"Cet outil permet de supprimer toutes les variantes vous permettant de "
|
115 |
"commencer frais."
|
116 |
|
117 |
-
#:
|
118 |
msgid "Delete Orphans"
|
119 |
msgstr "Supprimer les orphelins"
|
120 |
|
121 |
-
#:
|
122 |
msgid "Delete orphaned variations"
|
123 |
msgstr "Supprimer variations orphelins"
|
124 |
|
125 |
-
#:
|
126 |
msgid "This tool will delete variations which have no parent."
|
127 |
msgstr "Cet outil permet de supprimer les variations qui ont pas de parent."
|
128 |
|
129 |
-
#:
|
130 |
#, php-format
|
131 |
msgid "%d Products Deleted"
|
132 |
msgstr "%d Produits supprimés"
|
133 |
|
134 |
-
#:
|
135 |
-
#:
|
136 |
#, php-format
|
137 |
msgid "%d Variations Deleted"
|
138 |
msgstr "%d Variations Supprimé"
|
139 |
|
140 |
-
#:
|
141 |
#, php-format
|
142 |
msgid "> Row %s - preparing for merge."
|
143 |
msgstr ">%s Row - préparation de fusion."
|
144 |
|
145 |
-
#:
|
146 |
msgid "> > Cannot merge without id or sku. Importing instead."
|
147 |
msgstr ">> Vous ne pouvez pas fusionner sans id ou sku. Importation place."
|
148 |
|
149 |
-
#:
|
150 |
#, php-format
|
151 |
msgid "> > Skipped. Cannot find product with sku %s. Importing instead."
|
152 |
msgstr ">> Ignoré. Vous ne trouvez pas produit avec sku%s. Importation place."
|
153 |
|
154 |
-
#:
|
155 |
#, php-format
|
156 |
msgid "> > Found product with ID %s."
|
157 |
msgstr ">> Produit trouvé avec ID %s."
|
158 |
|
159 |
-
#:
|
160 |
#, php-format
|
161 |
msgid "> Row %s - preparing for import."
|
162 |
msgstr ">%s Row - préparation pour l'importation."
|
163 |
|
164 |
-
#:
|
165 |
msgid "> > Skipped. No post_title set for new product."
|
166 |
msgstr ">> Ignoré. Non post_title fixé pour le nouveau produit."
|
167 |
|
168 |
-
#:
|
169 |
msgid "No post_title set for new product."
|
170 |
msgstr "Non post_title fixé pour le nouveau produit."
|
171 |
|
172 |
-
#:
|
173 |
msgid "> > Skipped. No parent set for new variation product."
|
174 |
msgstr ">> Ignoré. Aucun parent fixé pour le produit de variation nouvelle."
|
175 |
|
176 |
-
#:
|
177 |
msgid "No parent set for new variation product."
|
178 |
msgstr "Aucun parent fixé pour le produit de variation nouvelle."
|
179 |
|
180 |
-
#:
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid "> > ("
|
183 |
msgstr "> > ("
|
184 |
|
185 |
-
#:
|
186 |
-
#:
|
187 |
#, php-format
|
188 |
msgid "> > Failed to import term %s %s"
|
189 |
msgstr "> > Impossible d'importer terme %s %s"
|
190 |
|
191 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
#, php-format
|
193 |
msgid "> > Inserted Raw Term %s ID = %s"
|
194 |
msgstr "> >Term Row Inséré %s ID = %s"
|
195 |
|
196 |
-
#:
|
197 |
#, php-format
|
198 |
msgid "> > Raw Term %s ID = %s"
|
199 |
msgstr "> > Raw terme %s ID = %s"
|
200 |
|
201 |
-
#:
|
202 |
msgid "Error with handle_upload!"
|
203 |
msgstr "Erreur avec poignée téléchargement!"
|
204 |
|
205 |
-
#:
|
206 |
msgid "Row"
|
207 |
msgstr "Rangée"
|
208 |
|
209 |
-
#:
|
210 |
msgid "SKU"
|
211 |
msgstr "SKU"
|
212 |
|
213 |
-
#:
|
214 |
msgid "Product"
|
215 |
msgstr "Produit"
|
216 |
|
217 |
-
#:
|
218 |
msgid "Status Msg"
|
219 |
msgstr "Statut Msg"
|
220 |
|
221 |
-
#:
|
222 |
msgid "AJAX Error"
|
223 |
msgstr "AJAX erreur"
|
224 |
|
225 |
-
#:
|
226 |
#, php-format
|
227 |
msgid ""
|
228 |
"The resize request was abnormally terminated (ID %s). This is likely due to "
|
@@ -232,201 +241,223 @@ msgstr ""
|
|
232 |
"Cela est probablement dû à l'image dépassant la mémoire disponible ou d'un "
|
233 |
"autre type d'erreur fatale."
|
234 |
|
235 |
-
#:
|
236 |
msgid "thumbnails regenerated"
|
237 |
msgstr "vignettes régénèrent"
|
238 |
|
239 |
-
#:
|
240 |
msgid "Error finding uploaded file!"
|
241 |
msgstr "constatation d'erreur de fichier téléchargé!"
|
242 |
|
243 |
-
#:
|
244 |
msgid "Step 1..."
|
245 |
msgstr "Étape 1..."
|
246 |
|
247 |
-
#:
|
248 |
msgid "Step 2..."
|
249 |
msgstr "Étape 2..."
|
250 |
|
251 |
-
#:
|
252 |
msgid "Finalizing..."
|
253 |
msgstr "Finalisation ..."
|
254 |
|
255 |
-
#:
|
256 |
msgid "Linking upsells..."
|
257 |
msgstr "Liaison upsells ..."
|
258 |
|
259 |
-
#:
|
260 |
msgid "Linking crosssells..."
|
261 |
msgstr "Lier croix vend ..."
|
262 |
|
263 |
-
#:
|
264 |
msgid "Finished. Import complete."
|
265 |
msgstr "Fini. Importation complète."
|
266 |
|
267 |
-
#:
|
268 |
msgid "Map to fields are pre-selected based on your last import. <a href=\""
|
269 |
msgstr ""
|
270 |
"Carte des champs sont pré-sélectionnés en fonction de votre dernière "
|
271 |
"importation. <a href=\""
|
272 |
|
273 |
-
#:
|
274 |
msgid "Processing products."
|
275 |
msgstr "produits de traitement."
|
276 |
|
277 |
-
#:
|
278 |
msgid "Finished processing products."
|
279 |
msgstr "produits de traitement fini."
|
280 |
|
281 |
-
#:
|
282 |
msgid "Parsing products CSV."
|
283 |
msgstr "Parsing produits CSV."
|
284 |
|
285 |
-
#:
|
286 |
msgid "Finished parsing products CSV."
|
287 |
msgstr "Produits finis parsing CSV."
|
288 |
|
289 |
-
#:
|
290 |
-
#:
|
291 |
msgid "Sorry, there has been an error."
|
292 |
msgstr "Désolé, il y a eu une erreur."
|
293 |
|
294 |
-
#:
|
295 |
msgid "Product already processed"
|
296 |
msgstr "Produit déjà traité"
|
297 |
|
298 |
-
#:
|
299 |
msgid "> Post ID already processed. Skipping."
|
300 |
msgstr "> Publier ID déjà traité. Saut."
|
301 |
|
302 |
-
#:
|
303 |
msgid "Skipping auto-draft"
|
304 |
msgstr "Saut auto-projet"
|
305 |
|
306 |
-
#:
|
307 |
msgid "> Skipping auto-draft."
|
308 |
msgstr "> Saut auto-projet."
|
309 |
|
310 |
-
#:
|
311 |
#, php-format
|
312 |
msgid "> “%s”"
|
313 |
msgstr "> “%s”"
|
314 |
|
315 |
-
#:
|
316 |
msgid "Importing post ID conflicts with an existing post ID"
|
317 |
msgstr ""
|
318 |
"Importation soumettre les conflits d'identité avec un ID de poste existant"
|
319 |
|
320 |
-
#:
|
321 |
#, php-format
|
322 |
msgid "> “%s” ID already exists."
|
323 |
msgstr "> “%s” ID existe déjà."
|
324 |
|
325 |
-
#:
|
326 |
msgid "Post is not a product"
|
327 |
msgstr "ne sont pas un produit...."
|
328 |
|
329 |
-
#:
|
330 |
#, php-format
|
331 |
msgid "> “%s” is not a product."
|
332 |
msgstr "> “%s” ne sont pas un produit."
|
333 |
|
334 |
-
#:
|
335 |
#, php-format
|
336 |
msgid "> Merging post ID %s."
|
337 |
msgstr "> Fusion de post ID %s."
|
338 |
|
339 |
-
#:
|
340 |
msgid "Failed to update product"
|
341 |
msgstr "Impossible de mettre à jour le produit"
|
342 |
|
343 |
-
#:
|
344 |
#, php-format
|
345 |
msgid "> Failed to update product %s"
|
346 |
msgstr "> Impossible de mettre à jour le produit %s"
|
347 |
|
348 |
-
#:
|
349 |
msgid "> Merged post data: "
|
350 |
msgstr "> Données de poste Fusionné:"
|
351 |
|
352 |
-
#:
|
353 |
#, php-format
|
354 |
msgid "> Inserting %s"
|
355 |
msgstr "> Insertion %s"
|
356 |
|
357 |
-
#:
|
358 |
msgid "Failed to import product"
|
359 |
msgstr "Impossible d'importer le produit"
|
360 |
|
361 |
-
#:
|
362 |
#, php-format
|
363 |
msgid "Failed to import product “%s”"
|
364 |
msgstr "Impossible d'importer le produit “%s”"
|
365 |
|
366 |
-
#:
|
367 |
#, php-format
|
368 |
msgid "> Inserted - post ID is %s."
|
369 |
msgstr "> Inséré - ID de message est %s."
|
370 |
|
371 |
-
#:
|
372 |
#, php-format
|
373 |
msgid "> > Image exists - skipping %s"
|
374 |
msgstr ">> Existe image - sauter %s"
|
375 |
|
376 |
-
#:
|
377 |
#, php-format
|
378 |
msgid "> > Importing image \"%s\""
|
379 |
msgstr "> > l'image importation \"%s\""
|
380 |
|
381 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "> > Images set"
|
383 |
msgstr ">> Images fixés"
|
384 |
|
385 |
-
#:
|
386 |
#, php-format
|
387 |
msgid "> Finished merging post ID %s."
|
388 |
msgstr "> Fini la fusion après ID %s."
|
389 |
|
390 |
-
#:
|
391 |
#, php-format
|
392 |
msgid "> Finished importing post ID %s."
|
393 |
msgstr "> Fini l'importation après ID %s."
|
394 |
|
395 |
-
#:
|
396 |
-
#:
|
397 |
msgid "Invalid file type"
|
398 |
msgstr "type de fichier invalide"
|
399 |
|
400 |
-
#:
|
401 |
msgid "Local image did not exist!"
|
402 |
msgstr "Image locale n'a pas existé!"
|
403 |
|
404 |
-
#:
|
405 |
#, php-format
|
406 |
msgid "> > Inserted image attachment \"%s\""
|
407 |
msgstr ">> Image jointe Inséré \"%s\""
|
408 |
|
409 |
-
#:
|
410 |
msgid "Zero size file downloaded"
|
411 |
msgstr "fichier Zéro taille téléchargé"
|
412 |
|
413 |
-
#:
|
414 |
-
|
415 |
-
|
|
|
|
|
416 |
|
417 |
-
#:
|
418 |
-
|
419 |
-
|
|
|
|
|
420 |
|
421 |
-
#:
|
422 |
-
|
423 |
-
|
424 |
-
"
|
425 |
-
msgstr ""
|
426 |
-
"Vous pouvez importer des produits (au format CSV) dans le magasin en "
|
427 |
-
"utilisant l'une des méthodes suivantes."
|
428 |
|
429 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
msgid ""
|
431 |
"Before you can upload your import file, you will need to fix the following "
|
432 |
"error:"
|
@@ -434,55 +465,89 @@ msgstr ""
|
|
434 |
"Avant de pouvoir télécharger votre fichier d'importation, vous devez "
|
435 |
"corriger l'erreur suivante:"
|
436 |
|
437 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
msgid "Method 1: Select a file from your computer"
|
439 |
msgstr "Méthode 1: Sélectionnez un fichier à partir de votre ordinateur"
|
440 |
|
441 |
-
#:
|
|
|
|
|
|
|
|
|
442 |
#, php-format
|
443 |
msgid "Maximum size: %s"
|
444 |
msgstr "Taille maximale: %s"
|
445 |
|
446 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgid "Delimiter"
|
448 |
msgstr "Séparateur"
|
449 |
|
450 |
-
#:
|
451 |
msgid "Merge empty cells"
|
452 |
msgstr "Fusionner les cellules vides"
|
453 |
|
454 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
msgid ""
|
456 |
-
"
|
457 |
-
"
|
458 |
msgstr ""
|
459 |
-
"
|
460 |
-
"
|
461 |
-
"telles que les attributs."
|
462 |
|
463 |
-
#:
|
464 |
-
msgid "
|
465 |
-
msgstr "
|
466 |
|
467 |
-
#:
|
468 |
msgid "Here you can map your imported columns to product data fields."
|
469 |
msgstr ""
|
470 |
"Ici vous pouvez mapper vos colonnes importées aux champs de données du "
|
471 |
"produit."
|
472 |
|
473 |
-
#:
|
474 |
-
msgid "
|
475 |
-
msgstr "
|
476 |
|
477 |
-
#:
|
478 |
-
msgid "
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#:
|
482 |
msgid "Evaluation Field"
|
483 |
msgstr "Champ d'évaluation"
|
484 |
|
485 |
-
#:
|
486 |
msgid ""
|
487 |
"Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to "
|
488 |
"Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</"
|
@@ -497,86 +562,393 @@ msgstr ""
|
|
497 |
"valeur par HikeFoce à post_title: </ br> & par HikeFoce < / br> Prepend une "
|
498 |
"valeur HikeFoce à post_title: </ br> & HikeFoce [VAL]."
|
499 |
|
500 |
-
#:
|
501 |
msgid "Do not import"
|
502 |
msgstr "Ne pas importer"
|
503 |
|
504 |
-
#:
|
505 |
-
msgid "
|
506 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
|
508 |
-
#:
|
509 |
msgid "Export Product in CSV Format:"
|
510 |
msgstr "Exporter le produit au format CSV:"
|
511 |
|
512 |
-
#:
|
513 |
msgid ""
|
514 |
-
"Export and download your products in CSV format. This file can be used
|
515 |
-
"import products back into your
|
516 |
msgstr ""
|
517 |
-
"
|
518 |
-
"
|
519 |
|
520 |
-
#:
|
521 |
msgid "Offset"
|
522 |
msgstr "Offset"
|
523 |
|
524 |
-
#:
|
525 |
-
msgid "
|
526 |
-
|
|
|
|
|
|
|
|
|
|
|
527 |
|
528 |
-
#:
|
529 |
msgid "Limit"
|
530 |
msgstr "Limite"
|
531 |
|
532 |
-
#:
|
533 |
msgid "Unlimited"
|
534 |
msgstr "Illimité"
|
535 |
|
536 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
msgid "Columns"
|
538 |
msgstr "Colonnes"
|
539 |
|
540 |
-
#:
|
541 |
-
msgid "
|
542 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
|
544 |
-
#:
|
545 |
-
msgid "Column
|
546 |
-
msgstr "
|
547 |
|
548 |
-
#:
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
|
552 |
-
#:
|
|
|
|
|
|
|
|
|
553 |
msgid "Export Products"
|
554 |
msgstr "Export Produits"
|
555 |
|
556 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
msgid "Documentation"
|
558 |
msgstr "Documentation"
|
559 |
|
560 |
-
#:
|
561 |
-
msgid "
|
562 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
563 |
|
564 |
-
#: product-import-export
|
565 |
-
msgid "
|
566 |
-
msgstr "
|
567 |
|
568 |
-
#: product-import-export
|
569 |
msgid ""
|
570 |
-
"
|
571 |
-
"
|
|
|
572 |
msgstr ""
|
573 |
-
"
|
574 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
|
576 |
-
|
577 |
-
|
578 |
-
msgstr "Importer des produits"
|
579 |
|
580 |
-
|
581 |
-
|
582 |
-
msgstr "Fusionner produits si elle existe"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Product-Import-Export-Basic\n"
|
4 |
+
"POT-Creation-Date: 2018-02-22 15:01+0530\n"
|
5 |
+
"PO-Revision-Date: 2018-02-22 15:05+0530\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: HikeForce <support@hikeforce.com>\n"
|
8 |
+
"Language: hu_HU\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.12\n"
|
|
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:26
|
18 |
msgid ""
|
19 |
"Product CSV Import Export requires the function <code>mb_detect_encoding</"
|
20 |
"code> to import and export CSV files. Please ask your hosting provider to "
|
24 |
"code> pour importer et exporter des fichiers CSV. S'il vous plaît demander à "
|
25 |
"votre fournisseur d'hébergement pour activer cette fonction."
|
26 |
|
27 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:34
|
28 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:35
|
29 |
msgid "Product Im-Ex"
|
30 |
msgstr "Termék Im-Ex"
|
31 |
|
32 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:99
|
33 |
+
#, php-format
|
34 |
+
msgid ""
|
35 |
+
"<div class=\"updated\"><p>You have been using %1$s for a while. If you like "
|
36 |
+
"the plugin please leave us a %2$s review!<p></div>"
|
37 |
+
msgstr ""
|
38 |
+
"<div class=\"updated\"><p> Egy darabig%1$s-et használ. Ha tetszik a plugin "
|
39 |
+
"kérjük, hagyja el a%2$s véleményét! <p></div>"
|
40 |
+
|
41 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:36
|
42 |
#, php-format
|
43 |
msgid "Failed resize: %s is an invalid image ID."
|
44 |
msgstr "resize Échec:% s est une image ID invalide."
|
45 |
|
46 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:39
|
47 |
msgid "Your user account doesn't have permission to resize images"
|
48 |
msgstr ""
|
49 |
"Votre compte d'utilisateur n'a pas la permission de redimensionner les images"
|
50 |
|
51 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:44
|
52 |
#, php-format
|
53 |
msgid "The originally uploaded image file cannot be found at %s"
|
54 |
msgstr "Le fichier image initialement téléchargé ne peut pas être trouvé à% s"
|
55 |
|
56 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:53
|
57 |
msgid "Unknown failure reason."
|
58 |
msgstr "Inconnu raison de l'échec."
|
59 |
|
60 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:58
|
61 |
+
#, php-format
|
62 |
+
msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
63 |
+
msgstr ""
|
64 |
+
"A (z) \"%1$s\" (%2$s) sikeres átméretezése%3$s másodperc alatt történt."
|
65 |
+
|
66 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:65
|
67 |
+
#, php-format
|
68 |
+
msgid ""
|
69 |
+
""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
70 |
+
msgstr "A (z) \"%1$s\" (ID%2$s) nem tud átméretezni. A hibaüzenet:%3$s"
|
71 |
+
|
72 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:22
|
73 |
+
msgid "Delete Products"
|
74 |
+
msgstr "Termékek törlése"
|
75 |
+
|
76 |
# msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
77 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) a été redimensionné avec succès en% des secondes de 3 $."
|
78 |
# msgid ""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
79 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) n'a pas réussi à redimensionner. Le message d'erreur était:% 3 $ s"
|
80 |
# msgid "Delete Products"
|
81 |
# msgstr "Supprimer Produits"
|
82 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:23
|
|
|
|
|
|
|
|
|
83 |
msgid "Delete ALL products"
|
84 |
msgstr "Supprimer tous les produits"
|
85 |
|
86 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:24
|
87 |
msgid "This tool will delete all products allowing you to start fresh."
|
88 |
msgstr ""
|
89 |
"Cet outil permet de supprimer tous les produits vous permettant de commencer "
|
90 |
"frais."
|
91 |
|
92 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:28
|
93 |
msgid "Delete Variations"
|
94 |
msgstr "Supprimer Variations"
|
95 |
|
96 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:29
|
97 |
msgid "Delete ALL variations"
|
98 |
msgstr "Supprimer toutes les variantes"
|
99 |
|
100 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:30
|
101 |
msgid "This tool will delete all variations allowing you to start fresh."
|
102 |
msgstr ""
|
103 |
"Cet outil permet de supprimer toutes les variantes vous permettant de "
|
104 |
"commencer frais."
|
105 |
|
106 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:34
|
107 |
msgid "Delete Orphans"
|
108 |
msgstr "Supprimer les orphelins"
|
109 |
|
110 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:35
|
111 |
msgid "Delete orphaned variations"
|
112 |
msgstr "Supprimer variations orphelins"
|
113 |
|
114 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:36
|
115 |
msgid "This tool will delete variations which have no parent."
|
116 |
msgstr "Cet outil permet de supprimer les variations qui ont pas de parent."
|
117 |
|
118 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:62
|
119 |
#, php-format
|
120 |
msgid "%d Products Deleted"
|
121 |
msgstr "%d Produits supprimés"
|
122 |
|
123 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:84
|
124 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:99
|
125 |
#, php-format
|
126 |
msgid "%d Variations Deleted"
|
127 |
msgstr "%d Variations Supprimé"
|
128 |
|
129 |
+
#: includes/importer/class-wf-csv-parser.php:198
|
130 |
#, php-format
|
131 |
msgid "> Row %s - preparing for merge."
|
132 |
msgstr ">%s Row - préparation de fusion."
|
133 |
|
134 |
+
#: includes/importer/class-wf-csv-parser.php:203
|
135 |
msgid "> > Cannot merge without id or sku. Importing instead."
|
136 |
msgstr ">> Vous ne pouvez pas fusionner sans id ou sku. Importation place."
|
137 |
|
138 |
+
#: includes/importer/class-wf-csv-parser.php:221
|
139 |
#, php-format
|
140 |
msgid "> > Skipped. Cannot find product with sku %s. Importing instead."
|
141 |
msgstr ">> Ignoré. Vous ne trouvez pas produit avec sku%s. Importation place."
|
142 |
|
143 |
+
#: includes/importer/class-wf-csv-parser.php:228
|
144 |
#, php-format
|
145 |
msgid "> > Found product with ID %s."
|
146 |
msgstr ">> Produit trouvé avec ID %s."
|
147 |
|
148 |
+
#: includes/importer/class-wf-csv-parser.php:239
|
149 |
#, php-format
|
150 |
msgid "> Row %s - preparing for import."
|
151 |
msgstr ">%s Row - préparation pour l'importation."
|
152 |
|
153 |
+
#: includes/importer/class-wf-csv-parser.php:243
|
154 |
msgid "> > Skipped. No post_title set for new product."
|
155 |
msgstr ">> Ignoré. Non post_title fixé pour le nouveau produit."
|
156 |
|
157 |
+
#: includes/importer/class-wf-csv-parser.php:244
|
158 |
msgid "No post_title set for new product."
|
159 |
msgstr "Non post_title fixé pour le nouveau produit."
|
160 |
|
161 |
+
#: includes/importer/class-wf-csv-parser.php:247
|
162 |
msgid "> > Skipped. No parent set for new variation product."
|
163 |
msgstr ">> Ignoré. Aucun parent fixé pour le produit de variation nouvelle."
|
164 |
|
165 |
+
#: includes/importer/class-wf-csv-parser.php:249
|
166 |
msgid "No parent set for new variation product."
|
167 |
msgstr "Aucun parent fixé pour le produit de variation nouvelle."
|
168 |
|
169 |
+
#: includes/importer/class-wf-csv-parser.php:440
|
170 |
+
#, php-format
|
171 |
+
msgid "> > Skipping taxonomy \"%s\" - it does not exist."
|
172 |
+
msgstr ">> A \"%s\" taxonómiai lecsengése - ez nem létezik."
|
173 |
+
|
174 |
+
#: includes/importer/class-wf-csv-parser.php:449
|
175 |
+
#, php-format
|
176 |
+
msgid "> > > Product type \"%s\" not allowed - using simple."
|
177 |
+
msgstr ">>> A (z) \"%s\" terméktípus nem megengedett - egyszerű használat."
|
178 |
+
|
179 |
+
#: includes/importer/class-wf-csv-parser.php:506
|
180 |
+
#: includes/importer/class-wf-csv-parser.php:531
|
181 |
msgid "> > ("
|
182 |
msgstr "> > ("
|
183 |
|
184 |
+
#: includes/importer/class-wf-csv-parser.php:571
|
185 |
+
#: includes/importer/class-wf-csv-parser.php:678
|
186 |
#, php-format
|
187 |
msgid "> > Failed to import term %s %s"
|
188 |
msgstr "> > Impossible d'importer terme %s %s"
|
189 |
|
190 |
+
#: includes/importer/class-wf-csv-parser.php:620
|
191 |
+
#, php-format
|
192 |
+
msgid "> > Attribute taxonomy \"%s\" does not exist. Adding it. Nicename: %s"
|
193 |
+
msgstr ">> Attribútum taxonómiája \"%s\" nem létezik. Hozzáadása. Gyengénév:%s"
|
194 |
+
|
195 |
+
#: includes/importer/class-wf-csv-parser.php:628
|
196 |
+
#, php-format
|
197 |
+
msgid "> > Attribute taxonomy %s already exists in DB."
|
198 |
+
msgstr ">> A (z)%s tulajdonság taxonómiája már létezik a DB-ben."
|
199 |
+
|
200 |
+
#: includes/importer/class-wf-csv-parser.php:676
|
201 |
#, php-format
|
202 |
msgid "> > Inserted Raw Term %s ID = %s"
|
203 |
msgstr "> >Term Row Inséré %s ID = %s"
|
204 |
|
205 |
+
#: includes/importer/class-wf-csv-parser.php:682
|
206 |
#, php-format
|
207 |
msgid "> > Raw Term %s ID = %s"
|
208 |
msgstr "> > Raw terme %s ID = %s"
|
209 |
|
210 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:100
|
211 |
msgid "Error with handle_upload!"
|
212 |
msgstr "Erreur avec poignée téléchargement!"
|
213 |
|
214 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:125
|
215 |
msgid "Row"
|
216 |
msgstr "Rangée"
|
217 |
|
218 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:126
|
219 |
msgid "SKU"
|
220 |
msgstr "SKU"
|
221 |
|
222 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:127
|
223 |
msgid "Product"
|
224 |
msgstr "Produit"
|
225 |
|
226 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:128
|
227 |
msgid "Status Msg"
|
228 |
msgstr "Statut Msg"
|
229 |
|
230 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:222
|
231 |
msgid "AJAX Error"
|
232 |
msgstr "AJAX erreur"
|
233 |
|
234 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:322
|
235 |
#, php-format
|
236 |
msgid ""
|
237 |
"The resize request was abnormally terminated (ID %s). This is likely due to "
|
241 |
"Cela est probablement dû à l'image dépassant la mémoire disponible ou d'un "
|
242 |
"autre type d'erreur fatale."
|
243 |
|
244 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:327
|
245 |
msgid "thumbnails regenerated"
|
246 |
msgstr "vignettes régénèrent"
|
247 |
|
248 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:365
|
249 |
msgid "Error finding uploaded file!"
|
250 |
msgstr "constatation d'erreur de fichier téléchargé!"
|
251 |
|
252 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:430
|
253 |
msgid "Step 1..."
|
254 |
msgstr "Étape 1..."
|
255 |
|
256 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:435
|
257 |
msgid "Step 2..."
|
258 |
msgstr "Étape 2..."
|
259 |
|
260 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:450
|
261 |
msgid "Finalizing..."
|
262 |
msgstr "Finalisation ..."
|
263 |
|
264 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:456
|
265 |
msgid "Linking upsells..."
|
266 |
msgstr "Liaison upsells ..."
|
267 |
|
268 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:465
|
269 |
msgid "Linking crosssells..."
|
270 |
msgstr "Lier croix vend ..."
|
271 |
|
272 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:472
|
273 |
msgid "Finished. Import complete."
|
274 |
msgstr "Fini. Importation complète."
|
275 |
|
276 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:532
|
277 |
msgid "Map to fields are pre-selected based on your last import. <a href=\""
|
278 |
msgstr ""
|
279 |
"Carte des champs sont pré-sélectionnés en fonction de votre dernière "
|
280 |
"importation. <a href=\""
|
281 |
|
282 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:563
|
283 |
msgid "Processing products."
|
284 |
msgstr "produits de traitement."
|
285 |
|
286 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:574
|
287 |
msgid "Finished processing products."
|
288 |
msgstr "produits de traitement fini."
|
289 |
|
290 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:607
|
291 |
msgid "Parsing products CSV."
|
292 |
msgstr "Parsing produits CSV."
|
293 |
|
294 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:613
|
295 |
msgid "Finished parsing products CSV."
|
296 |
msgstr "Produits finis parsing CSV."
|
297 |
|
298 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:655
|
299 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:672
|
300 |
msgid "Sorry, there has been an error."
|
301 |
msgstr "Désolé, il y a eu une erreur."
|
302 |
|
303 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:764
|
304 |
msgid "Product already processed"
|
305 |
msgstr "Produit déjà traité"
|
306 |
|
307 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:765
|
308 |
msgid "> Post ID already processed. Skipping."
|
309 |
msgstr "> Publier ID déjà traité. Saut."
|
310 |
|
311 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:771
|
312 |
msgid "Skipping auto-draft"
|
313 |
msgstr "Saut auto-projet"
|
314 |
|
315 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:772
|
316 |
msgid "> Skipping auto-draft."
|
317 |
msgstr "> Saut auto-projet."
|
318 |
|
319 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:786
|
320 |
#, php-format
|
321 |
msgid "> “%s”"
|
322 |
msgstr "> “%s”"
|
323 |
|
324 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:792
|
325 |
msgid "Importing post ID conflicts with an existing post ID"
|
326 |
msgstr ""
|
327 |
"Importation soumettre les conflits d'identité avec un ID de poste existant"
|
328 |
|
329 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:793
|
330 |
#, php-format
|
331 |
msgid "> “%s” ID already exists."
|
332 |
msgstr "> “%s” ID existe déjà."
|
333 |
|
334 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:801
|
335 |
msgid "Post is not a product"
|
336 |
msgstr "ne sont pas un produit...."
|
337 |
|
338 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:802
|
339 |
#, php-format
|
340 |
msgid "> “%s” is not a product."
|
341 |
msgstr "> “%s” ne sont pas un produit."
|
342 |
|
343 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:812
|
344 |
#, php-format
|
345 |
msgid "> Merging post ID %s."
|
346 |
msgstr "> Fusion de post ID %s."
|
347 |
|
348 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:875
|
349 |
msgid "Failed to update product"
|
350 |
msgstr "Impossible de mettre à jour le produit"
|
351 |
|
352 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:876
|
353 |
#, php-format
|
354 |
msgid "> Failed to update product %s"
|
355 |
msgstr "> Impossible de mettre à jour le produit %s"
|
356 |
|
357 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:880
|
358 |
msgid "> Merged post data: "
|
359 |
msgstr "> Données de poste Fusionné:"
|
360 |
|
361 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:909
|
362 |
#, php-format
|
363 |
msgid "> Inserting %s"
|
364 |
msgstr "> Insertion %s"
|
365 |
|
366 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:931
|
367 |
msgid "Failed to import product"
|
368 |
msgstr "Impossible d'importer le produit"
|
369 |
|
370 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:932
|
371 |
#, php-format
|
372 |
msgid "Failed to import product “%s”"
|
373 |
msgstr "Impossible d'importer le produit “%s”"
|
374 |
|
375 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:938
|
376 |
#, php-format
|
377 |
msgid "> Inserted - post ID is %s."
|
378 |
msgstr "> Inséré - ID de message est %s."
|
379 |
|
380 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1036
|
381 |
#, php-format
|
382 |
msgid "> > Image exists - skipping %s"
|
383 |
msgstr ">> Existe image - sauter %s"
|
384 |
|
385 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1066
|
386 |
#, php-format
|
387 |
msgid "> > Importing image \"%s\""
|
388 |
msgstr "> > l'image importation \"%s\""
|
389 |
|
390 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1081
|
391 |
+
#, php-format
|
392 |
+
msgid "> > Imported image \"%s\""
|
393 |
+
msgstr ">> Importált kép \"%s\""
|
394 |
+
|
395 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1096
|
396 |
+
#, php-format
|
397 |
+
msgid "> > Error importing image \"%s\""
|
398 |
+
msgstr ">> Hiba a kép importálásakor \"%s\""
|
399 |
+
|
400 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1103
|
401 |
msgid "> > Images set"
|
402 |
msgstr ">> Images fixés"
|
403 |
|
404 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1156
|
405 |
#, php-format
|
406 |
msgid "> Finished merging post ID %s."
|
407 |
msgstr "> Fini la fusion après ID %s."
|
408 |
|
409 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1159
|
410 |
#, php-format
|
411 |
msgid "> Finished importing post ID %s."
|
412 |
msgstr "> Fini l'importation après ID %s."
|
413 |
|
414 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1225
|
415 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1249
|
416 |
msgid "Invalid file type"
|
417 |
msgstr "type de fichier invalide"
|
418 |
|
419 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1232
|
420 |
msgid "Local image did not exist!"
|
421 |
msgstr "Image locale n'a pas existé!"
|
422 |
|
423 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1262
|
424 |
#, php-format
|
425 |
msgid "> > Inserted image attachment \"%s\""
|
426 |
msgstr ">> Image jointe Inséré \"%s\""
|
427 |
|
428 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1327
|
429 |
msgid "Zero size file downloaded"
|
430 |
msgstr "fichier Zéro taille téléchargé"
|
431 |
|
432 |
+
#: includes/importer/views/html-wf-import-greeting.php:24
|
433 |
+
#: includes/importer/views/html-wf-import-options.php:7
|
434 |
+
#: includes/views/html-wf-admin-screen.php:9
|
435 |
+
msgid "Product Export"
|
436 |
+
msgstr "Termék exporálása"
|
437 |
|
438 |
+
#: includes/importer/views/html-wf-import-greeting.php:25
|
439 |
+
#: includes/importer/views/html-wf-import-options.php:8
|
440 |
+
#: includes/views/html-wf-admin-screen.php:10
|
441 |
+
msgid "Product Import"
|
442 |
+
msgstr "Importation de produits / Export"
|
443 |
|
444 |
+
#: includes/importer/views/html-wf-import-greeting.php:26
|
445 |
+
#: includes/importer/views/html-wf-import-options.php:9
|
446 |
+
#: includes/views/html-wf-admin-screen.php:11
|
447 |
+
msgid "Help"
|
448 |
+
msgstr "Súgó"
|
|
|
|
|
449 |
|
450 |
+
#: includes/importer/views/html-wf-import-greeting.php:27
|
451 |
+
#: includes/importer/views/html-wf-import-options.php:10
|
452 |
+
#: includes/views/html-wf-admin-screen.php:12
|
453 |
+
msgid "Upgrade to Premium for More Features"
|
454 |
+
msgstr "Frissítsen prémiumra további funkciókért"
|
455 |
+
|
456 |
+
#: includes/importer/views/html-wf-import-greeting.php:32
|
457 |
+
msgid "Step 1: Import settings"
|
458 |
+
msgstr "1. lépés: Beállítások importálása"
|
459 |
+
|
460 |
+
#: includes/importer/views/html-wf-import-greeting.php:34
|
461 |
msgid ""
|
462 |
"Before you can upload your import file, you will need to fix the following "
|
463 |
"error:"
|
465 |
"Avant de pouvoir télécharger votre fichier d'importation, vous devez "
|
466 |
"corriger l'erreur suivante:"
|
467 |
|
468 |
+
#: includes/importer/views/html-wf-import-greeting.php:38
|
469 |
+
msgid ""
|
470 |
+
"You can import products (in CSV format) in to the shop using any of below "
|
471 |
+
"methods."
|
472 |
+
msgstr ""
|
473 |
+
"Vous pouvez importer des produits (au format CSV) dans le magasin en "
|
474 |
+
"utilisant l'une des méthodes suivantes."
|
475 |
+
|
476 |
+
#: includes/importer/views/html-wf-import-greeting.php:44
|
477 |
msgid "Method 1: Select a file from your computer"
|
478 |
msgstr "Méthode 1: Sélectionnez un fichier à partir de votre ordinateur"
|
479 |
|
480 |
+
#: includes/importer/views/html-wf-import-greeting.php:50
|
481 |
+
msgid "Please upload UTF-8 encoded CSV"
|
482 |
+
msgstr "Tölts fel UTF-8 kódolt CSV-t"
|
483 |
+
|
484 |
+
#: includes/importer/views/html-wf-import-greeting.php:50
|
485 |
#, php-format
|
486 |
msgid "Maximum size: %s"
|
487 |
msgstr "Taille maximale: %s"
|
488 |
|
489 |
+
#: includes/importer/views/html-wf-import-greeting.php:54
|
490 |
+
msgid "Update products if exists"
|
491 |
+
msgstr "Frissítse a termékeket, ha létezik"
|
492 |
+
|
493 |
+
#: includes/importer/views/html-wf-import-greeting.php:57
|
494 |
+
msgid ""
|
495 |
+
"Existing products are identified by their SKUs/IDs. If this option is not "
|
496 |
+
"selected and if a product with same ID/SKU is found in the CSV, that product "
|
497 |
+
"will not be imported."
|
498 |
+
msgstr ""
|
499 |
+
"A meglévő termékeket az SKU / ID-k azonosítják. Ha ezt az opciót nem "
|
500 |
+
"választotta ki, és ha ugyanazt az azonosítót / SKU-t tartalmazó terméket "
|
501 |
+
"megtalálta a CSV-ben, akkor a terméket nem importálják."
|
502 |
+
|
503 |
+
#: includes/importer/views/html-wf-import-greeting.php:62
|
504 |
msgid "Delimiter"
|
505 |
msgstr "Séparateur"
|
506 |
|
507 |
+
#: includes/importer/views/html-wf-import-greeting.php:66
|
508 |
msgid "Merge empty cells"
|
509 |
msgstr "Fusionner les cellules vides"
|
510 |
|
511 |
+
#: includes/importer/views/html-wf-import-greeting.php:68
|
512 |
+
msgid ""
|
513 |
+
"If this option is checked, empty attributes will be added to products with "
|
514 |
+
"no value. You can leave this unchecked if you are not sure about this option."
|
515 |
+
msgstr ""
|
516 |
+
"Ha ez az opció be van jelölve, az attribútumok üres lesz hozzáadva érték "
|
517 |
+
"nélküli termékekhez. Ezt a beállítást akkor hagyhatja, ha nem biztos ebben a "
|
518 |
+
"lehetőségben."
|
519 |
+
|
520 |
+
#: includes/importer/views/html-wf-import-greeting.php:75
|
521 |
msgid ""
|
522 |
+
"If you want to import from FTP location or from a URL or to configure "
|
523 |
+
"scheduled import you may need to upgrade to premium version."
|
524 |
msgstr ""
|
525 |
+
"Ha importálni szeretné az FTP-helyről vagy egy URL-ről, vagy ütemezett "
|
526 |
+
"importálást szeretne beállítani, akkor prémium verzióra kell frissíteni."
|
|
|
527 |
|
528 |
+
#: includes/importer/views/html-wf-import-options.php:19
|
529 |
+
msgid "Step 2: Import mapping"
|
530 |
+
msgstr "2. lépés: Importálás leképezés"
|
531 |
|
532 |
+
#: includes/importer/views/html-wf-import-options.php:20
|
533 |
msgid "Here you can map your imported columns to product data fields."
|
534 |
msgstr ""
|
535 |
"Ici vous pouvez mapper vos colonnes importées aux champs de données du "
|
536 |
"produit."
|
537 |
|
538 |
+
#: includes/importer/views/html-wf-import-options.php:24
|
539 |
+
msgid "Woocommerce product fields"
|
540 |
+
msgstr "Woocommerce termékmezők"
|
541 |
|
542 |
+
#: includes/importer/views/html-wf-import-options.php:25
|
543 |
+
msgid "CSV column header(from imported file)"
|
544 |
+
msgstr "CSV oszlopfejléc (importált fájlból)"
|
545 |
|
546 |
+
#: includes/importer/views/html-wf-import-options.php:26
|
547 |
msgid "Evaluation Field"
|
548 |
msgstr "Champ d'évaluation"
|
549 |
|
550 |
+
#: includes/importer/views/html-wf-import-options.php:28
|
551 |
msgid ""
|
552 |
"Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to "
|
553 |
"Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</"
|
562 |
"valeur par HikeFoce à post_title: </ br> & par HikeFoce < / br> Prepend une "
|
563 |
"valeur HikeFoce à post_title: </ br> & HikeFoce [VAL]."
|
564 |
|
565 |
+
#: includes/importer/views/html-wf-import-options.php:107
|
566 |
msgid "Do not import"
|
567 |
msgstr "Ne pas importer"
|
568 |
|
569 |
+
#: includes/importer/views/html-wf-import-options.php:123
|
570 |
+
msgid ""
|
571 |
+
"Time taken to Import the products depends on the time taken to fetch the "
|
572 |
+
"images and the internet speed. If you have more than 1000 products we "
|
573 |
+
"recommend doing the import in batches by splitting the CSV file. Please do "
|
574 |
+
"not navigate away or close the window while the import is in progress."
|
575 |
+
msgstr ""
|
576 |
+
"A termékek importálásához szükséges idő függ a képek és az internet "
|
577 |
+
"sebessége letöltésének időpontjától. Ha több mint 1000 termékkel "
|
578 |
+
"rendelkezik, javasoljuk, hogy a CSV-fájlok megosztásával tételenként vigye "
|
579 |
+
"be a behozatalt. Kérem, ne menjen el, vagy zárja be az ablakot, amíg az "
|
580 |
+
"importálás folyamatban van."
|
581 |
|
582 |
+
#: includes/views/export/html-wf-export-products.php:26
|
583 |
msgid "Export Product in CSV Format:"
|
584 |
msgstr "Exporter le produit au format CSV:"
|
585 |
|
586 |
+
#: includes/views/export/html-wf-export-products.php:27
|
587 |
msgid ""
|
588 |
+
"Export and download your products in CSV file format. This file can be used "
|
589 |
+
"to import products back into your WooCommerce store."
|
590 |
msgstr ""
|
591 |
+
"Exportálja és letöltse termékeit CSV formátumban. Ez a fájl importálhatja a "
|
592 |
+
"termékeket a WooCommerce áruházba."
|
593 |
|
594 |
+
#: includes/views/export/html-wf-export-products.php:32
|
595 |
msgid "Offset"
|
596 |
msgstr "Offset"
|
597 |
|
598 |
+
#: includes/views/export/html-wf-export-products.php:36
|
599 |
+
msgid ""
|
600 |
+
"Number of products to skip before exporting. If the value is 0 no products "
|
601 |
+
"are skipped. If value is 100, products from product id 101 will be exported."
|
602 |
+
msgstr ""
|
603 |
+
"Az exportálás előtt kihagyhatatlan termékek száma. Ha az érték 0, akkor a "
|
604 |
+
"termékek nem kerülnek kihagyásra. Ha az érték 100, akkor a 101-es "
|
605 |
+
"termékazonosító termékeket exportálják."
|
606 |
|
607 |
+
#: includes/views/export/html-wf-export-products.php:41
|
608 |
msgid "Limit"
|
609 |
msgstr "Limite"
|
610 |
|
611 |
+
#: includes/views/export/html-wf-export-products.php:44
|
612 |
msgid "Unlimited"
|
613 |
msgstr "Illimité"
|
614 |
|
615 |
+
#: includes/views/export/html-wf-export-products.php:45
|
616 |
+
msgid ""
|
617 |
+
"Number of products to export. If no value is given all products will be "
|
618 |
+
"exported. This is useful if you have large number of products and want to "
|
619 |
+
"export partial list of products."
|
620 |
+
msgstr ""
|
621 |
+
"Az exportálandó termékek száma. Ha nincs megadva érték, az összes terméket "
|
622 |
+
"exportálni fogják. Ez akkor hasznos, ha nagyszámú termék van, és szeretné "
|
623 |
+
"exportálni a termékek részleges listáját."
|
624 |
+
|
625 |
+
#: includes/views/export/html-wf-export-products.php:50
|
626 |
msgid "Columns"
|
627 |
msgstr "Colonnes"
|
628 |
|
629 |
+
#: includes/views/export/html-wf-export-products.php:51
|
630 |
+
msgid ""
|
631 |
+
"Configure the Column Names of CSV file. If the Column Names are not changed, "
|
632 |
+
"plugin can auto detect fields while importing."
|
633 |
+
msgstr ""
|
634 |
+
"Állítsa be a CSV fájl oszlopnevét. Ha az oszlopnevek nem változnak meg, "
|
635 |
+
"akkor a bővítmény automatikusan felismeri a mezőket importálás közben."
|
636 |
+
|
637 |
+
#: includes/views/export/html-wf-export-products.php:55
|
638 |
+
msgid "WooCommerce product field name"
|
639 |
+
msgstr "WooCommerce termékmező neve"
|
640 |
|
641 |
+
#: includes/views/export/html-wf-export-products.php:58
|
642 |
+
msgid "Column header name in the CSV file"
|
643 |
+
msgstr "Az oszlopfejléc neve a CSV-fájlban"
|
644 |
|
645 |
+
#: includes/views/export/html-wf-export-products.php:63
|
646 |
+
msgid "Select all"
|
647 |
+
msgstr "Összes kijelölése"
|
648 |
|
649 |
+
#: includes/views/export/html-wf-export-products.php:64
|
650 |
+
msgid "Unselect all"
|
651 |
+
msgstr "A kijelölések megszüntetése"
|
652 |
+
|
653 |
+
#: includes/views/export/html-wf-export-products.php:95
|
654 |
msgid "Export Products"
|
655 |
msgstr "Export Produits"
|
656 |
|
657 |
+
#: includes/views/export/html-wf-export-products.php:96
|
658 |
+
msgid ""
|
659 |
+
"With free version of the plugin you can export products (except variable "
|
660 |
+
"products) in to a file. If you want to configure scheduled export to a "
|
661 |
+
"folder or FTP location you may need to upgrade to premium version."
|
662 |
+
msgstr ""
|
663 |
+
"A plugin ingyenes verziójával termékeket exportálhat (kivéve a változó "
|
664 |
+
"termékeket) a fájlba. Ha ütemezett exportálást szeretne beállítani egy "
|
665 |
+
"mappába vagy egy FTP-helyre, akkor prémium verzióra kell frissíteni."
|
666 |
+
|
667 |
+
#: includes/views/html-wf-help-guide.php:31
|
668 |
+
msgid "How-to-setup"
|
669 |
+
msgstr "Hogyan-beállítás"
|
670 |
+
|
671 |
+
#: includes/views/html-wf-help-guide.php:32
|
672 |
+
msgid "Get to know about our produt in 3 minutes with this video"
|
673 |
+
msgstr "Ismerje meg termékeinket 3 perc alatt ezzel a videóval"
|
674 |
+
|
675 |
+
#: includes/views/html-wf-help-guide.php:34
|
676 |
+
msgid "Setup Guide"
|
677 |
+
msgstr "Telepítési útmutató"
|
678 |
+
|
679 |
+
#: includes/views/html-wf-help-guide.php:39
|
680 |
+
#: includes/views/html-wf-help-guide.php:41 includes/views/market.php:34
|
681 |
msgid "Documentation"
|
682 |
msgstr "Documentation"
|
683 |
|
684 |
+
#: includes/views/html-wf-help-guide.php:40
|
685 |
+
msgid "Refer to our documentation to set and get started"
|
686 |
+
msgstr "Lásd a dokumentációnkat a beállításhoz és az induláshoz"
|
687 |
+
|
688 |
+
#: includes/views/html-wf-help-guide.php:46 product-csv-import-export.php:69
|
689 |
+
msgid "Support"
|
690 |
+
msgstr "Soutien"
|
691 |
+
|
692 |
+
#: includes/views/html-wf-help-guide.php:47
|
693 |
+
msgid "We would love to help you on any queries or issues."
|
694 |
+
msgstr "Szeretnénk segíteni minden kérdésben vagy kérdésben."
|
695 |
+
|
696 |
+
#: includes/views/html-wf-help-guide.php:49
|
697 |
+
msgid "Contact Us"
|
698 |
+
msgstr "Kapcsolatfelvétel"
|
699 |
+
|
700 |
+
#: includes/views/market.php:8
|
701 |
+
msgid "Watch getting started video"
|
702 |
+
msgstr "Első lépések videó"
|
703 |
+
|
704 |
+
#: includes/views/market.php:12
|
705 |
+
msgid "Upgrade to Premium Version"
|
706 |
+
msgstr "Frissítés a prémium változatra"
|
707 |
+
|
708 |
+
#: includes/views/market.php:15
|
709 |
+
msgid "Export simple, group, external and variation products."
|
710 |
+
msgstr "Export egyszerű, csoportos, külső és változatos termékek."
|
711 |
+
|
712 |
+
#: includes/views/market.php:16
|
713 |
+
msgid "Import simple, group, external and variation products."
|
714 |
+
msgstr "Import egyszerű, csoportos, külső és változatos termékek."
|
715 |
+
|
716 |
+
#: includes/views/market.php:17
|
717 |
+
msgid "Export products by category."
|
718 |
+
msgstr "Termékek exportálása kategóriák szerint."
|
719 |
+
|
720 |
+
#: includes/views/market.php:18
|
721 |
+
msgid "Various filter options for exporting products."
|
722 |
+
msgstr "Különféle szűrési lehetőségek a termékek exportálásához."
|
723 |
+
|
724 |
+
#: includes/views/market.php:19
|
725 |
+
msgid "Map and transform fields while importing products."
|
726 |
+
msgstr "Térképek és transzformációs mezők importálás közben."
|
727 |
+
|
728 |
+
#: includes/views/market.php:20
|
729 |
+
msgid "Change values while importing products using evaluation fields."
|
730 |
+
msgstr ""
|
731 |
+
"Értékelések megváltoztatása a termékek importálásakor értékelési mezők "
|
732 |
+
"használatával."
|
733 |
+
|
734 |
+
#: includes/views/market.php:21
|
735 |
+
msgid "Choice to update or skip existing imported products."
|
736 |
+
msgstr "A meglévő importált termékek frissítése vagy kihagyása."
|
737 |
+
|
738 |
+
#: includes/views/market.php:22
|
739 |
+
msgid "WPML supported. French and German support out of the box."
|
740 |
+
msgstr "WPML támogatott. Francia és német támogatás a dobozból."
|
741 |
+
|
742 |
+
#: includes/views/market.php:23
|
743 |
+
msgid "Import/Export file via FTP."
|
744 |
+
msgstr "Fájl importálása / exportálása FTP-n keresztül."
|
745 |
+
|
746 |
+
#: includes/views/market.php:24
|
747 |
+
msgid "Import from URL."
|
748 |
+
msgstr "Importálás urlből"
|
749 |
+
|
750 |
+
#: includes/views/market.php:25
|
751 |
+
msgid "Automatic scheduled import and export."
|
752 |
+
msgstr "Automatikus ütemezett importálás és exportálás."
|
753 |
+
|
754 |
+
#: includes/views/market.php:26
|
755 |
+
msgid "Supports product reviews export and import."
|
756 |
+
msgstr "Támogatja a termékértékelések exportját és importját."
|
757 |
+
|
758 |
+
#: includes/views/market.php:27
|
759 |
+
msgid "30 Days Money Back Guarantee."
|
760 |
+
msgstr "30 napos pénzvisszafizetési garancia."
|
761 |
+
|
762 |
+
#: includes/views/market.php:28
|
763 |
+
msgid "More frequent plugin updates."
|
764 |
+
msgstr "Gyakoribb plugin frissítések."
|
765 |
+
|
766 |
+
#: includes/views/market.php:29
|
767 |
+
msgid "Excellent Support for setting it up!"
|
768 |
+
msgstr "Kitűnő támogatás a beállításhoz!"
|
769 |
+
|
770 |
+
#: includes/views/market.php:33
|
771 |
+
msgid "Live Demo"
|
772 |
+
msgstr "Élő bemutató"
|
773 |
+
|
774 |
+
#: includes/views/market.php:38
|
775 |
+
#, php-format
|
776 |
+
msgid ""
|
777 |
+
"<div class=\"\"><p><i>If you like the plugin please leave us a %1$s review!</"
|
778 |
+
"i><p></div>"
|
779 |
+
msgstr ""
|
780 |
+
"<div class=\"\"><p> <i>Ha tetszik a plugin kérjük, hagyjon bennünket egy%1$s "
|
781 |
+
"véleményezésre!</i> <p></div>"
|
782 |
+
|
783 |
+
#: product-csv-import-export.php:67
|
784 |
+
msgid "Import Export"
|
785 |
+
msgstr "Import Export"
|
786 |
+
|
787 |
+
#: product-csv-import-export.php:68
|
788 |
+
msgid "Premium Upgrade"
|
789 |
+
msgstr "Premium upgrade"
|
790 |
+
|
791 |
+
#: product-csv-import-export.php:70
|
792 |
+
msgid "Review"
|
793 |
+
msgstr "Vélemény"
|
794 |
+
|
795 |
+
#: product-csv-import-export.php:117
|
796 |
+
msgid "Import <strong>products</strong> to your store via a csv file."
|
797 |
+
msgstr ""
|
798 |
+
"Donnez votre avis sur nImporter <strong> produits </ strong> à votre magasin "
|
799 |
+
"via un file.ow csv!"
|
800 |
+
|
801 |
+
#: product-csv-import-export.php:139
|
802 |
+
msgid "I couldn't understand how to make it work"
|
803 |
+
msgstr "Nem tudtam megérteni, hogyan lehet működni"
|
804 |
+
|
805 |
+
#: product-csv-import-export.php:141
|
806 |
+
msgid "Would you like us to assist you?"
|
807 |
+
msgstr "Szeretne nekünk segíteni?"
|
808 |
+
|
809 |
+
#: product-csv-import-export.php:145
|
810 |
+
msgid "I found a better plugin"
|
811 |
+
msgstr "Találtam egy jobb plugin"
|
812 |
+
|
813 |
+
#: product-csv-import-export.php:147
|
814 |
+
msgid "Which plugin?"
|
815 |
+
msgstr "Melyik plugin?"
|
816 |
+
|
817 |
+
#: product-csv-import-export.php:151
|
818 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
819 |
+
msgstr ""
|
820 |
+
"A plugin nagyszerű, de szükségem van olyan speciális funkcióra, amelyet nem "
|
821 |
+
"támogat"
|
822 |
+
|
823 |
+
#: product-csv-import-export.php:153
|
824 |
+
msgid "Could you tell us more about that feature?"
|
825 |
+
msgstr "Meg tudnád mondani többet erről a funkcióról?"
|
826 |
+
|
827 |
+
#: product-csv-import-export.php:157
|
828 |
+
msgid "The plugin is not working"
|
829 |
+
msgstr "A plugin nem működik"
|
830 |
+
|
831 |
+
#: product-csv-import-export.php:159
|
832 |
+
msgid "Could you tell us a bit more whats not working?"
|
833 |
+
msgstr "Meg tudná mondani nekünk egy kicsit, hogy mi nem működik?"
|
834 |
+
|
835 |
+
#: product-csv-import-export.php:163
|
836 |
+
msgid "It's not what I was looking for"
|
837 |
+
msgstr "Nem én keresem"
|
838 |
+
|
839 |
+
#: product-csv-import-export.php:169
|
840 |
+
msgid "The plugin didn't work as expected"
|
841 |
+
msgstr "A bővítmény nem működött a várt módon"
|
842 |
+
|
843 |
+
#: product-csv-import-export.php:171
|
844 |
+
msgid "What did you expect?"
|
845 |
+
msgstr "Mire számítottál?"
|
846 |
+
|
847 |
+
#: product-csv-import-export.php:175
|
848 |
+
msgid "Other"
|
849 |
+
msgstr "Másik"
|
850 |
+
|
851 |
+
#: product-csv-import-export.php:177
|
852 |
+
msgid "Could you tell us a bit more?"
|
853 |
+
msgstr "Meg tudnád mondani még egy kicsit?"
|
854 |
+
|
855 |
+
#: product-csv-import-export.php:197
|
856 |
+
msgid "If you have a moment, please let us know why you are deactivating:"
|
857 |
+
msgstr "Ha van egy pillanata, kérjük, tudassa velünk, miért deaktivál"
|
858 |
+
|
859 |
+
#: product-csv-import-export.php:211
|
860 |
+
msgid "I rather wouldn't say"
|
861 |
+
msgstr "Inkább nem mondanám"
|
862 |
+
|
863 |
+
#: product-csv-import-export.php:212
|
864 |
+
msgid "Submit & Deactivate"
|
865 |
+
msgstr "Küldés és kikapcsolás"
|
866 |
|
867 |
+
#: product-csv-import-export.php:213
|
868 |
+
msgid "Cancel"
|
869 |
+
msgstr "Mégse"
|
870 |
|
871 |
+
#: product-csv-import-export.php:378
|
872 |
msgid ""
|
873 |
+
"Is everything fine? You already have the Premium version installed in your "
|
874 |
+
"website. For any issues, kindly raise a ticket via <a target='_blank' "
|
875 |
+
"href='//support.xadapter.com/'>support.xadapter.com</a>"
|
876 |
msgstr ""
|
877 |
+
"Minden rendben? Már rendelkezik Premium változattal a webhelyére. Bármely "
|
878 |
+
"probléma esetén szíveskedjen jegyet felvenni a <a target='_blank' href='//"
|
879 |
+
"support.xadapter.com/'>support.xadapter.com webhelyen</a> keresztül"
|
880 |
+
|
881 |
+
#~ msgid "Successfully uploaded via FTP."
|
882 |
+
#~ msgstr "Avec succès téléchargé via FTP."
|
883 |
+
|
884 |
+
#~ msgid "Error while uploading via FTP."
|
885 |
+
#~ msgstr "Erreur lors du transfert via FTP."
|
886 |
+
|
887 |
+
# msgid "Did this plugin work for you? Please rate and contact us at <i>support@hikeforce.com</i> to get $10 off on your next purchase."
|
888 |
+
# msgstr "Est-ce que ce travail de plug-in pour vous & nbsp?; S'il vous plaît noter et nous contacter à <i> support@hikeforce.com </ i> pour obtenir 10 $ de rabais sur votre prochain achat."
|
889 |
+
#~ msgid "Review Now!"
|
890 |
+
#~ msgstr "Review Now!"
|
891 |
+
|
892 |
+
#~ msgid "Import"
|
893 |
+
#~ msgstr "Importer"
|
894 |
+
|
895 |
+
#~ msgid "Merge Products"
|
896 |
+
#~ msgstr "Fusionner Produits"
|
897 |
+
|
898 |
+
#~ msgid ""
|
899 |
+
#~ "Check this box to merge empty cells - otherwise (when merging) the empty "
|
900 |
+
#~ "cells will be ignored when importing things such as attributes."
|
901 |
+
#~ msgstr ""
|
902 |
+
#~ "Cochez cette case pour fusionner les cellules vides - sinon (lors de la "
|
903 |
+
#~ "fusion), les cellules vides seront ignorés lors de l'importation des "
|
904 |
+
#~ "choses telles que les attributs."
|
905 |
+
|
906 |
+
#~ msgid "Map Fields"
|
907 |
+
#~ msgstr "Carte champs"
|
908 |
+
|
909 |
+
#~ msgid "Map to"
|
910 |
+
#~ msgstr "Carte à"
|
911 |
+
|
912 |
+
#~ msgid "Column Header"
|
913 |
+
#~ msgstr "tête de colonne"
|
914 |
+
|
915 |
+
#~ msgid "Product Import / Export"
|
916 |
+
#~ msgstr "Importation de produits / Export"
|
917 |
+
|
918 |
+
#~ msgid ""
|
919 |
+
#~ "Export and download your products in CSV format. This file can be used to "
|
920 |
+
#~ "import products back into your Woocommerce shop."
|
921 |
+
#~ msgstr ""
|
922 |
+
#~ "Export et télécharger vos produits au format CSV. Ce fichier peut être "
|
923 |
+
#~ "utilisé pour importer des produits dans votre magasin de WooCommerce."
|
924 |
+
|
925 |
+
#~ msgid "0"
|
926 |
+
#~ msgstr "0"
|
927 |
+
|
928 |
+
#~ msgid "Column"
|
929 |
+
#~ msgstr "Colonne"
|
930 |
+
|
931 |
+
#~ msgid "Column Name"
|
932 |
+
#~ msgstr "Nom de colonne"
|
933 |
+
|
934 |
+
#~ msgid "Include hidden meta data"
|
935 |
+
#~ msgstr "Inclure les métadonnées cachées"
|
936 |
+
|
937 |
+
#~ msgid "Sample CSV"
|
938 |
+
#~ msgstr "minta CSV"
|
939 |
+
|
940 |
+
#~ msgid "Import Products in CSV Format:"
|
941 |
+
#~ msgstr "Import termékek CSV formátum:"
|
942 |
+
|
943 |
+
#~ msgid ""
|
944 |
+
#~ "Import products in CSV format ( works for simple products) from "
|
945 |
+
#~ "different sources"
|
946 |
+
#~ msgstr ""
|
947 |
+
#~ "produits d'importation au format CSV (fonctionne pour des produits "
|
948 |
+
#~ "simples) provenant de différentes sources"
|
949 |
|
950 |
+
#~ msgid "Import Products"
|
951 |
+
#~ msgstr "Importer des produits"
|
|
|
952 |
|
953 |
+
#~ msgid "Merge products if exists"
|
954 |
+
#~ msgstr "Fusionner produits si elle existe"
|
|
lang/wf_csv_import_export-it_IT.mo
CHANGED
Binary file
|
lang/wf_csv_import_export-it_IT.po
CHANGED
@@ -1,53 +1,20 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Product-Import-Export-Basic\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: HikeForce <support@hikeforce.com>\n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
12 |
-
"X-Generator: Poedit 1.5.7\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
-
"X-Poedit-Basepath:
|
15 |
-
"X-Poedit-SearchPath-0:
|
16 |
-
|
17 |
-
#: product-import-export-for-woo/product-csv-import-export.php:59
|
18 |
-
msgid "Import Export"
|
19 |
-
msgstr "Import Export"
|
20 |
-
|
21 |
-
#: product-import-export-for-woo/product-csv-import-export.php:60
|
22 |
-
msgid "Premium Upgrade"
|
23 |
-
msgstr "aggiornamento Premium"
|
24 |
-
|
25 |
-
#: product-import-export-for-woo/product-csv-import-export.php:61
|
26 |
-
msgid "Support"
|
27 |
-
msgstr "Soutien"
|
28 |
-
|
29 |
-
#: product-import-export-for-woo/product-csv-import-export.php:78
|
30 |
-
msgid "Successfully uploaded via FTP."
|
31 |
-
msgstr "Avec succès téléchargé via FTP."
|
32 |
-
|
33 |
-
#: product-import-export-for-woo/product-csv-import-export.php:81
|
34 |
-
msgid "Error while uploading via FTP."
|
35 |
-
msgstr "Erreur lors du transfert via FTP."
|
36 |
-
|
37 |
-
# msgid "Did this plugin work for you? Please rate and contact us at <i>support@hikeforce.com</i> to get $10 off on your next purchase."
|
38 |
-
# msgstr "Est-ce que ce travail de plug-in pour vous & nbsp?; S'il vous plaît noter et nous contacter à <i> support@hikeforce.com </ i> pour obtenir 10 $ de rabais sur votre prochain achat."
|
39 |
-
#: product-import-export-for-woo/product-csv-import-export.php:92
|
40 |
-
#: product-import-export-for-woo/product-csv-import-export.php:93
|
41 |
-
msgid "Review Now!"
|
42 |
-
msgstr "Review Now!"
|
43 |
-
|
44 |
-
#: product-import-export-for-woo/product-csv-import-export.php:145
|
45 |
-
msgid "Import <strong>products</strong> to your store via a csv file."
|
46 |
-
msgstr ""
|
47 |
-
"Donnez votre avis sur nImporter <strong> produits </ strong> à votre magasin "
|
48 |
-
"via un file.ow csv!"
|
49 |
|
50 |
-
#:
|
51 |
msgid ""
|
52 |
"Product CSV Import Export requires the function <code>mb_detect_encoding</"
|
53 |
"code> to import and export CSV files. Please ask your hosting provider to "
|
@@ -57,172 +24,217 @@ msgstr ""
|
|
57 |
"code> pour importer et exporter des fichiers CSV. S'il vous plaît demander à "
|
58 |
"votre fournisseur d'hébergement pour activer cette fonction."
|
59 |
|
60 |
-
#:
|
|
|
61 |
msgid "Product Im-Ex"
|
62 |
msgstr "Termék Im-Ex"
|
63 |
|
64 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
#, php-format
|
66 |
msgid "Failed resize: %s is an invalid image ID."
|
67 |
msgstr "resize Échec:% s est une image ID invalide."
|
68 |
|
69 |
-
#:
|
70 |
msgid "Your user account doesn't have permission to resize images"
|
71 |
msgstr ""
|
72 |
"Votre compte d'utilisateur n'a pas la permission de redimensionner les images"
|
73 |
|
74 |
-
#:
|
75 |
#, php-format
|
76 |
msgid "The originally uploaded image file cannot be found at %s"
|
77 |
msgstr "Le fichier image initialement téléchargé ne peut pas être trouvé à% s"
|
78 |
|
79 |
-
#:
|
80 |
msgid "Unknown failure reason."
|
81 |
msgstr "Inconnu raison de l'échec."
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
# msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
84 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) a été redimensionné avec succès en% des secondes de 3 $."
|
85 |
# msgid ""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
86 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) n'a pas réussi à redimensionner. Le message d'erreur était:% 3 $ s"
|
87 |
# msgid "Delete Products"
|
88 |
# msgstr "Supprimer Produits"
|
89 |
-
#:
|
90 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-ajax-handler.php:65
|
91 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-system-status-tools.php:22
|
92 |
-
#: product-import-export-for-woo/includes/class-wf-prodimpexpcsv-system-status-tools.php:23
|
93 |
-
#, php-format
|
94 |
msgid "Delete ALL products"
|
95 |
msgstr "Supprimer tous les produits"
|
96 |
|
97 |
-
#:
|
98 |
msgid "This tool will delete all products allowing you to start fresh."
|
99 |
msgstr ""
|
100 |
"Cet outil permet de supprimer tous les produits vous permettant de commencer "
|
101 |
"frais."
|
102 |
|
103 |
-
#:
|
104 |
msgid "Delete Variations"
|
105 |
msgstr "Supprimer Variations"
|
106 |
|
107 |
-
#:
|
108 |
msgid "Delete ALL variations"
|
109 |
msgstr "Supprimer toutes les variantes"
|
110 |
|
111 |
-
#:
|
112 |
msgid "This tool will delete all variations allowing you to start fresh."
|
113 |
msgstr ""
|
114 |
"Cet outil permet de supprimer toutes les variantes vous permettant de "
|
115 |
"commencer frais."
|
116 |
|
117 |
-
#:
|
118 |
msgid "Delete Orphans"
|
119 |
msgstr "Supprimer les orphelins"
|
120 |
|
121 |
-
#:
|
122 |
msgid "Delete orphaned variations"
|
123 |
msgstr "Supprimer variations orphelins"
|
124 |
|
125 |
-
#:
|
126 |
msgid "This tool will delete variations which have no parent."
|
127 |
msgstr "Cet outil permet de supprimer les variations qui ont pas de parent."
|
128 |
|
129 |
-
#:
|
130 |
#, php-format
|
131 |
msgid "%d Products Deleted"
|
132 |
msgstr "%d Produits supprimés"
|
133 |
|
134 |
-
#:
|
135 |
-
#:
|
136 |
#, php-format
|
137 |
msgid "%d Variations Deleted"
|
138 |
msgstr "%d Variations Supprimé"
|
139 |
|
140 |
-
#:
|
141 |
#, php-format
|
142 |
msgid "> Row %s - preparing for merge."
|
143 |
msgstr ">%s Row - préparation de fusion."
|
144 |
|
145 |
-
#:
|
146 |
msgid "> > Cannot merge without id or sku. Importing instead."
|
147 |
msgstr ">> Vous ne pouvez pas fusionner sans id ou sku. Importation place."
|
148 |
|
149 |
-
#:
|
150 |
#, php-format
|
151 |
msgid "> > Skipped. Cannot find product with sku %s. Importing instead."
|
152 |
msgstr ">> Ignoré. Vous ne trouvez pas produit avec sku%s. Importation place."
|
153 |
|
154 |
-
#:
|
155 |
#, php-format
|
156 |
msgid "> > Found product with ID %s."
|
157 |
msgstr ">> Produit trouvé avec ID %s."
|
158 |
|
159 |
-
#:
|
160 |
#, php-format
|
161 |
msgid "> Row %s - preparing for import."
|
162 |
msgstr ">%s Row - préparation pour l'importation."
|
163 |
|
164 |
-
#:
|
165 |
msgid "> > Skipped. No post_title set for new product."
|
166 |
msgstr ">> Ignoré. Non post_title fixé pour le nouveau produit."
|
167 |
|
168 |
-
#:
|
169 |
msgid "No post_title set for new product."
|
170 |
msgstr "Non post_title fixé pour le nouveau produit."
|
171 |
|
172 |
-
#:
|
173 |
msgid "> > Skipped. No parent set for new variation product."
|
174 |
msgstr ">> Ignoré. Aucun parent fixé pour le produit de variation nouvelle."
|
175 |
|
176 |
-
#:
|
177 |
msgid "No parent set for new variation product."
|
178 |
msgstr "Aucun parent fixé pour le produit de variation nouvelle."
|
179 |
|
180 |
-
#:
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
msgid "> > ("
|
183 |
msgstr "> > ("
|
184 |
|
185 |
-
#:
|
186 |
-
#:
|
187 |
#, php-format
|
188 |
msgid "> > Failed to import term %s %s"
|
189 |
msgstr "> > Impossible d'importer terme %s %s"
|
190 |
|
191 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
#, php-format
|
193 |
msgid "> > Inserted Raw Term %s ID = %s"
|
194 |
msgstr "> >Term Row Inséré %s ID = %s"
|
195 |
|
196 |
-
#:
|
197 |
#, php-format
|
198 |
msgid "> > Raw Term %s ID = %s"
|
199 |
msgstr "> > Raw terme %s ID = %s"
|
200 |
|
201 |
-
#:
|
202 |
msgid "Error with handle_upload!"
|
203 |
msgstr "Erreur avec poignée téléchargement!"
|
204 |
|
205 |
-
#:
|
206 |
msgid "Row"
|
207 |
msgstr "Rangée"
|
208 |
|
209 |
-
#:
|
210 |
msgid "SKU"
|
211 |
msgstr "SKU"
|
212 |
|
213 |
-
#:
|
214 |
msgid "Product"
|
215 |
msgstr "Produit"
|
216 |
|
217 |
-
#:
|
218 |
msgid "Status Msg"
|
219 |
msgstr "Statut Msg"
|
220 |
|
221 |
-
#:
|
222 |
msgid "AJAX Error"
|
223 |
msgstr "AJAX erreur"
|
224 |
|
225 |
-
#:
|
226 |
#, php-format
|
227 |
msgid ""
|
228 |
"The resize request was abnormally terminated (ID %s). This is likely due to "
|
@@ -232,201 +244,223 @@ msgstr ""
|
|
232 |
"Cela est probablement dû à l'image dépassant la mémoire disponible ou d'un "
|
233 |
"autre type d'erreur fatale."
|
234 |
|
235 |
-
#:
|
236 |
msgid "thumbnails regenerated"
|
237 |
msgstr "vignettes régénèrent"
|
238 |
|
239 |
-
#:
|
240 |
msgid "Error finding uploaded file!"
|
241 |
msgstr "constatation d'erreur de fichier téléchargé!"
|
242 |
|
243 |
-
#:
|
244 |
msgid "Step 1..."
|
245 |
msgstr "Étape 1..."
|
246 |
|
247 |
-
#:
|
248 |
msgid "Step 2..."
|
249 |
msgstr "Étape 2..."
|
250 |
|
251 |
-
#:
|
252 |
msgid "Finalizing..."
|
253 |
msgstr "Finalisation ..."
|
254 |
|
255 |
-
#:
|
256 |
msgid "Linking upsells..."
|
257 |
msgstr "Liaison upsells ..."
|
258 |
|
259 |
-
#:
|
260 |
msgid "Linking crosssells..."
|
261 |
msgstr "Lier croix vend ..."
|
262 |
|
263 |
-
#:
|
264 |
msgid "Finished. Import complete."
|
265 |
msgstr "Fini. Importation complète."
|
266 |
|
267 |
-
#:
|
268 |
msgid "Map to fields are pre-selected based on your last import. <a href=\""
|
269 |
msgstr ""
|
270 |
"Carte des champs sont pré-sélectionnés en fonction de votre dernière "
|
271 |
"importation. <a href=\""
|
272 |
|
273 |
-
#:
|
274 |
msgid "Processing products."
|
275 |
msgstr "produits de traitement."
|
276 |
|
277 |
-
#:
|
278 |
msgid "Finished processing products."
|
279 |
msgstr "produits de traitement fini."
|
280 |
|
281 |
-
#:
|
282 |
msgid "Parsing products CSV."
|
283 |
msgstr "Parsing produits CSV."
|
284 |
|
285 |
-
#:
|
286 |
msgid "Finished parsing products CSV."
|
287 |
msgstr "Produits finis parsing CSV."
|
288 |
|
289 |
-
#:
|
290 |
-
#:
|
291 |
msgid "Sorry, there has been an error."
|
292 |
msgstr "Désolé, il y a eu une erreur."
|
293 |
|
294 |
-
#:
|
295 |
msgid "Product already processed"
|
296 |
msgstr "Produit déjà traité"
|
297 |
|
298 |
-
#:
|
299 |
msgid "> Post ID already processed. Skipping."
|
300 |
msgstr "> Publier ID déjà traité. Saut."
|
301 |
|
302 |
-
#:
|
303 |
msgid "Skipping auto-draft"
|
304 |
msgstr "Saut auto-projet"
|
305 |
|
306 |
-
#:
|
307 |
msgid "> Skipping auto-draft."
|
308 |
msgstr "> Saut auto-projet."
|
309 |
|
310 |
-
#:
|
311 |
#, php-format
|
312 |
msgid "> “%s”"
|
313 |
msgstr "> “%s”"
|
314 |
|
315 |
-
#:
|
316 |
msgid "Importing post ID conflicts with an existing post ID"
|
317 |
msgstr ""
|
318 |
"Importation soumettre les conflits d'identité avec un ID de poste existant"
|
319 |
|
320 |
-
#:
|
321 |
#, php-format
|
322 |
msgid "> “%s” ID already exists."
|
323 |
msgstr "> “%s” ID existe déjà."
|
324 |
|
325 |
-
#:
|
326 |
msgid "Post is not a product"
|
327 |
msgstr "ne sont pas un produit...."
|
328 |
|
329 |
-
#:
|
330 |
#, php-format
|
331 |
msgid "> “%s” is not a product."
|
332 |
msgstr "> “%s” ne sont pas un produit."
|
333 |
|
334 |
-
#:
|
335 |
#, php-format
|
336 |
msgid "> Merging post ID %s."
|
337 |
msgstr "> Fusion de post ID %s."
|
338 |
|
339 |
-
#:
|
340 |
msgid "Failed to update product"
|
341 |
msgstr "Impossible de mettre à jour le produit"
|
342 |
|
343 |
-
#:
|
344 |
#, php-format
|
345 |
msgid "> Failed to update product %s"
|
346 |
msgstr "> Impossible de mettre à jour le produit %s"
|
347 |
|
348 |
-
#:
|
349 |
msgid "> Merged post data: "
|
350 |
msgstr "> Données de poste Fusionné:"
|
351 |
|
352 |
-
#:
|
353 |
#, php-format
|
354 |
msgid "> Inserting %s"
|
355 |
msgstr "> Insertion %s"
|
356 |
|
357 |
-
#:
|
358 |
msgid "Failed to import product"
|
359 |
msgstr "Impossible d'importer le produit"
|
360 |
|
361 |
-
#:
|
362 |
#, php-format
|
363 |
msgid "Failed to import product “%s”"
|
364 |
msgstr "Impossible d'importer le produit “%s”"
|
365 |
|
366 |
-
#:
|
367 |
#, php-format
|
368 |
msgid "> Inserted - post ID is %s."
|
369 |
msgstr "> Inséré - ID de message est %s."
|
370 |
|
371 |
-
#:
|
372 |
#, php-format
|
373 |
msgid "> > Image exists - skipping %s"
|
374 |
msgstr ">> Existe image - sauter %s"
|
375 |
|
376 |
-
#:
|
377 |
#, php-format
|
378 |
msgid "> > Importing image \"%s\""
|
379 |
msgstr "> > l'image importation \"%s\""
|
380 |
|
381 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgid "> > Images set"
|
383 |
msgstr ">> Images fixés"
|
384 |
|
385 |
-
#:
|
386 |
#, php-format
|
387 |
msgid "> Finished merging post ID %s."
|
388 |
msgstr "> Fini la fusion après ID %s."
|
389 |
|
390 |
-
#:
|
391 |
#, php-format
|
392 |
msgid "> Finished importing post ID %s."
|
393 |
msgstr "> Fini l'importation après ID %s."
|
394 |
|
395 |
-
#:
|
396 |
-
#:
|
397 |
msgid "Invalid file type"
|
398 |
msgstr "type de fichier invalide"
|
399 |
|
400 |
-
#:
|
401 |
msgid "Local image did not exist!"
|
402 |
msgstr "Image locale n'a pas existé!"
|
403 |
|
404 |
-
#:
|
405 |
#, php-format
|
406 |
msgid "> > Inserted image attachment \"%s\""
|
407 |
msgstr ">> Image jointe Inséré \"%s\""
|
408 |
|
409 |
-
#:
|
410 |
msgid "Zero size file downloaded"
|
411 |
msgstr "fichier Zéro taille téléchargé"
|
412 |
|
413 |
-
#:
|
414 |
-
|
415 |
-
|
|
|
|
|
416 |
|
417 |
-
#:
|
418 |
-
|
419 |
-
|
|
|
|
|
420 |
|
421 |
-
#:
|
422 |
-
|
423 |
-
|
424 |
-
"
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
|
429 |
-
#:
|
430 |
msgid ""
|
431 |
"Before you can upload your import file, you will need to fix the following "
|
432 |
"error:"
|
@@ -434,55 +468,90 @@ msgstr ""
|
|
434 |
"Avant de pouvoir télécharger votre fichier d'importation, vous devez "
|
435 |
"corriger l'erreur suivante:"
|
436 |
|
437 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
msgid "Method 1: Select a file from your computer"
|
439 |
msgstr "Méthode 1: Sélectionnez un fichier à partir de votre ordinateur"
|
440 |
|
441 |
-
#:
|
|
|
|
|
|
|
|
|
442 |
#, php-format
|
443 |
msgid "Maximum size: %s"
|
444 |
msgstr "Taille maximale: %s"
|
445 |
|
446 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgid "Delimiter"
|
448 |
msgstr "Séparateur"
|
449 |
|
450 |
-
#:
|
451 |
msgid "Merge empty cells"
|
452 |
msgstr "Fusionner les cellules vides"
|
453 |
|
454 |
-
#:
|
455 |
msgid ""
|
456 |
-
"
|
457 |
-
"
|
458 |
msgstr ""
|
459 |
-
"
|
460 |
-
"
|
461 |
-
"
|
462 |
|
463 |
-
#:
|
464 |
-
msgid "
|
465 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
-
#:
|
468 |
msgid "Here you can map your imported columns to product data fields."
|
469 |
msgstr ""
|
470 |
"Ici vous pouvez mapper vos colonnes importées aux champs de données du "
|
471 |
"produit."
|
472 |
|
473 |
-
#:
|
474 |
-
msgid "
|
475 |
-
msgstr "
|
476 |
|
477 |
-
#:
|
478 |
-
msgid "
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#:
|
482 |
msgid "Evaluation Field"
|
483 |
msgstr "Champ d'évaluation"
|
484 |
|
485 |
-
#:
|
486 |
msgid ""
|
487 |
"Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to "
|
488 |
"Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</"
|
@@ -497,86 +566,398 @@ msgstr ""
|
|
497 |
"valeur par HikeFoce à post_title: </ br> & par HikeFoce < / br> Prepend une "
|
498 |
"valeur HikeFoce à post_title: </ br> & HikeFoce [VAL]."
|
499 |
|
500 |
-
#:
|
501 |
msgid "Do not import"
|
502 |
msgstr "Ne pas importer"
|
503 |
|
504 |
-
#:
|
505 |
-
msgid "
|
506 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
|
508 |
-
#:
|
509 |
msgid "Export Product in CSV Format:"
|
510 |
msgstr "Exporter le produit au format CSV:"
|
511 |
|
512 |
-
#:
|
513 |
msgid ""
|
514 |
-
"Export and download your products in CSV format. This file can be used
|
515 |
-
"import products back into your
|
516 |
msgstr ""
|
517 |
-
"
|
518 |
-
"utilizzato per importare i prodotti nel
|
519 |
|
520 |
-
#:
|
521 |
msgid "Offset"
|
522 |
msgstr "Offset"
|
523 |
|
524 |
-
#:
|
525 |
-
msgid "
|
526 |
-
|
|
|
|
|
|
|
|
|
|
|
527 |
|
528 |
-
#:
|
529 |
msgid "Limit"
|
530 |
msgstr "Limite"
|
531 |
|
532 |
-
#:
|
533 |
msgid "Unlimited"
|
534 |
msgstr "Illimité"
|
535 |
|
536 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
msgid "Columns"
|
538 |
msgstr "Colonnes"
|
539 |
|
540 |
-
#:
|
541 |
-
msgid "
|
542 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
|
544 |
-
#:
|
545 |
-
msgid "Column
|
546 |
-
msgstr "
|
547 |
|
548 |
-
#:
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
|
552 |
-
#:
|
|
|
|
|
|
|
|
|
553 |
msgid "Export Products"
|
554 |
msgstr "Export Prodotti"
|
555 |
|
556 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
msgid "Documentation"
|
558 |
msgstr "Documentazione"
|
559 |
|
560 |
-
#:
|
561 |
-
msgid "
|
562 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
563 |
|
564 |
-
#: product-import-export
|
565 |
-
msgid "Import
|
566 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
|
568 |
-
#: product-import-export
|
|
|
|
|
|
|
|
|
569 |
msgid ""
|
570 |
-
"
|
571 |
-
"
|
|
|
572 |
msgstr ""
|
573 |
-
"
|
574 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
|
576 |
-
|
577 |
-
|
578 |
-
msgstr "Importa prodotti"
|
579 |
|
580 |
-
|
581 |
-
|
582 |
-
msgstr "Unire prodotti se esiste"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Product-Import-Export-Basic\n"
|
4 |
+
"POT-Creation-Date: 2018-02-22 15:16+0530\n"
|
5 |
+
"PO-Revision-Date: 2018-02-22 15:18+0530\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: HikeForce <support@hikeforce.com>\n"
|
8 |
+
"Language: it_IT\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.12\n"
|
|
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:26
|
18 |
msgid ""
|
19 |
"Product CSV Import Export requires the function <code>mb_detect_encoding</"
|
20 |
"code> to import and export CSV files. Please ask your hosting provider to "
|
24 |
"code> pour importer et exporter des fichiers CSV. S'il vous plaît demander à "
|
25 |
"votre fournisseur d'hébergement pour activer cette fonction."
|
26 |
|
27 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:34
|
28 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:35
|
29 |
msgid "Product Im-Ex"
|
30 |
msgstr "Termék Im-Ex"
|
31 |
|
32 |
+
#: includes/class-wf-prodimpexpcsv-admin-screen.php:99
|
33 |
+
#, php-format
|
34 |
+
msgid ""
|
35 |
+
"<div class=\"updated\"><p>You have been using %1$s for a while. If you like "
|
36 |
+
"the plugin please leave us a %2$s review!<p></div>"
|
37 |
+
msgstr ""
|
38 |
+
"<div class=\"updated\"><p> Hai utilizzato%1$s per un po '. Se ti piace il "
|
39 |
+
"plugin, ti preghiamo di lasciare una recensione di%2$s! <p></div>"
|
40 |
+
|
41 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:36
|
42 |
#, php-format
|
43 |
msgid "Failed resize: %s is an invalid image ID."
|
44 |
msgstr "resize Échec:% s est une image ID invalide."
|
45 |
|
46 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:39
|
47 |
msgid "Your user account doesn't have permission to resize images"
|
48 |
msgstr ""
|
49 |
"Votre compte d'utilisateur n'a pas la permission de redimensionner les images"
|
50 |
|
51 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:44
|
52 |
#, php-format
|
53 |
msgid "The originally uploaded image file cannot be found at %s"
|
54 |
msgstr "Le fichier image initialement téléchargé ne peut pas être trouvé à% s"
|
55 |
|
56 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:53
|
57 |
msgid "Unknown failure reason."
|
58 |
msgstr "Inconnu raison de l'échec."
|
59 |
|
60 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:58
|
61 |
+
#, php-format
|
62 |
+
msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
63 |
+
msgstr ""
|
64 |
+
"\"%1$s\" (ID %2$s) è stata ridimensionata con successo in %3$s secondi."
|
65 |
+
|
66 |
+
#: includes/class-wf-prodimpexpcsv-ajax-handler.php:65
|
67 |
+
#, php-format
|
68 |
+
msgid ""
|
69 |
+
""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
70 |
+
msgstr ""
|
71 |
+
""%1$s" (ID %2$s) Ridimensionamento fallito. Il messaggio di "
|
72 |
+
"errore: %3$s"
|
73 |
+
|
74 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:22
|
75 |
+
msgid "Delete Products"
|
76 |
+
msgstr "Elimina prodotti"
|
77 |
+
|
78 |
# msgid ""%1$s" (ID %2$s) was successfully resized in %3$s seconds."
|
79 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) a été redimensionné avec succès en% des secondes de 3 $."
|
80 |
# msgid ""%1$s" (ID %2$s) failed to resize. The error message was: %3$s"
|
81 |
# msgstr "& Quot;% 1 & quot; (ID% 2 $ s) n'a pas réussi à redimensionner. Le message d'erreur était:% 3 $ s"
|
82 |
# msgid "Delete Products"
|
83 |
# msgstr "Supprimer Produits"
|
84 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:23
|
|
|
|
|
|
|
|
|
85 |
msgid "Delete ALL products"
|
86 |
msgstr "Supprimer tous les produits"
|
87 |
|
88 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:24
|
89 |
msgid "This tool will delete all products allowing you to start fresh."
|
90 |
msgstr ""
|
91 |
"Cet outil permet de supprimer tous les produits vous permettant de commencer "
|
92 |
"frais."
|
93 |
|
94 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:28
|
95 |
msgid "Delete Variations"
|
96 |
msgstr "Supprimer Variations"
|
97 |
|
98 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:29
|
99 |
msgid "Delete ALL variations"
|
100 |
msgstr "Supprimer toutes les variantes"
|
101 |
|
102 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:30
|
103 |
msgid "This tool will delete all variations allowing you to start fresh."
|
104 |
msgstr ""
|
105 |
"Cet outil permet de supprimer toutes les variantes vous permettant de "
|
106 |
"commencer frais."
|
107 |
|
108 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:34
|
109 |
msgid "Delete Orphans"
|
110 |
msgstr "Supprimer les orphelins"
|
111 |
|
112 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:35
|
113 |
msgid "Delete orphaned variations"
|
114 |
msgstr "Supprimer variations orphelins"
|
115 |
|
116 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:36
|
117 |
msgid "This tool will delete variations which have no parent."
|
118 |
msgstr "Cet outil permet de supprimer les variations qui ont pas de parent."
|
119 |
|
120 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:62
|
121 |
#, php-format
|
122 |
msgid "%d Products Deleted"
|
123 |
msgstr "%d Produits supprimés"
|
124 |
|
125 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:84
|
126 |
+
#: includes/class-wf-prodimpexpcsv-system-status-tools.php:99
|
127 |
#, php-format
|
128 |
msgid "%d Variations Deleted"
|
129 |
msgstr "%d Variations Supprimé"
|
130 |
|
131 |
+
#: includes/importer/class-wf-csv-parser.php:198
|
132 |
#, php-format
|
133 |
msgid "> Row %s - preparing for merge."
|
134 |
msgstr ">%s Row - préparation de fusion."
|
135 |
|
136 |
+
#: includes/importer/class-wf-csv-parser.php:203
|
137 |
msgid "> > Cannot merge without id or sku. Importing instead."
|
138 |
msgstr ">> Vous ne pouvez pas fusionner sans id ou sku. Importation place."
|
139 |
|
140 |
+
#: includes/importer/class-wf-csv-parser.php:221
|
141 |
#, php-format
|
142 |
msgid "> > Skipped. Cannot find product with sku %s. Importing instead."
|
143 |
msgstr ">> Ignoré. Vous ne trouvez pas produit avec sku%s. Importation place."
|
144 |
|
145 |
+
#: includes/importer/class-wf-csv-parser.php:228
|
146 |
#, php-format
|
147 |
msgid "> > Found product with ID %s."
|
148 |
msgstr ">> Produit trouvé avec ID %s."
|
149 |
|
150 |
+
#: includes/importer/class-wf-csv-parser.php:239
|
151 |
#, php-format
|
152 |
msgid "> Row %s - preparing for import."
|
153 |
msgstr ">%s Row - préparation pour l'importation."
|
154 |
|
155 |
+
#: includes/importer/class-wf-csv-parser.php:243
|
156 |
msgid "> > Skipped. No post_title set for new product."
|
157 |
msgstr ">> Ignoré. Non post_title fixé pour le nouveau produit."
|
158 |
|
159 |
+
#: includes/importer/class-wf-csv-parser.php:244
|
160 |
msgid "No post_title set for new product."
|
161 |
msgstr "Non post_title fixé pour le nouveau produit."
|
162 |
|
163 |
+
#: includes/importer/class-wf-csv-parser.php:247
|
164 |
msgid "> > Skipped. No parent set for new variation product."
|
165 |
msgstr ">> Ignoré. Aucun parent fixé pour le produit de variation nouvelle."
|
166 |
|
167 |
+
#: includes/importer/class-wf-csv-parser.php:249
|
168 |
msgid "No parent set for new variation product."
|
169 |
msgstr "Aucun parent fixé pour le produit de variation nouvelle."
|
170 |
|
171 |
+
#: includes/importer/class-wf-csv-parser.php:440
|
172 |
+
#, php-format
|
173 |
+
msgid "> > Skipping taxonomy \"%s\" - it does not exist."
|
174 |
+
msgstr ">> Ignora tassonomia \"%s\" - non esiste."
|
175 |
+
|
176 |
+
#: includes/importer/class-wf-csv-parser.php:449
|
177 |
+
#, php-format
|
178 |
+
msgid "> > > Product type \"%s\" not allowed - using simple."
|
179 |
+
msgstr ">>> Tipo di prodotto \"%s\" non consentito - utilizzo semplice."
|
180 |
+
|
181 |
+
#: includes/importer/class-wf-csv-parser.php:506
|
182 |
+
#: includes/importer/class-wf-csv-parser.php:531
|
183 |
msgid "> > ("
|
184 |
msgstr "> > ("
|
185 |
|
186 |
+
#: includes/importer/class-wf-csv-parser.php:571
|
187 |
+
#: includes/importer/class-wf-csv-parser.php:678
|
188 |
#, php-format
|
189 |
msgid "> > Failed to import term %s %s"
|
190 |
msgstr "> > Impossible d'importer terme %s %s"
|
191 |
|
192 |
+
#: includes/importer/class-wf-csv-parser.php:620
|
193 |
+
#, php-format
|
194 |
+
msgid "> > Attribute taxonomy \"%s\" does not exist. Adding it. Nicename: %s"
|
195 |
+
msgstr ""
|
196 |
+
">> La tassonomia degli attributi \"%s\" non esiste. Aggiungendolo Nicename:%s"
|
197 |
+
|
198 |
+
#: includes/importer/class-wf-csv-parser.php:628
|
199 |
+
#, php-format
|
200 |
+
msgid "> > Attribute taxonomy %s already exists in DB."
|
201 |
+
msgstr ">> La tassonomia degli attributi%s esiste già nel DB."
|
202 |
+
|
203 |
+
#: includes/importer/class-wf-csv-parser.php:676
|
204 |
#, php-format
|
205 |
msgid "> > Inserted Raw Term %s ID = %s"
|
206 |
msgstr "> >Term Row Inséré %s ID = %s"
|
207 |
|
208 |
+
#: includes/importer/class-wf-csv-parser.php:682
|
209 |
#, php-format
|
210 |
msgid "> > Raw Term %s ID = %s"
|
211 |
msgstr "> > Raw terme %s ID = %s"
|
212 |
|
213 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:100
|
214 |
msgid "Error with handle_upload!"
|
215 |
msgstr "Erreur avec poignée téléchargement!"
|
216 |
|
217 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:125
|
218 |
msgid "Row"
|
219 |
msgstr "Rangée"
|
220 |
|
221 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:126
|
222 |
msgid "SKU"
|
223 |
msgstr "SKU"
|
224 |
|
225 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:127
|
226 |
msgid "Product"
|
227 |
msgstr "Produit"
|
228 |
|
229 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:128
|
230 |
msgid "Status Msg"
|
231 |
msgstr "Statut Msg"
|
232 |
|
233 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:222
|
234 |
msgid "AJAX Error"
|
235 |
msgstr "AJAX erreur"
|
236 |
|
237 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:322
|
238 |
#, php-format
|
239 |
msgid ""
|
240 |
"The resize request was abnormally terminated (ID %s). This is likely due to "
|
244 |
"Cela est probablement dû à l'image dépassant la mémoire disponible ou d'un "
|
245 |
"autre type d'erreur fatale."
|
246 |
|
247 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:327
|
248 |
msgid "thumbnails regenerated"
|
249 |
msgstr "vignettes régénèrent"
|
250 |
|
251 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:365
|
252 |
msgid "Error finding uploaded file!"
|
253 |
msgstr "constatation d'erreur de fichier téléchargé!"
|
254 |
|
255 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:430
|
256 |
msgid "Step 1..."
|
257 |
msgstr "Étape 1..."
|
258 |
|
259 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:435
|
260 |
msgid "Step 2..."
|
261 |
msgstr "Étape 2..."
|
262 |
|
263 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:450
|
264 |
msgid "Finalizing..."
|
265 |
msgstr "Finalisation ..."
|
266 |
|
267 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:456
|
268 |
msgid "Linking upsells..."
|
269 |
msgstr "Liaison upsells ..."
|
270 |
|
271 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:465
|
272 |
msgid "Linking crosssells..."
|
273 |
msgstr "Lier croix vend ..."
|
274 |
|
275 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:472
|
276 |
msgid "Finished. Import complete."
|
277 |
msgstr "Fini. Importation complète."
|
278 |
|
279 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:532
|
280 |
msgid "Map to fields are pre-selected based on your last import. <a href=\""
|
281 |
msgstr ""
|
282 |
"Carte des champs sont pré-sélectionnés en fonction de votre dernière "
|
283 |
"importation. <a href=\""
|
284 |
|
285 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:563
|
286 |
msgid "Processing products."
|
287 |
msgstr "produits de traitement."
|
288 |
|
289 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:574
|
290 |
msgid "Finished processing products."
|
291 |
msgstr "produits de traitement fini."
|
292 |
|
293 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:607
|
294 |
msgid "Parsing products CSV."
|
295 |
msgstr "Parsing produits CSV."
|
296 |
|
297 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:613
|
298 |
msgid "Finished parsing products CSV."
|
299 |
msgstr "Produits finis parsing CSV."
|
300 |
|
301 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:655
|
302 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:672
|
303 |
msgid "Sorry, there has been an error."
|
304 |
msgstr "Désolé, il y a eu une erreur."
|
305 |
|
306 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:764
|
307 |
msgid "Product already processed"
|
308 |
msgstr "Produit déjà traité"
|
309 |
|
310 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:765
|
311 |
msgid "> Post ID already processed. Skipping."
|
312 |
msgstr "> Publier ID déjà traité. Saut."
|
313 |
|
314 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:771
|
315 |
msgid "Skipping auto-draft"
|
316 |
msgstr "Saut auto-projet"
|
317 |
|
318 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:772
|
319 |
msgid "> Skipping auto-draft."
|
320 |
msgstr "> Saut auto-projet."
|
321 |
|
322 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:786
|
323 |
#, php-format
|
324 |
msgid "> “%s”"
|
325 |
msgstr "> “%s”"
|
326 |
|
327 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:792
|
328 |
msgid "Importing post ID conflicts with an existing post ID"
|
329 |
msgstr ""
|
330 |
"Importation soumettre les conflits d'identité avec un ID de poste existant"
|
331 |
|
332 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:793
|
333 |
#, php-format
|
334 |
msgid "> “%s” ID already exists."
|
335 |
msgstr "> “%s” ID existe déjà."
|
336 |
|
337 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:801
|
338 |
msgid "Post is not a product"
|
339 |
msgstr "ne sont pas un produit...."
|
340 |
|
341 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:802
|
342 |
#, php-format
|
343 |
msgid "> “%s” is not a product."
|
344 |
msgstr "> “%s” ne sont pas un produit."
|
345 |
|
346 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:812
|
347 |
#, php-format
|
348 |
msgid "> Merging post ID %s."
|
349 |
msgstr "> Fusion de post ID %s."
|
350 |
|
351 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:875
|
352 |
msgid "Failed to update product"
|
353 |
msgstr "Impossible de mettre à jour le produit"
|
354 |
|
355 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:876
|
356 |
#, php-format
|
357 |
msgid "> Failed to update product %s"
|
358 |
msgstr "> Impossible de mettre à jour le produit %s"
|
359 |
|
360 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:880
|
361 |
msgid "> Merged post data: "
|
362 |
msgstr "> Données de poste Fusionné:"
|
363 |
|
364 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:909
|
365 |
#, php-format
|
366 |
msgid "> Inserting %s"
|
367 |
msgstr "> Insertion %s"
|
368 |
|
369 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:931
|
370 |
msgid "Failed to import product"
|
371 |
msgstr "Impossible d'importer le produit"
|
372 |
|
373 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:932
|
374 |
#, php-format
|
375 |
msgid "Failed to import product “%s”"
|
376 |
msgstr "Impossible d'importer le produit “%s”"
|
377 |
|
378 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:938
|
379 |
#, php-format
|
380 |
msgid "> Inserted - post ID is %s."
|
381 |
msgstr "> Inséré - ID de message est %s."
|
382 |
|
383 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1036
|
384 |
#, php-format
|
385 |
msgid "> > Image exists - skipping %s"
|
386 |
msgstr ">> Existe image - sauter %s"
|
387 |
|
388 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1066
|
389 |
#, php-format
|
390 |
msgid "> > Importing image \"%s\""
|
391 |
msgstr "> > l'image importation \"%s\""
|
392 |
|
393 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1081
|
394 |
+
#, php-format
|
395 |
+
msgid "> > Imported image \"%s\""
|
396 |
+
msgstr ">> Immagine importata \"%s\""
|
397 |
+
|
398 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1096
|
399 |
+
#, php-format
|
400 |
+
msgid "> > Error importing image \"%s\""
|
401 |
+
msgstr ">> Errore durante l'importazione dell'immagine \"%s\""
|
402 |
+
|
403 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1103
|
404 |
msgid "> > Images set"
|
405 |
msgstr ">> Images fixés"
|
406 |
|
407 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1156
|
408 |
#, php-format
|
409 |
msgid "> Finished merging post ID %s."
|
410 |
msgstr "> Fini la fusion après ID %s."
|
411 |
|
412 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1159
|
413 |
#, php-format
|
414 |
msgid "> Finished importing post ID %s."
|
415 |
msgstr "> Fini l'importation après ID %s."
|
416 |
|
417 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1225
|
418 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1249
|
419 |
msgid "Invalid file type"
|
420 |
msgstr "type de fichier invalide"
|
421 |
|
422 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1232
|
423 |
msgid "Local image did not exist!"
|
424 |
msgstr "Image locale n'a pas existé!"
|
425 |
|
426 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1262
|
427 |
#, php-format
|
428 |
msgid "> > Inserted image attachment \"%s\""
|
429 |
msgstr ">> Image jointe Inséré \"%s\""
|
430 |
|
431 |
+
#: includes/importer/class-wf-prodimpexpcsv-product-import.php:1327
|
432 |
msgid "Zero size file downloaded"
|
433 |
msgstr "fichier Zéro taille téléchargé"
|
434 |
|
435 |
+
#: includes/importer/views/html-wf-import-greeting.php:24
|
436 |
+
#: includes/importer/views/html-wf-import-options.php:7
|
437 |
+
#: includes/views/html-wf-admin-screen.php:9
|
438 |
+
msgid "Product Export"
|
439 |
+
msgstr "Esportazione del prodotto"
|
440 |
|
441 |
+
#: includes/importer/views/html-wf-import-greeting.php:25
|
442 |
+
#: includes/importer/views/html-wf-import-options.php:8
|
443 |
+
#: includes/views/html-wf-admin-screen.php:10
|
444 |
+
msgid "Product Import"
|
445 |
+
msgstr "Importation de produits / Export"
|
446 |
|
447 |
+
#: includes/importer/views/html-wf-import-greeting.php:26
|
448 |
+
#: includes/importer/views/html-wf-import-options.php:9
|
449 |
+
#: includes/views/html-wf-admin-screen.php:11
|
450 |
+
msgid "Help"
|
451 |
+
msgstr "Aiuto"
|
452 |
+
|
453 |
+
#: includes/importer/views/html-wf-import-greeting.php:27
|
454 |
+
#: includes/importer/views/html-wf-import-options.php:10
|
455 |
+
#: includes/views/html-wf-admin-screen.php:12
|
456 |
+
msgid "Upgrade to Premium for More Features"
|
457 |
+
msgstr "Passa a Premium per più funzionalità"
|
458 |
+
|
459 |
+
#: includes/importer/views/html-wf-import-greeting.php:32
|
460 |
+
msgid "Step 1: Import settings"
|
461 |
+
msgstr "Passaggio 1: Importa le impostazioni"
|
462 |
|
463 |
+
#: includes/importer/views/html-wf-import-greeting.php:34
|
464 |
msgid ""
|
465 |
"Before you can upload your import file, you will need to fix the following "
|
466 |
"error:"
|
468 |
"Avant de pouvoir télécharger votre fichier d'importation, vous devez "
|
469 |
"corriger l'erreur suivante:"
|
470 |
|
471 |
+
#: includes/importer/views/html-wf-import-greeting.php:38
|
472 |
+
msgid ""
|
473 |
+
"You can import products (in CSV format) in to the shop using any of below "
|
474 |
+
"methods."
|
475 |
+
msgstr ""
|
476 |
+
"Vous pouvez importer des produits (au format CSV) dans le magasin en "
|
477 |
+
"utilisant l'une des méthodes suivantes."
|
478 |
+
|
479 |
+
#: includes/importer/views/html-wf-import-greeting.php:44
|
480 |
msgid "Method 1: Select a file from your computer"
|
481 |
msgstr "Méthode 1: Sélectionnez un fichier à partir de votre ordinateur"
|
482 |
|
483 |
+
#: includes/importer/views/html-wf-import-greeting.php:50
|
484 |
+
msgid "Please upload UTF-8 encoded CSV"
|
485 |
+
msgstr "Si prega di caricare CSV codificato UTF-8"
|
486 |
+
|
487 |
+
#: includes/importer/views/html-wf-import-greeting.php:50
|
488 |
#, php-format
|
489 |
msgid "Maximum size: %s"
|
490 |
msgstr "Taille maximale: %s"
|
491 |
|
492 |
+
#: includes/importer/views/html-wf-import-greeting.php:54
|
493 |
+
msgid "Update products if exists"
|
494 |
+
msgstr "Aggiorna i prodotti se esiste"
|
495 |
+
|
496 |
+
#: includes/importer/views/html-wf-import-greeting.php:57
|
497 |
+
msgid ""
|
498 |
+
"Existing products are identified by their SKUs/IDs. If this option is not "
|
499 |
+
"selected and if a product with same ID/SKU is found in the CSV, that product "
|
500 |
+
"will not be imported."
|
501 |
+
msgstr ""
|
502 |
+
"I prodotti esistenti sono identificati dai loro SKU / ID. Se questa opzione "
|
503 |
+
"non è selezionata e se un prodotto con lo stesso ID / SKU è stato trovato "
|
504 |
+
"nel CSV, quel prodotto non verrà importato."
|
505 |
+
|
506 |
+
#: includes/importer/views/html-wf-import-greeting.php:62
|
507 |
msgid "Delimiter"
|
508 |
msgstr "Séparateur"
|
509 |
|
510 |
+
#: includes/importer/views/html-wf-import-greeting.php:66
|
511 |
msgid "Merge empty cells"
|
512 |
msgstr "Fusionner les cellules vides"
|
513 |
|
514 |
+
#: includes/importer/views/html-wf-import-greeting.php:68
|
515 |
msgid ""
|
516 |
+
"If this option is checked, empty attributes will be added to products with "
|
517 |
+
"no value. You can leave this unchecked if you are not sure about this option."
|
518 |
msgstr ""
|
519 |
+
"Se questa opzione è selezionata, gli attributi vuoti verranno aggiunti ai "
|
520 |
+
"prodotti senza valore. Puoi lasciarlo deselezionato se non sei sicuro di "
|
521 |
+
"questa opzione."
|
522 |
|
523 |
+
#: includes/importer/views/html-wf-import-greeting.php:75
|
524 |
+
msgid ""
|
525 |
+
"If you want to import from FTP location or from a URL or to configure "
|
526 |
+
"scheduled import you may need to upgrade to premium version."
|
527 |
+
msgstr ""
|
528 |
+
"Se si desidera importare dalla posizione FTP o da un URL o configurare "
|
529 |
+
"l'importazione pianificata, potrebbe essere necessario eseguire "
|
530 |
+
"l'aggiornamento alla versione premium."
|
531 |
+
|
532 |
+
#: includes/importer/views/html-wf-import-options.php:19
|
533 |
+
msgid "Step 2: Import mapping"
|
534 |
+
msgstr "Passaggio 2: importazione della mappatura"
|
535 |
|
536 |
+
#: includes/importer/views/html-wf-import-options.php:20
|
537 |
msgid "Here you can map your imported columns to product data fields."
|
538 |
msgstr ""
|
539 |
"Ici vous pouvez mapper vos colonnes importées aux champs de données du "
|
540 |
"produit."
|
541 |
|
542 |
+
#: includes/importer/views/html-wf-import-options.php:24
|
543 |
+
msgid "Woocommerce product fields"
|
544 |
+
msgstr "Campi del prodotto Woocommerce"
|
545 |
|
546 |
+
#: includes/importer/views/html-wf-import-options.php:25
|
547 |
+
msgid "CSV column header(from imported file)"
|
548 |
+
msgstr "Intestazione di colonna CSV (dal file importato)"
|
549 |
|
550 |
+
#: includes/importer/views/html-wf-import-options.php:26
|
551 |
msgid "Evaluation Field"
|
552 |
msgstr "Champ d'évaluation"
|
553 |
|
554 |
+
#: includes/importer/views/html-wf-import-options.php:28
|
555 |
msgid ""
|
556 |
"Assign constant value HikeFoce to post_author:</br>=HikeFoce</br>Add $5 to "
|
557 |
"Price:sale_price:</br>+5</br>Reduce $5 to Price:sale_price:</br>-5</"
|
566 |
"valeur par HikeFoce à post_title: </ br> & par HikeFoce < / br> Prepend une "
|
567 |
"valeur HikeFoce à post_title: </ br> & HikeFoce [VAL]."
|
568 |
|
569 |
+
#: includes/importer/views/html-wf-import-options.php:107
|
570 |
msgid "Do not import"
|
571 |
msgstr "Ne pas importer"
|
572 |
|
573 |
+
#: includes/importer/views/html-wf-import-options.php:123
|
574 |
+
msgid ""
|
575 |
+
"Time taken to Import the products depends on the time taken to fetch the "
|
576 |
+
"images and the internet speed. If you have more than 1000 products we "
|
577 |
+
"recommend doing the import in batches by splitting the CSV file. Please do "
|
578 |
+
"not navigate away or close the window while the import is in progress."
|
579 |
+
msgstr ""
|
580 |
+
"Il tempo necessario per importare i prodotti dipende dal tempo impiegato per "
|
581 |
+
"recuperare le immagini e la velocità di internet. Se hai più di 1000 "
|
582 |
+
"prodotti, ti consigliamo di eseguire l'importazione in batch suddividendo il "
|
583 |
+
"file CSV. Si prega di non allontanarsi o chiudere la finestra mentre è in "
|
584 |
+
"corso l'importazione."
|
585 |
|
586 |
+
#: includes/views/export/html-wf-export-products.php:26
|
587 |
msgid "Export Product in CSV Format:"
|
588 |
msgstr "Exporter le produit au format CSV:"
|
589 |
|
590 |
+
#: includes/views/export/html-wf-export-products.php:27
|
591 |
msgid ""
|
592 |
+
"Export and download your products in CSV file format. This file can be used "
|
593 |
+
"to import products back into your WooCommerce store."
|
594 |
msgstr ""
|
595 |
+
"Esporta e scarica i tuoi prodotti in formato file CSV. Questo file può "
|
596 |
+
"essere utilizzato per importare i prodotti nel tuo negozio WooCommerce."
|
597 |
|
598 |
+
#: includes/views/export/html-wf-export-products.php:32
|
599 |
msgid "Offset"
|
600 |
msgstr "Offset"
|
601 |
|
602 |
+
#: includes/views/export/html-wf-export-products.php:36
|
603 |
+
msgid ""
|
604 |
+
"Number of products to skip before exporting. If the value is 0 no products "
|
605 |
+
"are skipped. If value is 100, products from product id 101 will be exported."
|
606 |
+
msgstr ""
|
607 |
+
"Numero di prodotti da saltare prima dell'esportazione. Se il valore è 0, i "
|
608 |
+
"prodotti non vengono saltati. Se il valore è 100, i prodotti dall'ID "
|
609 |
+
"prodotto 101 verranno esportati."
|
610 |
|
611 |
+
#: includes/views/export/html-wf-export-products.php:41
|
612 |
msgid "Limit"
|
613 |
msgstr "Limite"
|
614 |
|
615 |
+
#: includes/views/export/html-wf-export-products.php:44
|
616 |
msgid "Unlimited"
|
617 |
msgstr "Illimité"
|
618 |
|
619 |
+
#: includes/views/export/html-wf-export-products.php:45
|
620 |
+
msgid ""
|
621 |
+
"Number of products to export. If no value is given all products will be "
|
622 |
+
"exported. This is useful if you have large number of products and want to "
|
623 |
+
"export partial list of products."
|
624 |
+
msgstr ""
|
625 |
+
"Numero di prodotti da esportare. Se non viene fornito alcun valore, tutti i "
|
626 |
+
"prodotti verranno esportati. Ciò è utile se si dispone di un numero elevato "
|
627 |
+
"di prodotti e si desidera esportare un elenco parziale di prodotti."
|
628 |
+
|
629 |
+
#: includes/views/export/html-wf-export-products.php:50
|
630 |
msgid "Columns"
|
631 |
msgstr "Colonnes"
|
632 |
|
633 |
+
#: includes/views/export/html-wf-export-products.php:51
|
634 |
+
msgid ""
|
635 |
+
"Configure the Column Names of CSV file. If the Column Names are not changed, "
|
636 |
+
"plugin can auto detect fields while importing."
|
637 |
+
msgstr ""
|
638 |
+
"Configura i nomi delle colonne del file CSV. Se i nomi delle colonne non "
|
639 |
+
"vengono modificati, il plugin può rilevare automaticamente i campi durante "
|
640 |
+
"l'importazione."
|
641 |
+
|
642 |
+
#: includes/views/export/html-wf-export-products.php:55
|
643 |
+
msgid "WooCommerce product field name"
|
644 |
+
msgstr "Nome del campo del prodotto WooCommerce"
|
645 |
|
646 |
+
#: includes/views/export/html-wf-export-products.php:58
|
647 |
+
msgid "Column header name in the CSV file"
|
648 |
+
msgstr "Nome intestazione colonna nel file CSV"
|
649 |
|
650 |
+
#: includes/views/export/html-wf-export-products.php:63
|
651 |
+
msgid "Select all"
|
652 |
+
msgstr "Seleziona tutto"
|
653 |
|
654 |
+
#: includes/views/export/html-wf-export-products.php:64
|
655 |
+
msgid "Unselect all"
|
656 |
+
msgstr "Deseleziona tutto"
|
657 |
+
|
658 |
+
#: includes/views/export/html-wf-export-products.php:95
|
659 |
msgid "Export Products"
|
660 |
msgstr "Export Prodotti"
|
661 |
|
662 |
+
#: includes/views/export/html-wf-export-products.php:96
|
663 |
+
msgid ""
|
664 |
+
"With free version of the plugin you can export products (except variable "
|
665 |
+
"products) in to a file. If you want to configure scheduled export to a "
|
666 |
+
"folder or FTP location you may need to upgrade to premium version."
|
667 |
+
msgstr ""
|
668 |
+
"Con la versione gratuita del plug-in è possibile esportare prodotti (ad "
|
669 |
+
"eccezione di prodotti variabili) in un file. Se si desidera configurare "
|
670 |
+
"l'esportazione pianificata in una cartella o in un percorso FTP, potrebbe "
|
671 |
+
"essere necessario eseguire l'aggiornamento alla versione premium."
|
672 |
+
|
673 |
+
#: includes/views/html-wf-help-guide.php:31
|
674 |
+
msgid "How-to-setup"
|
675 |
+
msgstr "Come impostare"
|
676 |
+
|
677 |
+
#: includes/views/html-wf-help-guide.php:32
|
678 |
+
msgid "Get to know about our produt in 3 minutes with this video"
|
679 |
+
msgstr "Vieni a conoscere il nostro prodotto in 3 minuti con questo video"
|
680 |
+
|
681 |
+
#: includes/views/html-wf-help-guide.php:34
|
682 |
+
msgid "Setup Guide"
|
683 |
+
msgstr "Guida di installazione"
|
684 |
+
|
685 |
+
#: includes/views/html-wf-help-guide.php:39
|
686 |
+
#: includes/views/html-wf-help-guide.php:41 includes/views/market.php:34
|
687 |
msgid "Documentation"
|
688 |
msgstr "Documentazione"
|
689 |
|
690 |
+
#: includes/views/html-wf-help-guide.php:40
|
691 |
+
msgid "Refer to our documentation to set and get started"
|
692 |
+
msgstr "Fare riferimento alla nostra documentazione per impostare e iniziare"
|
693 |
+
|
694 |
+
#: includes/views/html-wf-help-guide.php:46 product-csv-import-export.php:69
|
695 |
+
msgid "Support"
|
696 |
+
msgstr "Soutien"
|
697 |
+
|
698 |
+
#: includes/views/html-wf-help-guide.php:47
|
699 |
+
msgid "We would love to help you on any queries or issues."
|
700 |
+
msgstr "Ci piacerebbe aiutarti in qualsiasi domanda o problema."
|
701 |
+
|
702 |
+
#: includes/views/html-wf-help-guide.php:49
|
703 |
+
msgid "Contact Us"
|
704 |
+
msgstr ""
|
705 |
+
"Non ci sono metodi di spedizione disponibili. Per favore controlla "
|
706 |
+
"nuovamente il tuo indirizzo o contattaci se hai bisogno di assistenza."
|
707 |
+
|
708 |
+
#: includes/views/market.php:8
|
709 |
+
msgid "Watch getting started video"
|
710 |
+
msgstr "Video introduttivo"
|
711 |
+
|
712 |
+
#: includes/views/market.php:12
|
713 |
+
msgid "Upgrade to Premium Version"
|
714 |
+
msgstr "Aggiorna alla versione PREMIUM"
|
715 |
+
|
716 |
+
#: includes/views/market.php:15
|
717 |
+
msgid "Export simple, group, external and variation products."
|
718 |
+
msgstr "Esporta prodotti semplici, di gruppo, esterni e di variazione."
|
719 |
+
|
720 |
+
#: includes/views/market.php:16
|
721 |
+
msgid "Import simple, group, external and variation products."
|
722 |
+
msgstr "Importa prodotti semplici, di gruppo, esterni e di variazione."
|
723 |
+
|
724 |
+
#: includes/views/market.php:17
|
725 |
+
msgid "Export products by category."
|
726 |
+
msgstr "Esportare prodotti per categoria."
|
727 |
+
|
728 |
+
#: includes/views/market.php:18
|
729 |
+
msgid "Various filter options for exporting products."
|
730 |
+
msgstr "Varie opzioni di filtro per l'esportazione di prodotti."
|
731 |
+
|
732 |
+
#: includes/views/market.php:19
|
733 |
+
msgid "Map and transform fields while importing products."
|
734 |
+
msgstr "Mappa e trasforma i campi durante l'importazione dei prodotti."
|
735 |
+
|
736 |
+
#: includes/views/market.php:20
|
737 |
+
msgid "Change values while importing products using evaluation fields."
|
738 |
+
msgstr ""
|
739 |
+
"Modifica i valori durante l'importazione di prodotti utilizzando i campi di "
|
740 |
+
"valutazione."
|
741 |
+
|
742 |
+
#: includes/views/market.php:21
|
743 |
+
msgid "Choice to update or skip existing imported products."
|
744 |
+
msgstr "Scelta per aggiornare o saltare i prodotti importati esistenti."
|
745 |
+
|
746 |
+
#: includes/views/market.php:22
|
747 |
+
msgid "WPML supported. French and German support out of the box."
|
748 |
+
msgstr "WPML supportato. Supporto francese e tedesco fuori dagli schemi."
|
749 |
+
|
750 |
+
#: includes/views/market.php:23
|
751 |
+
msgid "Import/Export file via FTP."
|
752 |
+
msgstr "Importa / Esporta file tramite FTP."
|
753 |
+
|
754 |
+
#: includes/views/market.php:24
|
755 |
+
msgid "Import from URL."
|
756 |
+
msgstr "Importa da URL"
|
757 |
+
|
758 |
+
#: includes/views/market.php:25
|
759 |
+
msgid "Automatic scheduled import and export."
|
760 |
+
msgstr "Importazione ed esportazione pianificate automatiche."
|
761 |
+
|
762 |
+
#: includes/views/market.php:26
|
763 |
+
msgid "Supports product reviews export and import."
|
764 |
+
msgstr ""
|
765 |
+
"Supporta l'esportazione e l'importazione delle recensioni dei prodotti."
|
766 |
+
|
767 |
+
#: includes/views/market.php:27
|
768 |
+
msgid "30 Days Money Back Guarantee."
|
769 |
+
msgstr "%%%"
|
770 |
+
|
771 |
+
#: includes/views/market.php:28
|
772 |
+
msgid "More frequent plugin updates."
|
773 |
+
msgstr "Aggiornamenti dei plugin più frequenti."
|
774 |
+
|
775 |
+
#: includes/views/market.php:29
|
776 |
+
msgid "Excellent Support for setting it up!"
|
777 |
+
msgstr "Supporto eccellente per la creazione!"
|
778 |
+
|
779 |
+
#: includes/views/market.php:33
|
780 |
+
msgid "Live Demo"
|
781 |
+
msgstr "Live Demo"
|
782 |
+
|
783 |
+
#: includes/views/market.php:38
|
784 |
+
#, php-format
|
785 |
+
msgid ""
|
786 |
+
"<div class=\"\"><p><i>If you like the plugin please leave us a %1$s review!</"
|
787 |
+
"i><p></div>"
|
788 |
+
msgstr ""
|
789 |
+
"<div class=\"\"><p> <i>Se ti piace il plugin, ti preghiamo di lasciare una "
|
790 |
+
"recensione di%1$s!</i> <p></div>"
|
791 |
+
|
792 |
+
#: product-csv-import-export.php:67
|
793 |
+
msgid "Import Export"
|
794 |
+
msgstr "Import Export"
|
795 |
+
|
796 |
+
#: product-csv-import-export.php:68
|
797 |
+
msgid "Premium Upgrade"
|
798 |
+
msgstr "aggiornamento Premium"
|
799 |
+
|
800 |
+
#: product-csv-import-export.php:70
|
801 |
+
msgid "Review"
|
802 |
+
msgstr "Recensione"
|
803 |
|
804 |
+
#: product-csv-import-export.php:117
|
805 |
+
msgid "Import <strong>products</strong> to your store via a csv file."
|
806 |
+
msgstr ""
|
807 |
+
"Donnez votre avis sur nImporter <strong> produits </ strong> à votre magasin "
|
808 |
+
"via un file.ow csv!"
|
809 |
+
|
810 |
+
#: product-csv-import-export.php:139
|
811 |
+
msgid "I couldn't understand how to make it work"
|
812 |
+
msgstr "Non capisco come farlo funzionare"
|
813 |
+
|
814 |
+
#: product-csv-import-export.php:141
|
815 |
+
msgid "Would you like us to assist you?"
|
816 |
+
msgstr "Vorresti che ti aiutassimo?"
|
817 |
+
|
818 |
+
#: product-csv-import-export.php:145
|
819 |
+
msgid "I found a better plugin"
|
820 |
+
msgstr "Ho trovato un plugin migliore"
|
821 |
+
|
822 |
+
#: product-csv-import-export.php:147
|
823 |
+
msgid "Which plugin?"
|
824 |
+
msgstr "Quale plugin?"
|
825 |
+
|
826 |
+
#: product-csv-import-export.php:151
|
827 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
828 |
+
msgstr ""
|
829 |
+
"Il plugin è fantastico, ma ho bisogno di funzionalità specifiche che non "
|
830 |
+
"supportate"
|
831 |
+
|
832 |
+
#: product-csv-import-export.php:153
|
833 |
+
msgid "Could you tell us more about that feature?"
|
834 |
+
msgstr "Potresti dirci di più su questa funzione?"
|
835 |
+
|
836 |
+
#: product-csv-import-export.php:157
|
837 |
+
msgid "The plugin is not working"
|
838 |
+
msgstr "Il plugin non funziona"
|
839 |
+
|
840 |
+
#: product-csv-import-export.php:159
|
841 |
+
msgid "Could you tell us a bit more whats not working?"
|
842 |
+
msgstr "Potresti dirci un po 'di più che cosa non funziona?"
|
843 |
+
|
844 |
+
#: product-csv-import-export.php:163
|
845 |
+
msgid "It's not what I was looking for"
|
846 |
+
msgstr "Non è quello che stavo cercando"
|
847 |
+
|
848 |
+
#: product-csv-import-export.php:169
|
849 |
+
msgid "The plugin didn't work as expected"
|
850 |
+
msgstr "Il plugin non ha funzionato come previsto"
|
851 |
+
|
852 |
+
#: product-csv-import-export.php:171
|
853 |
+
msgid "What did you expect?"
|
854 |
+
msgstr "Cosa ti aspettavi?"
|
855 |
+
|
856 |
+
#: product-csv-import-export.php:175
|
857 |
+
msgid "Other"
|
858 |
+
msgstr "Altro"
|
859 |
+
|
860 |
+
#: product-csv-import-export.php:177
|
861 |
+
msgid "Could you tell us a bit more?"
|
862 |
+
msgstr "Potresti dirci un po 'di più?"
|
863 |
+
|
864 |
+
#: product-csv-import-export.php:197
|
865 |
+
msgid "If you have a moment, please let us know why you are deactivating:"
|
866 |
+
msgstr "Se hai un momento, facci sapere perché stai disattivando:"
|
867 |
+
|
868 |
+
#: product-csv-import-export.php:211
|
869 |
+
msgid "I rather wouldn't say"
|
870 |
+
msgstr "Preferirei non dirlo"
|
871 |
+
|
872 |
+
#: product-csv-import-export.php:212
|
873 |
+
msgid "Submit & Deactivate"
|
874 |
+
msgstr "Invia e disattiva"
|
875 |
|
876 |
+
#: product-csv-import-export.php:213
|
877 |
+
msgid "Cancel"
|
878 |
+
msgstr "Annulla"
|
879 |
+
|
880 |
+
#: product-csv-import-export.php:378
|
881 |
msgid ""
|
882 |
+
"Is everything fine? You already have the Premium version installed in your "
|
883 |
+
"website. For any issues, kindly raise a ticket via <a target='_blank' "
|
884 |
+
"href='//support.xadapter.com/'>support.xadapter.com</a>"
|
885 |
msgstr ""
|
886 |
+
"Va tutto bene? Hai già installato la versione Premium nel tuo sito web. Per "
|
887 |
+
"qualsiasi problema, si prega di sollevare un biglietto tramite <a "
|
888 |
+
"target='_blank' href='//support.xadapter.com/'>support.xadapter.com</a>"
|
889 |
+
|
890 |
+
#~ msgid "Successfully uploaded via FTP."
|
891 |
+
#~ msgstr "Avec succès téléchargé via FTP."
|
892 |
+
|
893 |
+
#~ msgid "Error while uploading via FTP."
|
894 |
+
#~ msgstr "Erreur lors du transfert via FTP."
|
895 |
+
|
896 |
+
# msgid "Did this plugin work for you? Please rate and contact us at <i>support@hikeforce.com</i> to get $10 off on your next purchase."
|
897 |
+
# msgstr "Est-ce que ce travail de plug-in pour vous & nbsp?; S'il vous plaît noter et nous contacter à <i> support@hikeforce.com </ i> pour obtenir 10 $ de rabais sur votre prochain achat."
|
898 |
+
#~ msgid "Review Now!"
|
899 |
+
#~ msgstr "Review Now!"
|
900 |
+
|
901 |
+
#~ msgid "Import"
|
902 |
+
#~ msgstr "Importer"
|
903 |
+
|
904 |
+
#~ msgid "Merge Products"
|
905 |
+
#~ msgstr "Fusionner Produits"
|
906 |
+
|
907 |
+
#~ msgid ""
|
908 |
+
#~ "Check this box to merge empty cells - otherwise (when merging) the empty "
|
909 |
+
#~ "cells will be ignored when importing things such as attributes."
|
910 |
+
#~ msgstr ""
|
911 |
+
#~ "Cochez cette case pour fusionner les cellules vides - sinon (lors de la "
|
912 |
+
#~ "fusion), les cellules vides seront ignorés lors de l'importation des "
|
913 |
+
#~ "choses telles que les attributs."
|
914 |
+
|
915 |
+
#~ msgid "Map Fields"
|
916 |
+
#~ msgstr "Carte champs"
|
917 |
+
|
918 |
+
#~ msgid "Map to"
|
919 |
+
#~ msgstr "Carte à"
|
920 |
+
|
921 |
+
#~ msgid "Column Header"
|
922 |
+
#~ msgstr "tête de colonne"
|
923 |
+
|
924 |
+
#~ msgid "Product Import / Export"
|
925 |
+
#~ msgstr "Importation de produits / Export"
|
926 |
+
|
927 |
+
#~ msgid ""
|
928 |
+
#~ "Export and download your products in CSV format. This file can be used to "
|
929 |
+
#~ "import products back into your Woocommerce shop."
|
930 |
+
#~ msgstr ""
|
931 |
+
#~ "Export e scaricare i prodotti in formato CSV. Questo file può essere "
|
932 |
+
#~ "utilizzato per importare i prodotti nel vostro negozio Woocommerce."
|
933 |
+
|
934 |
+
#~ msgid "0"
|
935 |
+
#~ msgstr "0"
|
936 |
+
|
937 |
+
#~ msgid "Column"
|
938 |
+
#~ msgstr "Colonne"
|
939 |
+
|
940 |
+
#~ msgid "Column Name"
|
941 |
+
#~ msgstr "Nom de colonne"
|
942 |
+
|
943 |
+
#~ msgid "Include hidden meta data"
|
944 |
+
#~ msgstr "Includi metadati nascosti"
|
945 |
+
|
946 |
+
#~ msgid "Sample CSV"
|
947 |
+
#~ msgstr "CSV di esempio"
|
948 |
+
|
949 |
+
#~ msgid "Import Products in CSV Format:"
|
950 |
+
#~ msgstr "Importa prodotti in formato CSV:"
|
951 |
+
|
952 |
+
#~ msgid ""
|
953 |
+
#~ "Import products in CSV format ( works for simple products) from "
|
954 |
+
#~ "different sources"
|
955 |
+
#~ msgstr ""
|
956 |
+
#~ "prodotti di importazione in formato CSV (funziona per i prodotti "
|
957 |
+
#~ "semplici) da diverse fonti"
|
958 |
|
959 |
+
#~ msgid "Import Products"
|
960 |
+
#~ msgstr "Importa prodotti"
|
|
|
961 |
|
962 |
+
#~ msgid "Merge products if exists"
|
963 |
+
#~ msgstr "Unire prodotti se esiste"
|
|
license.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
Product CSV Import Export For WooCommerce
|
2 |
|
3 |
-
Copyright
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
@@ -19,20 +19,17 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
19 |
This program incorporates work covered by the following copyright and
|
20 |
permission notices:
|
21 |
|
22 |
-
|
23 |
-
Copyright: 2009-
|
24 |
License: GNU General Public License v3.0
|
25 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
26 |
|
27 |
-
and
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
Product CSV Import Export For WooCommerce is released under the GPL
|
32 |
|
33 |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
34 |
|
35 |
-
|
36 |
Version 3, 29 June 2007
|
37 |
|
38 |
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
1 |
Product CSV Import Export For WooCommerce
|
2 |
|
3 |
+
Copyright 2018 by the contributors
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
19 |
This program incorporates work covered by the following copyright and
|
20 |
permission notices:
|
21 |
|
22 |
+
Product CSV Import Export For WooCommerce
|
23 |
+
Copyright: 2009-2018 XAdapter.
|
24 |
License: GNU General Public License v3.0
|
25 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
26 |
|
|
|
27 |
|
28 |
+
Product CSV Import Export For WooCommerce is released under the GPLv3
|
|
|
|
|
29 |
|
30 |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
31 |
|
32 |
+
GNU GENERAL PUBLIC LICENSE
|
33 |
Version 3, 29 June 2007
|
34 |
|
35 |
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
product-csv-import-export.php
CHANGED
@@ -1,179 +1,417 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
Plugin Name: Product CSV Import Export (BASIC)
|
4 |
-
Plugin URI: https://www.xadapter.com/product/product-import-export-plugin-for-woocommerce/
|
5 |
-
Description: Import and Export Products From and To your WooCommerce Store.
|
6 |
-
Author: XAdapter
|
7 |
-
Author URI: https://www.xadapter.com/
|
8 |
-
Version: 1.4.
|
9 |
-
WC tested up to: 3.
|
10 |
-
Text Domain: wf_csv_import_export
|
11 |
-
*/
|
12 |
-
|
13 |
-
if (
|
14 |
-
|
15 |
-
}
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Plugin Name: Product CSV Import Export (BASIC)
|
4 |
+
Plugin URI: https://www.xadapter.com/product/product-import-export-plugin-for-woocommerce/
|
5 |
+
Description: Import and Export Products From and To your WooCommerce Store.
|
6 |
+
Author: XAdapter
|
7 |
+
Author URI: https://www.xadapter.com/shop
|
8 |
+
Version: 1.4.3
|
9 |
+
WC tested up to: 3.3.5
|
10 |
+
Text Domain: wf_csv_import_export
|
11 |
+
*/
|
12 |
+
|
13 |
+
if (!defined('ABSPATH') || !is_admin()) {
|
14 |
+
return;
|
15 |
+
}
|
16 |
+
|
17 |
+
|
18 |
+
if (!defined('WF_PIPE_CURRENT_VERSION')) {
|
19 |
+
define("WF_PIPE_CURRENT_VERSION", "1.4.3");
|
20 |
+
}
|
21 |
+
if (!defined('WF_PROD_IMP_EXP_ID')) {
|
22 |
+
define("WF_PROD_IMP_EXP_ID", "wf_prod_imp_exp");
|
23 |
+
}
|
24 |
+
if (!defined('WF_WOOCOMMERCE_CSV_IM_EX')) {
|
25 |
+
define("WF_WOOCOMMERCE_CSV_IM_EX", "wf_woocommerce_csv_im_ex");
|
26 |
+
}
|
27 |
+
/**
|
28 |
+
* Check if WooCommerce is active
|
29 |
+
*/
|
30 |
+
if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
|
31 |
+
|
32 |
+
if (!class_exists('WF_Product_Import_Export_CSV')) :
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Main CSV Import class
|
36 |
+
*/
|
37 |
+
class WF_Product_Import_Export_CSV {
|
38 |
+
|
39 |
+
/**
|
40 |
+
* Constructor
|
41 |
+
*/
|
42 |
+
public function __construct() {
|
43 |
+
if (!defined('WF_ProdImpExpCsv_FILE')) {
|
44 |
+
define('WF_ProdImpExpCsv_FILE', __FILE__);
|
45 |
+
}
|
46 |
+
|
47 |
+
if (!defined('WF_ProdImpExpCsv_BASE')) {
|
48 |
+
define('WF_ProdImpExpCsv_BASE', plugin_dir_path(__FILE__));
|
49 |
+
}
|
50 |
+
|
51 |
+
add_filter('woocommerce_screen_ids', array($this, 'woocommerce_screen_ids'));
|
52 |
+
add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'wf_plugin_action_links'));
|
53 |
+
add_action('init', array($this, 'load_plugin_textdomain'));
|
54 |
+
add_action('init', array($this, 'catch_export_request'), 20);
|
55 |
+
add_action('admin_init', array($this, 'register_importers'));
|
56 |
+
|
57 |
+
add_action('admin_footer', array($this, 'deactivate_scripts'));
|
58 |
+
add_action('wp_ajax_pipe_submit_uninstall_reason', array($this, "send_uninstall_reason"));
|
59 |
+
|
60 |
+
include_once( 'includes/class-wf-prodimpexpcsv-system-status-tools.php' );
|
61 |
+
include_once( 'includes/class-wf-prodimpexpcsv-admin-screen.php' );
|
62 |
+
include_once( 'includes/importer/class-wf-prodimpexpcsv-importer.php' );
|
63 |
+
|
64 |
+
if (defined('DOING_AJAX')) {
|
65 |
+
include_once( 'includes/class-wf-prodimpexpcsv-ajax-handler.php' );
|
66 |
+
}
|
67 |
+
}
|
68 |
+
|
69 |
+
public function wf_plugin_action_links($links) {
|
70 |
+
$plugin_links = array(
|
71 |
+
'<a href="' . admin_url('admin.php?page=wf_woocommerce_csv_im_ex&tab=export') . '">' . __('Import Export', 'wf_csv_import_export') . '</a>',
|
72 |
+
'<a target="_blank" href="https://www.xadapter.com/product/product-import-export-plugin-for-woocommerce/" target="_blank">' . __('Premium Upgrade', 'wf_csv_import_export') . '</a>',
|
73 |
+
'<a target="_blank" href="https://wordpress.org/support/plugin/product-import-export-for-woo/">' . __('Support', 'wf_csv_import_export') . '</a>',
|
74 |
+
'<a target="_blank" href="https://wordpress.org/support/plugin/product-import-export-for-woo/reviews/">' . __('Review', 'wf_csv_import_export') . '</a>',
|
75 |
+
);
|
76 |
+
if (array_key_exists('deactivate', $links)) {
|
77 |
+
$links['deactivate'] = str_replace('<a', '<a class="pipe-deactivate-link"', $links['deactivate']);
|
78 |
+
}
|
79 |
+
return array_merge($plugin_links, $links);
|
80 |
+
}
|
81 |
+
|
82 |
+
/**
|
83 |
+
* Add screen ID
|
84 |
+
*/
|
85 |
+
public function woocommerce_screen_ids($ids) {
|
86 |
+
$ids[] = 'admin'; // For import screen
|
87 |
+
return $ids;
|
88 |
+
}
|
89 |
+
|
90 |
+
/**
|
91 |
+
* Handle localization
|
92 |
+
*/
|
93 |
+
public function load_plugin_textdomain() {
|
94 |
+
load_plugin_textdomain('wf_csv_import_export', false, dirname(plugin_basename(__FILE__)) . '/lang/');
|
95 |
+
}
|
96 |
+
|
97 |
+
/**
|
98 |
+
* Catches an export request and exports the data. This class is only loaded in admin.
|
99 |
+
*/
|
100 |
+
public function catch_export_request() {
|
101 |
+
|
102 |
+
if (!empty($_GET['action']) && !empty($_GET['page']) && $_GET['page'] == 'wf_woocommerce_csv_im_ex') {
|
103 |
+
switch ($_GET['action']) {
|
104 |
+
case "export" :
|
105 |
+
$user_ok = $this->hf_user_permission();
|
106 |
+
if ($user_ok) {
|
107 |
+
include_once( 'includes/exporter/class-wf-prodimpexpcsv-exporter.php' );
|
108 |
+
WF_ProdImpExpCsv_Exporter::do_export('product');
|
109 |
+
} else {
|
110 |
+
wp_redirect(wp_login_url());
|
111 |
+
}
|
112 |
+
break;
|
113 |
+
}
|
114 |
+
}
|
115 |
+
}
|
116 |
+
|
117 |
+
/**
|
118 |
+
* Register importers for use
|
119 |
+
*/
|
120 |
+
public function register_importers() {
|
121 |
+
register_importer('xa_woocommerce_csv', 'XAdapter WooCommerce Product Import (CSV)', __('Import <strong>products</strong> to your store via a csv file.', 'wf_csv_import_export'), 'WF_ProdImpExpCsv_Importer::product_importer');
|
122 |
+
}
|
123 |
+
|
124 |
+
private function hf_user_permission() {
|
125 |
+
// Check if user has rights to export
|
126 |
+
$current_user = wp_get_current_user();
|
127 |
+
$user_ok = false;
|
128 |
+
$wf_roles = apply_filters('hf_user_permission_roles', array('administrator', 'shop_manager'));
|
129 |
+
if ($current_user instanceof WP_User) {
|
130 |
+
$can_users = array_intersect($wf_roles, $current_user->roles);
|
131 |
+
if (!empty($can_users)) {
|
132 |
+
$user_ok = true;
|
133 |
+
}
|
134 |
+
}
|
135 |
+
return $user_ok;
|
136 |
+
}
|
137 |
+
|
138 |
+
private function get_uninstall_reasons() {
|
139 |
+
|
140 |
+
$reasons = array(
|
141 |
+
array(
|
142 |
+
'id' => 'used-it',
|
143 |
+
'text' => __('Used it successfully. Don\'t need anymore.', 'wf_csv_import_export'),
|
144 |
+
'type' => 'reviewhtml',
|
145 |
+
'placeholder' => __('Have used it successfully and aint in need of it anymore', 'wf_csv_import_export')
|
146 |
+
),
|
147 |
+
array(
|
148 |
+
'id' => 'could-not-understand',
|
149 |
+
'text' => __('I couldn\'t understand how to make it work', 'wf_csv_import_export'),
|
150 |
+
'type' => 'textarea',
|
151 |
+
'placeholder' => __('Would you like us to assist you?', 'wf_csv_import_export')
|
152 |
+
),
|
153 |
+
array(
|
154 |
+
'id' => 'found-better-plugin',
|
155 |
+
'text' => __('I found a better plugin', 'wf_csv_import_export'),
|
156 |
+
'type' => 'text',
|
157 |
+
'placeholder' => __('Which plugin?', 'wf_csv_import_export')
|
158 |
+
),
|
159 |
+
array(
|
160 |
+
'id' => 'not-have-that-feature',
|
161 |
+
'text' => __('The plugin is great, but I need specific feature that you don\'t support', 'wf_csv_import_export'),
|
162 |
+
'type' => 'textarea',
|
163 |
+
'placeholder' => __('Could you tell us more about that feature?', 'wf_csv_import_export')
|
164 |
+
),
|
165 |
+
array(
|
166 |
+
'id' => 'is-not-working',
|
167 |
+
'text' => __('The plugin is not working', 'wf_csv_import_export'),
|
168 |
+
'type' => 'textarea',
|
169 |
+
'placeholder' => __('Could you tell us a bit more whats not working?', 'wf_csv_import_export')
|
170 |
+
),
|
171 |
+
array(
|
172 |
+
'id' => 'looking-for-other',
|
173 |
+
'text' => __('It\'s not what I was looking for', 'wf_csv_import_export'),
|
174 |
+
'type' => 'textarea',
|
175 |
+
'placeholder' => __('Could you tell us a bit more?', 'wf_csv_import_export')
|
176 |
+
),
|
177 |
+
array(
|
178 |
+
'id' => 'did-not-work-as-expected',
|
179 |
+
'text' => __('The plugin didn\'t work as expected', 'wf_csv_import_export'),
|
180 |
+
'type' => 'textarea',
|
181 |
+
'placeholder' => __('What did you expect?', 'wf_csv_import_export')
|
182 |
+
),
|
183 |
+
array(
|
184 |
+
'id' => 'other',
|
185 |
+
'text' => __('Other', 'wf_csv_import_export'),
|
186 |
+
'type' => 'textarea',
|
187 |
+
'placeholder' => __('Could you tell us a bit more?', 'wf_csv_import_export')
|
188 |
+
),
|
189 |
+
);
|
190 |
+
|
191 |
+
return $reasons;
|
192 |
+
}
|
193 |
+
|
194 |
+
public function deactivate_scripts() {
|
195 |
+
|
196 |
+
global $pagenow;
|
197 |
+
if ('plugins.php' != $pagenow) {
|
198 |
+
return;
|
199 |
+
}
|
200 |
+
$reasons = $this->get_uninstall_reasons();
|
201 |
+
?>
|
202 |
+
<div class="pipe-modal" id="pipe-pipe-modal">
|
203 |
+
<div class="pipe-modal-wrap">
|
204 |
+
<div class="pipe-modal-header">
|
205 |
+
<h3><?php _e('If you have a moment, please let us know why you are deactivating:', 'wf_csv_import_export'); ?></h3>
|
206 |
+
</div>
|
207 |
+
<div class="pipe-modal-body">
|
208 |
+
<ul class="reasons">
|
209 |
+
<?php foreach ($reasons as $reason) { ?>
|
210 |
+
<li data-type="<?php echo esc_attr($reason['type']); ?>" data-placeholder="<?php echo esc_attr($reason['placeholder']); ?>">
|
211 |
+
<label><input type="radio" name="selected-reason" value="<?php echo $reason['id']; ?>"> <?php echo $reason['text']; ?></label>
|
212 |
+
</li>
|
213 |
+
<?php } ?>
|
214 |
+
</ul>
|
215 |
+
</div>
|
216 |
+
<div class="pipe-modal-footer">
|
217 |
+
<a href="#" class="dont-bother-me"><?php _e('I rather wouldn\'t say', 'wf_csv_import_export'); ?></a>
|
218 |
+
<button class="button-primary pipe-model-submit"><?php _e('Submit & Deactivate', 'wf_csv_import_export'); ?></button>
|
219 |
+
<button class="button-secondary pipe-model-cancel"><?php _e('Cancel', 'wf_csv_import_export'); ?></button>
|
220 |
+
</div>
|
221 |
+
</div>
|
222 |
+
</div>
|
223 |
+
|
224 |
+
<style type="text/css">
|
225 |
+
.pipe-modal {
|
226 |
+
position: fixed;
|
227 |
+
z-index: 99999;
|
228 |
+
top: 0;
|
229 |
+
right: 0;
|
230 |
+
bottom: 0;
|
231 |
+
left: 0;
|
232 |
+
background: rgba(0,0,0,0.5);
|
233 |
+
display: none;
|
234 |
+
}
|
235 |
+
.pipe-modal.modal-active {display: block;}
|
236 |
+
.pipe-modal-wrap {
|
237 |
+
width: 50%;
|
238 |
+
position: relative;
|
239 |
+
margin: 10% auto;
|
240 |
+
background: #fff;
|
241 |
+
}
|
242 |
+
.pipe-modal-header {
|
243 |
+
border-bottom: 1px solid #eee;
|
244 |
+
padding: 8px 20px;
|
245 |
+
}
|
246 |
+
.pipe-modal-header h3 {
|
247 |
+
line-height: 150%;
|
248 |
+
margin: 0;
|
249 |
+
}
|
250 |
+
.pipe-modal-body {padding: 5px 20px 20px 20px;}
|
251 |
+
.pipe-modal-body .input-text,.pipe-modal-body textarea {width:75%;}
|
252 |
+
.pipe-modal-body .reason-input {
|
253 |
+
margin-top: 5px;
|
254 |
+
margin-left: 20px;
|
255 |
+
}
|
256 |
+
.pipe-modal-footer {
|
257 |
+
border-top: 1px solid #eee;
|
258 |
+
padding: 12px 20px;
|
259 |
+
text-align: right;
|
260 |
+
}
|
261 |
+
.reviewlink{
|
262 |
+
padding:10px 0px 0px 35px !important;
|
263 |
+
font-size: 15px;
|
264 |
+
}
|
265 |
+
.review-and-deactivate{
|
266 |
+
padding:5px;
|
267 |
+
}
|
268 |
+
</style>
|
269 |
+
<script type="text/javascript">
|
270 |
+
(function ($) {
|
271 |
+
$(function () {
|
272 |
+
var modal = $('#pipe-pipe-modal');
|
273 |
+
var deactivateLink = '';
|
274 |
+
|
275 |
+
|
276 |
+
$('#the-list').on('click', 'a.pipe-deactivate-link', function (e) {
|
277 |
+
e.preventDefault();
|
278 |
+
modal.addClass('modal-active');
|
279 |
+
deactivateLink = $(this).attr('href');
|
280 |
+
modal.find('a.dont-bother-me').attr('href', deactivateLink).css('float', 'left');
|
281 |
+
});
|
282 |
+
|
283 |
+
$('#pipe-pipe-modal').on('click', 'a.review-and-deactivate', function (e) {
|
284 |
+
e.preventDefault();
|
285 |
+
window.open("https://wordpress.org/support/plugin/product-import-export-for-woo/reviews/#new-post");
|
286 |
+
window.location.href = deactivateLink;
|
287 |
+
});
|
288 |
+
modal.on('click', 'button.pipe-model-cancel', function (e) {
|
289 |
+
e.preventDefault();
|
290 |
+
modal.removeClass('modal-active');
|
291 |
+
});
|
292 |
+
modal.on('click', 'input[type="radio"]', function () {
|
293 |
+
var parent = $(this).parents('li:first');
|
294 |
+
modal.find('.reason-input').remove();
|
295 |
+
var inputType = parent.data('type'),
|
296 |
+
inputPlaceholder = parent.data('placeholder');
|
297 |
+
if('reviewhtml' === inputType) {
|
298 |
+
var reasonInputHtml = '<div class="reviewlink"><a href="#" target="_blank" class="review-and-deactivate"><?php _e('Deactivate and leave a review', 'wf_csv_import_export'); ?> <span class="xa-pipe-rating-link"> ★★★★★ </span></a></div>';
|
299 |
+
}else{
|
300 |
+
var reasonInputHtml = '<div class="reason-input">' + (('text' === inputType) ? '<input type="text" class="input-text" size="40" />' : '<textarea rows="5" cols="45"></textarea>') + '</div>';
|
301 |
+
}
|
302 |
+
if (inputType !== '') {
|
303 |
+
parent.append($(reasonInputHtml));
|
304 |
+
parent.find('input, textarea').attr('placeholder', inputPlaceholder).focus();
|
305 |
+
}
|
306 |
+
});
|
307 |
+
|
308 |
+
modal.on('click', 'button.pipe-model-submit', function (e) {
|
309 |
+
e.preventDefault();
|
310 |
+
var button = $(this);
|
311 |
+
if (button.hasClass('disabled')) {
|
312 |
+
return;
|
313 |
+
}
|
314 |
+
var $radio = $('input[type="radio"]:checked', modal);
|
315 |
+
var $selected_reason = $radio.parents('li:first'),
|
316 |
+
$input = $selected_reason.find('textarea, input[type="text"]');
|
317 |
+
|
318 |
+
$.ajax({
|
319 |
+
url: ajaxurl,
|
320 |
+
type: 'POST',
|
321 |
+
data: {
|
322 |
+
action: 'pipe_submit_uninstall_reason',
|
323 |
+
reason_id: (0 === $radio.length) ? 'none' : $radio.val(),
|
324 |
+
reason_info: (0 !== $input.length) ? $input.val().trim() : ''
|
325 |
+
},
|
326 |
+
beforeSend: function () {
|
327 |
+
button.addClass('disabled');
|
328 |
+
button.text('Processing...');
|
329 |
+
},
|
330 |
+
complete: function () {
|
331 |
+
window.location.href = deactivateLink;
|
332 |
+
}
|
333 |
+
});
|
334 |
+
});
|
335 |
+
});
|
336 |
+
}(jQuery));
|
337 |
+
</script>
|
338 |
+
<?php
|
339 |
+
}
|
340 |
+
|
341 |
+
public function send_uninstall_reason() {
|
342 |
+
|
343 |
+
global $wpdb;
|
344 |
+
|
345 |
+
if (!isset($_POST['reason_id'])) {
|
346 |
+
wp_send_json_error();
|
347 |
+
}
|
348 |
+
|
349 |
+
//$current_user = wp_get_current_user();
|
350 |
+
|
351 |
+
$data = array(
|
352 |
+
'reason_id' => sanitize_text_field($_POST['reason_id']),
|
353 |
+
'plugin' => "productimportexort",
|
354 |
+
'auth' => 'wfpipe_uninstall_1234#',
|
355 |
+
'date' => gmdate("M d, Y h:i:s A"),
|
356 |
+
'url' => home_url(),
|
357 |
+
'user_email' => '',//$current_user->user_email,
|
358 |
+
'reason_info' => isset($_REQUEST['reason_info']) ? trim(stripslashes($_REQUEST['reason_info'])) : '',
|
359 |
+
'software' => $_SERVER['SERVER_SOFTWARE'],
|
360 |
+
'php_version' => phpversion(),
|
361 |
+
'mysql_version' => $wpdb->db_version(),
|
362 |
+
'wp_version' => get_bloginfo('version'),
|
363 |
+
'wc_version' => (!defined('WC_VERSION')) ? '' : WC_VERSION,
|
364 |
+
'locale' => get_locale(),
|
365 |
+
'multisite' => is_multisite() ? 'Yes' : 'No',
|
366 |
+
'wfpipe_version' => WF_PIPE_CURRENT_VERSION
|
367 |
+
);
|
368 |
+
// Write an action/hook here in webtoffe to recieve the data
|
369 |
+
$resp = wp_remote_post('http://feedback.webtoffee.com/wp-json/wfpipe/v1/uninstall', array(
|
370 |
+
'method' => 'POST',
|
371 |
+
'timeout' => 45,
|
372 |
+
'redirection' => 5,
|
373 |
+
'httpversion' => '1.0',
|
374 |
+
'blocking' => false,
|
375 |
+
'headers' => array('user-agent' => 'pipe/' . md5(esc_url(home_url())) . ';'),
|
376 |
+
'body' => $data,
|
377 |
+
'cookies' => array()
|
378 |
+
)
|
379 |
+
);
|
380 |
+
|
381 |
+
wp_send_json_success();
|
382 |
+
}
|
383 |
+
|
384 |
+
}
|
385 |
+
|
386 |
+
endif;
|
387 |
+
|
388 |
+
new WF_Product_Import_Export_CSV();
|
389 |
+
}
|
390 |
+
|
391 |
+
|
392 |
+
|
393 |
+
// Welcome screen tutorial video --> Move this function to inside the class
|
394 |
+
add_action('admin_init', 'impexp_welcome');
|
395 |
+
|
396 |
+
register_activation_hook(__FILE__, 'hf_welcome_screen_activate_basic');
|
397 |
+
|
398 |
+
function hf_welcome_screen_activate_basic() {
|
399 |
+
if (is_plugin_active('product-csv-import-export-for-woocommerce/product-csv-import-export.php')) {
|
400 |
+
deactivate_plugins(basename(__FILE__));
|
401 |
+
wp_die(__("Is everything fine? You already have the Premium version installed in your website. For any issues, kindly raise a ticket via <a target='_blank' href='//support.xadapter.com/'>support.xadapter.com</a>", "wf_csv_import_export"), "", array('back_link' => 1));
|
402 |
+
}
|
403 |
+
update_option('xa_pipe_plugin_installed_date', date('Y-m-d H:i:s'));
|
404 |
+
set_transient('_welcome_screen_activation_redirect', true, 30);
|
405 |
+
}
|
406 |
+
|
407 |
+
if (!function_exists('impexp_welcome')) {
|
408 |
+
|
409 |
+
function impexp_welcome() {
|
410 |
+
if (!get_transient('_welcome_screen_activation_redirect')) {
|
411 |
+
return;
|
412 |
+
}
|
413 |
+
delete_transient('_welcome_screen_activation_redirect');
|
414 |
+
wp_safe_redirect(add_query_arg(array('page' => 'wf_woocommerce_csv_im_ex'), admin_url('admin.php')));
|
415 |
+
}
|
416 |
+
|
417 |
+
}
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
=== Product Import Export for WooCommerce===
|
2 |
-
Contributors: xadapter, mujeebur
|
3 |
Donate link:
|
4 |
Tags: woocommerce product import, woocommerce import products, woocommerce export products, export woocommerce products, import products into woocommerce
|
5 |
Requires at least: 3.0.1
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 1.4.
|
8 |
-
License:
|
9 |
-
License URI: http://www.gnu.org/licenses/gpl-
|
10 |
|
11 |
Easily import products into WooCommerce store or export WooCommerce products from the store. Import WooCommerce Products from any CSV to WooCommerce.
|
12 |
|
@@ -38,7 +38,7 @@ You can create the CSV from scratch or you can export the product to get the for
|
|
38 |
Product Import Export Plugin for WooCommerce is the leading tool for Woocommerce product export and WooCommerce product import. Some of the major features are listed below
|
39 |
|
40 |
<ul>
|
41 |
-
<li>Export WooCommerce Products (Simple, Group, External and Variations) in to a CSV file
|
42 |
<li>Import Products in to WooCommerce (Simple, Group, External and Variations) in CSV format in to WooComemrce Store.</li>
|
43 |
<li>Export WooCommerce Products by Category.</li>
|
44 |
<li>Various Filter options for exporting WooCommerce Products. </li>
|
@@ -47,6 +47,7 @@ Product Import Export Plugin for WooCommerce is the leading tool for Woocommerce
|
|
47 |
<li>Choice to Update or Skip existing imported products. </li>
|
48 |
<li>WPML Supported. French and German (Deutschland) language support Out of the Box.</li>
|
49 |
<li>Import/Export file from/to a remote server via FTP.</li>
|
|
|
50 |
<li>Supports Product Reviews Export Import.</li>
|
51 |
<li>Excellent Support for setting it up!</li>
|
52 |
</ul>
|
@@ -76,10 +77,10 @@ In addition, the plugin helps you export Categories, Tags, Products and other Pr
|
|
76 |
|
77 |
= How to export woocommerce products =
|
78 |
|
79 |
-
It is as simple as clicking a button. But if you need to customize your export we have enough
|
80 |
|
81 |
= WooCommerce Import Products =
|
82 |
-
WooCommerce bulk product upload is one of the main use case where
|
83 |
|
84 |
Woocommerce product import: You can use the import functionality to:
|
85 |
|
@@ -139,6 +140,12 @@ Yes. You can import or export product images along with other details
|
|
139 |
3. Premium Export Settings Screen
|
140 |
|
141 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
= 1.4.1 =
|
143 |
* Minor content updates
|
144 |
= 1.4.0 =
|
@@ -218,82 +225,9 @@ Yes. You can import or export product images along with other details
|
|
218 |
= 1.0.0 =
|
219 |
* Import /Export Woocommerce Products.
|
220 |
|
|
|
221 |
== Upgrade Notice ==
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
* Updates: Tested OK with
|
226 |
-
= 1.3.9 =
|
227 |
-
* BugFix: Invalid argument for foreach loop
|
228 |
-
= 1.3.8 =
|
229 |
-
* BugFix: Product not importing at 100n. n=1,2...
|
230 |
-
= 1.3.7 =
|
231 |
-
* Fixed conflict with Plus version.
|
232 |
-
= 1.3.6 =
|
233 |
-
* Fixed some warnings.
|
234 |
-
= 1.3.5 =
|
235 |
-
* Minor Content Change.
|
236 |
-
= 1.3.4 =
|
237 |
-
* Updates: Added video tutorial.
|
238 |
-
= 1.3.3 =
|
239 |
-
* BugFix: Same title product import message update.
|
240 |
-
= 1.3.2 =
|
241 |
-
* Minor content change.
|
242 |
-
= 1.3.1 =
|
243 |
-
* Function modified for Woocommerce 3.0 Compatibility.
|
244 |
-
= 1.3.0 =
|
245 |
-
* Woocommerce 3.0 Compatibility.
|
246 |
-
= 1.2.4 =
|
247 |
-
* Marketing Content Changed.
|
248 |
-
= 1.2.3 =
|
249 |
-
* New Icon Updated.
|
250 |
-
= 1.2.2 =
|
251 |
-
* Minor content change.
|
252 |
-
= 1.2.1 =
|
253 |
-
* Optimization: Image URL parsing.
|
254 |
-
= 1.2.0 =
|
255 |
-
* Enhancement: German Translation updates.
|
256 |
-
= 1.1.9 =
|
257 |
-
* Enhancement: WPML Support updates.
|
258 |
-
= 1.1.8 =
|
259 |
-
* Enhancement: Security improvements and bug fix.
|
260 |
-
= 1.1.7 =
|
261 |
-
* Enhancement: Security improvements.
|
262 |
-
= 1.1.6 =
|
263 |
-
* Enhancement: Sample CSV updated.
|
264 |
-
= 1.1.5 =
|
265 |
-
* Bug fix: Improved parsing.
|
266 |
-
= 1.1.4 =
|
267 |
-
* Bug fix: Removed deprecated function.
|
268 |
-
= 1.1.3 =
|
269 |
-
* Bug fix: Empty check validation updated.
|
270 |
-
= 1.1.2 =
|
271 |
-
* Minor content change.
|
272 |
-
= 1.1.1 =
|
273 |
-
* Enhancement: Import products that have same title.
|
274 |
-
= 1.1.0 =
|
275 |
-
* Italian Translation added.
|
276 |
-
= 1.0.9 =
|
277 |
-
* Hungarian Translation added.
|
278 |
-
= 1.0.8 =
|
279 |
-
* Minor content change.
|
280 |
-
= 1.0.7 =
|
281 |
-
* Enhancement: Updated support forum links and contact details.
|
282 |
-
= 1.0.6 =
|
283 |
-
* Bug Fix: fixed issue with SKU while exporting.
|
284 |
-
= 1.0.5 =
|
285 |
-
* Feature: Added Multilingual support and French Translation.
|
286 |
-
= 1.0.4 =
|
287 |
-
* Bug Fix: Improved Evaluation field and help message in mapping section.
|
288 |
-
= 1.0.3 =
|
289 |
-
* Bug Fix: Sorting priority Set to ID by default while exporting.
|
290 |
-
= 1.0.2 =
|
291 |
-
* Bug Fix: Improved parsing while importing product price with currency symbol and thousand separator.
|
292 |
-
= 1.0.1 =
|
293 |
-
* Bug Fix: Fixed issue with Evaluation field with single quotes.
|
294 |
-
* Bug Fix: Option to import gallery images.
|
295 |
-
* Enhancement: Improved help text for Post name and Stock quantity.
|
296 |
-
* Enhancement: Improved label text for Product type, category , tags and shipping class.
|
297 |
-
* Enhancement: Included links to Documentation and sample CSV.
|
298 |
-
= 1.0.0 =
|
299 |
-
* Import /Export Woocommerce Products.
|
1 |
+
=== Product Import Export for WooCommerce===
|
2 |
+
Contributors: xadapter, mujeebur, webtoffee
|
3 |
Donate link:
|
4 |
Tags: woocommerce product import, woocommerce import products, woocommerce export products, export woocommerce products, import products into woocommerce
|
5 |
Requires at least: 3.0.1
|
6 |
+
Tested up to: 4.9.4
|
7 |
+
Stable tag: 1.4.3
|
8 |
+
License: GPLv3 or later
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
Easily import products into WooCommerce store or export WooCommerce products from the store. Import WooCommerce Products from any CSV to WooCommerce.
|
12 |
|
38 |
Product Import Export Plugin for WooCommerce is the leading tool for Woocommerce product export and WooCommerce product import. Some of the major features are listed below
|
39 |
|
40 |
<ul>
|
41 |
+
<li>Export WooCommerce Products (Simple, Group, External and Variations) in to a CSV file.</li>
|
42 |
<li>Import Products in to WooCommerce (Simple, Group, External and Variations) in CSV format in to WooComemrce Store.</li>
|
43 |
<li>Export WooCommerce Products by Category.</li>
|
44 |
<li>Various Filter options for exporting WooCommerce Products. </li>
|
47 |
<li>Choice to Update or Skip existing imported products. </li>
|
48 |
<li>WPML Supported. French and German (Deutschland) language support Out of the Box.</li>
|
49 |
<li>Import/Export file from/to a remote server via FTP.</li>
|
50 |
+
<li>Automatic scheduled Import/Export.</li>
|
51 |
<li>Supports Product Reviews Export Import.</li>
|
52 |
<li>Excellent Support for setting it up!</li>
|
53 |
</ul>
|
77 |
|
78 |
= How to export woocommerce products =
|
79 |
|
80 |
+
It is as simple as clicking a button. But if you need to customize your export we have enough advanced customization options built in to the woocommerce product export plugin.
|
81 |
|
82 |
= WooCommerce Import Products =
|
83 |
+
WooCommerce bulk product upload is one of the main use case where WooCommerce product import functionality is used. 'How to import products into woocommerce' is one of the common question people ask. Our WooCommerce product csv import suite is the perfect answer for this. With is plugin you can import products from any xml or csv to WooCommerce. This saves lot of time and minimises errors.
|
84 |
|
85 |
Woocommerce product import: You can use the import functionality to:
|
86 |
|
140 |
3. Premium Export Settings Screen
|
141 |
|
142 |
== Changelog ==
|
143 |
+
|
144 |
+
= 1.4.3 =
|
145 |
+
* Updates: Interface updated.
|
146 |
+
* Updates: Tested OK with WC 3.3.3
|
147 |
+
= 1.4.2 =
|
148 |
+
* Updates: Tested OK with WP 4.9.4 and WC 3.3.1
|
149 |
= 1.4.1 =
|
150 |
* Minor content updates
|
151 |
= 1.4.0 =
|
225 |
= 1.0.0 =
|
226 |
* Import /Export Woocommerce Products.
|
227 |
|
228 |
+
|
229 |
== Upgrade Notice ==
|
230 |
+
|
231 |
+
= 1.4.3 =
|
232 |
+
* Updates: Interface updated.
|
233 |
+
* Updates: Tested OK with WC 3.3.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
styles/wf-style.css
CHANGED
@@ -83,12 +83,15 @@
|
|
83 |
border-left-color: #46b450;
|
84 |
margin-top: 10px;
|
85 |
}
|
86 |
-
#datagrid { border-collapse: collapse; text-align: left; width:
|
87 |
#datagrid {
|
88 |
background: #fff; overflow: hidden;
|
89 |
}
|
90 |
-
#datagrid td{ padding: 3px
|
91 |
#datagrid th { padding: 3px 25px; color: #fff; background-color: #ccc; font-weight: bold;font-size: 15px; }
|
|
|
|
|
|
|
92 |
|
93 |
.woocommerce-message a.button-primary, .woocommerce-message button.button-primary{
|
94 |
background: #0085ba none repeat scroll 0 0 !important;
|
@@ -110,4 +113,120 @@
|
|
110 |
border-width: 1px;
|
111 |
margin: 15px 0;
|
112 |
padding: 0 0.6em;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
}
|
83 |
border-left-color: #46b450;
|
84 |
margin-top: 10px;
|
85 |
}
|
86 |
+
#datagrid { border-collapse: collapse; text-align: left; width: 90%; }
|
87 |
#datagrid {
|
88 |
background: #fff; overflow: hidden;
|
89 |
}
|
90 |
+
#datagrid td{ padding: 3px 25px; }
|
91 |
#datagrid th { padding: 3px 25px; color: #fff; background-color: #ccc; font-weight: bold;font-size: 15px; }
|
92 |
+
#datagrid td input {
|
93 |
+
margin-top: 4px;
|
94 |
+
}
|
95 |
|
96 |
.woocommerce-message a.button-primary, .woocommerce-message button.button-primary{
|
97 |
background: #0085ba none repeat scroll 0 0 !important;
|
113 |
border-width: 1px;
|
114 |
margin: 15px 0;
|
115 |
padding: 0 0.6em;
|
116 |
+
}
|
117 |
+
.clearfix{
|
118 |
+
clear: both;
|
119 |
+
}
|
120 |
+
.nav-tab-wrapper .nav-tab-premium {
|
121 |
+
background: #5ccc96;
|
122 |
+
color: white;
|
123 |
+
border-color: #5ccc96;
|
124 |
+
}
|
125 |
+
.pipe-main-box{
|
126 |
+
width: 100%;
|
127 |
+
}
|
128 |
+
.pipe-main-box input {
|
129 |
+
box-shadow: none;
|
130 |
+
padding: 7px 10px;
|
131 |
+
}
|
132 |
+
.pipe-view{
|
133 |
+
width:65%;
|
134 |
+
float: left;
|
135 |
+
}
|
136 |
+
.market-box{
|
137 |
+
width:30%;
|
138 |
+
float: right;
|
139 |
+
}
|
140 |
+
.bg-white {
|
141 |
+
background: #fff;
|
142 |
+
}
|
143 |
+
.p-20p {
|
144 |
+
padding: 20px;
|
145 |
+
}
|
146 |
+
.getting-started-video{
|
147 |
+
background: #fff;
|
148 |
+
padding: 5px;
|
149 |
+
margin-bottom: 23px;
|
150 |
+
}
|
151 |
+
.getting-started-video h2{
|
152 |
+
text-align: center;
|
153 |
+
padding: 5px;
|
154 |
+
}
|
155 |
+
|
156 |
+
.getting-started-video iframe{
|
157 |
+
margin:5px auto 25px auto;
|
158 |
+
display: block;
|
159 |
+
}
|
160 |
+
.pipe-premium-features{
|
161 |
+
background: #fff;
|
162 |
+
padding:5px;
|
163 |
+
}
|
164 |
+
.pipe-premium-features ul {
|
165 |
+
padding-left: 20px;
|
166 |
+
padding-right: 20px;
|
167 |
+
}
|
168 |
+
.pipe-premium-features li {
|
169 |
+
margin-bottom: 15px;
|
170 |
+
padding-left: 15px;
|
171 |
+
}
|
172 |
+
.pipe-premium-features li:before
|
173 |
+
{
|
174 |
+
font-family: dashicons;
|
175 |
+
text-decoration: inherit;
|
176 |
+
font-weight: 400;
|
177 |
+
font-style: normal;
|
178 |
+
vertical-align: top;
|
179 |
+
text-align: center;
|
180 |
+
content: "\f147";
|
181 |
+
margin-right: 10px;
|
182 |
+
margin-left: -25px;
|
183 |
+
font-size: 16px;
|
184 |
+
color: #3085bb;
|
185 |
+
}
|
186 |
+
.pipe-premium-features .button {
|
187 |
+
margin-bottom: 20px;
|
188 |
+
}
|
189 |
+
.pipe-premium-features .button-go-pro {
|
190 |
+
box-shadow: none;
|
191 |
+
border: 0;
|
192 |
+
text-shadow: none;
|
193 |
+
padding: 10px 15px;
|
194 |
+
height: auto;
|
195 |
+
font-size: 18px;
|
196 |
+
border-radius: 4px;
|
197 |
+
font-weight: 600;
|
198 |
+
background: #00cb95;
|
199 |
+
margin-top: 20px;
|
200 |
+
}
|
201 |
+
.pipe-premium-features .button-go-pro:hover,
|
202 |
+
.pipe-premium-features .button-go-pro:focus,
|
203 |
+
.pipe-premium-features .button-go-pro:active {
|
204 |
+
background: #00a378;
|
205 |
+
}
|
206 |
+
.pipe-premium-features .button-doc-demo {
|
207 |
+
border: 0;
|
208 |
+
background: #d8d8dc;
|
209 |
+
box-shadow: none;
|
210 |
+
padding: 10px 15px;
|
211 |
+
font-size: 15px;
|
212 |
+
height: auto;
|
213 |
+
margin-left: 10px;
|
214 |
+
margin-right: 10px;
|
215 |
+
margin-top: 10px;
|
216 |
+
}
|
217 |
+
.pipe-premium-features .button-doc-demo:hover,
|
218 |
+
.pipe-premium-features .button-doc-demo:focus,
|
219 |
+
.pipe-premium-features .button-doc-demo:active {
|
220 |
+
background: #dfdfe4;
|
221 |
+
}
|
222 |
+
.xa-pipe-rating-link{color:#ffc600;}
|
223 |
+
|
224 |
+
.pipe-review-widget{
|
225 |
+
background: #fff;
|
226 |
+
padding: 5px;
|
227 |
+
margin-top: 23px;
|
228 |
+
}
|
229 |
+
.pipe-review-widget p{
|
230 |
+
margin-right:5px;
|
231 |
+
margin-left:5px;
|
232 |
}
|