Import Export WordPress Users and WooCommerce Customers - Version 1.2.2

Version Description

  • Tested OK with WP 5.0.3 and WC 3.5.3
  • Bug Fix: User cannot import without email.
  • Translation added German and French - Thanks for contributing French translation Jean(@momo-fr).
Download this release

Release Info

Developer webtoffee
Plugin Icon 128x128 Import Export WordPress Users and WooCommerce Customers
Version 1.2.2
Comparing to
See all releases

Code changes from version 1.2.1 to 1.2.2

includes/class-wf-customerimpexpcsv-admin-screen.php CHANGED
@@ -19,7 +19,7 @@ class WF_CustomerImpExpCsv_Admin_Screen {
19
  */
20
  public function admin_notices() {
21
  if (!function_exists('mb_detect_encoding')) {
22
- echo '<div class="error"><p>' . __('User/Customer 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_customer_import_export') . '</p></div>';
23
  }
24
  }
25
 
@@ -27,8 +27,8 @@ class WF_CustomerImpExpCsv_Admin_Screen {
27
  * Admin Menu
28
  */
29
  public function admin_menu() {
30
- $page = add_users_page( __( 'User Import Export', 'wf_customer_import_export' ), __( 'User Import Export', 'wf_customer_import_export' ), 'list_users', 'hf_wordpress_customer_im_ex', array( $this, 'output' ) );
31
- $page1 = add_submenu_page( 'woocommerce', __( 'Customer Import Export', 'wf_customer_import_export' ), __( 'Customer Import Export', 'wf_customer_import_export' ), 'manage_woocommerce', 'hf_wordpress_customer_im_ex', array( $this, 'output' ) );
32
  }
33
 
34
  /**
19
  */
20
  public function admin_notices() {
21
  if (!function_exists('mb_detect_encoding')) {
22
+ echo '<div class="error"><p>' . __('User/Customer 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.', 'users-customers-import-export-for-wp-woocommerce') . '</p></div>';
23
  }
24
  }
25
 
27
  * Admin Menu
28
  */
29
  public function admin_menu() {
30
+ $page = add_users_page( __( 'User Import Export', 'users-customers-import-export-for-wp-woocommerce' ), __( 'User Import Export', 'users-customers-import-export-for-wp-woocommerce' ), 'list_users', 'hf_wordpress_customer_im_ex', array( $this, 'output' ) );
31
+ $page1 = add_submenu_page( 'woocommerce', __( 'Customer Import Export', 'users-customers-import-export-for-wp-woocommerce' ), __( 'Customer Import Export', 'users-customers-import-export-for-wp-woocommerce' ), 'manage_woocommerce', 'hf_wordpress_customer_im_ex', array( $this, 'output' ) );
32
  }
33
 
34
  /**
includes/class-wt-userimport-uninstall-feedback.php CHANGED
@@ -16,51 +16,51 @@ if (!class_exists('WT_UserImport_Uninstall_Feedback')) :
16
  $reasons = array(
17
  array(
18
  'id' => 'used-it',
19
- 'text' => __('Used it successfully. Don\'t need anymore.', 'wf_customer_import_export'),
20
  'type' => 'reviewhtml',
21
- 'placeholder' => __('Have used it successfully and aint in need of it anymore', 'wf_customer_import_export')
22
  ),
23
  array(
24
  'id' => 'could-not-understand',
25
- 'text' => __('I couldn\'t understand how to make it work', 'wf_customer_import_export'),
26
  'type' => 'textarea',
27
- 'placeholder' => __('Would you like us to assist you?', 'wf_customer_import_export')
28
  ),
29
  array(
30
  'id' => 'found-better-plugin',
31
- 'text' => __('I found a better plugin', 'wf_customer_import_export'),
32
  'type' => 'text',
33
- 'placeholder' => __('Which plugin?', 'wf_customer_import_export')
34
  ),
35
  array(
36
  'id' => 'not-have-that-feature',
37
- 'text' => __('The plugin is great, but I need specific feature that you don\'t support', 'wf_customer_import_export'),
38
  'type' => 'textarea',
39
- 'placeholder' => __('Could you tell us more about that feature?', 'wf_customer_import_export')
40
  ),
41
  array(
42
  'id' => 'is-not-working',
43
- 'text' => __('The plugin is not working', 'wf_customer_import_export'),
44
  'type' => 'textarea',
45
- 'placeholder' => __('Could you tell us a bit more whats not working?', 'wf_customer_import_export')
46
  ),
47
  array(
48
  'id' => 'looking-for-other',
49
- 'text' => __('It\'s not what I was looking for', 'wf_customer_import_export'),
50
  'type' => 'textarea',
51
  'placeholder' => 'Could you tell us a bit more?'
52
  ),
53
  array(
54
  'id' => 'did-not-work-as-expected',
55
- 'text' => __('The plugin didn\'t work as expected', 'wf_customer_import_export'),
56
  'type' => 'textarea',
57
- 'placeholder' => __('What did you expect?', 'wf_customer_import_export')
58
  ),
59
  array(
60
  'id' => 'other',
61
- 'text' => __('Other', 'wf_customer_import_export'),
62
  'type' => 'textarea',
63
- 'placeholder' => __('Could you tell us a bit more?', 'wf_customer_import_export')
64
  ),
65
  );
66
 
@@ -78,7 +78,7 @@ if (!class_exists('WT_UserImport_Uninstall_Feedback')) :
78
  <div class="userimport-modal" id="userimport-userimport-modal">
79
  <div class="userimport-modal-wrap">
80
  <div class="userimport-modal-header">
81
- <h3><?php _e('If you have a moment, please let us know why you are deactivating:', 'wf_customer_import_export'); ?></h3>
82
  </div>
83
  <div class="userimport-modal-body">
84
  <ul class="reasons">
@@ -90,9 +90,9 @@ if (!class_exists('WT_UserImport_Uninstall_Feedback')) :
90
  </ul>
91
  </div>
92
  <div class="userimport-modal-footer">
93
- <a href="#" class="dont-bother-me"><?php _e('I rather wouldn\'t say', 'wf_customer_import_export'); ?></a>
94
- <button class="button-primary userimport-model-submit"><?php _e('Submit & Deactivate', 'wf_customer_import_export'); ?></button>
95
- <button class="button-secondary userimport-model-cancel"><?php _e('Cancel', 'wf_customer_import_export'); ?></button>
96
  </div>
97
  </div>
98
  </div>
@@ -171,7 +171,7 @@ if (!class_exists('WT_UserImport_Uninstall_Feedback')) :
171
  inputPlaceholder = parent.data('placeholder');
172
 
173
  if ('reviewhtml' === inputType) {
174
- var reasonInputHtml = '<div class="reviewlink"><a href="#" target="_blank" class="review-and-deactivate"><?php _e('Deactivate and leave a review', 'wf_customer_import_export'); ?> <span class="wt-userimport-rating-link"> &#9733;&#9733;&#9733;&#9733;&#9733; </span></a></div>';
175
  } else {
176
  var reasonInputHtml = '<div class="reason-input">' + (('text' === inputType) ? '<input type="text" class="input-text" size="40" />' : '<textarea rows="5" cols="45"></textarea>') + '</div>';
177
  }
16
  $reasons = array(
17
  array(
18
  'id' => 'used-it',
19
+ 'text' => __('Used it successfully. Don\'t need anymore.', 'users-customers-import-export-for-wp-woocommerce'),
20
  'type' => 'reviewhtml',
21
+ 'placeholder' => __('Have used it successfully and aint in need of it anymore', 'users-customers-import-export-for-wp-woocommerce')
22
  ),
23
  array(
24
  'id' => 'could-not-understand',
25
+ 'text' => __('I couldn\'t understand how to make it work', 'users-customers-import-export-for-wp-woocommerce'),
26
  'type' => 'textarea',
27
+ 'placeholder' => __('Would you like us to assist you?', 'users-customers-import-export-for-wp-woocommerce')
28
  ),
29
  array(
30
  'id' => 'found-better-plugin',
31
+ 'text' => __('I found a better plugin', 'users-customers-import-export-for-wp-woocommerce'),
32
  'type' => 'text',
33
+ 'placeholder' => __('Which plugin?', 'users-customers-import-export-for-wp-woocommerce')
34
  ),
35
  array(
36
  'id' => 'not-have-that-feature',
37
+ 'text' => __('The plugin is great, but I need specific feature that you don\'t support', 'users-customers-import-export-for-wp-woocommerce'),
38
  'type' => 'textarea',
39
+ 'placeholder' => __('Could you tell us more about that feature?', 'users-customers-import-export-for-wp-woocommerce')
40
  ),
41
  array(
42
  'id' => 'is-not-working',
43
+ 'text' => __('The plugin is not working', 'users-customers-import-export-for-wp-woocommerce'),
44
  'type' => 'textarea',
45
+ 'placeholder' => __('Could you tell us a bit more whats not working?', 'users-customers-import-export-for-wp-woocommerce')
46
  ),
47
  array(
48
  'id' => 'looking-for-other',
49
+ 'text' => __('It\'s not what I was looking for', 'users-customers-import-export-for-wp-woocommerce'),
50
  'type' => 'textarea',
51
  'placeholder' => 'Could you tell us a bit more?'
52
  ),
53
  array(
54
  'id' => 'did-not-work-as-expected',
55
+ 'text' => __('The plugin didn\'t work as expected', 'users-customers-import-export-for-wp-woocommerce'),
56
  'type' => 'textarea',
57
+ 'placeholder' => __('What did you expect?', 'users-customers-import-export-for-wp-woocommerce')
58
  ),
59
  array(
60
  'id' => 'other',
61
+ 'text' => __('Other', 'users-customers-import-export-for-wp-woocommerce'),
62
  'type' => 'textarea',
63
+ 'placeholder' => __('Could you tell us a bit more?', 'users-customers-import-export-for-wp-woocommerce')
64
  ),
65
  );
66
 
78
  <div class="userimport-modal" id="userimport-userimport-modal">
79
  <div class="userimport-modal-wrap">
80
  <div class="userimport-modal-header">
81
+ <h3><?php _e('If you have a moment, please let us know why you are deactivating:', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
82
  </div>
83
  <div class="userimport-modal-body">
84
  <ul class="reasons">
90
  </ul>
91
  </div>
92
  <div class="userimport-modal-footer">
93
+ <a href="#" class="dont-bother-me"><?php _e('I rather wouldn\'t say', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
94
+ <button class="button-primary userimport-model-submit"><?php _e('Submit & Deactivate', 'users-customers-import-export-for-wp-woocommerce'); ?></button>
95
+ <button class="button-secondary userimport-model-cancel"><?php _e('Cancel', 'users-customers-import-export-for-wp-woocommerce'); ?></button>
96
  </div>
97
  </div>
98
  </div>
171
  inputPlaceholder = parent.data('placeholder');
172
 
173
  if ('reviewhtml' === inputType) {
174
+ var reasonInputHtml = '<div class="reviewlink"><a href="#" target="_blank" class="review-and-deactivate"><?php _e('Deactivate and leave a review', 'users-customers-import-export-for-wp-woocommerce'); ?> <span class="wt-userimport-rating-link"> &#9733;&#9733;&#9733;&#9733;&#9733; </span></a></div>';
175
  } else {
176
  var reasonInputHtml = '<div class="reason-input">' + (('text' === inputType) ? '<input type="text" class="input-text" size="40" />' : '<textarea rows="5" cols="45"></textarea>') + '</div>';
177
  }
includes/importer/class-wf-csv-parser.php CHANGED
@@ -82,7 +82,7 @@ class WF_CSV_Parser {
82
  $row = array();
83
 
84
  foreach ( $header as $key => $heading ) {
85
- $s_heading = $heading;
86
 
87
  // Check if this heading is being mapped to a different field
88
  if ( isset( $mapping[$s_heading] ) ) {
@@ -108,8 +108,8 @@ class WF_CSV_Parser {
108
  // Add the heading to the parsed data
109
  $row[$s_heading] = ( isset( $postmeta[$key] ) ) ? $this->format_data_from_csv( $postmeta[$key], $enc ) : '';
110
 
111
- if(!empty($eval_field[ $heading ]))
112
- $row[$s_heading] = $this->evaluate_field($row[$s_heading], $eval_field[$s_heading]);
113
 
114
  // Raw Headers stores the actual column name in the CSV
115
  $raw_headers[ $s_heading ] = $heading;
@@ -190,18 +190,18 @@ class WF_CSV_Parser {
190
  $row++;
191
  if ( $row <= $record_offset ) {
192
  if($WF_CSV_User_Import->log)
193
- $WF_CSV_User_Import->log->add( 'user-csv-import', sprintf( __( '> Row %s - skipped due to record offset.', 'wf_customer_import_export' ), $row ) );
194
  unset($item);
195
  return;
196
  }
197
  if ( empty($item['user_email']) ) {
198
  if($WF_CSV_User_Import->log)
199
- $WF_CSV_User_Import->log->add( 'user-csv-import', sprintf( __( '> Row %s - skipped: cannot insert user without email.', 'wf_customer_import_export' ), $row ) );
200
  unset($item);
201
  return;
202
  }elseif(!is_email($item['user_email'])){
203
  if($WF_CSV_User_Import->log)
204
- $WF_CSV_User_Import->log->add( 'user-csv-import', sprintf( __( '> Row %s - skipped: Email is not valid.', 'wf_customer_import_export' ), $row ) );
205
  unset($item);
206
  return;
207
  }
82
  $row = array();
83
 
84
  foreach ( $header as $key => $heading ) {
85
+ $s_heading = strtolower($heading);
86
 
87
  // Check if this heading is being mapped to a different field
88
  if ( isset( $mapping[$s_heading] ) ) {
108
  // Add the heading to the parsed data
109
  $row[$s_heading] = ( isset( $postmeta[$key] ) ) ? $this->format_data_from_csv( $postmeta[$key], $enc ) : '';
110
 
111
+ if(!empty($eval_field[strtolower($heading)]))
112
+ $row[$s_heading] = $this->evaluate_field($row[$s_heading], $eval_field[strtolower($s_heading)]);
113
 
114
  // Raw Headers stores the actual column name in the CSV
115
  $raw_headers[ $s_heading ] = $heading;
190
  $row++;
191
  if ( $row <= $record_offset ) {
192
  if($WF_CSV_User_Import->log)
193
+ $WF_CSV_User_Import->log->add( 'user-csv-import', sprintf( __( '> Row %s - skipped due to record offset.', 'users-customers-import-export-for-wp-woocommerce' ), $row ) );
194
  unset($item);
195
  return;
196
  }
197
  if ( empty($item['user_email']) ) {
198
  if($WF_CSV_User_Import->log)
199
+ $WF_CSV_User_Import->log->add( 'user-csv-import', sprintf( __( '> Row %s - skipped: cannot insert user without email.', 'users-customers-import-export-for-wp-woocommerce' ), $row ) );
200
  unset($item);
201
  return;
202
  }elseif(!is_email($item['user_email'])){
203
  if($WF_CSV_User_Import->log)
204
+ $WF_CSV_User_Import->log->add( 'user-csv-import', sprintf( __( '> Row %s - skipped: Email is not valid.', 'users-customers-import-export-for-wp-woocommerce' ), $row ) );
205
  unset($item);
206
  return;
207
  }
includes/importer/class-wf-customerimpexpcsv-customer-import.php CHANGED
@@ -114,7 +114,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
114
  if (!empty($_GET['clearmapping']) || $this->handle_upload())
115
  $this->import_options();
116
  else
117
- _e('Error with handle_upload!', 'wf_customer_import_export');
118
  break;
119
  case 2 :
120
  $this->header();
@@ -139,10 +139,10 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
139
  <thead>
140
  <tr>
141
  <th class="status">&nbsp;</th>
142
- <th class="row"><?php _e('Row', 'wf_customer_import_export'); ?></th>
143
- <th><?php _e('User ID', 'wf_customer_import_export'); ?></th>
144
- <th><?php _e('User Status', 'wf_customer_import_export'); ?></th>
145
- <th class="reason"><?php _e('Status Msg', 'wf_customer_import_export'); ?></th>
146
  </tr>
147
  </thead>
148
  <tfoot>
@@ -211,7 +211,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
211
  } catch (err) {}
212
 
213
  } else {
214
- $('#import-progress tbody').append('<tr class="error"><td class="status" colspan="5">' + '<?php _e('AJAX Error', 'wf_customer_import_export'); ?>' + '</td></tr>');
215
  }
216
 
217
  var w = $(window);
@@ -304,7 +304,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
304
  </script>
305
  <?php
306
  } else {
307
- echo '<p class="error">' . __('Error finding uploaded file!', 'wf_customer_import_export') . '</p>';
308
  }
309
  break;
310
  case 3 :
@@ -371,19 +371,19 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
371
  $this->processed_terms = isset($_POST['processed_terms']) ? $_POST['processed_terms'] : array();
372
  $this->processed_posts = isset($_POST['processed_posts']) ? $_POST['processed_posts'] : array();
373
 
374
- _e('Step 1...', 'wf_customer_import_export') . ' ';
375
 
376
  wp_defer_term_counting(true);
377
  wp_defer_comment_counting(true);
378
 
379
- _e('Step 2...', 'wf_customer_import_export') . ' ';
380
 
381
  echo 'Step 3...' . ' '; // Easter egg
382
 
383
- _e('Finalizing...', 'wf_customer_import_export') . ' ';
384
 
385
  // SUCCESS
386
- _e('Finished. Import complete.', 'wf_customer_import_export');
387
 
388
  $this->import_end();
389
  exit;
@@ -453,7 +453,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
453
  if ($mapping_from_db && is_array($mapping_from_db) && count($mapping_from_db) == 2 && empty($_GET['clearmapping'])) {
454
  $reset_action = 'admin.php?clearmapping=1&amp;profile=' . $this->profile . '&amp;import=' . $this->import_page . '&amp;step=1&amp;merge=' . (!empty($_GET['merge']) ? 1 : 0 ) . '&amp;file_url=' . $this->file_url . '&amp;delimiter=' . $this->delimiter . '&amp;merge_empty_cells=' . $this->merge_empty_cells. '&amp;send_mail=' . $this->send_mail . '&amp;file_id=' . $this->id . '';
455
  $reset_action = esc_attr(wp_nonce_url($reset_action, 'import-upload'));
456
- echo '<h3>' . __('Columns are pre-selected using the Mapping file: "<b style="color:gray">' . $this->profile . '</b>". <a href="' . $reset_action . '"> Delete</a> this mapping file.', 'wf_customer_import_export') . '</h3>';
457
  $saved_mapping = $mapping_from_db[0];
458
  $saved_evaluation = $mapping_from_db[1];
459
  }
@@ -472,7 +472,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
472
  wp_suspend_cache_invalidation(true);
473
  if ($this->log) {
474
  $this->hf_log_data_change('user-csv-import', '---');
475
- $this->hf_log_data_change('user-csv-import', __('Processing users.', 'wf_customer_import_export'));
476
  }
477
  $merging = 1;
478
  $record_offset = 0;
@@ -490,7 +490,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
490
  $i++;
491
  }
492
  if ($this->log)
493
- $this->hf_log_data_change('user-csv-import', __('Finished processing Users.', 'wf_customer_import_export'));
494
  wp_suspend_cache_invalidation(false);
495
  }
496
 
@@ -513,14 +513,14 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
513
  }
514
  if ($this->log) {
515
  $this->hf_log_data_change('user-csv-import', '---[ New Import ] PHP Memory: ' . $memory . ', WP Memory: ' . $wp_memory);
516
- $this->hf_log_data_change('user-csv-import', __('Parsing products CSV.', 'wf_customer_import_export'));
517
  }
518
  $this->parser = new WF_CSV_Parser('user');
519
 
520
 
521
  list( $this->parsed_data, $this->raw_headers, $position ) = $this->parser->parse_data($file, $this->delimiter, $mapping, $start_pos, $end_pos, $eval_field);
522
  if ($this->log)
523
- $this->hf_log_data_change('user-csv-import', __('Finished parsing products CSV.', 'wf_customer_import_export'));
524
 
525
  unset($import_data);
526
 
@@ -560,7 +560,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
560
  $file = wp_import_handle_upload();
561
 
562
  if (isset($file['error'])) {
563
- echo '<p><strong>' . __('Sorry, there has been an error.', 'wf_customer_import_export') . '</strong><br />';
564
  echo esc_html($file['error']) . '</p>';
565
  return false;
566
  }
@@ -575,7 +575,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
575
  return true;
576
  } else {
577
 
578
- echo '<p><strong>' . __('Sorry, there has been an error.', 'wf_customer_import_export') . '</strong></p>';
579
  return false;
580
  }
581
  }
@@ -597,15 +597,15 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
597
  $dry_run = 0; //mockup import and check weather the users can be imported without fail
598
  if ($this->log) {
599
  $this->hf_log_data_change('user-csv-import', '---');
600
- $this->hf_log_data_change('user-csv-import', __('Processing users.', 'wf_customer_import_export'));
601
  }
602
 
603
  if (empty($post['user_details']['user_email'])) {
604
- $this->add_import_result('skipped', __('Cannot insert user without email', 'wf_customer_import_export'), 1, 1, 1);
605
  unset($post);
606
  return;
607
  } elseif (!is_email($post['user_details']['user_email'])) {
608
- $this->add_import_result('skipped', __('skipped: Email is not valid.', 'wf_customer_import_export'), 1, $post['user_details']['user_email'], 1);
609
  unset($post);
610
  return;
611
  }
@@ -619,9 +619,9 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
619
  $usr_msg = 'User already exists.';
620
  $user_info = get_userdata($user_id);
621
  $user_string = sprintf('<a href="%s">%s</a>', get_edit_user_link($user_id), $user_info->first_name);
622
- $this->add_import_result('skipped', __($usr_msg, 'wf_customer_import_export'),$user_id , $user_string, $user_id);
623
  if ($this->log)
624
- $this->hf_log_data_change('user-csv-import', sprintf(__('> &#8220;%s&#8221;' . $usr_msg, 'wf_customer_import_export'), $user_id), true);
625
  unset($post);
626
  return;
627
  } else{
@@ -629,17 +629,17 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
629
  $new_added = true;
630
  if (is_wp_error($user_id)) {
631
  $this->errored++;
632
- $this->add_import_result('failed', __($user_id->get_error_message(), 'wf_customer_import_export'), 0, 'failed', 1);
633
  if ($this->log)
634
- $this->hf_log_data_change('user-csv-import', sprintf(__('> Error inserting %s: %s', 'wf_customer_import_export'), 1, $user_id->get_error_message()), true);
635
  $skipped++;
636
  unset($post);
637
  return;
638
  } elseif (empty($user_id)) {
639
  $this->errored++;
640
  if ($this->log)
641
- $this->hf_log_data_change('user-csv-import', sprintf(__('An error occurred with the customer information provided.', 'wf_customer_import_export')));
642
- $this->add_import_result('skipped', __('An error occurred with the customer information provided.', 'wf_customer_import_export'), 0, 'failed', 1);
643
  $skipped++;
644
  unset($post);
645
  return;
@@ -652,13 +652,13 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
652
  $user_string = sprintf('<a href="%s">%s</a>', get_edit_user_link($user_id), $user_info->first_name);
653
 
654
 
655
- $this->add_import_result('imported', __($out_msg, 'wf_customer_import_export'), $user_id , $user_string, $user_id);
656
  if ($this->log)
657
- $this->hf_log_data_change('user-csv-import', sprintf(__('> &#8220;%s&#8221;' . $out_msg, 'wf_customer_import_export'), $user_id), true);
658
  $this->imported++;
659
  if ($this->log) {
660
- $this->hf_log_data_change('user-csv-import', sprintf(__('> Finished importing user %s', 'wf_customer_import_export'), $dry_run ? "" : $user_id ));
661
- $this->hf_log_data_change('user-csv-import', __('Finished processing users.', 'wf_customer_import_export'));
662
  }
663
 
664
  unset($post);
@@ -764,7 +764,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
764
  }
765
  } else {
766
 
767
- $found_customer = new WP_Error('hf_invalid_customer', sprintf(__('User could not be created without Email.', 'wf_customer_import_export'), $customer_id));
768
  }
769
 
770
  return $found_customer;
@@ -797,7 +797,7 @@ class WF_CustomerImpExpCsv_Customer_Import extends WP_Importer {
797
  // Display import page title
798
  public function header() {
799
  echo '<div><div class="icon32" id="icon-woocommerce-importer"><br></div>';
800
- echo '<h2>' . ( empty($_GET['merge']) ? __('Import', 'wf_customer_import_export') : __('Merge Users', 'wf_customer_import_export') ) . '</h2>';
801
  }
802
 
803
  // Close div.wrap
114
  if (!empty($_GET['clearmapping']) || $this->handle_upload())
115
  $this->import_options();
116
  else
117
+ _e('Error with handle_upload!', 'users-customers-import-export-for-wp-woocommerce');
118
  break;
119
  case 2 :
120
  $this->header();
139
  <thead>
140
  <tr>
141
  <th class="status">&nbsp;</th>
142
+ <th class="row"><?php _e('Row', 'users-customers-import-export-for-wp-woocommerce'); ?></th>
143
+ <th><?php _e('User ID', 'users-customers-import-export-for-wp-woocommerce'); ?></th>
144
+ <th><?php _e('User Status', 'users-customers-import-export-for-wp-woocommerce'); ?></th>
145
+ <th class="reason"><?php _e('Status Msg', 'users-customers-import-export-for-wp-woocommerce'); ?></th>
146
  </tr>
147
  </thead>
148
  <tfoot>
211
  } catch (err) {}
212
 
213
  } else {
214
+ $('#import-progress tbody').append('<tr class="error"><td class="status" colspan="5">' + '<?php _e('AJAX Error', 'users-customers-import-export-for-wp-woocommerce'); ?>' + '</td></tr>');
215
  }
216
 
217
  var w = $(window);
304
  </script>
305
  <?php
306
  } else {
307
+ echo '<p class="error">' . __('Error finding uploaded file!', 'users-customers-import-export-for-wp-woocommerce') . '</p>';
308
  }
309
  break;
310
  case 3 :
371
  $this->processed_terms = isset($_POST['processed_terms']) ? $_POST['processed_terms'] : array();
372
  $this->processed_posts = isset($_POST['processed_posts']) ? $_POST['processed_posts'] : array();
373
 
374
+ _e('Step 1...', 'users-customers-import-export-for-wp-woocommerce') . ' ';
375
 
376
  wp_defer_term_counting(true);
377
  wp_defer_comment_counting(true);
378
 
379
+ _e('Step 2...', 'users-customers-import-export-for-wp-woocommerce') . ' ';
380
 
381
  echo 'Step 3...' . ' '; // Easter egg
382
 
383
+ _e('Finalizing...', 'users-customers-import-export-for-wp-woocommerce') . ' ';
384
 
385
  // SUCCESS
386
+ _e('Finished. Import complete.', 'users-customers-import-export-for-wp-woocommerce');
387
 
388
  $this->import_end();
389
  exit;
453
  if ($mapping_from_db && is_array($mapping_from_db) && count($mapping_from_db) == 2 && empty($_GET['clearmapping'])) {
454
  $reset_action = 'admin.php?clearmapping=1&amp;profile=' . $this->profile . '&amp;import=' . $this->import_page . '&amp;step=1&amp;merge=' . (!empty($_GET['merge']) ? 1 : 0 ) . '&amp;file_url=' . $this->file_url . '&amp;delimiter=' . $this->delimiter . '&amp;merge_empty_cells=' . $this->merge_empty_cells. '&amp;send_mail=' . $this->send_mail . '&amp;file_id=' . $this->id . '';
455
  $reset_action = esc_attr(wp_nonce_url($reset_action, 'import-upload'));
456
+ echo '<h3>' . __('Columns are pre-selected using the Mapping file: "<b style="color:gray">' . $this->profile . '</b>". <a href="' . $reset_action . '"> Delete</a> this mapping file.', 'users-customers-import-export-for-wp-woocommerce') . '</h3>';
457
  $saved_mapping = $mapping_from_db[0];
458
  $saved_evaluation = $mapping_from_db[1];
459
  }
472
  wp_suspend_cache_invalidation(true);
473
  if ($this->log) {
474
  $this->hf_log_data_change('user-csv-import', '---');
475
+ $this->hf_log_data_change('user-csv-import', __('Processing users.', 'users-customers-import-export-for-wp-woocommerce'));
476
  }
477
  $merging = 1;
478
  $record_offset = 0;
490
  $i++;
491
  }
492
  if ($this->log)
493
+ $this->hf_log_data_change('user-csv-import', __('Finished processing Users.', 'users-customers-import-export-for-wp-woocommerce'));
494
  wp_suspend_cache_invalidation(false);
495
  }
496
 
513
  }
514
  if ($this->log) {
515
  $this->hf_log_data_change('user-csv-import', '---[ New Import ] PHP Memory: ' . $memory . ', WP Memory: ' . $wp_memory);
516
+ $this->hf_log_data_change('user-csv-import', __('Parsing products CSV.', 'users-customers-import-export-for-wp-woocommerce'));
517
  }
518
  $this->parser = new WF_CSV_Parser('user');
519
 
520
 
521
  list( $this->parsed_data, $this->raw_headers, $position ) = $this->parser->parse_data($file, $this->delimiter, $mapping, $start_pos, $end_pos, $eval_field);
522
  if ($this->log)
523
+ $this->hf_log_data_change('user-csv-import', __('Finished parsing products CSV.', 'users-customers-import-export-for-wp-woocommerce'));
524
 
525
  unset($import_data);
526
 
560
  $file = wp_import_handle_upload();
561
 
562
  if (isset($file['error'])) {
563
+ echo '<p><strong>' . __('Sorry, there has been an error.', 'users-customers-import-export-for-wp-woocommerce') . '</strong><br />';
564
  echo esc_html($file['error']) . '</p>';
565
  return false;
566
  }
575
  return true;
576
  } else {
577
 
578
+ echo '<p><strong>' . __('Sorry, there has been an error.', 'users-customers-import-export-for-wp-woocommerce') . '</strong></p>';
579
  return false;
580
  }
581
  }
597
  $dry_run = 0; //mockup import and check weather the users can be imported without fail
598
  if ($this->log) {
599
  $this->hf_log_data_change('user-csv-import', '---');
600
+ $this->hf_log_data_change('user-csv-import', __('Processing users.', 'users-customers-import-export-for-wp-woocommerce'));
601
  }
602
 
603
  if (empty($post['user_details']['user_email'])) {
604
+ $this->add_import_result('skipped', __('Cannot insert user without email', 'users-customers-import-export-for-wp-woocommerce'), 1, 1, 1);
605
  unset($post);
606
  return;
607
  } elseif (!is_email($post['user_details']['user_email'])) {
608
+ $this->add_import_result('skipped', __('skipped: Email is not valid.', 'users-customers-import-export-for-wp-woocommerce'), 1, $post['user_details']['user_email'], 1);
609
  unset($post);
610
  return;
611
  }
619
  $usr_msg = 'User already exists.';
620
  $user_info = get_userdata($user_id);
621
  $user_string = sprintf('<a href="%s">%s</a>', get_edit_user_link($user_id), $user_info->first_name);
622
+ $this->add_import_result('skipped', __($usr_msg, 'users-customers-import-export-for-wp-woocommerce'),$user_id , $user_string, $user_id);
623
  if ($this->log)
624
+ $this->hf_log_data_change('user-csv-import', sprintf(__('> &#8220;%s&#8221;' . $usr_msg, 'users-customers-import-export-for-wp-woocommerce'), $user_id), true);
625
  unset($post);
626
  return;
627
  } else{
629
  $new_added = true;
630
  if (is_wp_error($user_id)) {
631
  $this->errored++;
632
+ $this->add_import_result('failed', __($user_id->get_error_message(), 'users-customers-import-export-for-wp-woocommerce'), 0, 'failed', 1);
633
  if ($this->log)
634
+ $this->hf_log_data_change('user-csv-import', sprintf(__('> Error inserting %s: %s', 'users-customers-import-export-for-wp-woocommerce'), 1, $user_id->get_error_message()), true);
635
  $skipped++;
636
  unset($post);
637
  return;
638
  } elseif (empty($user_id)) {
639
  $this->errored++;
640
  if ($this->log)
641
+ $this->hf_log_data_change('user-csv-import', sprintf(__('An error occurred with the customer information provided.', 'users-customers-import-export-for-wp-woocommerce')));
642
+ $this->add_import_result('skipped', __('An error occurred with the customer information provided.', 'users-customers-import-export-for-wp-woocommerce'), 0, 'failed', 1);
643
  $skipped++;
644
  unset($post);
645
  return;
652
  $user_string = sprintf('<a href="%s">%s</a>', get_edit_user_link($user_id), $user_info->first_name);
653
 
654
 
655
+ $this->add_import_result('imported', __($out_msg, 'users-customers-import-export-for-wp-woocommerce'), $user_id , $user_string, $user_id);
656
  if ($this->log)
657
+ $this->hf_log_data_change('user-csv-import', sprintf(__('> &#8220;%s&#8221;' . $out_msg, 'users-customers-import-export-for-wp-woocommerce'), $user_id), true);
658
  $this->imported++;
659
  if ($this->log) {
660
+ $this->hf_log_data_change('user-csv-import', sprintf(__('> Finished importing user %s', 'users-customers-import-export-for-wp-woocommerce'), $dry_run ? "" : $user_id ));
661
+ $this->hf_log_data_change('user-csv-import', __('Finished processing users.', 'users-customers-import-export-for-wp-woocommerce'));
662
  }
663
 
664
  unset($post);
764
  }
765
  } else {
766
 
767
+ $found_customer = new WP_Error('hf_invalid_customer', sprintf(__('User could not be created without Email.', 'users-customers-import-export-for-wp-woocommerce'), $customer_id));
768
  }
769
 
770
  return $found_customer;
797
  // Display import page title
798
  public function header() {
799
  echo '<div><div class="icon32" id="icon-woocommerce-importer"><br></div>';
800
+ echo '<h2>' . ( empty($_GET['merge']) ? __('Import', 'users-customers-import-export-for-wp-woocommerce') : __('Merge Users', 'users-customers-import-export-for-wp-woocommerce') ) . '</h2>';
801
  }
802
 
803
  // Close div.wrap
includes/importer/views/html-wf-import-greeting.php CHANGED
@@ -2,8 +2,8 @@
2
  <div class=" woocommerce">
3
  <div class="icon32" id="icon-woocommerce-importer"><br></div>
4
  <h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
5
- <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex') ?>" class="nav-tab "><?php _e('User/Customer Export', 'wf_customer_import_export'); ?></a>
6
- <a href="<?php echo admin_url('admin.php?import=wordpress_hf_user_csv') ?>" class="nav-tab nav-tab-active"><?php _e('User/Customer Import', 'wf_customer_import_export'); ?></a>
7
  <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&tab=help'); ?>" class="nav-tab"><?php _e('Help', 'wf_csv_import_export'); ?></a>
8
  <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
9
  </h2>
@@ -13,10 +13,10 @@
13
 
14
  </div>
15
  <div class="tool-box bg-white p-20p pipe-view">
16
- <h3 class="title"><?php _e('Import Users in CSV Format:', 'wf_customer_import_export'); ?></h3>
17
- <p><?php _e('Import Users in CSV format from your computer.You can import users/customers (in CSV format) in to the shop.', 'wf_customer_import_export'); ?></p>
18
  <?php if (!empty($upload_dir['error'])) : ?>
19
- <div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'wf_customer_import_export'); ?></p>
20
  <p><strong><?php echo $upload_dir['error']; ?></strong></p></div>
21
 
22
  <?php else : ?>
@@ -25,7 +25,7 @@
25
  <tbody>
26
  <tr>
27
  <th>
28
- <label for="upload"><?php _e('Select a file from your computer', 'wf_customer_import_export'); ?></label>
29
  </th>
30
  <td>
31
  <input type="file" id="upload" name="import" size="25" />
2
  <div class=" woocommerce">
3
  <div class="icon32" id="icon-woocommerce-importer"><br></div>
4
  <h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
5
+ <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex') ?>" class="nav-tab "><?php _e('User/Customer Export', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
6
+ <a href="<?php echo admin_url('admin.php?import=wordpress_hf_user_csv') ?>" class="nav-tab nav-tab-active"><?php _e('User/Customer Import', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
7
  <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&tab=help'); ?>" class="nav-tab"><?php _e('Help', 'wf_csv_import_export'); ?></a>
8
  <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
9
  </h2>
13
 
14
  </div>
15
  <div class="tool-box bg-white p-20p pipe-view">
16
+ <h3 class="title"><?php _e('Import Users in CSV Format:', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
17
+ <p><?php _e('Import Users in CSV format from your computer.You can import users/customers (in CSV format) in to the shop.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
18
  <?php if (!empty($upload_dir['error'])) : ?>
19
+ <div class="error"><p><?php _e('Before you can upload your import file, you will need to fix the following error:', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
20
  <p><strong><?php echo $upload_dir['error']; ?></strong></p></div>
21
 
22
  <?php else : ?>
25
  <tbody>
26
  <tr>
27
  <th>
28
+ <label for="upload"><?php _e('Select a file from your computer', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
29
  </th>
30
  <td>
31
  <input type="file" id="upload" name="import" size="25" />
includes/importer/views/html-wf-import-options.php CHANGED
@@ -5,7 +5,7 @@
5
  <input type="hidden" name="import_url" value="<?php echo $this->file_url; ?>" />
6
  <?php endif; ?>
7
  <p class="submit">
8
- <input style="display:none" type="submit" class="button button-primary" value="<?php esc_attr_e('Submit', 'wf_customer_import_export'); ?>" />
9
  </p>
10
  </form>
11
  <script type="text/javascript">
5
  <input type="hidden" name="import_url" value="<?php echo $this->file_url; ?>" />
6
  <?php endif; ?>
7
  <p class="submit">
8
+ <input style="display:none" type="submit" class="button button-primary" value="<?php esc_attr_e('Submit', 'users-customers-import-export-for-wp-woocommerce'); ?>" />
9
  </p>
10
  </form>
11
  <script type="text/javascript">
includes/importer/views/market.php CHANGED
@@ -86,30 +86,30 @@ if ( ! defined( 'ABSPATH' ) ) {
86
  </style>
87
  <div class="wf_customer_import_export market-box table-box-main">
88
  <div class="pipe-premium-features">
89
- <center><a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-primary button-go-pro"><?php _e('Upgrade to Premium Version', 'wf_customer_import_export'); ?></a></center>
90
  <span>
91
  <ul>
92
- <li style='color:red;'><strong><?php _e('Your Business is precious! Go Premium!','wf_customer_import_export'); ?></strong></li>
93
 
94
- <li><?php _e('HikeForce Import Export Users Plugin Premium version helps you to seamlessly import/export Customer details into your Woocommerce Store.', 'wf_customer_import_export'); ?></li>
95
 
96
- <li><?php _e('Export/Import WooCommerce Customer details into a CSV file.', 'wf_customer_import_export'); ?><strong><?php _e('( Basic version supports only WordPress User details )', 'wf_customer_import_export'); ?></strong></li>
97
- <li><?php _e('Various Filter options for exporting Customers.', 'wf_customer_import_export'); ?></li>
98
- <li><?php _e('Map and Transform fields while Importing Customers.', 'wf_customer_import_export'); ?></li>
99
- <li><?php _e('Change values while importing Customers using Evaluation Fields.', 'wf_customer_import_export'); ?></li>
100
- <li><?php _e('Choice to Update or Skip existing imported Customers.', 'wf_customer_import_export'); ?></li>
101
- <li><?php _e('Choice to Send or Skip Emails for newly imported Customers.', 'wf_customer_import_export'); ?></li>
102
- <li><?php _e('Import/Export file from/to a remote server via FTP in Scheduled time interval with Cron Job.', 'wf_customer_import_export'); ?></li>
103
- <li><?php _e('Excellent Support for setting it up!', 'wf_customer_import_export'); ?></li>
104
  </ul>
105
  </span>
106
  <center>
107
 
108
- <a href="https://www.webtoffee.com/category/documentation/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-doc-demo"><?php _e('Documentation', 'wf_customer_import_export'); ?></a></center>
109
  </div>
110
  <div class="pipe-review-widget">
111
  <?php
112
- echo sprintf(__('<div class=""><p><i>If you like the plugin please leave us a %1$s review!</i><p></div>', 'wf_customer_import_export'), '<a href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews?rate=5#new-post" target="_blank" class="xa-pipe-rating-link" data-reviewed="' . esc_attr__('Thanks for the review.', 'wf_customer_import_export') . '">&#9733;&#9733;&#9733;&#9733;&#9733;</a>');
113
  ?>
114
  </div>
115
  </div>
86
  </style>
87
  <div class="wf_customer_import_export market-box table-box-main">
88
  <div class="pipe-premium-features">
89
+ <center><a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-primary button-go-pro"><?php _e('Upgrade to Premium Version', 'users-customers-import-export-for-wp-woocommerce'); ?></a></center>
90
  <span>
91
  <ul>
92
+ <li style='color:red;'><strong><?php _e('Your Business is precious! Go Premium!','users-customers-import-export-for-wp-woocommerce'); ?></strong></li>
93
 
94
+ <li><?php _e('HikeForce Import Export Users Plugin Premium version helps you to seamlessly import/export Customer details into your Woocommerce Store.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
95
 
96
+ <li><?php _e('Export/Import WooCommerce Customer details into a CSV file.', 'users-customers-import-export-for-wp-woocommerce'); ?><strong><?php _e('( Basic version supports only WordPress User details )', 'users-customers-import-export-for-wp-woocommerce'); ?></strong></li>
97
+ <li><?php _e('Various Filter options for exporting Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
98
+ <li><?php _e('Map and Transform fields while Importing Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
99
+ <li><?php _e('Change values while importing Customers using Evaluation Fields.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
100
+ <li><?php _e('Choice to Update or Skip existing imported Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
101
+ <li><?php _e('Choice to Send or Skip Emails for newly imported Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
102
+ <li><?php _e('Import/Export file from/to a remote server via FTP in Scheduled time interval with Cron Job.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
103
+ <li><?php _e('Excellent Support for setting it up!', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
104
  </ul>
105
  </span>
106
  <center>
107
 
108
+ <a href="https://www.webtoffee.com/category/documentation/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-doc-demo"><?php _e('Documentation', 'users-customers-import-export-for-wp-woocommerce'); ?></a></center>
109
  </div>
110
  <div class="pipe-review-widget">
111
  <?php
112
+ echo sprintf(__('<div class=""><p><i>If you like the plugin please leave us a %1$s review!</i><p></div>', 'users-customers-import-export-for-wp-woocommerce'), '<a href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews?rate=5#new-post" target="_blank" class="xa-pipe-rating-link" data-reviewed="' . esc_attr__('Thanks for the review.', 'users-customers-import-export-for-wp-woocommerce') . '">&#9733;&#9733;&#9733;&#9733;&#9733;</a>');
113
  ?>
114
  </div>
115
  </div>
includes/views/export/html-wf-export-customers.php CHANGED
@@ -1,17 +1,17 @@
1
 
2
 
3
  <div class="tool-box bg-white p-20p pipe-view">
4
- <h3 class="title"><?php _e('Export Users in CSV Format:', 'wf_customer_import_export'); ?></h3>
5
- <p><?php _e('Export and download your Users in CSV format. This file can be used to import users back into your Website.', 'wf_customer_import_export'); ?></p>
6
  <form action="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&action=export'); ?>" method="post">
7
 
8
  <table class="form-table">
9
  <tr>
10
  <th>
11
- <label for="v_user_roles"><?php _e('User Roles', 'wf_customer_import_export'); ?></label>
12
  </th>
13
  <td>
14
- <select id="v_user_roles" name="user_roles[]" data-placeholder="<?php _e('All Roles', 'wf_customer_import_export'); ?>" class="wc-enhanced-select" multiple="multiple">
15
 
16
  <?php
17
  global $wp_roles;
@@ -22,25 +22,25 @@
22
  ?>
23
  </select>
24
 
25
- <p style="font-size: 12px"><?php _e('Users with these roles will be exported.', 'wf_customer_import_export'); ?></p>
26
  </td>
27
  </tr>
28
  <tr>
29
  <th>
30
- <label for="v_offset"><?php _e('Offset', 'wf_customer_import_export'); ?></label>
31
  </th>
32
  <td>
33
- <input type="text" name="offset" id="v_offset" placeholder="<?php _e('0', 'wf_customer_import_export'); ?>" class="input-text" />
34
- <p style="font-size: 12px"><?php _e('The number of users to skip before returning.', 'wf_customer_import_export'); ?></p>
35
  </td>
36
  </tr>
37
  <tr>
38
  <th>
39
- <label for="v_limit"><?php _e('Limit', 'wf_customer_import_export'); ?></label>
40
  </th>
41
  <td>
42
- <input type="text" name="limit" id="v_limit" placeholder="<?php _e('Unlimited', 'wf_customer_import_export'); ?>" class="input-text" />
43
- <p style="font-size: 12px"><?php _e('The number of users to return.', 'wf_customer_import_export'); ?></p>
44
  </td>
45
  </tr>
46
 
@@ -50,14 +50,14 @@
50
 
51
  <tr>
52
  <th>
53
- <label for="v_columns"><?php _e('Columns', 'wf_customer_import_export'); ?></label>
54
  </th>
55
  <table id="datagrid">
56
  <th style="text-align: left;">
57
- <label for="v_columns"><?php _e('Column', 'wf_customer_import_export'); ?></label>
58
  </th>
59
  <th style="text-align: left;">
60
- <label for="v_columns_name"><?php _e('Column Name', 'wf_customer_import_export'); ?></label>
61
  </th>
62
  <?php
63
  ?>
@@ -67,7 +67,7 @@
67
  <tr>
68
  <td>
69
  <input name= "columns[<?php echo $pkey; ?>]" type="checkbox" value="<?php echo $pkey; ?>" checked>
70
- <label for="columns[<?php echo $pkey; ?>]"><?php _e($pcolumn, 'wf_customer_import_export'); ?></label>
71
  </td>
72
  <td>
73
  <input type="text" name="columns_name[<?php echo $pkey; ?>]" value="<?php echo $pkey; ?>" class="input-text" />
@@ -84,7 +84,7 @@
84
 
85
 
86
  </table>
87
- <p class="submit"><input type="submit" class="button button-primary" value="<?php _e('Export Users', 'wf_customer_import_export'); ?>" /></p>
88
  </form>
89
  </div>
90
 
1
 
2
 
3
  <div class="tool-box bg-white p-20p pipe-view">
4
+ <h3 class="title"><?php _e('Export Users in CSV Format:', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
5
+ <p><?php _e('Export and download your Users in CSV format. This file can be used to import users back into your Website.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
6
  <form action="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&action=export'); ?>" method="post">
7
 
8
  <table class="form-table">
9
  <tr>
10
  <th>
11
+ <label for="v_user_roles"><?php _e('User Roles', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
12
  </th>
13
  <td>
14
+ <select id="v_user_roles" name="user_roles[]" data-placeholder="<?php _e('All Roles', 'users-customers-import-export-for-wp-woocommerce'); ?>" class="wc-enhanced-select" multiple="multiple">
15
 
16
  <?php
17
  global $wp_roles;
22
  ?>
23
  </select>
24
 
25
+ <p style="font-size: 12px"><?php _e('Users with these roles will be exported.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
26
  </td>
27
  </tr>
28
  <tr>
29
  <th>
30
+ <label for="v_offset"><?php _e('Offset', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
31
  </th>
32
  <td>
33
+ <input type="text" name="offset" id="v_offset" placeholder="<?php _e('0', 'users-customers-import-export-for-wp-woocommerce'); ?>" class="input-text" />
34
+ <p style="font-size: 12px"><?php _e('The number of users to skip before returning.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
35
  </td>
36
  </tr>
37
  <tr>
38
  <th>
39
+ <label for="v_limit"><?php _e('Limit', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
40
  </th>
41
  <td>
42
+ <input type="text" name="limit" id="v_limit" placeholder="<?php _e('Unlimited', 'users-customers-import-export-for-wp-woocommerce'); ?>" class="input-text" />
43
+ <p style="font-size: 12px"><?php _e('The number of users to return.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
44
  </td>
45
  </tr>
46
 
50
 
51
  <tr>
52
  <th>
53
+ <label for="v_columns"><?php _e('Columns', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
54
  </th>
55
  <table id="datagrid">
56
  <th style="text-align: left;">
57
+ <label for="v_columns"><?php _e('Column', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
58
  </th>
59
  <th style="text-align: left;">
60
+ <label for="v_columns_name"><?php _e('Column Name', 'users-customers-import-export-for-wp-woocommerce'); ?></label>
61
  </th>
62
  <?php
63
  ?>
67
  <tr>
68
  <td>
69
  <input name= "columns[<?php echo $pkey; ?>]" type="checkbox" value="<?php echo $pkey; ?>" checked>
70
+ <label for="columns[<?php echo $pkey; ?>]"><?php _e($pcolumn, 'users-customers-import-export-for-wp-woocommerce'); ?></label>
71
  </td>
72
  <td>
73
  <input type="text" name="columns_name[<?php echo $pkey; ?>]" value="<?php echo $pkey; ?>" class="input-text" />
84
 
85
 
86
  </table>
87
+ <p class="submit"><input type="submit" class="button button-primary" value="<?php _e('Export Users', 'users-customers-import-export-for-wp-woocommerce'); ?>" /></p>
88
  </form>
89
  </div>
90
 
includes/views/export/market.php CHANGED
@@ -10,19 +10,21 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  float: right;
11
  }
12
 
13
- .wf_customer_import_export .pipe-premium-features{
14
  background: #fff;
15
- padding:5px;
 
 
16
  }
17
- .wf_customer_import_export .pipe-premium-features ul {
18
  padding-left: 20px;
19
  padding-right: 20px;
20
  }
21
- .wf_customer_import_export .pipe-premium-features li {
22
  margin-bottom: 15px;
23
  padding-left: 15px;
24
  }
25
- .wf_customer_import_export .pipe-premium-features li:before
26
  {
27
  font-family: dashicons;
28
  text-decoration: inherit;
@@ -36,27 +38,27 @@ if ( ! defined( 'ABSPATH' ) ) {
36
  font-size: 16px;
37
  color: #3085bb;
38
  }
39
- .wf_customer_import_export .pipe-premium-features .button {
40
- margin-bottom: 20px;
41
  }
42
- .wf_customer_import_export .pipe-premium-features .button-go-pro {
43
  box-shadow: none;
44
  border: 0;
45
  text-shadow: none;
46
  padding: 10px 15px;
47
  height: auto;
48
- font-size: 18px;
49
  border-radius: 4px;
50
- font-weight: 600;
51
  background: #00cb95;
52
- margin-top: 20px;
53
  }
54
- .wf_customer_import_export .pipe-premium-features .button-go-pro:hover,
55
- .wf_customer_import_export .pipe-premium-features .button-go-pro:focus,
56
- .wf_customer_import_export .pipe-premium-features .button-go-pro:active {
57
  background: #00a378;
58
  }
59
- .wf_customer_import_export .pipe-premium-features .button-doc-demo {
60
  border: 0;
61
  background: #d8d8dc;
62
  box-shadow: none;
@@ -67,50 +69,58 @@ if ( ! defined( 'ABSPATH' ) ) {
67
  margin-right: 10px;
68
  margin-top: 10px;
69
  }
70
- .wf_customer_import_export .pipe-premium-features .button-doc-demo:hover,
71
- .wf_customer_import_export .pipe-premium-features .button-doc-demo:focus,
72
- .wf_customer_import_export .pipe-premium-features .button-doc-demo:active {
73
  background: #dfdfe4;
74
  }
75
- .wf_customer_import_export .xa-pipe-rating-link{color:#ffc600;}
76
 
77
- .wf_customer_import_export .pipe-review-widget{
78
  background: #fff;
79
  padding: 5px;
80
- /*margin-top: 23px;*/
 
81
  }
82
- .wf_customer_import_export .pipe-review-widget p{
83
  margin-right:5px;
84
  margin-left:5px;
85
  }
86
  </style>
87
  <div class="wf_customer_import_export market-box table-box-main">
88
- <div class="pipe-review-widget">
89
  <?php
90
- echo sprintf(__('<div class=""><p><i>If you like the plugin please leave us a %1$s review!</i><p></div>', 'wf_customer_import_export'), '<a href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews?rate=5#new-post" target="_blank" class="xa-pipe-rating-link" data-reviewed="' . esc_attr__('Thanks for the review.', 'wf_customer_import_export') . '">&#9733;&#9733;&#9733;&#9733;&#9733;</a>');
91
  ?>
92
  </div>
93
- <div class="pipe-premium-features">
94
- <center><a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-primary button-go-pro"><?php _e('Upgrade to Premium Version', 'wf_customer_import_export'); ?></a></center>
 
 
 
 
 
 
 
95
  <span>
96
- <ul>
97
- <li style='color:red;'><strong><?php _e('Your Business is precious! Go Premium!','wf_customer_import_export'); ?></strong></li>
98
 
99
- <li><?php _e('HikeForce Import Export Users Plugin Premium version helps you to seamlessly import/export Customer details into your Woocommerce Store.', 'wf_customer_import_export'); ?></li>
100
 
101
- <li><?php _e('Export/Import WooCommerce Customer details into a CSV file.', 'wf_customer_import_export'); ?><strong><?php _e('( Basic version supports only WordPress User details )', 'wf_customer_import_export'); ?></strong></li>
102
- <li><?php _e('Various Filter options for exporting Customers.', 'wf_customer_import_export'); ?></li>
103
- <li><?php _e('Map and Transform fields while Importing Customers.', 'wf_customer_import_export'); ?></li>
104
- <li><?php _e('Change values while importing Customers using Evaluation Fields.', 'wf_customer_import_export'); ?></li>
105
- <li><?php _e('Choice to Update or Skip existing imported Customers.', 'wf_customer_import_export'); ?></li>
106
- <li><?php _e('Choice to Send or Skip Emails for newly imported Customers.', 'wf_customer_import_export'); ?></li>
107
- <li><?php _e('Import/Export file from/to a remote server via FTP in Scheduled time interval with Cron Job.', 'wf_customer_import_export'); ?></li>
108
- <li><?php _e('Excellent Support for setting it up!', 'wf_customer_import_export'); ?></li>
109
  </ul>
110
  </span>
111
- <center>
112
 
113
- <a href="https://www.webtoffee.com/category/documentation/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-doc-demo"><?php _e('Documentation', 'wf_customer_import_export'); ?></a></center>
114
  </div>
115
 
116
  </div>
10
  float: right;
11
  }
12
 
13
+ .wf_customer_import_export .uipe-premium-features{
14
  background: #fff;
15
+ padding: 5px;
16
+ /* margin-bottom: 23px;*/
17
+ margin-top: 5px;
18
  }
19
+ .wf_customer_import_export .uipe-premium-features ul {
20
  padding-left: 20px;
21
  padding-right: 20px;
22
  }
23
+ .wf_customer_import_export .uipe-premium-features .ticked-list li {
24
  margin-bottom: 15px;
25
  padding-left: 15px;
26
  }
27
+ .wf_customer_import_export .uipe-premium-features .ticked-list li:before
28
  {
29
  font-family: dashicons;
30
  text-decoration: inherit;
38
  font-size: 16px;
39
  color: #3085bb;
40
  }
41
+ .wf_customer_import_export .uipe-premium-features .button {
42
+ /*margin-bottom: 20px;*/
43
  }
44
+ .wf_customer_import_export .uipe-premium-features .button-go-pro {
45
  box-shadow: none;
46
  border: 0;
47
  text-shadow: none;
48
  padding: 10px 15px;
49
  height: auto;
50
+ font-size: 16px;
51
  border-radius: 4px;
52
+ font-weight: 400;
53
  background: #00cb95;
54
+ /* margin-top: 20px;*/
55
  }
56
+ .wf_customer_import_export .uipe-premium-features .button-go-pro:hover,
57
+ .wf_customer_import_export .uipe-premium-features .button-go-pro:focus,
58
+ .wf_customer_import_export .uipe-premium-features .button-go-pro:active {
59
  background: #00a378;
60
  }
61
+ .wf_customer_import_export .uipe-premium-features .button-doc-demo {
62
  border: 0;
63
  background: #d8d8dc;
64
  box-shadow: none;
69
  margin-right: 10px;
70
  margin-top: 10px;
71
  }
72
+ .wf_customer_import_export .uipe-premium-features .button-doc-demo:hover,
73
+ .wf_customer_import_export .uipe-premium-features .button-doc-demo:focus,
74
+ .wf_customer_import_export .uipe-premium-features .button-doc-demo:active {
75
  background: #dfdfe4;
76
  }
77
+ .wf_customer_import_export .xa-uipe-rating-link{color:#ffc600;}
78
 
79
+ .wf_customer_import_export .uipe-review-widget{
80
  background: #fff;
81
  padding: 5px;
82
+ margin-bottom: 23px;
83
+ margin-top: 5px;
84
  }
85
+ .wf_customer_import_export .uipe-review-widget p{
86
  margin-right:5px;
87
  margin-left:5px;
88
  }
89
  </style>
90
  <div class="wf_customer_import_export market-box table-box-main">
91
+ <div class="uipe-review-widget">
92
  <?php
93
+ echo sprintf(__('<div class=""><p><i>If you like the plugin please leave us a %1$s review!</i><p></div>', 'users-customers-import-export-for-wp-woocommerce'), '<a href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews?rate=5#new-post" target="_blank" class="xa-uipe-rating-link" data-reviewed="' . esc_attr__('Thanks for the review.', 'users-customers-import-export-for-wp-woocommerce') . '">&#9733;&#9733;&#9733;&#9733;&#9733;</a>');
94
  ?>
95
  </div>
96
+
97
+ <div class="uipe-premium-features">
98
+ <ul style="font-weight: bold; color:#666; list-style: none; background:#f8f8f8; padding:20px; margin:20px 15px; font-size: 15px; line-height: 26px;">
99
+ <li style=""><?php echo __('30 Day Money Back Guarantee','users-customers-import-export-for-wp-woocommerce'); ?></li>
100
+ <li style=""><?php echo __('Fast and Superior Support','users-customers-import-export-for-wp-woocommerce'); ?></li>
101
+ <li style="">
102
+ <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-primary button-go-pro"><?php _e('Upgrade to Premium', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
103
+ </li>
104
+ </ul>
105
  <span>
106
+ <ul class="ticked-list">
107
+ <li style='color:red;'><strong><?php _e('Your Business is precious! Go Premium!','users-customers-import-export-for-wp-woocommerce'); ?></strong></li>
108
 
109
+ <li><?php _e('WebToffee Import Export Users Plugin Premium version helps you to seamlessly import/export Customer details into your Woocommerce Store.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
110
 
111
+ <li><?php _e('Export/Import WooCommerce Customer details into a CSV file.', 'users-customers-import-export-for-wp-woocommerce'); ?><strong><?php _e('( Basic version supports only WordPress User details )', 'users-customers-import-export-for-wp-woocommerce'); ?></strong></li>
112
+ <li><?php _e('Various Filter options for exporting Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
113
+ <li><?php _e('Map and Transform fields while Importing Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
114
+ <li><?php _e('Change values while importing Customers using Evaluation Fields.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
115
+ <li><?php _e('Choice to Update or Skip existing imported Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
116
+ <li><?php _e('Choice to Send or Skip Emails for newly imported Customers.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
117
+ <li><?php _e('Import/Export file from/to a remote server via FTP in Scheduled time interval with Cron Job.', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
118
+ <li><?php _e('Excellent Support for setting it up!', 'users-customers-import-export-for-wp-woocommerce'); ?></li>
119
  </ul>
120
  </span>
121
+ <center style="padding-bottom: 20px">
122
 
123
+ <a href="https://www.webtoffee.com/category/documentation/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="button button-doc-demo"><?php _e('Documentation', 'users-customers-import-export-for-wp-woocommerce'); ?></a></center>
124
  </div>
125
 
126
  </div>
includes/views/html-wf-admin-screen.php CHANGED
@@ -1,8 +1,8 @@
1
  <div class="woocommerce">
2
  <div class="icon32" id="icon-woocommerce-importer"><br></div>
3
  <h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
4
- <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex') ?>" class="nav-tab <?php echo ($tab == 'export') ? 'nav-tab-active' : ''; ?>"><?php _e('User/Customer Export', 'wf_customer_import_export'); ?></a>
5
- <a href="<?php echo admin_url('admin.php?import=wordpress_hf_user_csv') ?>" class="nav-tab <?php echo ($tab == 'import') ? 'nav-tab-active' : ''; ?>"><?php _e('User/Customer Import', 'wf_customer_import_export'); ?></a>
6
  <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&tab=help'); ?>" class="nav-tab <?php echo ('help' == $tab) ? 'nav-tab-active' : ''; ?>"><?php _e('Help', 'wf_csv_import_export'); ?></a>
7
  <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
8
  </h2>
1
  <div class="woocommerce">
2
  <div class="icon32" id="icon-woocommerce-importer"><br></div>
3
  <h2 class="nav-tab-wrapper woo-nav-tab-wrapper">
4
+ <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex') ?>" class="nav-tab <?php echo ($tab == 'export') ? 'nav-tab-active' : ''; ?>"><?php _e('User/Customer Export', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
5
+ <a href="<?php echo admin_url('admin.php?import=wordpress_hf_user_csv') ?>" class="nav-tab <?php echo ($tab == 'import') ? 'nav-tab-active' : ''; ?>"><?php _e('User/Customer Import', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
6
  <a href="<?php echo admin_url('admin.php?page=hf_wordpress_customer_im_ex&tab=help'); ?>" class="nav-tab <?php echo ('help' == $tab) ? 'nav-tab-active' : ''; ?>"><?php _e('Help', 'wf_csv_import_export'); ?></a>
7
  <a href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" target="_blank" class="nav-tab nav-tab-premium"><?php _e('Upgrade to Premium for More Features', 'wf_csv_import_export'); ?></a>
8
  </h2>
includes/views/html-wf-help-guide.php CHANGED
@@ -28,25 +28,25 @@ if ( ! defined( 'ABSPATH' ) ) {
28
  <div class="cols">
29
  <div class="inner-panel" style="">
30
  <img src="<?php echo plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE))) . '/images/video.png'; ?>"/>
31
- <h3><?php _e('How-to-setup', 'wf_customer_import_export'); ?></h3>
32
- <p style=""><?php _e('Get to know about our produt in 3 minutes with this video', 'wf_customer_import_export'); ?></p>
33
  <a href="https://www.webtoffee.com/setting-wordpress-users-woocommerce-customers-import-export-plugin/" target="_blank" class="button button-primary">
34
- <?php _e('Setup Guide', 'wf_customer_import_export'); ?></a>
35
  </div>
36
 
37
  <div class="inner-panel" style="">
38
  <img src="<?php echo plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE))) . '/images/documentation.png'; ?>"/>
39
- <h3><?php _e('Documentation', 'wf_customer_import_export'); ?></h3>
40
- <p style=""><?php _e('Refer to our documentation to set and get started', 'wf_customer_import_export'); ?></p>
41
- <a target="_blank" href="https://www.webtoffee.com/category/documentation/wordpress-users-woocommerce-customers-import-export/" class="button-primary"><?php _e('Documentation', 'wf_customer_import_export'); ?></a>
42
  </div>
43
 
44
  <div class="inner-panel" style="">
45
  <img src="<?php echo plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE))) . '/images/support.png'; ?>"/>
46
- <h3><?php _e('Support', 'wf_customer_import_export'); ?></h3>
47
- <p style=""><?php _e('We would love to help you on any queries or issues.', 'wf_customer_import_export'); ?></p>
48
  <a href="https://www.webtoffee.com/support/" target="_blank" class="button button-primary">
49
- <?php _e('Contact Us', 'wf_customer_import_export'); ?></a>
50
  </div>
51
  </div>
52
  </div>
28
  <div class="cols">
29
  <div class="inner-panel" style="">
30
  <img src="<?php echo plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE))) . '/images/video.png'; ?>"/>
31
+ <h3><?php _e('How-to-setup', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
32
+ <p style=""><?php _e('Get to know about our produt in 3 minutes with this video', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
33
  <a href="https://www.webtoffee.com/setting-wordpress-users-woocommerce-customers-import-export-plugin/" target="_blank" class="button button-primary">
34
+ <?php _e('Setup Guide', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
35
  </div>
36
 
37
  <div class="inner-panel" style="">
38
  <img src="<?php echo plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE))) . '/images/documentation.png'; ?>"/>
39
+ <h3><?php _e('Documentation', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
40
+ <p style=""><?php _e('Refer to our documentation to set and get started', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
41
+ <a target="_blank" href="https://www.webtoffee.com/category/documentation/wordpress-users-woocommerce-customers-import-export/" class="button-primary"><?php _e('Documentation', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
42
  </div>
43
 
44
  <div class="inner-panel" style="">
45
  <img src="<?php echo plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE))) . '/images/support.png'; ?>"/>
46
+ <h3><?php _e('Support', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
47
+ <p style=""><?php _e('We would love to help you on any queries or issues.', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
48
  <a href="https://www.webtoffee.com/support/" target="_blank" class="button button-primary">
49
+ <?php _e('Contact Us', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
50
  </div>
51
  </div>
52
  </div>
includes/views/import/html-wf-import-customers.php CHANGED
@@ -1,8 +1,8 @@
1
  <div class="tool-box">
2
- <h3 class="title"><?php _e('Import Users in CSV Format:', 'wf_customer_import_export'); ?></h3>
3
- <p><?php _e('Import Users in CSV format from your computer', 'wf_customer_import_export'); ?></p>
4
  <p class="submit">
5
  <?php $import_url = admin_url('admin.php?import=wordpress_hf_user_csv'); ?>
6
- <a class="button button-primary" id="mylink" href="<?php echo $import_url; ?>"><?php _e('Import Users', 'wf_customer_import_export'); ?></a>
7
  </p>
8
  </div>
1
  <div class="tool-box">
2
+ <h3 class="title"><?php _e('Import Users in CSV Format:', 'users-customers-import-export-for-wp-woocommerce'); ?></h3>
3
+ <p><?php _e('Import Users in CSV format from your computer', 'users-customers-import-export-for-wp-woocommerce'); ?></p>
4
  <p class="submit">
5
  <?php $import_url = admin_url('admin.php?import=wordpress_hf_user_csv'); ?>
6
+ <a class="button button-primary" id="mylink" href="<?php echo $import_url; ?>"><?php _e('Import Users', 'users-customers-import-export-for-wp-woocommerce'); ?></a>
7
  </p>
8
  </div>
lang/users-customers-import-export-for-wp-woocommerce-de_DE.mo ADDED
Binary file
lang/users-customers-import-export-for-wp-woocommerce-de_DE.po ADDED
@@ -0,0 +1,536 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2019-01-17 12:12+0530\n"
5
+ "PO-Revision-Date: 2019-01-17 12:13+0530\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: 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-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "X-Poedit-SearchPathExcluded-0: styles\n"
18
+
19
+ #: includes/class-wf-customerimpexpcsv-admin-screen.php:22
20
+ msgid ""
21
+ "User/Customer CSV Import Export requires the function "
22
+ "<code>mb_detect_encoding</code> to import and export CSV files. Please ask "
23
+ "your hosting provider to enable this function."
24
+ msgstr ""
25
+ "Produkt CSV Import Export krever funksjonen <code> mb_detect_encoding </"
26
+ "code> for å importere og eksportere CSV-filer. Vennligst spør "
27
+ "nettleverandøren din for å aktivere denne funksjonen."
28
+
29
+ #: includes/class-wf-customerimpexpcsv-admin-screen.php:30
30
+ msgid "User Import Export"
31
+ msgstr "Importieren und Exportieren"
32
+
33
+ #: includes/class-wf-customerimpexpcsv-admin-screen.php:31
34
+ msgid "Customer Import Export"
35
+ msgstr "Kundenimport Export"
36
+
37
+ #: includes/class-wt-userimport-uninstall-feedback.php:19
38
+ msgid "Used it successfully. Don't need anymore."
39
+ msgstr "Erfolgreich eingesetzt Brauche nicht mehr"
40
+
41
+ #: includes/class-wt-userimport-uninstall-feedback.php:21
42
+ msgid "Have used it successfully and aint in need of it anymore"
43
+ msgstr "Habe es erfolgreich benutzt und brauche es nicht mehr"
44
+
45
+ #: includes/class-wt-userimport-uninstall-feedback.php:25
46
+ msgid "I couldn't understand how to make it work"
47
+ msgstr "Ich habe nicht verstanden, wie es funktioniert"
48
+
49
+ #: includes/class-wt-userimport-uninstall-feedback.php:27
50
+ msgid "Would you like us to assist you?"
51
+ msgstr "Möchtest Du Hilfe?"
52
+
53
+ #: includes/class-wt-userimport-uninstall-feedback.php:31
54
+ msgid "I found a better plugin"
55
+ msgstr "Ich fand ein besseres Plugin"
56
+
57
+ #: includes/class-wt-userimport-uninstall-feedback.php:33
58
+ msgid "Which plugin?"
59
+ msgstr "Welches Plugin?"
60
+
61
+ #: includes/class-wt-userimport-uninstall-feedback.php:37
62
+ msgid "The plugin is great, but I need specific feature that you don't support"
63
+ msgstr ""
64
+ "Das Plugin ist großartig, aber ich brauche besondere Funktionen, die das "
65
+ "PlugIn nicht bietet"
66
+
67
+ #: includes/class-wt-userimport-uninstall-feedback.php:39
68
+ msgid "Could you tell us more about that feature?"
69
+ msgstr "Können Sie uns mehr über dieses Feature erzählen?"
70
+
71
+ #: includes/class-wt-userimport-uninstall-feedback.php:43
72
+ msgid "The plugin is not working"
73
+ msgstr "Das PlugIn funktioniert nicht"
74
+
75
+ #: includes/class-wt-userimport-uninstall-feedback.php:45
76
+ msgid "Could you tell us a bit more whats not working?"
77
+ msgstr "Können Sie uns mehr dazu sagen, was nicht funktioniert?"
78
+
79
+ #: includes/class-wt-userimport-uninstall-feedback.php:49
80
+ msgid "It's not what I was looking for"
81
+ msgstr "Es ist nicht das, was ich suchte"
82
+
83
+ #: includes/class-wt-userimport-uninstall-feedback.php:55
84
+ msgid "The plugin didn't work as expected"
85
+ msgstr "Das PlugIn funktioniert nicht wie erwartet"
86
+
87
+ #: includes/class-wt-userimport-uninstall-feedback.php:57
88
+ msgid "What did you expect?"
89
+ msgstr "Was haben Sie erwartet?"
90
+
91
+ #: includes/class-wt-userimport-uninstall-feedback.php:61
92
+ msgid "Other"
93
+ msgstr "Sonstiges"
94
+
95
+ #: includes/class-wt-userimport-uninstall-feedback.php:63
96
+ msgid "Could you tell us a bit more?"
97
+ msgstr "Könnten Sie uns noch etwas mehr erzählen?"
98
+
99
+ #: includes/class-wt-userimport-uninstall-feedback.php:81
100
+ msgid "If you have a moment, please let us know why you are deactivating:"
101
+ msgstr ""
102
+ "Wenn Du einen Moment Zeit hast, lass uns wissen, warum Du das Plugin "
103
+ "deaktivieren möchtest:"
104
+
105
+ #: includes/class-wt-userimport-uninstall-feedback.php:93
106
+ msgid "I rather wouldn't say"
107
+ msgstr "Ich würde das lieber nicht sagen"
108
+
109
+ #: includes/class-wt-userimport-uninstall-feedback.php:94
110
+ msgid "Submit & Deactivate"
111
+ msgstr "Absenden & Deaktivieren"
112
+
113
+ #: includes/class-wt-userimport-uninstall-feedback.php:95
114
+ msgid "Cancel"
115
+ msgstr "Abbrechen"
116
+
117
+ #: includes/class-wt-userimport-uninstall-feedback.php:174
118
+ msgid "Deactivate and leave a review"
119
+ msgstr "Deaktivieren Sie und hinterlassen Sie eine Bewertung"
120
+
121
+ #: includes/importer/class-wf-csv-parser.php:193
122
+ #, php-format
123
+ msgid "> Row %s - skipped due to record offset."
124
+ msgstr "> Zeile%s - Überspringt wegen Datensatzversatz."
125
+
126
+ #: includes/importer/class-wf-csv-parser.php:199
127
+ #, php-format
128
+ msgid "> Row %s - skipped: cannot insert user without email."
129
+ msgstr ""
130
+ "> Zeile%s - übersprungen: Benutzer können ohne E-Mail nicht eingefügt werden."
131
+
132
+ #: includes/importer/class-wf-csv-parser.php:204
133
+ #, php-format
134
+ msgid "> Row %s - skipped: Email is not valid."
135
+ msgstr "> Zeile%s - übersprungen: E-Mail ist ungültig."
136
+
137
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:117
138
+ msgid "Error with handle_upload!"
139
+ msgstr "Fehler mit Handle_upload!"
140
+
141
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:142
142
+ msgid "Row"
143
+ msgstr "Zeile"
144
+
145
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:143
146
+ msgid "User ID"
147
+ msgstr "Benutzer ID"
148
+
149
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:144
150
+ msgid "User Status"
151
+ msgstr "Benutzerstatus"
152
+
153
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:145
154
+ msgid "Status Msg"
155
+ msgstr "Status Msg"
156
+
157
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:214
158
+ msgid "AJAX Error"
159
+ msgstr "Ajax Fehler"
160
+
161
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:307
162
+ msgid "Error finding uploaded file!"
163
+ msgstr "Fehler beim suchen Datei hochgeladen!"
164
+
165
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:374
166
+ msgid "Step 1..."
167
+ msgstr "1. Schritt"
168
+
169
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:379
170
+ msgid "Step 2..."
171
+ msgstr "2. Schritt"
172
+
173
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:383
174
+ msgid "Finalizing..."
175
+ msgstr "Finalisierung"
176
+
177
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:386
178
+ msgid "Finished. Import complete."
179
+ msgstr "Fertig. Import abgeschlossen."
180
+
181
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:456
182
+ msgid ""
183
+ "Columns are pre-selected using the Mapping file: \"<b style=\"color:gray\">"
184
+ msgstr "Spalten werden mithilfe der Zuordnungsdatei vorgewählt: \""
185
+
186
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:475
187
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:600
188
+ msgid "Processing users."
189
+ msgstr "Benutzer bearbeiten."
190
+
191
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:493
192
+ msgid "Finished processing Users."
193
+ msgstr "Beendete Verarbeitung Benutzer."
194
+
195
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:516
196
+ msgid "Parsing products CSV."
197
+ msgstr "Parsen Produkte CSV."
198
+
199
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:523
200
+ msgid "Finished parsing products CSV."
201
+ msgstr "Parsing Fertigprodukte CSV."
202
+
203
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:563
204
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:578
205
+ msgid "Sorry, there has been an error."
206
+ msgstr "Leider ist ein Fehler aufgetreten."
207
+
208
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:604
209
+ msgid "Cannot insert user without email"
210
+ msgstr "Benutzer kann ohne E-Mail nicht eingefügt werden"
211
+
212
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:608
213
+ msgid "skipped: Email is not valid."
214
+ msgstr "Übersprungen: E-Mail ist ungültig."
215
+
216
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:624
217
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:657
218
+ #, php-format
219
+ msgid "> &#8220;%s&#8221;"
220
+ msgstr "> &#8220; %s &#8221;"
221
+
222
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:634
223
+ #, php-format
224
+ msgid "> Error inserting %s: %s"
225
+ msgstr "> Fehler beim Einfügen von%s:%s"
226
+
227
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:641
228
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:642
229
+ msgid "An error occurred with the customer information provided."
230
+ msgstr "Bei den angegebenen Kundeninformationen ist ein Fehler aufgetreten."
231
+
232
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:660
233
+ #, php-format
234
+ msgid "> Finished importing user %s"
235
+ msgstr "> Import des Benutzers%s abgeschlossen"
236
+
237
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:661
238
+ msgid "Finished processing users."
239
+ msgstr "Fertige Benutzer der Verarbeitung."
240
+
241
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:767
242
+ msgid "User could not be created without Email."
243
+ msgstr "Benutzer konnte nicht ohne E-Mail erstellt werden."
244
+
245
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:800
246
+ msgid "Import"
247
+ msgstr "Importieren"
248
+
249
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:800
250
+ msgid "Merge Users"
251
+ msgstr "Benutzer zusammenführen"
252
+
253
+ #: includes/importer/views/html-wf-import-greeting.php:5
254
+ #: includes/views/html-wf-admin-screen.php:4
255
+ msgid "User/Customer Export"
256
+ msgstr "Benutzer- / Kundenexport"
257
+
258
+ #: includes/importer/views/html-wf-import-greeting.php:6
259
+ #: includes/views/html-wf-admin-screen.php:5
260
+ msgid "User/Customer Import"
261
+ msgstr "Kundenimport"
262
+
263
+ #: includes/importer/views/html-wf-import-greeting.php:7
264
+ #: includes/views/html-wf-admin-screen.php:6
265
+ msgid "Help"
266
+ msgstr "Hilfe"
267
+
268
+ #: includes/importer/views/html-wf-import-greeting.php:8
269
+ #: includes/views/html-wf-admin-screen.php:7
270
+ msgid "Upgrade to Premium for More Features"
271
+ msgstr "Upgrade auf Premium für mehr Funktionen"
272
+
273
+ #: includes/importer/views/html-wf-import-greeting.php:16
274
+ #: includes/views/import/html-wf-import-customers.php:2
275
+ msgid "Import Users in CSV Format:"
276
+ msgstr "Benutzer im CSV-Format importieren:"
277
+
278
+ #: includes/importer/views/html-wf-import-greeting.php:17
279
+ msgid ""
280
+ "Import Users in CSV format from your computer.You can import users/customers "
281
+ "(in CSV format) in to the shop."
282
+ msgstr ""
283
+ "Benutzer im CSV-Format von Ihrem Computer importieren. Sie können Benutzer / "
284
+ "Kunden (im CSV-Format) in den Shop importieren."
285
+
286
+ #: includes/importer/views/html-wf-import-greeting.php:19
287
+ msgid ""
288
+ "Before you can upload your import file, you will need to fix the following "
289
+ "error:"
290
+ msgstr ""
291
+ "Bevor Sie Ihre Importdatei hochladen können, müssen Sie folgenden Fehler "
292
+ "beheben:"
293
+
294
+ #: includes/importer/views/html-wf-import-greeting.php:28
295
+ msgid "Select a file from your computer"
296
+ msgstr "Methode 1: Wählen Sie eine Datei von Ihrem computer"
297
+
298
+ #: includes/importer/views/html-wf-import-greeting.php:34
299
+ #, php-format
300
+ msgid "Maximum size: %s"
301
+ msgstr "Maximale Größe: %s"
302
+
303
+ #: includes/importer/views/market.php:89 includes/views/export/market.php:94
304
+ msgid "Upgrade to Premium Version"
305
+ msgstr "Upgrade auf Premium-Version"
306
+
307
+ #: includes/importer/views/market.php:92 includes/views/export/market.php:97
308
+ msgid "Your Business is precious! Go Premium!"
309
+ msgstr "Ihr Geschäft ist kostbar! Go Premium-!"
310
+
311
+ #: includes/importer/views/market.php:94 includes/views/export/market.php:99
312
+ msgid ""
313
+ "HikeForce Import Export Users Plugin Premium version helps you to seamlessly "
314
+ "import/export Customer details into your Woocommerce Store."
315
+ msgstr ""
316
+ "HikeForce Import Export Plugin Premium-versjonen hjelper deg med å sømløst "
317
+ "importere / eksportere produkter til din Woocommerce Store."
318
+
319
+ #: includes/importer/views/market.php:96 includes/views/export/market.php:101
320
+ msgid "Export/Import WooCommerce Customer details into a CSV file."
321
+ msgstr ""
322
+ "Exportieren / Importieren von WooCommerce-Kundendetails in eine CSV-Datei."
323
+
324
+ #: includes/importer/views/market.php:96 includes/views/export/market.php:101
325
+ msgid "( Basic version supports only WordPress User details )"
326
+ msgstr "(Basisversion unterstützt nur WordPress-Benutzerdetails)"
327
+
328
+ #: includes/importer/views/market.php:97 includes/views/export/market.php:102
329
+ msgid "Various Filter options for exporting Customers."
330
+ msgstr "Verschiedene Filteroptionen für den Export von Kunden."
331
+
332
+ #: includes/importer/views/market.php:98 includes/views/export/market.php:103
333
+ msgid "Map and Transform fields while Importing Customers."
334
+ msgstr "Felder zuordnen und umwandeln, während Kunden importiert werden."
335
+
336
+ #: includes/importer/views/market.php:99 includes/views/export/market.php:104
337
+ msgid "Change values while importing Customers using Evaluation Fields."
338
+ msgstr ""
339
+ "Ändern Sie die Werte, während Sie Kunden mithilfe von Bewertungsfeldern "
340
+ "importieren."
341
+
342
+ #: includes/importer/views/market.php:100 includes/views/export/market.php:105
343
+ msgid "Choice to Update or Skip existing imported Customers."
344
+ msgstr ""
345
+ "Wahl zum Aktualisieren oder Überspringen vorhandener importierter Kunden."
346
+
347
+ #: includes/importer/views/market.php:101 includes/views/export/market.php:106
348
+ msgid "Choice to Send or Skip Emails for newly imported Customers."
349
+ msgstr ""
350
+ "Wahl zum Senden oder Überspringen von E-Mails für neu importierte Kunden."
351
+
352
+ #: includes/importer/views/market.php:102 includes/views/export/market.php:107
353
+ msgid ""
354
+ "Import/Export file from/to a remote server via FTP in Scheduled time "
355
+ "interval with Cron Job."
356
+ msgstr ""
357
+ "Importieren / Exportieren von Dateien von / zu einem Remote-Server über FTP "
358
+ "im geplanten Zeitintervall mit Cron Job."
359
+
360
+ #: includes/importer/views/market.php:103 includes/views/export/market.php:108
361
+ msgid "Excellent Support for setting it up!"
362
+ msgstr "-Hervorragende Unterstützung für sie eingerichtet!"
363
+
364
+ #: includes/importer/views/market.php:108 includes/views/export/market.php:113
365
+ #: includes/views/html-wf-help-guide.php:39
366
+ #: includes/views/html-wf-help-guide.php:41
367
+ msgid "Documentation"
368
+ msgstr "Dokumentation"
369
+
370
+ #: includes/importer/views/market.php:112 includes/views/export/market.php:90
371
+ #, php-format
372
+ msgid ""
373
+ "<div class=\"\"><p><i>If you like the plugin please leave us a %1$s review!</"
374
+ "i><p></div>"
375
+ msgstr ""
376
+ "<div class=\"\"><p><i>Wenn Ihnen das Plugin gefällt, lassen Sie uns bitte "
377
+ "eine %1$s Rezension zukommen!</i><p></div>"
378
+
379
+ #: includes/views/export/html-wf-export-customers.php:4
380
+ msgid "Export Users in CSV Format:"
381
+ msgstr "Benutzer im CSV-Format exportieren:"
382
+
383
+ #: includes/views/export/html-wf-export-customers.php:5
384
+ msgid ""
385
+ "Export and download your Users in CSV format. This file can be used to "
386
+ "import users back into your Website."
387
+ msgstr ""
388
+ "Exportieren und laden Sie Ihre Benutzer im CSV-Format. Diese Datei kann "
389
+ "verwendet werden, um Benutzer zurück in Ihre Website zu importieren."
390
+
391
+ #: includes/views/export/html-wf-export-customers.php:11
392
+ msgid "User Roles"
393
+ msgstr "Benutzerrollen"
394
+
395
+ #: includes/views/export/html-wf-export-customers.php:14
396
+ msgid "All Roles"
397
+ msgstr "Alle Rollen"
398
+
399
+ #: includes/views/export/html-wf-export-customers.php:25
400
+ msgid "Users with these roles will be exported."
401
+ msgstr "Benutzer mit diesen Rollen werden exportiert."
402
+
403
+ #: includes/views/export/html-wf-export-customers.php:30
404
+ msgid "Offset"
405
+ msgstr "Mitarbeiter überspringen"
406
+
407
+ #: includes/views/export/html-wf-export-customers.php:33
408
+ msgid "0"
409
+ msgstr "0"
410
+
411
+ #: includes/views/export/html-wf-export-customers.php:34
412
+ msgid "The number of users to skip before returning."
413
+ msgstr ""
414
+ "Die Anzahl der Benutzer, die vor der Rückkehr übersprungen werden sollen."
415
+
416
+ #: includes/views/export/html-wf-export-customers.php:39
417
+ msgid "Limit"
418
+ msgstr "Limit"
419
+
420
+ #: includes/views/export/html-wf-export-customers.php:42
421
+ msgid "Unlimited"
422
+ msgstr "Unbegrenzt"
423
+
424
+ #: includes/views/export/html-wf-export-customers.php:43
425
+ msgid "The number of users to return."
426
+ msgstr "Die Anzahl der Benutzer, die zurückgegeben werden sollen."
427
+
428
+ #: includes/views/export/html-wf-export-customers.php:53
429
+ msgid "Columns"
430
+ msgstr "Spalten"
431
+
432
+ #: includes/views/export/html-wf-export-customers.php:57
433
+ msgid "Column"
434
+ msgstr "Spalte"
435
+
436
+ #: includes/views/export/html-wf-export-customers.php:60
437
+ msgid "Column Name"
438
+ msgstr "Spaltenname"
439
+
440
+ #: includes/views/export/html-wf-export-customers.php:87
441
+ msgid "Export Users"
442
+ msgstr "Benutzer exportieren"
443
+
444
+ #: includes/views/html-wf-help-guide.php:31
445
+ msgid "How-to-setup"
446
+ msgstr "Anleitung zur Einrichtung"
447
+
448
+ #: includes/views/html-wf-help-guide.php:32
449
+ msgid "Get to know about our produt in 3 minutes with this video"
450
+ msgstr "Lernen Sie unser Produkt in 3 Minuten mit diesem Video kennen."
451
+
452
+ #: includes/views/html-wf-help-guide.php:34
453
+ msgid "Setup Guide"
454
+ msgstr "Einrichtungsanleitung"
455
+
456
+ #: includes/views/html-wf-help-guide.php:40
457
+ msgid "Refer to our documentation to set and get started"
458
+ msgstr ""
459
+ "Schlagen Sie in unserer Dokumentation nach, um die Einstellungen vorzunehmen "
460
+ "und loszulegen."
461
+
462
+ #: includes/views/html-wf-help-guide.php:46
463
+ #: users-customers-import-export-for-wp-woocommerce.php:97
464
+ msgid "Support"
465
+ msgstr "Unterstützen"
466
+
467
+ #: includes/views/html-wf-help-guide.php:47
468
+ msgid "We would love to help you on any queries or issues."
469
+ msgstr "Gerne stehen wir Ihnen bei Fragen und Problemen zur Verfügung."
470
+
471
+ #: includes/views/html-wf-help-guide.php:49
472
+ msgid "Contact Us"
473
+ msgstr ""
474
+ "Keine Lieferarten verfügbar. Bitte prüfen Sie Ihre Adresse – oder "
475
+ "kontaktieren Sie uns, wenn Sie Hilfe benötigen."
476
+
477
+ #: includes/views/import/html-wf-import-customers.php:3
478
+ msgid "Import Users in CSV format from your computer"
479
+ msgstr "Importieren Sie Benutzer im CSV-Format von Ihrem Computer"
480
+
481
+ #: includes/views/import/html-wf-import-customers.php:6
482
+ msgid "Import Users"
483
+ msgstr "User importieren"
484
+
485
+ #: users-customers-import-export-for-wp-woocommerce.php:28
486
+ msgid ""
487
+ "You already have the Premium version installed. For any issues, kindly "
488
+ "contact our <a target='_blank' href='https://www.webtoffee.com/"
489
+ "support/'>support</a>."
490
+ msgstr ""
491
+ "Sie haben bereits die Premium-Version installiert. Bei Fragen wenden Sie "
492
+ "sich bitte an unseren <a target='_blank' href='https://www.webtoffee.com/"
493
+ "support/'>Support</a> ."
494
+
495
+ #: users-customers-import-export-for-wp-woocommerce.php:95
496
+ msgid "Import Export Users"
497
+ msgstr "Import / Export Benutzer"
498
+
499
+ #: users-customers-import-export-for-wp-woocommerce.php:96
500
+ msgid "Premium Upgrade"
501
+ msgstr "Premium-Upgrade"
502
+
503
+ #: users-customers-import-export-for-wp-woocommerce.php:98
504
+ msgid "Review"
505
+ msgstr "Bewertung"
506
+
507
+ #: users-customers-import-export-for-wp-woocommerce.php:157
508
+ msgid "Import <strong>users/customers</strong> to your site via a csv file."
509
+ msgstr ""
510
+ "Importieren Sie <strong>Benutzer / Kunden</strong> über eine CSV-Datei in "
511
+ "Ihre Site."
512
+
513
+ #: users-customers-import-export-for-wp-woocommerce.php:184
514
+ msgid "<h3>Save Time, Money & Hassle on Your WooCommerce Data Migration?</h3>"
515
+ msgstr ""
516
+ "<h3> Sparen Sie Zeit, Geld und Ärger bei der Migration Ihrer WooCommerce-"
517
+ "Daten? </h3>"
518
+
519
+ #: users-customers-import-export-for-wp-woocommerce.php:185
520
+ msgid "<h3>Use StoreFrog Migration Services.</h3>"
521
+ msgstr "<h3> Verwenden Sie StoreFrog Migration Services. </h3>"
522
+
523
+ #: users-customers-import-export-for-wp-woocommerce.php:188
524
+ msgid "Dismiss this notice."
525
+ msgstr "Diesen Hinweis ausblenden"
526
+
527
+ #: users-customers-import-export-for-wp-woocommerce.php:220
528
+ #, php-format
529
+ msgid "If you like the plugin please leave us a %1$s review."
530
+ msgstr ""
531
+ "<div class=\"\"><p><i>Wenn Ihnen das Plugin gefällt, lassen Sie uns bitte "
532
+ "eine %1$s Rezension zukommen!</i><p></div>"
533
+
534
+ #: users-customers-import-export-for-wp-woocommerce.php:232
535
+ msgid "Thank you for your review."
536
+ msgstr "Danke für deine Bewertung."
lang/users-customers-import-export-for-wp-woocommerce-fr_FR.mo ADDED
Binary file
lang/users-customers-import-export-for-wp-woocommerce-fr_FR.po ADDED
@@ -0,0 +1,4016 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2016 Nick
2
+ # This file is distributed under the GNU General Public License v2.0 or later.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Users/Customers Import/Export for WooCommerce\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/style\n"
7
+ "POT-Creation-Date: 2019-01-12 15:53+0100\n"
8
+ "PO-Revision-Date: 2019-01-17 12:18+0530\n"
9
+ "Last-Translator: FreePixel <contact@freepixel.net>\n"
10
+ "Language-Team: FreePixel\n"
11
+ "Language: fr\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.12\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
+ "X-Poedit-Basepath: users-customers-import-export-for-wp-woocommerce\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: esc_html_e;esc_html__;__;_e\n"
20
+ "X-Textdomain-Support: yes\n"
21
+ "X-Poedit-SearchPath-0: customer-import-export.php\n"
22
+ "X-Poedit-SearchPath-1: includes/class-wf-customerimpexpcsv-admin-screen.php\n"
23
+ "X-Poedit-SearchPath-2: includes/class-wf-customerimpexpcsv-ajax-handler.php\n"
24
+ "X-Poedit-SearchPath-3: includes/class-wt-userimport-uninstall-feedback.php\n"
25
+ "X-Poedit-SearchPath-4: includes/exporter/class-wf-customerimpexpcsv-exporter."
26
+ "php\n"
27
+ "X-Poedit-SearchPath-5: includes/exporter/data/data-wf-post-columns.php\n"
28
+ "X-Poedit-SearchPath-6: includes/importer/class-wf-csv-parser.php\n"
29
+ "X-Poedit-SearchPath-7: includes/importer/class-wf-customerimpexpcsv-customer-"
30
+ "import.php\n"
31
+ "X-Poedit-SearchPath-8: includes/importer/class-wf-customerimpexpcsv-importer."
32
+ "php\n"
33
+ "X-Poedit-SearchPath-9: includes/importer/data/data-wf-reserved-fields-pair."
34
+ "php\n"
35
+ "X-Poedit-SearchPath-10: includes/importer/views/html-wf-import-greeting.php\n"
36
+ "X-Poedit-SearchPath-11: includes/importer/views/html-wf-import-options.php\n"
37
+ "X-Poedit-SearchPath-12: includes/importer/views/market.php\n"
38
+ "X-Poedit-SearchPath-13: includes/settings/class-wf-customerimpexpcsv-"
39
+ "settings.php\n"
40
+ "X-Poedit-SearchPath-14: includes/views/html-wf-admin-screen.php\n"
41
+ "X-Poedit-SearchPath-15: includes/views/html-wf-help-guide.php\n"
42
+ "X-Poedit-SearchPath-16: includes/views/export/html-wf-export-customers.php\n"
43
+ "X-Poedit-SearchPath-17: includes/views/export/market.php\n"
44
+ "X-Poedit-SearchPath-18: includes/views/import/html-wf-import-customers.php\n"
45
+
46
+ #: customer-import-export.php:28
47
+ msgid ""
48
+ "You already have the Premium version installed. For any issues, kindly "
49
+ "contact our <a target='_blank' href='https://www.webtoffee.com/"
50
+ "support/'>support</a>."
51
+ msgstr ""
52
+ "Vous avez déjà la version Premium installée. Pour toute question, veuillez "
53
+ "contacter notre <a target='_blank' href='https://www.webtoffee.com/"
54
+ "support/'>support</a>."
55
+
56
+ #: customer-import-export.php:95
57
+ msgid "Import Export Users"
58
+ msgstr "Importer des utilisateurs"
59
+
60
+ #: customer-import-export.php:96
61
+ msgid "Premium Upgrade"
62
+ msgstr "Mise à niveau Premium"
63
+
64
+ #: customer-import-export.php:97 includes/views/html-wf-help-guide.php:46
65
+ msgid "Support"
66
+ msgstr "Support"
67
+
68
+ #: customer-import-export.php:98
69
+ msgid "Review"
70
+ msgstr "Avis"
71
+
72
+ #: customer-import-export.php:157
73
+ msgid "Import <strong>users/customers</strong> to your site via a csv file."
74
+ msgstr ""
75
+ "Importer des <strong>utilisateurs/clients</strong> dans votre site via un "
76
+ "fichier CSV."
77
+
78
+ #: customer-import-export.php:184
79
+ msgid "<h3>Save Time, Money & Hassle on Your WooCommerce Data Migration?</h3>"
80
+ msgstr ""
81
+ "<h3>Vous souhaitez gagner du temps et de l’argent sur votre migration de "
82
+ "données WooCommerce ?</h3>"
83
+
84
+ #: customer-import-export.php:185
85
+ msgid "<h3>Use StoreFrog Migration Services.</h3>"
86
+ msgstr "<h3>Utilisez les services de migration StoreFrog.</h3>"
87
+
88
+ #: customer-import-export.php:188
89
+ msgid "Dismiss this notice."
90
+ msgstr "Ignorer cette notification."
91
+
92
+ #: customer-import-export.php:220
93
+ #, php-format
94
+ msgid "If you like the plugin please leave us a %1$s review."
95
+ msgstr "Si vous aimez l’extension merci de nous laisser un avis %1$s."
96
+
97
+ #: customer-import-export.php:232
98
+ msgid "Thank you for your review."
99
+ msgstr "Merci pour votre avis."
100
+
101
+ #: includes/class-wf-customerimpexpcsv-admin-screen.php:22
102
+ msgid ""
103
+ "User/Customer CSV Import Export requires the function "
104
+ "<code>mb_detect_encoding</code> to import and export CSV files. Please ask "
105
+ "your hosting provider to enable this function."
106
+ msgstr ""
107
+ "Importation/exportation CSV utilisateur/client requiert la fonction "
108
+ "<code>mb_detect_encoding</code> pour importer et exporter des fichiers CSV. "
109
+ "Veuillez demander à votre fournisseur d’hébergement pour activer cette "
110
+ "fonction."
111
+
112
+ #: includes/class-wf-customerimpexpcsv-admin-screen.php:30
113
+ msgid "User Import Export"
114
+ msgstr "Import/export d’utilisateurs"
115
+
116
+ #: includes/class-wf-customerimpexpcsv-admin-screen.php:31
117
+ msgid "Customer Import Export"
118
+ msgstr "Exportation/importation de clients"
119
+
120
+ #: includes/class-wt-userimport-uninstall-feedback.php:19
121
+ msgid "Used it successfully. Don't need anymore."
122
+ msgstr "Utilisé avec succès. Je n’en ai plus besoin."
123
+
124
+ #: includes/class-wt-userimport-uninstall-feedback.php:21
125
+ msgid "Have used it successfully and aint in need of it anymore"
126
+ msgstr "Je l’ai utilisé avec succès et je n’en ai plus besoin"
127
+
128
+ #: includes/class-wt-userimport-uninstall-feedback.php:25
129
+ msgid "I couldn't understand how to make it work"
130
+ msgstr "Je ne comprenais pas comment la faire fonctionner"
131
+
132
+ #: includes/class-wt-userimport-uninstall-feedback.php:27
133
+ msgid "Would you like us to assist you?"
134
+ msgstr "Voulez-vous que nous vous assistions ?"
135
+
136
+ #: includes/class-wt-userimport-uninstall-feedback.php:31
137
+ msgid "I found a better plugin"
138
+ msgstr "J’ai trouvé une meilleure extension"
139
+
140
+ #: includes/class-wt-userimport-uninstall-feedback.php:33
141
+ msgid "Which plugin?"
142
+ msgstr "Avec qu’elle extension ?"
143
+
144
+ #: includes/class-wt-userimport-uninstall-feedback.php:37
145
+ msgid "The plugin is great, but I need specific feature that you don't support"
146
+ msgstr ""
147
+ "L’extension est géniale, mais il me faut une fonctionnalité spécifique que "
148
+ "vous ne supportez pas"
149
+
150
+ #: includes/class-wt-userimport-uninstall-feedback.php:39
151
+ msgid "Could you tell us more about that feature?"
152
+ msgstr "Pourriez-vous nous en dire plus sur cette fonctionnalité ?"
153
+
154
+ #: includes/class-wt-userimport-uninstall-feedback.php:43
155
+ msgid "The plugin is not working"
156
+ msgstr "L’extension ne fonctionne pas"
157
+
158
+ #: includes/class-wt-userimport-uninstall-feedback.php:45
159
+ msgid "Could you tell us a bit more whats not working?"
160
+ msgstr "Pourriez-vous nous en dire un peu plus ce qui ne fonctionne pas ?"
161
+
162
+ #: includes/class-wt-userimport-uninstall-feedback.php:49
163
+ msgid "It's not what I was looking for"
164
+ msgstr "Ce n’est pas ce que je cherchais"
165
+
166
+ #: includes/class-wt-userimport-uninstall-feedback.php:55
167
+ msgid "The plugin didn't work as expected"
168
+ msgstr "L’extension n’a pas fonctionné comme prévu"
169
+
170
+ #: includes/class-wt-userimport-uninstall-feedback.php:57
171
+ msgid "What did you expect?"
172
+ msgstr "Qu’est-ce que vous attendiez ?"
173
+
174
+ #: includes/class-wt-userimport-uninstall-feedback.php:61
175
+ msgid "Other"
176
+ msgstr "Autre"
177
+
178
+ #: includes/class-wt-userimport-uninstall-feedback.php:63
179
+ msgid "Could you tell us a bit more?"
180
+ msgstr "Pourriez-vous nous en dire un peu plus ?"
181
+
182
+ #: includes/class-wt-userimport-uninstall-feedback.php:81
183
+ msgid "If you have a moment, please let us know why you are deactivating:"
184
+ msgstr ""
185
+ "Si vous avez un moment, merci de nous expliquer pourquoi vous désactivez :"
186
+
187
+ #: includes/class-wt-userimport-uninstall-feedback.php:93
188
+ msgid "I rather wouldn't say"
189
+ msgstr "Je préfère ne pas dire"
190
+
191
+ #: includes/class-wt-userimport-uninstall-feedback.php:94
192
+ msgid "Submit & Deactivate"
193
+ msgstr "Soumettre & désactiver"
194
+
195
+ #: includes/class-wt-userimport-uninstall-feedback.php:95
196
+ msgid "Cancel"
197
+ msgstr "Annuler"
198
+
199
+ #: includes/class-wt-userimport-uninstall-feedback.php:174
200
+ msgid "Deactivate and leave a review"
201
+ msgstr "Désactiver et laisser un commentaire"
202
+
203
+ #: includes/importer/class-wf-csv-parser.php:193
204
+ #, php-format
205
+ msgid "> Row %s - skipped due to record offset."
206
+ msgstr "> Ligne %s - ignoré en raison du décalage d’enregistrement."
207
+
208
+ #: includes/importer/class-wf-csv-parser.php:199
209
+ #, php-format
210
+ msgid "> Row %s - skipped: cannot insert user without email."
211
+ msgstr ""
212
+ "> Ligne %s - ignoré : impossible d’insérer un utilisateur sans adresse "
213
+ "courriel."
214
+
215
+ #: includes/importer/class-wf-csv-parser.php:204
216
+ #, php-format
217
+ msgid "> Row %s - skipped: Email is not valid."
218
+ msgstr "> Ligne %s - ignoré : l’adresse courriel n’est pas valide."
219
+
220
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:117
221
+ msgid "Error with handle_upload!"
222
+ msgstr "Erreur avec handle_upload !"
223
+
224
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:142
225
+ msgid "Row"
226
+ msgstr "Rangée"
227
+
228
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:143
229
+ msgid "User ID"
230
+ msgstr "ID de l’utilisateur"
231
+
232
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:144
233
+ msgid "User Status"
234
+ msgstr "Statut de l'utilisateur"
235
+
236
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:145
237
+ msgid "Status Msg"
238
+ msgstr "Message d’état"
239
+
240
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:214
241
+ msgid "AJAX Error"
242
+ msgstr "Erreur AJAX"
243
+
244
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:307
245
+ msgid "Error finding uploaded file!"
246
+ msgstr "Erreur lors de la recherche du fichier téléchargé !"
247
+
248
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:374
249
+ msgid "Step 1..."
250
+ msgstr "Étape 1…"
251
+
252
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:379
253
+ msgid "Step 2..."
254
+ msgstr "Étape 2…"
255
+
256
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:383
257
+ msgid "Finalizing..."
258
+ msgstr "Finalisation…"
259
+
260
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:386
261
+ msgid "Finished. Import complete."
262
+ msgstr "Terminé. Importation complète."
263
+
264
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:456
265
+ msgid ""
266
+ "Columns are pre-selected using the Mapping file: \"<b style=\"color:gray\">"
267
+ msgstr ""
268
+ "Les colonnes sont présélectionnées à l’aide du fichier de mappage : \"<b "
269
+ "style=\"color:gray\">"
270
+
271
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:475
272
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:600
273
+ msgid "Processing users."
274
+ msgstr "Traitement des utilisateurs."
275
+
276
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:493
277
+ msgid "Finished processing Users."
278
+ msgstr "Traitement des utilisateurs terminé."
279
+
280
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:516
281
+ msgid "Parsing products CSV."
282
+ msgstr "Analyse des produits CSV."
283
+
284
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:523
285
+ msgid "Finished parsing products CSV."
286
+ msgstr "Analyse syntaxique des produits au format CSV."
287
+
288
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:563
289
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:578
290
+ msgid "Sorry, there has been an error."
291
+ msgstr "Désolé, il y a eu une erreur."
292
+
293
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:604
294
+ msgid "Cannot insert user without email"
295
+ msgstr "Impossible d’insérer un utilisateur sans adresse courriel"
296
+
297
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:608
298
+ msgid "skipped: Email is not valid."
299
+ msgstr "ignoré : l’adresse courriel n’est pas valide."
300
+
301
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:624
302
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:657
303
+ #, php-format
304
+ msgid "> &#8220;%s&#8221;"
305
+ msgstr "> &#8220;%s&#8221;"
306
+
307
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:634
308
+ #, php-format
309
+ msgid "> Error inserting %s: %s"
310
+ msgstr "> Erreur d’insertion %s : %s"
311
+
312
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:641
313
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:642
314
+ msgid "An error occurred with the customer information provided."
315
+ msgstr "Une erreur s’est produite avec les informations client fournies."
316
+
317
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:660
318
+ #, php-format
319
+ msgid "> Finished importing user %s"
320
+ msgstr "> Importation terminée de l’utilisateur %s"
321
+
322
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:661
323
+ msgid "Finished processing users."
324
+ msgstr "Traitement des utilisateurs terminé."
325
+
326
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:767
327
+ msgid "User could not be created without Email."
328
+ msgstr "L’utilisateur n’a pas pu être créé sans adresse courriel."
329
+
330
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:800
331
+ msgid "Import"
332
+ msgstr "Importer"
333
+
334
+ #: includes/importer/class-wf-customerimpexpcsv-customer-import.php:800
335
+ msgid "Merge Users"
336
+ msgstr "Fusionner les utilisateurs"
337
+
338
+ #: includes/importer/views/html-wf-import-greeting.php:5
339
+ #: includes/views/html-wf-admin-screen.php:4
340
+ msgid "User/Customer Export"
341
+ msgstr "Export utilisateur/client"
342
+
343
+ #: includes/importer/views/html-wf-import-greeting.php:6
344
+ #: includes/views/html-wf-admin-screen.php:5
345
+ msgid "User/Customer Import"
346
+ msgstr "Import utilisateur/client"
347
+
348
+ #: includes/importer/views/html-wf-import-greeting.php:7
349
+ #: includes/views/html-wf-admin-screen.php:6
350
+ msgid "Help"
351
+ msgstr "Aide"
352
+
353
+ #: includes/importer/views/html-wf-import-greeting.php:8
354
+ #: includes/views/html-wf-admin-screen.php:7
355
+ msgid "Upgrade to Premium for More Features"
356
+ msgstr "Mettre à niveau vers Premium pour plus de fonctionnalités"
357
+
358
+ #: includes/importer/views/html-wf-import-greeting.php:16
359
+ #: includes/views/import/html-wf-import-customers.php:2
360
+ msgid "Import Users in CSV Format:"
361
+ msgstr "Importer des utilisateurs au format CSV :"
362
+
363
+ #: includes/importer/views/html-wf-import-greeting.php:17
364
+ msgid ""
365
+ "Import Users in CSV format from your computer.You can import users/customers "
366
+ "(in CSV format) in to the shop."
367
+ msgstr ""
368
+ "Importer des utilisateurs au format CSV à partir de votre ordinateur. Vous "
369
+ "pouvez importer des utilisateurs/clients (au format CSV) dans la boutique."
370
+
371
+ #: includes/importer/views/html-wf-import-greeting.php:19
372
+ msgid ""
373
+ "Before you can upload your import file, you will need to fix the following "
374
+ "error:"
375
+ msgstr ""
376
+ "Avant de pouvoir télécharger votre fichier d’importation, vous devez "
377
+ "corriger l’erreur suivante :"
378
+
379
+ #: includes/importer/views/html-wf-import-greeting.php:28
380
+ msgid "Select a file from your computer"
381
+ msgstr "Sélectionnez un fichier dans votre ordinateur"
382
+
383
+ #: includes/importer/views/html-wf-import-greeting.php:34
384
+ #, php-format
385
+ msgid "Maximum size: %s"
386
+ msgstr "Taille maximum : %s"
387
+
388
+ #: includes/importer/views/market.php:89 includes/views/export/market.php:94
389
+ msgid "Upgrade to Premium Version"
390
+ msgstr "Mise à niveau vers la version Premium"
391
+
392
+ #: includes/importer/views/market.php:92 includes/views/export/market.php:97
393
+ msgid "Your Business is precious! Go Premium!"
394
+ msgstr "Votre entreprise est précieuse ! Passer en Premium !"
395
+
396
+ #: includes/importer/views/market.php:94 includes/views/export/market.php:99
397
+ msgid ""
398
+ "HikeForce Import Export Users Plugin Premium version helps you to seamlessly "
399
+ "import/export Customer details into your Woocommerce Store."
400
+ msgstr ""
401
+ "L’extension Premium Import/export Utilisateurs HikeForce vous permet "
402
+ "d’importer/exporter en toute transparence les détails du client dans votre "
403
+ "boutique Woocommerce."
404
+
405
+ #: includes/importer/views/market.php:96 includes/views/export/market.php:101
406
+ msgid "Export/Import WooCommerce Customer details into a CSV file."
407
+ msgstr "Exporter/importer les détails du client dans un fichier CSV. "
408
+
409
+ #: includes/importer/views/market.php:96 includes/views/export/market.php:101
410
+ msgid "( Basic version supports only WordPress User details )"
411
+ msgstr ""
412
+ "(La version de base ne prend en charge que les détails de l’utilisateur "
413
+ "WordPress)"
414
+
415
+ #: includes/importer/views/market.php:97 includes/views/export/market.php:102
416
+ msgid "Various Filter options for exporting Customers."
417
+ msgstr "Diverses options de filtrage pour exporter des clients."
418
+
419
+ #: includes/importer/views/market.php:98 includes/views/export/market.php:103
420
+ msgid "Map and Transform fields while Importing Customers."
421
+ msgstr "Mappez et transformez les champs lors de l’importation de clients."
422
+
423
+ #: includes/importer/views/market.php:99 includes/views/export/market.php:104
424
+ msgid "Change values while importing Customers using Evaluation Fields."
425
+ msgstr ""
426
+ "Modifiez les valeurs lors de l’importation de clients à l’aide des champs "
427
+ "d’évaluation."
428
+
429
+ #: includes/importer/views/market.php:100 includes/views/export/market.php:105
430
+ msgid "Choice to Update or Skip existing imported Customers."
431
+ msgstr "Choix de mettre à jour ou ignorer les clients importés existants."
432
+
433
+ #: includes/importer/views/market.php:101 includes/views/export/market.php:106
434
+ msgid "Choice to Send or Skip Emails for newly imported Customers."
435
+ msgstr ""
436
+ "Choix d’envoyer ou de ignorer des courriels pour les clients nouvellement "
437
+ "importés."
438
+
439
+ #: includes/importer/views/market.php:102 includes/views/export/market.php:107
440
+ msgid ""
441
+ "Import/Export file from/to a remote server via FTP in Scheduled time "
442
+ "interval with Cron Job."
443
+ msgstr ""
444
+ "Importer/exporter un fichier depuis/vers un serveur distant via FTP dans un "
445
+ "intervalle de temps planifié avec un travail cron."
446
+
447
+ #: includes/importer/views/market.php:103 includes/views/export/market.php:108
448
+ msgid "Excellent Support for setting it up!"
449
+ msgstr "Excellent support pour la mise en place !"
450
+
451
+ #: includes/importer/views/market.php:108 includes/views/export/market.php:113
452
+ #: includes/views/html-wf-help-guide.php:39
453
+ #: includes/views/html-wf-help-guide.php:41
454
+ msgid "Documentation"
455
+ msgstr "Documentation"
456
+
457
+ #: includes/importer/views/market.php:112 includes/views/export/market.php:90
458
+ #, php-format
459
+ msgid ""
460
+ "<div class=\"\"><p><i>If you like the plugin please leave us a %1$s review!</"
461
+ "i><p></div>"
462
+ msgstr ""
463
+ "<div class=\"\"><p><i>Si vous aimez l’extension merci de nous laisser un "
464
+ "avis %1$s !</i><p></div>"
465
+
466
+ #: includes/views/export/html-wf-export-customers.php:4
467
+ msgid "Export Users in CSV Format:"
468
+ msgstr "Exporter des utilisateurs au format CSV :"
469
+
470
+ #: includes/views/export/html-wf-export-customers.php:5
471
+ msgid ""
472
+ "Export and download your Users in CSV format. This file can be used to "
473
+ "import users back into your Website."
474
+ msgstr ""
475
+ "Exportez et téléchargez vos utilisateurs au format CSV. Ce fichier peut être "
476
+ "utilisé pour importer des utilisateurs dans votre site Web."
477
+
478
+ #: includes/views/export/html-wf-export-customers.php:11
479
+ msgid "User Roles"
480
+ msgstr "Rôles de l’utilisateur"
481
+
482
+ #: includes/views/export/html-wf-export-customers.php:14
483
+ msgid "All Roles"
484
+ msgstr "Tous les rôles"
485
+
486
+ #: includes/views/export/html-wf-export-customers.php:25
487
+ msgid "Users with these roles will be exported."
488
+ msgstr "Les utilisateurs avec ces rôles seront exportés."
489
+
490
+ #: includes/views/export/html-wf-export-customers.php:30
491
+ msgid "Offset"
492
+ msgstr "Décalage"
493
+
494
+ #: includes/views/export/html-wf-export-customers.php:33
495
+ msgid "0"
496
+ msgstr "0"
497
+
498
+ #: includes/views/export/html-wf-export-customers.php:34
499
+ msgid "The number of users to skip before returning."
500
+ msgstr "Nombre d’utilisateurs à ignorer avant le traitement."
501
+
502
+ #: includes/views/export/html-wf-export-customers.php:39
503
+ msgid "Limit"
504
+ msgstr "Limite"
505
+
506
+ #: includes/views/export/html-wf-export-customers.php:42
507
+ msgid "Unlimited"
508
+ msgstr "Illimitée"
509
+
510
+ #: includes/views/export/html-wf-export-customers.php:43
511
+ msgid "The number of users to return."
512
+ msgstr "Nombre d’utilisateurs à traiter."
513
+
514
+ #: includes/views/export/html-wf-export-customers.php:53
515
+ msgid "Columns"
516
+ msgstr "Colonnes"
517
+
518
+ #: includes/views/export/html-wf-export-customers.php:57
519
+ msgid "Column"
520
+ msgstr "Colonne"
521
+
522
+ #: includes/views/export/html-wf-export-customers.php:60
523
+ msgid "Column Name"
524
+ msgstr "Nom de la colonne"
525
+
526
+ #: includes/views/export/html-wf-export-customers.php:87
527
+ msgid "Export Users"
528
+ msgstr "Exporter les utilisateurs"
529
+
530
+ #: includes/views/html-wf-help-guide.php:31
531
+ msgid "How-to-setup"
532
+ msgstr "Comment configurer"
533
+
534
+ #: includes/views/html-wf-help-guide.php:32
535
+ msgid "Get to know about our produt in 3 minutes with this video"
536
+ msgstr "Découvrez notre produit en 3 minutes avec cette vidéo"
537
+
538
+ #: includes/views/html-wf-help-guide.php:34
539
+ msgid "Setup Guide"
540
+ msgstr "Guide de configuration"
541
+
542
+ #: includes/views/html-wf-help-guide.php:40
543
+ msgid "Refer to our documentation to set and get started"
544
+ msgstr "Reportez-vous à notre documentation pour définir et commencer"
545
+
546
+ #: includes/views/html-wf-help-guide.php:47
547
+ msgid "We would love to help you on any queries or issues."
548
+ msgstr ""
549
+ "Nous serions ravis de vous aider si vous avez des questions ou des problèmes."
550
+
551
+ #: includes/views/html-wf-help-guide.php:49
552
+ msgid "Contact Us"
553
+ msgstr "Contactez-nous"
554
+
555
+ #: includes/views/import/html-wf-import-customers.php:3
556
+ msgid "Import Users in CSV format from your computer"
557
+ msgstr "Importer des utilisateurs au format CSV à partir de votre ordinateur"
558
+
559
+ #: includes/views/import/html-wf-import-customers.php:6
560
+ msgid "Import Users"
561
+ msgstr "Importer des utilisateurs"
562
+
563
+ #~ msgid "This page could not be found!"
564
+ #~ msgstr "Oups, cette page n’existe pas !"
565
+
566
+ #~ msgid "We are sorry. But the page you are looking for is not available."
567
+ #~ msgstr "Nous sommes désolés, mais la page que vous cherchez n’existe plus."
568
+
569
+ #~ msgid "Perhaps you can try a new searching."
570
+ #~ msgstr "Peut-être vous pouvez essayer une nouvelle recherche."
571
+
572
+ #~ msgid "Back To Homepage"
573
+ #~ msgstr "Revenir à l’accueil"
574
+
575
+ #~ msgid "This Post Has One Comment"
576
+ #~ msgstr "Cet article a %d commentaire"
577
+
578
+ #~ msgid "This Post Has %s Comments"
579
+ #~ msgstr "Cet article a %s commentaires"
580
+
581
+ #~ msgid "Previous"
582
+ #~ msgstr "Article précédent"
583
+
584
+ #~ msgid "Next"
585
+ #~ msgstr "Suiv."
586
+
587
+ #~ msgid "Comments are closed."
588
+ #~ msgstr "Les commentaires sont fermés."
589
+
590
+ #~ msgid "You must be %1$slogged in%2$s to post a comment."
591
+ #~ msgstr "Vous devez être %1$sidentifié%2$s pour poster un commentaire."
592
+
593
+ #~ msgid "Logged in as"
594
+ #~ msgstr "Connecté en tant que"
595
+
596
+ #~ msgid "Log out of this account"
597
+ #~ msgstr "Se déconnecter de ce compte"
598
+
599
+ #~ msgid "Log out &raquo;"
600
+ #~ msgstr "Déconnexion &raquo;"
601
+
602
+ #~ msgid "Your Comment Here..."
603
+ #~ msgstr "Votre Commentaire Ici…"
604
+
605
+ #~ msgid "Post Comment"
606
+ #~ msgstr "Poster le commentaire"
607
+
608
+ #~ msgid "Top Bar"
609
+ #~ msgstr "Barre du haut"
610
+
611
+ #~ msgid "Main"
612
+ #~ msgstr "Principal"
613
+
614
+ #~ msgid "Footer"
615
+ #~ msgstr "Pied de page"
616
+
617
+ #~ msgid "Mobile (optional)"
618
+ #~ msgstr "Mobile (optionnel)"
619
+
620
+ #~ msgid "Right Sidebar"
621
+ #~ msgstr "Barre latérale à droite"
622
+
623
+ #, fuzzy
624
+ #~| msgid "Widgets in this area are used in the sidebar region."
625
+ #~ msgid "Widgets in this area are used in the right sidebar region."
626
+ #~ msgstr ""
627
+ #~ "Les widgets dans cette zone sont utilisés dans la région de la barre "
628
+ #~ "latérale."
629
+
630
+ #, fuzzy
631
+ #~| msgid "After Sidebar"
632
+ #~ msgid "Left Sidebar"
633
+ #~ msgstr "Barre latérale gauche"
634
+
635
+ #, fuzzy
636
+ #~| msgid "Widgets in this area are used in the sidebar region."
637
+ #~ msgid "Widgets in this area are used in the left sidebar region."
638
+ #~ msgstr ""
639
+ #~ "Les widgets dans cette zone sont utilisés dans la région de la barre "
640
+ #~ "latérale."
641
+
642
+ #, fuzzy
643
+ #~| msgid "Search Results Found"
644
+ #~ msgid "Search Results Sidebar"
645
+ #~ msgstr "Barre latérale de la page de résultats de recherche"
646
+
647
+ #~ msgid "Widgets in this area are used in the search result page."
648
+ #~ msgstr ""
649
+ #~ "Les widgets dans cette zone sont utilisés dans la page des résultats de "
650
+ #~ "recherche."
651
+
652
+ #~ msgid "Footer 1"
653
+ #~ msgstr "Pied de page 1"
654
+
655
+ #~ msgid "Widgets in this area are used in the first footer region."
656
+ #~ msgstr ""
657
+ #~ "Les widgets dans cette zone sont utilisés dans la première zone de bas de "
658
+ #~ "page."
659
+
660
+ #~ msgid "Footer 2"
661
+ #~ msgstr "Pied de page 2"
662
+
663
+ #~ msgid "Widgets in this area are used in the second footer region."
664
+ #~ msgstr ""
665
+ #~ "Les widgets dans cette zone sont utilisés dans la deuxième zone de bas de "
666
+ #~ "page."
667
+
668
+ #~ msgid "Footer 3"
669
+ #~ msgstr "Pied de page 3"
670
+
671
+ #~ msgid "Widgets in this area are used in the third footer region."
672
+ #~ msgstr ""
673
+ #~ "Les widgets dans cette zone sont utilisés dans la troisième zone de bas "
674
+ #~ "de page."
675
+
676
+ #~ msgid "Footer 4"
677
+ #~ msgstr "Pied de page 4"
678
+
679
+ #~ msgid "Widgets in this area are used in the fourth footer region."
680
+ #~ msgstr ""
681
+ #~ "Les widgets dans cette zone sont utilisés dans la quatrième partie du "
682
+ #~ "pied de page."
683
+
684
+ #~ msgid "Home"
685
+ #~ msgstr "Accueil"
686
+
687
+ #~ msgid "404 Not Found"
688
+ #~ msgstr "Erreur 404 Introuvable"
689
+
690
+ #~ msgid "Archives"
691
+ #~ msgstr "Archives"
692
+
693
+ #~ msgid "Page %s"
694
+ #~ msgstr "Page %s"
695
+
696
+ #~ msgid "Minute %s"
697
+ #~ msgstr "Minute %s"
698
+
699
+ #~ msgid "Week %s"
700
+ #~ msgstr "Semaine %s"
701
+
702
+ #~ msgid "Link values together"
703
+ #~ msgstr "Valeurs de lien globales"
704
+
705
+ #~ msgid "Select"
706
+ #~ msgstr "Sélectionner"
707
+
708
+ #~ msgid "Font Family"
709
+ #~ msgstr "Famille de Police"
710
+
711
+ #~ msgid "Font Size"
712
+ #~ msgstr "Taille de police (px)"
713
+
714
+ #~ msgid "Font Weight"
715
+ #~ msgstr "Graisse de la police"
716
+
717
+ #~ msgid "Font Style"
718
+ #~ msgstr "Style de la police"
719
+
720
+ #~ msgid "Text Transform"
721
+ #~ msgstr "Transformation du texte"
722
+
723
+ #~ msgid "Line Height"
724
+ #~ msgstr "Interlignage "
725
+
726
+ #~ msgid "Letter Spacing"
727
+ #~ msgstr "Interlettrage (px)"
728
+
729
+ #~ msgid "px - em - rem"
730
+ #~ msgstr "px - em - rem"
731
+
732
+ #~ msgid "Default"
733
+ #~ msgstr "Par défaut"
734
+
735
+ #~ msgid "Thin: 100"
736
+ #~ msgstr "Thin - 100"
737
+
738
+ #~ msgid "Light: 200"
739
+ #~ msgstr "Light - 200"
740
+
741
+ #~ msgid "Book: 300"
742
+ #~ msgstr "Book - 300"
743
+
744
+ #~ msgid "Normal: 400"
745
+ #~ msgstr "Normal - 400"
746
+
747
+ #~ msgid "Medium: 500"
748
+ #~ msgstr "Medium - 500"
749
+
750
+ #~ msgid "Semibold: 600"
751
+ #~ msgstr "Semibold - 600"
752
+
753
+ #~ msgid "Bold: 700"
754
+ #~ msgstr "Bold - 700"
755
+
756
+ #~ msgid "Extra Bold: 800"
757
+ #~ msgstr "Extra Bold - 800"
758
+
759
+ #~ msgid "Black: 900"
760
+ #~ msgstr "Black - 900"
761
+
762
+ #~ msgid "Normal"
763
+ #~ msgstr "Normal"
764
+
765
+ #~ msgid "Italic"
766
+ #~ msgstr "Italique"
767
+
768
+ #~ msgid "Capitalize"
769
+ #~ msgstr "1er lettre en majuscule"
770
+
771
+ #~ msgid "Lowercase"
772
+ #~ msgstr "Minuscule"
773
+
774
+ #~ msgid "Uppercase"
775
+ #~ msgstr "Majuscule"
776
+
777
+ #~ msgid "Custom Fonts"
778
+ #~ msgstr "Polices personnalisées"
779
+
780
+ #~ msgid "Standard Fonts"
781
+ #~ msgstr "Polices standards"
782
+
783
+ #~ msgid "Google Fonts"
784
+ #~ msgstr "Polices Google"
785
+
786
+ #~ msgid "Blog"
787
+ #~ msgstr "Blog"
788
+
789
+ #~ msgid "Blog Entries"
790
+ #~ msgstr "Entrées du blog"
791
+
792
+ #~ msgid "Archives & Entries Layout"
793
+ #~ msgstr "Mise en page des archives et entrées"
794
+
795
+ #~ msgid "Both Sidebars: Style"
796
+ #~ msgstr "Deux barres latérales : style"
797
+
798
+ #~ msgid "Sidebar / Sidebar / Content"
799
+ #~ msgstr "Barre latérale + barre latérale + contenu"
800
+
801
+ #~ msgid "Sidebar / Content / Sidebar"
802
+ #~ msgstr "Barre latérale + contenu + barre latérale"
803
+
804
+ #~ msgid "Content / Sidebar / Sidebar"
805
+ #~ msgstr "Contenu / barre latérale / barre latérale"
806
+
807
+ #~ msgid "Both Sidebars: Content Width (%)"
808
+ #~ msgstr "Deux barres latérales : largeur de contenu (%)"
809
+
810
+ #~ msgid "Both Sidebars: Sidebars Width (%)"
811
+ #~ msgstr "Deux barres latérales : largeur de barre latérale (%)"
812
+
813
+ #~ msgid "Heading Tag"
814
+ #~ msgstr "Balise de titre"
815
+
816
+ #~ msgid "H1"
817
+ #~ msgstr "Titre h1"
818
+
819
+ #~ msgid "H2"
820
+ #~ msgstr "Titre h2"
821
+
822
+ #~ msgid "H3"
823
+ #~ msgstr "Titre h3"
824
+
825
+ #~ msgid "H4"
826
+ #~ msgstr "Titre h4"
827
+
828
+ #~ msgid "H5"
829
+ #~ msgstr "Titre h5"
830
+
831
+ #~ msgid "H6"
832
+ #~ msgstr "Titre h6"
833
+
834
+ #~ msgid "div"
835
+ #~ msgstr "div"
836
+
837
+ #~ msgid "span"
838
+ #~ msgstr "span"
839
+
840
+ #~ msgid "p"
841
+ #~ msgstr "p"
842
+
843
+ #~ msgid "Add Overlay On image Hover"
844
+ #~ msgstr "Ajouter une superposition au survol de l'image"
845
+
846
+ #~ msgid "Blog Style"
847
+ #~ msgstr "Style du Blog"
848
+
849
+ #~ msgid "Large Image"
850
+ #~ msgstr "Image large"
851
+
852
+ #~ msgid "Grid"
853
+ #~ msgstr "Grille"
854
+
855
+ #~ msgid "Thumbnail"
856
+ #~ msgstr "Vignette"
857
+
858
+ #~ msgid "Images Size"
859
+ #~ msgstr "Taille des images"
860
+
861
+ #~ msgid "Medium"
862
+ #~ msgstr "Moyen"
863
+
864
+ #~ msgid "Medium Large"
865
+ #~ msgstr "Entête large"
866
+
867
+ #~ msgid "Large"
868
+ #~ msgstr "Large"
869
+
870
+ #~ msgid "Grid Columns"
871
+ #~ msgstr "Colonnes de la grille"
872
+
873
+ #~ msgid "Grid Style"
874
+ #~ msgstr "Style de grille"
875
+
876
+ #~ msgid "Fit Rows"
877
+ #~ msgstr "Ajuster les lignes"
878
+
879
+ #~ msgid "Masonry"
880
+ #~ msgstr "Maçonnerie"
881
+
882
+ #~ msgid "Equal Heights"
883
+ #~ msgstr "Hauteurs égales"
884
+
885
+ #~ msgid "Image Position"
886
+ #~ msgstr "Position de l’image"
887
+
888
+ #~ msgid "Left"
889
+ #~ msgstr "À gauche"
890
+
891
+ #~ msgid "Right"
892
+ #~ msgstr "À droite"
893
+
894
+ #~ msgid "Vertical Position"
895
+ #~ msgstr "Position verticale"
896
+
897
+ #~ msgid "Top"
898
+ #~ msgstr "En haut"
899
+
900
+ #~ msgid "Center"
901
+ #~ msgstr "Centré"
902
+
903
+ #~ msgid "Bottom"
904
+ #~ msgstr "En bas"
905
+
906
+ #~ msgid "Custom Image Width (px)"
907
+ #~ msgstr "Largeur d'image personnalisée (px)"
908
+
909
+ #~ msgid "Custom Image Height (px)"
910
+ #~ msgstr "Hauteur d'image personnalisée (px)"
911
+
912
+ #~ msgid "Category Color"
913
+ #~ msgstr "Couleur de catégorie"
914
+
915
+ #~ msgid "Category Hover Color"
916
+ #~ msgstr "Couleur au survol de la catégorie"
917
+
918
+ #~ msgid "Comments Color"
919
+ #~ msgstr "Couleur des commentaires"
920
+
921
+ #~ msgid "Comments Hover Color"
922
+ #~ msgstr "Couleur des commentaires au survol"
923
+
924
+ #~ msgid "Excerpt Length"
925
+ #~ msgstr "Longueur de l’extrait"
926
+
927
+ #~ msgid "Add 500 to display full content"
928
+ #~ msgstr "Ajouter 500 pour afficher le contenu complet"
929
+
930
+ #~ msgid "Blog Pagination Style"
931
+ #~ msgstr "Style de pagination du blog"
932
+
933
+ #~ msgid "Standard"
934
+ #~ msgstr "Standard"
935
+
936
+ #~ msgid "Infinite Scroll"
937
+ #~ msgstr "Défilement infini"
938
+
939
+ #~ msgid "Next/Prev"
940
+ #~ msgstr "Suiv./Préc."
941
+
942
+ #~ msgid "Infinite Scroll: Spinners Color"
943
+ #~ msgstr "Défilement infini : couleur des animations"
944
+
945
+ #~ msgid "End of content"
946
+ #~ msgstr "Fin du contenu"
947
+
948
+ #~ msgid "Infinite Scroll: Last Text"
949
+ #~ msgstr "Défilement infini : dernier texte"
950
+
951
+ #~ msgid "No more pages to load"
952
+ #~ msgstr "Plus de pages à charger"
953
+
954
+ #~ msgid "Infinite Scroll: Error Text"
955
+ #~ msgstr "Défilement infini : texte d'erreur"
956
+
957
+ #~ msgid "Elements Positioning"
958
+ #~ msgstr "Position des éléments"
959
+
960
+ #~ msgid "Meta"
961
+ #~ msgstr "Métadonnées"
962
+
963
+ #~ msgid "Author"
964
+ #~ msgstr "Auteur"
965
+
966
+ #~ msgid "Date"
967
+ #~ msgstr "Date"
968
+
969
+ #~ msgid "Categories"
970
+ #~ msgstr "Catégories"
971
+
972
+ #~ msgid "Comments"
973
+ #~ msgstr "Commentaires"
974
+
975
+ #~ msgid "Single Post"
976
+ #~ msgstr "Article individuel"
977
+
978
+ #~ msgid "Layout"
979
+ #~ msgstr "Mise en page"
980
+
981
+ #~ msgid "Page Header Title"
982
+ #~ msgstr "Titre de l’entête"
983
+
984
+ #~ msgid "Post Title"
985
+ #~ msgstr "Titre de l’article"
986
+
987
+ #~ msgid "Featured Image In Page Header"
988
+ #~ msgstr "Image à la une dans l'entête de la page"
989
+
990
+ #~ msgid "Title/Breadcrumb Position"
991
+ #~ msgstr "Position titre/fil d'Ariane"
992
+
993
+ #~ msgid "Position"
994
+ #~ msgstr "Position"
995
+
996
+ #~ msgid "Top Left"
997
+ #~ msgstr "En haut à gauche"
998
+
999
+ #~ msgid "Top Center"
1000
+ #~ msgstr "En haut centré"
1001
+
1002
+ #~ msgid "Top Right"
1003
+ #~ msgstr "En haut à droite"
1004
+
1005
+ #~ msgid "Center Left"
1006
+ #~ msgstr "Centré à gauche "
1007
+
1008
+ #~ msgid "Center Center"
1009
+ #~ msgstr "Centré centré"
1010
+
1011
+ #~ msgid "Center Right"
1012
+ #~ msgstr "Centrer à droite"
1013
+
1014
+ #~ msgid "Bottom Left"
1015
+ #~ msgstr "En bas à gauche"
1016
+
1017
+ #~ msgid "Bottom Center"
1018
+ #~ msgstr "En bas centré"
1019
+
1020
+ #~ msgid "Bottom Right"
1021
+ #~ msgstr "En bas à droite"
1022
+
1023
+ #~ msgid "Attachment"
1024
+ #~ msgstr "Comportement"
1025
+
1026
+ #~ msgid "Scroll"
1027
+ #~ msgstr "Fond défilant"
1028
+
1029
+ #~ msgid "Fixed"
1030
+ #~ msgstr "Fond fixe"
1031
+
1032
+ #~ msgid "Repeat"
1033
+ #~ msgstr "Répéter"
1034
+
1035
+ #~ msgid "No-repeat"
1036
+ #~ msgstr "Ne pas répéter"
1037
+
1038
+ #~ msgid "Repeat-x"
1039
+ #~ msgstr "Répéter sur X"
1040
+
1041
+ #~ msgid "Repeat-y"
1042
+ #~ msgstr "Répéter sur Y"
1043
+
1044
+ #~ msgid "Size"
1045
+ #~ msgstr "Taille"
1046
+
1047
+ #~ msgid "Auto"
1048
+ #~ msgstr "Auto"
1049
+
1050
+ #~ msgid "Cover"
1051
+ #~ msgstr "Recouvrir"
1052
+
1053
+ #~ msgid "Contain"
1054
+ #~ msgstr "Contient"
1055
+
1056
+ #~ msgid "Page Header Height (px)"
1057
+ #~ msgstr "Hauteur de l’entête (en px)"
1058
+
1059
+ #~ msgid "Overlay Opacity"
1060
+ #~ msgstr "Opacité de la superposition"
1061
+
1062
+ #~ msgid "Overlay Color"
1063
+ #~ msgstr "Couleur de la superposition"
1064
+
1065
+ #~ msgid "Full Width Content"
1066
+ #~ msgstr "Contenu pleine largeur"
1067
+
1068
+ #~ msgid "Next/Prev Taxonomy"
1069
+ #~ msgstr "Taxonomie Préc./Suiv."
1070
+
1071
+ #~ msgid "Category"
1072
+ #~ msgstr "Catégorie"
1073
+
1074
+ #~ msgid "Tag"
1075
+ #~ msgstr "Étiquette"
1076
+
1077
+ #~ msgid "Related Posts Count"
1078
+ #~ msgstr "Colonnes d’articles en relation"
1079
+
1080
+ #~ msgid "Related Posts Columns"
1081
+ #~ msgstr "Colonnes d’articles en relation"
1082
+
1083
+ #~ msgid "Related Posts Taxonomy"
1084
+ #~ msgstr "Colonnes d’articles en relation"
1085
+
1086
+ #~ msgid "Related Posts Image Width (px)"
1087
+ #~ msgstr "Largeur de l’image des articles en relation (px)"
1088
+
1089
+ #~ msgid "Related Posts Image Height (px)"
1090
+ #~ msgstr "Hauteur de l’image des articles en relation (px)"
1091
+
1092
+ #~ msgid "Footer Bottom"
1093
+ #~ msgstr "Zone de copyright"
1094
+
1095
+ #~ msgid "Enable Footer Bottom"
1096
+ #~ msgstr "Activer la zone de Copyright"
1097
+
1098
+ #~ msgid "Visibility"
1099
+ #~ msgstr "Visibilité "
1100
+
1101
+ #~ msgid "Show On All Devices"
1102
+ #~ msgstr "Afficher sur les appareils"
1103
+
1104
+ #~ msgid "Hide On Tablet"
1105
+ #~ msgstr "Masquer sur tablette"
1106
+
1107
+ #~ msgid "Hide On Mobile"
1108
+ #~ msgstr "Masquer sur mobile"
1109
+
1110
+ #~ msgid "Hide On Tablet & Mobile"
1111
+ #~ msgstr "Masquer sur tablette & mobile"
1112
+
1113
+ #~ msgid "Copyright"
1114
+ #~ msgstr "Copyright"
1115
+
1116
+ #~ msgid "Shortcodes allowed, %1$ssee the list%2$s."
1117
+ #~ msgstr "Codes courts autorisés, %1$svoir la liste%2$s."
1118
+
1119
+ #~ msgid "Padding (px)"
1120
+ #~ msgstr "Marge interne (px)"
1121
+
1122
+ #~ msgid "Background Color"
1123
+ #~ msgstr "Couleur d’arrière-plan"
1124
+
1125
+ #~ msgid "Text Color"
1126
+ #~ msgstr "Couleur du texte "
1127
+
1128
+ #~ msgid "Links Color"
1129
+ #~ msgstr "Couleur des liens"
1130
+
1131
+ #~ msgid "Links Color: Hover"
1132
+ #~ msgstr "Couleur des liens au survol"
1133
+
1134
+ #~ msgid "Footer Widgets"
1135
+ #~ msgstr "Pied de page"
1136
+
1137
+ #~ msgid "Enable Footer Widgets"
1138
+ #~ msgstr "Activer le pied de page"
1139
+
1140
+ #~ msgid "Fixed Footer"
1141
+ #~ msgstr "Pied de page fixe"
1142
+
1143
+ #~ msgid ""
1144
+ #~ "This option add a height to your content to keep your footer at the "
1145
+ #~ "bottom of your page."
1146
+ #~ msgstr ""
1147
+ #~ "Cette option ajoute une hauteur à votre contenu pour garder votre pied de "
1148
+ #~ "page au bas de votre page."
1149
+
1150
+ #~ msgid "On"
1151
+ #~ msgstr "Activé"
1152
+
1153
+ #~ msgid "Off"
1154
+ #~ msgstr "Désactivé"
1155
+
1156
+ #~ msgid "Parallax Footer Effect"
1157
+ #~ msgstr "Effet de parallaxe du pied de page"
1158
+
1159
+ #~ msgid "Add a parallax effect to your footer."
1160
+ #~ msgstr "Ajoutez un effet de parallaxe à votre pied de page."
1161
+
1162
+ #~ msgid "Select Template"
1163
+ #~ msgstr "Sélectionner un modèle"
1164
+
1165
+ #~ msgid "Choose a template created in Theme Panel > My Library."
1166
+ #~ msgstr "Sélectionnez votre modèle créé dans Theme Panel > Ma bibliothèque."
1167
+
1168
+ #~ msgid "Add Container"
1169
+ #~ msgstr "Ajouter un conteneur"
1170
+
1171
+ #~ msgid "Borders Color"
1172
+ #~ msgstr "Couleur des bordures"
1173
+
1174
+ #~ msgid "General Options"
1175
+ #~ msgstr "Options générales"
1176
+
1177
+ #~ msgid "General Styling"
1178
+ #~ msgstr "Couleurs générales"
1179
+
1180
+ #~ msgid "Primary Color"
1181
+ #~ msgstr "Couleur primaire"
1182
+
1183
+ #~ msgid "Hover Primary Color"
1184
+ #~ msgstr "Survol couleur primaire"
1185
+
1186
+ #~ msgid "Main Border Color"
1187
+ #~ msgstr "Couleur principale de bordure"
1188
+
1189
+ #~ msgid "Site Background"
1190
+ #~ msgstr "Arrière-plan du site"
1191
+
1192
+ #~ msgid "Background Image"
1193
+ #~ msgstr "Image d’arrière-plan"
1194
+
1195
+ #~ msgid "Color"
1196
+ #~ msgstr "Couleur"
1197
+
1198
+ #~ msgid "Color: Hover"
1199
+ #~ msgstr "Couleur au survol"
1200
+
1201
+ #~ msgid "General Settings"
1202
+ #~ msgstr "Mise en page globale"
1203
+
1204
+ #~ msgid "Layout Style"
1205
+ #~ msgstr "Style de mise en page"
1206
+
1207
+ #~ msgid "Wide"
1208
+ #~ msgstr "Large"
1209
+
1210
+ #~ msgid "Boxed"
1211
+ #~ msgstr "Boîte centrée"
1212
+
1213
+ #~ msgid "Separate"
1214
+ #~ msgstr "Séparer"
1215
+
1216
+ #~ msgid "Boxed Layout Drop-Shadow"
1217
+ #~ msgstr "Ombre portée mise en page centrée"
1218
+
1219
+ #~ msgid "Boxed Width (px)"
1220
+ #~ msgstr "Largeur encadrée (px)"
1221
+
1222
+ #~ msgid "Outside Background"
1223
+ #~ msgstr "Arrière-plan extérieur"
1224
+
1225
+ #~ msgid "Inner Background"
1226
+ #~ msgstr "Arrière-plan intérieur"
1227
+
1228
+ #~ msgid "Content Padding"
1229
+ #~ msgstr "Marge interne du contenu"
1230
+
1231
+ #~ msgid "Add a custom content padding. px - em - %."
1232
+ #~ msgstr "Ajouter une marge interne personnalisée de contenu. px - em - %."
1233
+
1234
+ #~ msgid "Widgets Padding"
1235
+ #~ msgstr "Marge interne des widgets"
1236
+
1237
+ #~ msgid "Add a custom widgets padding. px - em - %."
1238
+ #~ msgstr "Ajouter une marge interne personnalisée de widget. px - em - %."
1239
+
1240
+ #~ msgid "Main Container Width (px)"
1241
+ #~ msgstr "Largeur du conteneur principal (px)"
1242
+
1243
+ #~ msgid "Content Width (%)"
1244
+ #~ msgstr "Largeur du contenu (%)"
1245
+
1246
+ #~ msgid "Sidebar Width (%)"
1247
+ #~ msgstr "Largeur de la barre latérale (%)"
1248
+
1249
+ #~ msgid "Enable Schema Markup"
1250
+ #~ msgstr "Activer le schéma de marquage"
1251
+
1252
+ #~ msgid "Pages"
1253
+ #~ msgstr "Pages"
1254
+
1255
+ #~ msgid "Content Padding (px)"
1256
+ #~ msgstr "Rembourrage de contenu (px)"
1257
+
1258
+ #~ msgid "Search Result Page"
1259
+ #~ msgstr "Page de résultat de recherche"
1260
+
1261
+ #~ msgid "Source"
1262
+ #~ msgstr "Source"
1263
+
1264
+ #~ msgid "Search Posts Per Page"
1265
+ #~ msgstr "Rechercher des messages par page"
1266
+
1267
+ #~ msgid "Custom Sidebar"
1268
+ #~ msgstr "Barre latérale personnalisée"
1269
+
1270
+ #~ msgid "Page Title"
1271
+ #~ msgstr "Titre de la page "
1272
+
1273
+ #~ msgid "Style"
1274
+ #~ msgstr "Style"
1275
+
1276
+ #~ msgid "Centered"
1277
+ #~ msgstr "Centré"
1278
+
1279
+ #~ msgid "Centered Minimal"
1280
+ #~ msgstr "Centré minimaliste"
1281
+
1282
+ #~ msgid "Hidden"
1283
+ #~ msgstr "Masqué"
1284
+
1285
+ #~ msgid "Image"
1286
+ #~ msgstr "Image"
1287
+
1288
+ #~ msgid "Height (px)"
1289
+ #~ msgstr "Hauteur (px)"
1290
+
1291
+ #~ msgid "Breadcrumbs"
1292
+ #~ msgstr "Fil d’Ariane"
1293
+
1294
+ #~ msgid "Absolute Right"
1295
+ #~ msgstr "En absolute à droite"
1296
+
1297
+ #~ msgid "Under Title"
1298
+ #~ msgstr "Sous titre"
1299
+
1300
+ #~ msgid "Separator Color"
1301
+ #~ msgstr "Couleur du séparateur"
1302
+
1303
+ #~ msgid "Link Color"
1304
+ #~ msgstr "Couleur du lien"
1305
+
1306
+ #~ msgid "Link Color: Hover"
1307
+ #~ msgstr "Couleur du lien au survol"
1308
+
1309
+ #~ msgid "Scroll To Top"
1310
+ #~ msgstr "Retour haut de page"
1311
+
1312
+ #~ msgid "Scroll Up Button"
1313
+ #~ msgstr "Bouton retour haut de page"
1314
+
1315
+ #~ msgid "Arrow Icon"
1316
+ #~ msgstr "Icône flèche"
1317
+
1318
+ #~ msgid "Button Size (px)"
1319
+ #~ msgstr "Taille du bouton (px)"
1320
+
1321
+ #~ msgid "Icon Size (px)"
1322
+ #~ msgstr "Taille de l’icône (px)"
1323
+
1324
+ #~ msgid "Border Radius (px)"
1325
+ #~ msgstr "Rayon de la bordure (px)"
1326
+
1327
+ #~ msgid "Background Color: Hover"
1328
+ #~ msgstr "Couleur d’arrière-plan au survol"
1329
+
1330
+ #~ msgid "Pagination"
1331
+ #~ msgstr "Pagination"
1332
+
1333
+ #~ msgid "Align"
1334
+ #~ msgstr "Aligner"
1335
+
1336
+ #~ msgid "Font Size (px)"
1337
+ #~ msgstr "Taille de police (px)"
1338
+
1339
+ #~ msgid "Border Width (px)"
1340
+ #~ msgstr "Largeur de la bordure (px)"
1341
+
1342
+ #~ msgid "Border Color"
1343
+ #~ msgstr "Couleur de la bordure"
1344
+
1345
+ #~ msgid "Border Color: Hover"
1346
+ #~ msgstr "Couleur de la bordure au survol"
1347
+
1348
+ #~ msgid "Forms (Input - Textarea)"
1349
+ #~ msgstr "Formulaires (Input - Textarea)"
1350
+
1351
+ #~ msgid "Label Color"
1352
+ #~ msgstr "Couleur de label "
1353
+
1354
+ #~ msgid "Border Color: Focus"
1355
+ #~ msgstr "Couleur de la bordure au Focus"
1356
+
1357
+ #~ msgid "Theme Buttons"
1358
+ #~ msgstr "Thème des boutons"
1359
+
1360
+ #~ msgid "404 Error Page"
1361
+ #~ msgstr "Page Erreur 404"
1362
+
1363
+ #~ msgid "Blank Page"
1364
+ #~ msgstr "Page blanche"
1365
+
1366
+ #~ msgid ""
1367
+ #~ "Enable this option to remove all the elements and have full control of "
1368
+ #~ "the 404 error page."
1369
+ #~ msgstr ""
1370
+ #~ "Activez cette option pour supprimer tous les éléments et avoir le "
1371
+ #~ "contrôle total de la page d'erreur 404."
1372
+
1373
+ #~ msgid "Header"
1374
+ #~ msgstr "Entête"
1375
+
1376
+ #~ msgid "General"
1377
+ #~ msgstr "Général"
1378
+
1379
+ #~ msgid "Minimal"
1380
+ #~ msgstr "Minimal"
1381
+
1382
+ #~ msgid "Transparent"
1383
+ #~ msgstr "Transparent"
1384
+
1385
+ #~ msgid "Top Menu"
1386
+ #~ msgstr "Menu haut"
1387
+
1388
+ #~ msgid "Full Screen"
1389
+ #~ msgstr "Plein écran"
1390
+
1391
+ #~ msgid "Vertical"
1392
+ #~ msgstr "Vertical"
1393
+
1394
+ #~ msgid "Custom Header"
1395
+ #~ msgstr "Entête personnalisée"
1396
+
1397
+ #~ msgid "Header Full Width"
1398
+ #~ msgstr "Entête pleine largeur"
1399
+
1400
+ #~ msgid "Header Border Bottom"
1401
+ #~ msgstr "Bordure inférieure d’entête"
1402
+
1403
+ #~ msgid "Border Bottom Color"
1404
+ #~ msgstr "Couleur de bordure inférieure"
1405
+
1406
+ #~ msgid "Transparent Header Settings"
1407
+ #~ msgstr "Paramètres de l'entête transparente"
1408
+
1409
+ #~ msgid "Top Menu Header Settings"
1410
+ #~ msgstr "Paramètres menu supérieur d'entête"
1411
+
1412
+ #~ msgid "Menu Position"
1413
+ #~ msgstr "Position du menu"
1414
+
1415
+ #~ msgid "Before The Logo"
1416
+ #~ msgstr "Avant le logo"
1417
+
1418
+ #~ msgid "After The Logo"
1419
+ #~ msgstr "Après le logo"
1420
+
1421
+ #~ msgid "Menu Background Color"
1422
+ #~ msgstr "Couleur d’arrière-plan du menu"
1423
+
1424
+ #~ msgid "Search Button Border Color"
1425
+ #~ msgstr "Couleur de bordure du bouton de recherche"
1426
+
1427
+ #~ msgid "Search Button Color"
1428
+ #~ msgstr "Couleur du bouton de recherche"
1429
+
1430
+ #~ msgid "Search Button Color: Hover"
1431
+ #~ msgstr "Couleur au survol du bouton de recherche"
1432
+
1433
+ #~ msgid "Full Screen Header Settings"
1434
+ #~ msgstr "Paramètres de l'entête plein écran"
1435
+
1436
+ #~ msgid "Add Transparent Header"
1437
+ #~ msgstr "Ajouter une entête transparente"
1438
+
1439
+ #~ msgid "Logo (optional)"
1440
+ #~ msgstr "Logo (optionnel)"
1441
+
1442
+ #~ msgid "Select a custom logo when the menu is opened."
1443
+ #~ msgstr "Sélectionnez un logo personnalisé lorsque le menu est ouvert."
1444
+
1445
+ #~ msgid "Retina Logo (optional)"
1446
+ #~ msgstr "Logo Rétina (optionnel)"
1447
+
1448
+ #, fuzzy
1449
+ #~| msgid "Select a custom retina logo when the menu is opened."
1450
+ #~ msgid ""
1451
+ #~ "Select a custom retina logo (twice the logo size) when the menu is opened."
1452
+ #~ msgstr ""
1453
+ #~ "Sélectionnez un logo personnalisé de Rétina lorsque le menu est ouvert."
1454
+
1455
+ #~ msgid "Styling"
1456
+ #~ msgstr "Style"
1457
+
1458
+ #~ msgid "Menu Bar Color"
1459
+ #~ msgstr "Couleur de la barre du menu"
1460
+
1461
+ #~ msgid "Menu Bar Close Color"
1462
+ #~ msgstr "Couleur de la fermeture du menu"
1463
+
1464
+ #~ msgid "Links Background Color"
1465
+ #~ msgstr "Couleur d’arrière-plan des liens"
1466
+
1467
+ #~ msgid "Links Hover Background Color"
1468
+ #~ msgstr "Couleur d'arrière-plan du lien au survol"
1469
+
1470
+ #~ msgid "Links Hover Color"
1471
+ #~ msgstr "Couleur des liens au survol"
1472
+
1473
+ #~ msgid "Search Styling"
1474
+ #~ msgstr "Style de la recherche"
1475
+
1476
+ #~ msgid "Input Color"
1477
+ #~ msgstr "Couleur du texte de champ"
1478
+
1479
+ #~ msgid "Input Dashed Text Color"
1480
+ #~ msgstr "Couleur du texte factice"
1481
+
1482
+ #~ msgid "Input Border Bottom Color"
1483
+ #~ msgstr "Couleur de bordure inférieure de champ"
1484
+
1485
+ #~ msgid "Input Hover Border Bottom Color"
1486
+ #~ msgstr "Couleur de bordure inférieure de champ : survol"
1487
+
1488
+ #~ msgid "Input Focus Border Bottom Color"
1489
+ #~ msgstr "Couleur de bordure inférieure de champ : focus"
1490
+
1491
+ #~ msgid "Center Header Settings"
1492
+ #~ msgstr "Paramètres entête centrée"
1493
+
1494
+ #~ msgid "Left Menu"
1495
+ #~ msgstr "Menu de gauche"
1496
+
1497
+ #~ msgid "Menus Position"
1498
+ #~ msgstr "Position des menus"
1499
+
1500
+ #~ msgid "Wider Spacing"
1501
+ #~ msgstr "Espacement plus large"
1502
+
1503
+ #~ msgid "Centered Menus"
1504
+ #~ msgstr "Menus centrés "
1505
+
1506
+ #~ msgid "Closer Spacing"
1507
+ #~ msgstr "Espacement plus étroit"
1508
+
1509
+ #~ msgid "Medium Header Settings"
1510
+ #~ msgstr "Paramètres d'entête moyen"
1511
+
1512
+ #~ msgid "Hide Menu When Scrolling"
1513
+ #~ msgstr "Masquer le menu lors du défilement"
1514
+
1515
+ #~ msgid "Stick Only The Menu"
1516
+ #~ msgstr "Coller seulement le menu"
1517
+
1518
+ #~ msgid "Top Header"
1519
+ #~ msgstr "Entête supérieure"
1520
+
1521
+ #~ msgid "Search Form"
1522
+ #~ msgstr "Formulaire de recherche"
1523
+
1524
+ #~ msgid "Logo"
1525
+ #~ msgstr "Logo"
1526
+
1527
+ #~ msgid "Social Buttons"
1528
+ #~ msgstr "Boutons sociaux"
1529
+
1530
+ #~ msgid "Sticky Padding (px)"
1531
+ #~ msgstr "Marge interne collante (px)"
1532
+
1533
+ #~ msgid "If you use the sticky header extension"
1534
+ #~ msgstr "Si vous utilisez l’extension de menu collant"
1535
+
1536
+ #~ msgid "Menu"
1537
+ #~ msgstr "Menu"
1538
+
1539
+ #~ msgid "Menu Items Padding (px)"
1540
+ #~ msgstr "Marge interne des éléments de menu (px)"
1541
+
1542
+ #~ msgid "Input Background Color"
1543
+ #~ msgstr "Couleur d’arrière-plan de champ"
1544
+
1545
+ #~ msgid "Placeholder Color"
1546
+ #~ msgstr "Couleur du terme générique"
1547
+
1548
+ #~ msgid "Button Color"
1549
+ #~ msgstr "Couleur du bouton"
1550
+
1551
+ #~ msgid "Button Hover Color"
1552
+ #~ msgstr "Couleur du bouton au survol"
1553
+
1554
+ #~ msgid "Vertical Header Settings"
1555
+ #~ msgstr "Paramètres d'entête vertical"
1556
+
1557
+ #~ msgid ""
1558
+ #~ "Choose a template created in Theme Panel > My Library to replace the "
1559
+ #~ "header content."
1560
+ #~ msgstr ""
1561
+ #~ "Choisissez un modèle créé dans Panneau du thème > Ma bibliothèque pour "
1562
+ #~ "remplacer le contenu de l'entête."
1563
+
1564
+ #~ msgid "Select Bottom Template"
1565
+ #~ msgstr "Sélectionnez un modèle de bas"
1566
+
1567
+ #~ msgid ""
1568
+ #~ "Choose a template created in Theme Panel > My Library to add at the "
1569
+ #~ "header bottom."
1570
+ #~ msgstr ""
1571
+ #~ "Choisissez un modèle créé dans Panneau du thème > Ma bibliothèque pour "
1572
+ #~ "ajouter en bas de l'entête."
1573
+
1574
+ #~ msgid "Add Header Shadow"
1575
+ #~ msgstr "Ajouter une ombre à l'entête"
1576
+
1577
+ #~ msgid "Closed Header"
1578
+ #~ msgstr "Entête fermé"
1579
+
1580
+ #~ msgid "Custom Hamburger Button Color"
1581
+ #~ msgstr "Couleur du bouton de menu mobile personnalisé"
1582
+
1583
+ #, fuzzy
1584
+ #~| msgid "Boxed Width (px)"
1585
+ #~ msgid "Collapse Width (px)"
1586
+ #~ msgstr "Largeur encadrée (px)"
1587
+
1588
+ #~ msgid "Width (px)"
1589
+ #~ msgstr "Largeur (px)"
1590
+
1591
+ #~ msgid "Inner Padding (px)"
1592
+ #~ msgstr "Marge interne (px)"
1593
+
1594
+ #~ msgid "Logo Position"
1595
+ #~ msgstr "Position du logo"
1596
+
1597
+ #~ msgid "Menu Items Top/Bottom Padding (px)"
1598
+ #~ msgstr " Marge interne haute/basse des éléments de menu (px)"
1599
+
1600
+ #~ msgid "Dropdown Target"
1601
+ #~ msgstr "Cible du menu déroulant"
1602
+
1603
+ #~ msgid "Choose your opening target for your submenus"
1604
+ #~ msgstr "Choisissez votre cible d'ouverture pour vos sous-menus"
1605
+
1606
+ #~ msgid "Icon"
1607
+ #~ msgstr "Icône"
1608
+
1609
+ #~ msgid "Link"
1610
+ #~ msgstr "Lien"
1611
+
1612
+ #~ msgid "Menu Items Border Color"
1613
+ #~ msgstr "Couleur de bordure des éléments de menu"
1614
+
1615
+ #~ msgid "Sub Menu Background Color"
1616
+ #~ msgstr "Couleur d’arrière-plan des sous-menu"
1617
+
1618
+ #~ msgid "Sub Menu Links Color"
1619
+ #~ msgstr "Couleur des liens de sous-menu"
1620
+
1621
+ #~ msgid "Sub Menu Links Color: Hover"
1622
+ #~ msgstr "Couleur des liens de sous-menu au survol"
1623
+
1624
+ #~ msgid "Sub Menu Links Background Color"
1625
+ #~ msgstr "Couleur d’arrière-plan des liens de sous-menu"
1626
+
1627
+ #~ msgid "Sub Menu Links Background Color: Hover"
1628
+ #~ msgstr "Couleur d’arrière-plan des liens de sous-menu au survol"
1629
+
1630
+ #~ msgid "Display Search Form"
1631
+ #~ msgstr "Afficher le formulaire de recherche"
1632
+
1633
+ #~ msgid "Border Width"
1634
+ #~ msgstr "Largeur de la bordure"
1635
+
1636
+ #~ msgid "Add a custom border radius. px - em - %."
1637
+ #~ msgstr "Ajouter un rayon de bordure personnalisé. px - em - %."
1638
+
1639
+ #~ msgid "Border Radius"
1640
+ #~ msgstr "Rayon de bordure"
1641
+
1642
+ #~ msgid "Button Color: Hover"
1643
+ #~ msgstr "Couleur du texte du bouton au survol"
1644
+
1645
+ #~ msgid "Header Media"
1646
+ #~ msgstr "Média d’entête"
1647
+
1648
+ #~ msgid "Retina Logo"
1649
+ #~ msgstr "Logo rétina"
1650
+
1651
+ #, fuzzy
1652
+ #~| msgid "Select a custom retina logo when the menu is opened."
1653
+ #~ msgid "Select a retina logo twice the normal logo size."
1654
+ #~ msgstr ""
1655
+ #~ "Sélectionnez un logo personnalisé de Rétina lorsque le menu est ouvert."
1656
+
1657
+ #~ msgid "Max Width (px)"
1658
+ #~ msgstr "Largeur maxi (px)"
1659
+
1660
+ #~ msgid "Max Height (px)"
1661
+ #~ msgstr "Hauteur maxi (px)"
1662
+
1663
+ #, fuzzy
1664
+ #~| msgid ""
1665
+ #~| "Choose a template created in Theme Panel > My Library to replace the "
1666
+ #~| "content."
1667
+ #~ msgid ""
1668
+ #~ "Choose a template created in Theme Panel > My Library to replace the "
1669
+ #~ "navigation."
1670
+ #~ msgstr ""
1671
+ #~ "Choisissez un modèle créé dans Panneau du thème > Ma bibliothèque pour "
1672
+ #~ "remplacer le contenu."
1673
+
1674
+ #~ msgid "Top Level Dropdown Icon"
1675
+ #~ msgstr "Icône menu déroulant haut de page"
1676
+
1677
+ #~ msgid "Second+ Level Dropdown Icon"
1678
+ #~ msgstr "Icône menu déroulant de deuxième niveau"
1679
+
1680
+ #~ msgid "Dropdown Top Border"
1681
+ #~ msgstr "Bordure supérieure du menu déroulant"
1682
+
1683
+ #~ msgid "Links Effect"
1684
+ #~ msgstr "Effet de lien du menu"
1685
+
1686
+ #~ msgid "No Effect"
1687
+ #~ msgstr "Pas d'effet"
1688
+
1689
+ #~ msgid "Underline From Left"
1690
+ #~ msgstr "Souligné depuis la gauche"
1691
+
1692
+ #~ msgid "Underline Up"
1693
+ #~ msgstr "Souligner en haut"
1694
+
1695
+ #~ msgid "Underline Down"
1696
+ #~ msgstr "Souligné en bas"
1697
+
1698
+ #~ msgid "Brackets"
1699
+ #~ msgstr "Entre parenthèses"
1700
+
1701
+ #~ msgid "Overline & Fixed Underline"
1702
+ #~ msgstr "Souligné depuis haut fixe bas"
1703
+
1704
+ #~ msgid "Circular Reveal"
1705
+ #~ msgstr "Cercles révélés"
1706
+
1707
+ #~ msgid "Tripple Dot Under"
1708
+ #~ msgstr "Pointillés en bas"
1709
+
1710
+ #~ msgid "X Marks The Spot"
1711
+ #~ msgstr "Croisée en X"
1712
+
1713
+ #~ msgid "Underline & Overline"
1714
+ #~ msgstr "Souligné depuis haut/bas"
1715
+
1716
+ #~ msgid "Backlighting"
1717
+ #~ msgstr "Bloc ombré"
1718
+
1719
+ #~ msgid "Links Effect: Color"
1720
+ #~ msgstr "Couleur des liens"
1721
+
1722
+ #~ msgid "Main Styling"
1723
+ #~ msgstr "Style principal"
1724
+
1725
+ #~ msgid "Left/Right Padding (px)"
1726
+ #~ msgstr "Marge interne gauche/droite (px)"
1727
+
1728
+ #~ msgid "Link Color: Current Menu Item"
1729
+ #~ msgstr "Couleur texte du lien : menu actif"
1730
+
1731
+ #~ msgid "Link Background"
1732
+ #~ msgstr "Arrière-plan du lien"
1733
+
1734
+ #~ msgid "Link Background: Hover"
1735
+ #~ msgstr "Arrière-plan du lien au survol"
1736
+
1737
+ #~ msgid "Link Background: Current Menu Item"
1738
+ #~ msgstr "Arrière-plan du lien : menu actif"
1739
+
1740
+ #~ msgid "Dropdowns Styling"
1741
+ #~ msgstr "Style du menu déroulant"
1742
+
1743
+ #~ msgid "Top Border Color"
1744
+ #~ msgstr "Couleur de la bordure supérieure"
1745
+
1746
+ #~ msgid "Search Icon"
1747
+ #~ msgstr "Icône de recherche"
1748
+
1749
+ #~ msgid "Search Icon Style"
1750
+ #~ msgstr "Style de l’icône de recherche"
1751
+
1752
+ #~ msgid "Disabled"
1753
+ #~ msgstr "Désactivé"
1754
+
1755
+ #~ msgid "Drop Down"
1756
+ #~ msgstr "Menu déroulant"
1757
+
1758
+ #~ msgid "Header Replace"
1759
+ #~ msgstr "Remplacer l’entête"
1760
+
1761
+ #~ msgid "Overlay"
1762
+ #~ msgstr "Superposition"
1763
+
1764
+ #~ msgid "Input Border Color"
1765
+ #~ msgstr "Couleur de bordure de champ"
1766
+
1767
+ #~ msgid "Input Border Color: Focus"
1768
+ #~ msgstr "Couleur de bordure de champ : focus"
1769
+
1770
+ #~ msgid "Overlay Background Color"
1771
+ #~ msgstr "Couleur d’arrière-plan de la superposition"
1772
+
1773
+ #~ msgid "Input Placeholder Color"
1774
+ #~ msgstr "Couleur du terme factice"
1775
+
1776
+ #~ msgid "Input Border Color: Hover"
1777
+ #~ msgstr "Couleur de bordure de champ : survol"
1778
+
1779
+ #~ msgid "Close Button Color"
1780
+ #~ msgstr "Couleur du texte du bouton de fermeture"
1781
+
1782
+ #~ msgid "Dropdowns Categories Posts"
1783
+ #~ msgstr "Menus déroulants de catégories d’articles"
1784
+
1785
+ #~ msgid "Category Title: Background"
1786
+ #~ msgstr "Titre de catégorie : arrière-plan"
1787
+
1788
+ #~ msgid "Category Title: Color"
1789
+ #~ msgstr "Titre de catégorie : couleur"
1790
+
1791
+ #~ msgid "Posts Links: Color"
1792
+ #~ msgstr "Couleur des liens d’article"
1793
+
1794
+ #~ msgid "Posts Links Hover: Color"
1795
+ #~ msgstr "Couleur des liens d’article au survol"
1796
+
1797
+ #~ msgid "Posts Date: Color"
1798
+ #~ msgstr "Date d’article : couleur"
1799
+
1800
+ #~ msgid "Social Menu"
1801
+ #~ msgstr "Menu des réseaux sociaux"
1802
+
1803
+ #~ msgid "Enable Social Menu"
1804
+ #~ msgstr "Activer le menu des réseaux sociaux"
1805
+
1806
+ #~ msgid "Social Link Style"
1807
+ #~ msgstr "Style des liens sociaux"
1808
+
1809
+ #~ msgid "Simple"
1810
+ #~ msgstr "Simple"
1811
+
1812
+ #~ msgid "Colored"
1813
+ #~ msgstr "Coloré"
1814
+
1815
+ #~ msgid "Dark"
1816
+ #~ msgstr "Sombre"
1817
+
1818
+ #~ msgid "Social Link Target"
1819
+ #~ msgstr "Cible des liens sociaux"
1820
+
1821
+ #~ msgid "New Window"
1822
+ #~ msgstr "Nouvelle fenêtre"
1823
+
1824
+ #~ msgid "Same Window"
1825
+ #~ msgstr "Même fenêtre"
1826
+
1827
+ #~ msgid "Margin (px)"
1828
+ #~ msgstr "Marge externe (px)"
1829
+
1830
+ #~ msgid "Social: Background Color"
1831
+ #~ msgstr "Couleur d’arrière-plan des liens sociaux"
1832
+
1833
+ #~ msgid "Social Hover: Background Color"
1834
+ #~ msgstr "Couleur d'arrière-plan des liens sociaux au survol"
1835
+
1836
+ #~ msgid "Social: Color"
1837
+ #~ msgstr "Couleur des liens sociaux"
1838
+
1839
+ #~ msgid "Social Hover: Color"
1840
+ #~ msgstr "Couleur des liens sociaux au survol"
1841
+
1842
+ #~ msgid "Mobile Menu"
1843
+ #~ msgstr "Menu Mobile"
1844
+
1845
+ #~ msgid "Breakpoints"
1846
+ #~ msgstr "Points de rupture"
1847
+
1848
+ #~ msgid "Choose the media query where you want to display the mobile menu."
1849
+ #~ msgstr ""
1850
+ #~ "Choisissez la règle responsive à partir de laquelle s'affiche le menu "
1851
+ #~ "mobile."
1852
+
1853
+ #~ msgid "From 1280px"
1854
+ #~ msgstr "Depuis 1280px"
1855
+
1856
+ #~ msgid "From 1080px"
1857
+ #~ msgstr "Depuis 1080px"
1858
+
1859
+ #~ msgid "From 959px"
1860
+ #~ msgstr "Depuis 959px"
1861
+
1862
+ #~ msgid "From 767px"
1863
+ #~ msgstr "Depuis 767px"
1864
+
1865
+ #~ msgid "From 480px"
1866
+ #~ msgstr "Depuis 480px"
1867
+
1868
+ #~ msgid "From 320px"
1869
+ #~ msgstr "Depuis 320px"
1870
+
1871
+ #~ msgid "Custom media query"
1872
+ #~ msgstr "Règle responsive personnalisée"
1873
+
1874
+ #~ msgid "Select a custom responsive logo for tablet and mobile."
1875
+ #~ msgstr "Sélectionnez un logo responsif pour la tablette et le mobile."
1876
+
1877
+ #~ msgid "Logo Max Height (px)"
1878
+ #~ msgstr "Hauteur maxi (px) du logo"
1879
+
1880
+ #~ msgid "Enter a max height for your responsive logo."
1881
+ #~ msgstr "Entrez une hauteur maximale pour votre logo responsif."
1882
+
1883
+ #~ msgid "Custom Media Query"
1884
+ #~ msgstr "Règle responsive personnalisée."
1885
+
1886
+ #~ msgid ""
1887
+ #~ "Enter your custom media query where you want to display the mobile menu."
1888
+ #~ msgstr ""
1889
+ #~ "Entrez votre règle responsive à partir de laquelle s'affiche le menu "
1890
+ #~ "mobile."
1891
+
1892
+ #~ msgid "Mobile Menu Style"
1893
+ #~ msgstr "Style de menu Mobile"
1894
+
1895
+ #~ msgid "Sidebar"
1896
+ #~ msgstr "Barre latérale"
1897
+
1898
+ #~ msgid "Display Menu Text"
1899
+ #~ msgstr "Afficher le texte du menu"
1900
+
1901
+ #~ msgid "Menu Text"
1902
+ #~ msgstr "Texte du menu"
1903
+
1904
+ #~ msgid "Close"
1905
+ #~ msgstr "Fermer"
1906
+
1907
+ #~ msgid "Close Menu Text"
1908
+ #~ msgstr "Texte de fermeture du menu"
1909
+
1910
+ #~ msgid "Hamburger Icon Class"
1911
+ #~ msgstr "Classe de l’icône du menu hamburger"
1912
+
1913
+ #~ msgid "Enter the full icon class"
1914
+ #~ msgstr "Entrez la classe complète de l’icône"
1915
+
1916
+ #~ msgid "Custom Hamburger Button"
1917
+ #~ msgstr "Bouton de menu mobile personnalisé"
1918
+
1919
+ #~ msgid "Custom Hamburger Button: Color"
1920
+ #~ msgstr "Couleur du bouton de menu mobile personnalisé"
1921
+
1922
+ #~ msgid "Direction"
1923
+ #~ msgstr "Direction"
1924
+
1925
+ #~ msgid "Drop Down Max Height (px)"
1926
+ #~ msgstr "Hauteur maxi du menu déroulant (px)"
1927
+
1928
+ #~ msgid ""
1929
+ #~ "Add the height from which you want to display the scrollbar in the drop "
1930
+ #~ "down"
1931
+ #~ msgstr ""
1932
+ #~ "Ajoutez la hauteur à partir de laquelle vous souhaitez afficher la barre "
1933
+ #~ "de défilement dans la liste déroulante"
1934
+
1935
+ #~ msgid "Displace"
1936
+ #~ msgstr "Déplacer"
1937
+
1938
+ #~ msgid "Close Menu Button"
1939
+ #~ msgstr "Bouton de fermeture menu"
1940
+
1941
+ #~ msgid "Close Menu Button Icon Class"
1942
+ #~ msgstr "Classe de l’icône du bouton de fermeture"
1943
+
1944
+ #~ msgid "Close Menu"
1945
+ #~ msgstr "Fermer le menu"
1946
+
1947
+ #~ msgid "Close Menu Button Text"
1948
+ #~ msgstr "Texte du bouton de fermeture"
1949
+
1950
+ #~ msgid "Mobile Menu Search"
1951
+ #~ msgstr "Menu de recherche Mobile"
1952
+
1953
+ #~ msgid "Styling: Mobile Menu"
1954
+ #~ msgstr "Style du menu Mobile"
1955
+
1956
+ #~ msgid "Close Button Background"
1957
+ #~ msgstr "Couleur d’arrière-plan du bouton de fermeture"
1958
+
1959
+ #~ msgid "Links Background Color: Hover"
1960
+ #~ msgstr "Couleur d'arrière-plan au survol des liens"
1961
+
1962
+ #~ msgid "Dropdowns Menus: Background"
1963
+ #~ msgstr "Menus déroulants : arrière-plan"
1964
+
1965
+ #~ msgid "Searchbar Background"
1966
+ #~ msgstr "Arrière plan de la barre de recherche"
1967
+
1968
+ #~ msgid "Searchbar Color"
1969
+ #~ msgstr "Couleur de la barre de recherche"
1970
+
1971
+ #~ msgid "Searchbar Border Color"
1972
+ #~ msgstr "Couleur de bordure de la barre de recherche"
1973
+
1974
+ #~ msgid "Searchbar Border Color: Hover"
1975
+ #~ msgstr "Couleur de la bordure au survol de la barre de recherche"
1976
+
1977
+ #~ msgid "Searchbar Border Color: Focus"
1978
+ #~ msgstr "Couleur de bordure de la barre de recherche : focus"
1979
+
1980
+ #~ msgid "Searchbar Button Color"
1981
+ #~ msgstr "Couleur du bouton de barre de recherche"
1982
+
1983
+ #~ msgid "Searchbar Button Color: Hover"
1984
+ #~ msgstr "Couleur du bouton de barre de recherche au survol"
1985
+
1986
+ #~ msgid "Select Your Menu"
1987
+ #~ msgstr "Sélectionner votre menu"
1988
+
1989
+ #~ msgid "Widgets"
1990
+ #~ msgstr "Widgets"
1991
+
1992
+ #~ msgid "Margin Bottom (px)"
1993
+ #~ msgstr "Marge inférieure (px)"
1994
+
1995
+ #~ msgid "Titles Border Color"
1996
+ #~ msgstr "Couleur de bordure des titres"
1997
+
1998
+ #~ msgid "Titles Margin Bottom (px)"
1999
+ #~ msgstr "Marge interne inférieure des titres (px)"
2000
+
2001
+ #~ msgid "Enable Top Bar"
2002
+ #~ msgstr "Activer la barre haute d’entête"
2003
+
2004
+ #~ msgid "Top Bar Full Width"
2005
+ #~ msgstr "Barre supérieure pleine largeur"
2006
+
2007
+ #~ msgid "Left Content & Right Social"
2008
+ #~ msgstr "Contenu à gauche & réseaux sociaux à droite"
2009
+
2010
+ #~ msgid "Left Social & Right Content"
2011
+ #~ msgstr "Réseaux sociaux à gauche & contenu à droite"
2012
+
2013
+ #~ msgid "Centered Content & Social"
2014
+ #~ msgstr "Contenu et social centrés"
2015
+
2016
+ #~ msgid "Content"
2017
+ #~ msgstr "Contenu"
2018
+
2019
+ #~ msgid ""
2020
+ #~ "Choose a template created in Theme Panel > My Library to replace the "
2021
+ #~ "content."
2022
+ #~ msgstr ""
2023
+ #~ "Choisissez un modèle créé dans Panneau du thème > Ma bibliothèque pour "
2024
+ #~ "remplacer le contenu."
2025
+
2026
+ #, fuzzy
2027
+ #~| msgid "Before Content Inner"
2028
+ #~ msgid "Place your content here"
2029
+ #~ msgstr "Avant l’intérieur du contenu"
2030
+
2031
+ #~ msgid "Social"
2032
+ #~ msgstr "Réseaux sociaux"
2033
+
2034
+ #~ msgid "Enable Social"
2035
+ #~ msgstr "Activer les réseaux sociaux"
2036
+
2037
+ #~ msgid "Social Alternative"
2038
+ #~ msgstr "Programmes sociaux"
2039
+
2040
+ #~ msgid "Social Links Color"
2041
+ #~ msgstr "Couleur des liens sociaux"
2042
+
2043
+ #~ msgid "Social Links Color: Hover"
2044
+ #~ msgstr "Couleur des liens sociaux au survol"
2045
+
2046
+ #~ msgid "Body"
2047
+ #~ msgstr "Corps de page"
2048
+
2049
+ #~ msgid "All Headings"
2050
+ #~ msgstr "Style générique titrages"
2051
+
2052
+ #~ msgid "Heading 1 (H1)"
2053
+ #~ msgstr "Titrage 1 (h1)"
2054
+
2055
+ #~ msgid "Heading 2 (H2)"
2056
+ #~ msgstr "Titrage 2 (h2)"
2057
+
2058
+ #~ msgid "Heading 3 (H3)"
2059
+ #~ msgstr "Titrage 3 (h3)"
2060
+
2061
+ #~ msgid "Heading 4 (H4)"
2062
+ #~ msgstr "Titrage 4 (h4)"
2063
+
2064
+ #~ msgid "Main Menu"
2065
+ #~ msgstr "Menu principal"
2066
+
2067
+ #~ msgid "Main Menu: Dropdowns"
2068
+ #~ msgstr "Sous-menu déroulant"
2069
+
2070
+ #~ msgid "Page Title Subheading"
2071
+ #~ msgstr "Sous-titre de la page"
2072
+
2073
+ #~ msgid "Blog Entry Title"
2074
+ #~ msgstr "Titre de l'entrée du blog"
2075
+
2076
+ #~ msgid "Blog Post Title"
2077
+ #~ msgstr "Titre d’article du blog"
2078
+
2079
+ #~ msgid "Sidebar Widget Heading"
2080
+ #~ msgstr "Titre Widget barre latérale"
2081
+
2082
+ #~ msgid "Footer Widget Heading"
2083
+ #~ msgstr "Titre Widget pied de page"
2084
+
2085
+ #~ msgid "Footer Copyright"
2086
+ #~ msgstr "Copyright du pied de page"
2087
+
2088
+ #~ msgid "Footer Menu"
2089
+ #~ msgstr "Menu du pied de page"
2090
+
2091
+ #~ msgid "Typography"
2092
+ #~ msgstr "Typographie"
2093
+
2094
+ #~ msgid "Font Subsets"
2095
+ #~ msgstr "Sous-ensembles de police"
2096
+
2097
+ #~ msgid "Important: Not all fonts support every font-weight."
2098
+ #~ msgstr ""
2099
+ #~ "Important : toutes les polices ne sont pas compatibles avec toutes les "
2100
+ #~ "graisses de caractère."
2101
+
2102
+ #~ msgid "None"
2103
+ #~ msgstr "Aucun"
2104
+
2105
+ #~ msgid "Letter Spacing (px)"
2106
+ #~ msgstr "Interlettrage (px)"
2107
+
2108
+ #~ msgid "Font Color"
2109
+ #~ msgstr "Couleur de police"
2110
+
2111
+ #~ msgid "WooCommerce"
2112
+ #~ msgstr "WooCommerce"
2113
+
2114
+ #~ msgid ""
2115
+ #~ "For some options, you must save and refresh your live site to preview "
2116
+ #~ "changes."
2117
+ #~ msgstr ""
2118
+ #~ "Pour certaines options, vous devez enregistrer et actualiser votre site "
2119
+ #~ "en direct pour prévisualiser les modifications."
2120
+
2121
+ #~ msgid "Custom WooCommerce Sidebar"
2122
+ #~ msgstr "Barre latérale personnalisée pour Woocommerce"
2123
+
2124
+ #~ msgid "Category Page"
2125
+ #~ msgstr "Catégorie de page"
2126
+
2127
+ #~ msgid "Display Featured Image"
2128
+ #~ msgstr "Afficher l'image à la Une"
2129
+
2130
+ #~ msgid "Display the categories featured images before the product archives."
2131
+ #~ msgstr ""
2132
+ #~ "Afficher les images à la une des catégories avant les archives de produit."
2133
+
2134
+ #~ msgid "Yes"
2135
+ #~ msgstr "Oui"
2136
+
2137
+ #~ msgid "No"
2138
+ #~ msgstr "Non"
2139
+
2140
+ #~ msgid "Cart Page"
2141
+ #~ msgstr "Page du panier "
2142
+
2143
+ #~ msgid "Cross-Sells Count"
2144
+ #~ msgstr "Compteur des ventes croisées"
2145
+
2146
+ #~ msgid "Cross-Sells Columns"
2147
+ #~ msgstr "Colonnes des ventes croisées"
2148
+
2149
+ #~ msgid "Menu Cart"
2150
+ #~ msgstr "Menu du panier"
2151
+
2152
+ #~ msgid "Hide If Empty Cart"
2153
+ #~ msgstr "Masquer si le panier est vide"
2154
+
2155
+ #~ msgid "Display"
2156
+ #~ msgstr "Afficher"
2157
+
2158
+ #~ msgid "Icon And Cart Total"
2159
+ #~ msgstr "Icône et total du panier"
2160
+
2161
+ #~ msgid "Icon And Cart Count"
2162
+ #~ msgstr "Icône et compteur du panier"
2163
+
2164
+ #~ msgid "Icon And Cart Count + Total"
2165
+ #~ msgstr "Icône et compteur panier + total"
2166
+
2167
+ #~ msgid "Drop-Down"
2168
+ #~ msgstr "Menu déroulant"
2169
+
2170
+ #~ msgid "Go To Cart"
2171
+ #~ msgstr "Voir au panier"
2172
+
2173
+ #~ msgid "Custom Link"
2174
+ #~ msgstr "Lien personnalisé"
2175
+
2176
+ #~ msgid "The Custom Link style need to be selected"
2177
+ #~ msgstr "Le style de lien personnalisé doit être sélectionné"
2178
+
2179
+ #~ msgid "Cart Icon"
2180
+ #~ msgstr "Icône du panier"
2181
+
2182
+ #~ msgid "Custom Icon"
2183
+ #~ msgstr "Icône personnalisée"
2184
+
2185
+ #~ msgid "Enter your full icon class"
2186
+ #~ msgstr "Entrez votre classe complète de l’icône"
2187
+
2188
+ #~ msgid "Center Vertically"
2189
+ #~ msgstr "Centrer verticalement"
2190
+
2191
+ #~ msgid "Use this field to center your icon vertically"
2192
+ #~ msgstr "Utilisez ce champ pour centrer votre icône verticalement"
2193
+
2194
+ #~ msgid "Cart Dropdown Styling"
2195
+ #~ msgstr "Style du menu déroulant du panier"
2196
+
2197
+ #~ msgid "Cart Dropdowns Width (px)"
2198
+ #~ msgstr "Largeur du menu déroulant du panier (px)"
2199
+
2200
+ #~ msgid "Dropdown Borders Color"
2201
+ #~ msgstr "Couleur de bordure du menu déroulant"
2202
+
2203
+ #~ msgid "Remove Link Color"
2204
+ #~ msgstr "Supprimer la couleur de lien"
2205
+
2206
+ #~ msgid "Remove Link Color: Hover"
2207
+ #~ msgstr "Supprimer la couleur de lien ausurvol"
2208
+
2209
+ #~ msgid "Quantity Color"
2210
+ #~ msgstr "Couleur du chiffre de quantité"
2211
+
2212
+ #~ msgid "Price Color"
2213
+ #~ msgstr "Couleur du prix"
2214
+
2215
+ #~ msgid "Subtotal Color"
2216
+ #~ msgstr "Couleur du sous-total"
2217
+
2218
+ #~ msgid "Checkout Button Background"
2219
+ #~ msgstr "Arrière-plan du bouton commander"
2220
+
2221
+ #~ msgid "Checkout Button Background: Hover"
2222
+ #~ msgstr "Arrière-plan du bouton commander au survol"
2223
+
2224
+ #~ msgid "Checkout Button Color"
2225
+ #~ msgstr "Couleur du texte bouton commander"
2226
+
2227
+ #~ msgid "Checkout Button Color: Hover"
2228
+ #~ msgstr "Couleur du texte bouton commander au survol"
2229
+
2230
+ #~ msgid "Shop Posts Per Page"
2231
+ #~ msgstr "Nombre de produits par page"
2232
+
2233
+ #~ msgid "Shop Columns"
2234
+ #~ msgstr "Colonnes de la boutique"
2235
+
2236
+ #~ msgid "Toolbar"
2237
+ #~ msgstr "Barre d'outils"
2238
+
2239
+ #~ msgid "Grid/List Buttons"
2240
+ #~ msgstr "Grille/Liste boutons"
2241
+
2242
+ #~ msgid "Default Catalog View"
2243
+ #~ msgstr "Vue en catalogue par défaut"
2244
+
2245
+ #~ msgid "Grid View"
2246
+ #~ msgstr "Vue en grille"
2247
+
2248
+ #~ msgid "List View"
2249
+ #~ msgstr "Vue en liste"
2250
+
2251
+ #~ msgid "Length of the short description of the list view."
2252
+ #~ msgstr "Longueur de la courte description de la vue en liste."
2253
+
2254
+ #~ msgid "Shop Sort"
2255
+ #~ msgstr "Tri de la boutique"
2256
+
2257
+ #~ msgid "Shop Result Count"
2258
+ #~ msgstr "Compteur des résultats boutique"
2259
+
2260
+ #~ msgid "Products"
2261
+ #~ msgstr "Produits"
2262
+
2263
+ #~ msgid "Title"
2264
+ #~ msgstr "Titre"
2265
+
2266
+ #~ msgid "Price/Rating"
2267
+ #~ msgstr "Prix/Notation"
2268
+
2269
+ #~ msgid "Description"
2270
+ #~ msgstr "Description"
2271
+
2272
+ #~ msgid "Add To Cart Button"
2273
+ #~ msgstr "Bouton ajouter au panier"
2274
+
2275
+ #~ msgid "Product Entry Media"
2276
+ #~ msgstr "Media d’entrée de produit"
2277
+
2278
+ #~ msgid "Featured Image"
2279
+ #~ msgstr "Image à la Une"
2280
+
2281
+ #~ msgid "Image Swap"
2282
+ #~ msgstr "Image alternative"
2283
+
2284
+ #~ msgid "Gallery Slider"
2285
+ #~ msgstr "Diaporama de galerie"
2286
+
2287
+ #, fuzzy
2288
+ #~| msgid "Blog Pagination Style"
2289
+ #~ msgid "Pagination Style"
2290
+ #~ msgstr "Style de pagination"
2291
+
2292
+ #~ msgid "Single"
2293
+ #~ msgstr "Individuel"
2294
+
2295
+ #~ msgid "Summary Elements Positioning"
2296
+ #~ msgstr "Positionnement des éléments du sommaire"
2297
+
2298
+ #~ msgid "Rating"
2299
+ #~ msgstr "Notation"
2300
+
2301
+ #~ msgid "Price"
2302
+ #~ msgstr "Prix"
2303
+
2304
+ #~ msgid "Excerpt"
2305
+ #~ msgstr "Extrait"
2306
+
2307
+ #~ msgid "Quantity & Add To Cart"
2308
+ #~ msgstr "Quantité et ajouter au panier"
2309
+
2310
+ #~ msgid "Product Meta"
2311
+ #~ msgstr "Meta du produit"
2312
+
2313
+ #~ msgid "Tabs Position"
2314
+ #~ msgstr "Position des onglets"
2315
+
2316
+ #~ msgid "Up-Sells Count"
2317
+ #~ msgstr "Compteur des meilleures ventes"
2318
+
2319
+ #~ msgid "Up-Sells Columns"
2320
+ #~ msgstr "Colonnes meilleures ventes"
2321
+
2322
+ #~ msgid "Display Related Items"
2323
+ #~ msgstr "Afficher les éléments en relation"
2324
+
2325
+ #~ msgid "Related Items Count"
2326
+ #~ msgstr "Nombre d’éléments en relation"
2327
+
2328
+ #~ msgid "Related Products Columns"
2329
+ #~ msgstr "Colonnes de produits en relation"
2330
+
2331
+ #~ msgid "Advanced Styling"
2332
+ #~ msgstr "Style avancé"
2333
+
2334
+ #~ msgid "On Sale Background"
2335
+ #~ msgstr "Couleur d’arrière-plan du badge promo"
2336
+
2337
+ #~ msgid "On Sale Color"
2338
+ #~ msgstr "Couleur du texte du badge promo"
2339
+
2340
+ #~ msgid "Out of Stock Background"
2341
+ #~ msgstr "Couleur d’arrière-plan Produit épuisé"
2342
+
2343
+ #~ msgid "Out of Stock Color"
2344
+ #~ msgstr "Couleur du texte Produit épuisé"
2345
+
2346
+ #~ msgid "Stars Color Before"
2347
+ #~ msgstr "Couleur des étoiles avant"
2348
+
2349
+ #~ msgid "Stars Color"
2350
+ #~ msgstr "Couleur des étoiles"
2351
+
2352
+ #~ msgid "Product Entry: Toolbar"
2353
+ #~ msgstr "Fiche produit : barre d’outils"
2354
+
2355
+ #~ msgid "Border Top/Bottom Color"
2356
+ #~ msgstr "Couleur de bordure supérieure/inférieure"
2357
+
2358
+ #~ msgid "Grid/List Color"
2359
+ #~ msgstr "Grille/Liste couleur"
2360
+
2361
+ #~ msgid "Grid/List Border Color"
2362
+ #~ msgstr "Grille/Liste couleur bordure active"
2363
+
2364
+ #~ msgid "Grid/List Hover Color"
2365
+ #~ msgstr "Grille/Liste couleur au survol"
2366
+
2367
+ #~ msgid "Grid/List Active Color"
2368
+ #~ msgstr "Grille/Liste couleur active"
2369
+
2370
+ #~ msgid "Select Color"
2371
+ #~ msgstr "Choisir une couleur"
2372
+
2373
+ #~ msgid "Select Border Color"
2374
+ #~ msgstr "Couleur de la bordure"
2375
+
2376
+ #~ msgid "Number of Products Color"
2377
+ #~ msgstr "Couleur du nombre de produits"
2378
+
2379
+ #~ msgid "Number of Products Inactive Color"
2380
+ #~ msgstr "Couleur du nombre de produits inactifs"
2381
+
2382
+ #~ msgid "Number of Products Border Color"
2383
+ #~ msgstr "Couleur de la bordure du nombre de produits"
2384
+
2385
+ #~ msgid "Product Entry"
2386
+ #~ msgstr "Entrée produit"
2387
+
2388
+ #~ msgid "Category Color: Hover"
2389
+ #~ msgstr "Catégorie : couleur au survol"
2390
+
2391
+ #~ msgid "Title Color"
2392
+ #~ msgstr "Couleur du titre"
2393
+
2394
+ #~ msgid "Title Color: Hover"
2395
+ #~ msgstr "Couleur du titre au survol "
2396
+
2397
+ #~ msgid "Del Price Color"
2398
+ #~ msgstr "Couleur de prix barré"
2399
+
2400
+ #~ msgid "Product Entry: Add To Cart"
2401
+ #~ msgstr "Entrée de produit : Ajouter au panier"
2402
+
2403
+ #~ msgid "Add To Cart Background Color"
2404
+ #~ msgstr "Couleur d'arrière-plan ajouter au panier"
2405
+
2406
+ #~ msgid "Add To Cart Background Color: Hover"
2407
+ #~ msgstr "Couleur d'arrière-plan au survol ajouter au panier"
2408
+
2409
+ #~ msgid "Add To Cart Color"
2410
+ #~ msgstr "Ajouter au panier : couleur"
2411
+
2412
+ #~ msgid "Add To Cart Color: Hover"
2413
+ #~ msgstr "Ajouter au panier : couleur au survol"
2414
+
2415
+ #~ msgid "Add To Cart Border Color"
2416
+ #~ msgstr "Ajouter au panier : couleur de bordure"
2417
+
2418
+ #~ msgid "Add To Cart Border Color: Hover"
2419
+ #~ msgstr "Ajouter au panier : couleur de bordure au survol"
2420
+
2421
+ #~ msgid "Add To Cart Border: Style"
2422
+ #~ msgstr "Style de bordure ajouter au panier"
2423
+
2424
+ #~ msgid "Solid"
2425
+ #~ msgstr "Solide"
2426
+
2427
+ #~ msgid "Double"
2428
+ #~ msgstr "Double"
2429
+
2430
+ #~ msgid "Dashed"
2431
+ #~ msgstr "En pointillés"
2432
+
2433
+ #~ msgid "Dotted"
2434
+ #~ msgstr "Pointillés"
2435
+
2436
+ #~ msgid "Add To Cart Border: Size"
2437
+ #~ msgstr "Taille de bordure ajouter au panier"
2438
+
2439
+ #~ msgid "Add a custom border size. px - em - %."
2440
+ #~ msgstr "Ajouter une taille de bordure personnalisée. px - em - %."
2441
+
2442
+ #~ msgid "Add To Cart Border: Radius"
2443
+ #~ msgstr "Bords arrondis ajouter au panier"
2444
+
2445
+ #~ msgid "Single Product"
2446
+ #~ msgstr "Produit individuel"
2447
+
2448
+ #~ msgid "Description Color"
2449
+ #~ msgstr "Couleur de la description"
2450
+
2451
+ #~ msgid "Quantity Border Color"
2452
+ #~ msgstr "Couleur de bordure de quantité"
2453
+
2454
+ #~ msgid "Quantity Border Color Focus"
2455
+ #~ msgstr "Couleur de bordure de quantité au focus"
2456
+
2457
+ #~ msgid "Quantity Plus/Minus Color"
2458
+ #~ msgstr "Couleur du bouton de quantité +/-"
2459
+
2460
+ #~ msgid "Quantity Plus/Minus Color: Hover"
2461
+ #~ msgstr "Couleur du bouton de quantité +/- au survol"
2462
+
2463
+ #~ msgid "Quantity Plus/Minus Border Color: Hover"
2464
+ #~ msgstr "Couleur de bordure du bouton de quantité +/- au survol"
2465
+
2466
+ #~ msgid "Meta Title Color"
2467
+ #~ msgstr "Couleur du titre Méta"
2468
+
2469
+ #~ msgid "Meta Link Color"
2470
+ #~ msgstr "Couleur des liens Méta"
2471
+
2472
+ #~ msgid "Meta Link Color: Hover"
2473
+ #~ msgstr "Couleur des liens Méta au survol"
2474
+
2475
+ #~ msgid "Single Product: Thumbnails"
2476
+ #~ msgstr "Produit individuel : vignettes"
2477
+
2478
+ #~ msgid "Next/Prev Background: Hover"
2479
+ #~ msgstr "Arrière-plan Suiv/Préc. au survol"
2480
+
2481
+ #~ msgid "Next/Prev Color"
2482
+ #~ msgstr "Couleur Préc./Suiv."
2483
+
2484
+ #~ msgid "Single Product: Tabs"
2485
+ #~ msgstr "Produit individuel : onglets"
2486
+
2487
+ #~ msgid "Text Color: Hover"
2488
+ #~ msgstr "Couleur du texte au survol"
2489
+
2490
+ #~ msgid "Active Text Color"
2491
+ #~ msgstr "Couleur du texte actif"
2492
+
2493
+ #~ msgid "Active Text Borders Color"
2494
+ #~ msgstr "Couleur de bordure du texte actif"
2495
+
2496
+ #~ msgid "Product Description: Title Color"
2497
+ #~ msgstr "Description du produit : couleur du titre"
2498
+
2499
+ #~ msgid "Product Description: Color"
2500
+ #~ msgstr "Description du produit : couleur"
2501
+
2502
+ #~ msgid "Account"
2503
+ #~ msgstr "Mon compte"
2504
+
2505
+ #~ msgid "Navigation: Borders Color"
2506
+ #~ msgstr "Navigation : couleur de bordure"
2507
+
2508
+ #~ msgid "Navigation: Icons Color"
2509
+ #~ msgstr "Navigation : couleur des icônes"
2510
+
2511
+ #~ msgid "Navigation: Links Color"
2512
+ #~ msgstr "Navigation : couleur des liens"
2513
+
2514
+ #~ msgid "Navigation: Links Color: Hover"
2515
+ #~ msgstr "Navigation : couleur des liens au survol"
2516
+
2517
+ #~ msgid "Addresses: Box Background"
2518
+ #~ msgstr "Adresses : arrière-plan"
2519
+
2520
+ #~ msgid "Addresses: Box Title Color"
2521
+ #~ msgstr "Adresses : couleur du titre"
2522
+
2523
+ #~ msgid "Addresses: Box Title Border Bottom Color"
2524
+ #~ msgstr "Adresses : couleur de bordure inférieure titre"
2525
+
2526
+ #~ msgid "Addresses: Box Content Color"
2527
+ #~ msgstr "Adresses : couleur du texte de contenu"
2528
+
2529
+ #~ msgid "Addresses: Box Button Background"
2530
+ #~ msgstr "Adresses : arrière-plan du bouton"
2531
+
2532
+ #~ msgid "Addresses: Box Button Background: Hover"
2533
+ #~ msgstr "Adresses : arrière-plan au survol du bouton"
2534
+
2535
+ #~ msgid "Addresses: Box Button color"
2536
+ #~ msgstr "Adresses : couleur du texte bouton"
2537
+
2538
+ #~ msgid "Addresses: Box Button color: Hover"
2539
+ #~ msgstr "Adresses : couleur du texte au survol bouton"
2540
+
2541
+ #~ msgid "Cart"
2542
+ #~ msgstr "Panier"
2543
+
2544
+ #~ msgid "Head Background"
2545
+ #~ msgstr "Arrière plan de l’entête"
2546
+
2547
+ #~ msgid "Head Titles Color"
2548
+ #~ msgstr "Couleur des titres d’entête"
2549
+
2550
+ #~ msgid "Cart Totals Table: Titles Color"
2551
+ #~ msgstr "Tableau des totaux du panier : couleur des titres"
2552
+
2553
+ #~ msgid "Remove Button Color"
2554
+ #~ msgstr "Supprimer la couleur de bouton"
2555
+
2556
+ #~ msgid "Remove Button Color: Hover"
2557
+ #~ msgstr "Supprimer la couleur de bouton au survol"
2558
+
2559
+ #~ msgid "Checkout"
2560
+ #~ msgstr "Commander"
2561
+
2562
+ #~ msgid "Notices: Borders Color"
2563
+ #~ msgstr "Couleur de la bordure des avis"
2564
+
2565
+ #~ msgid "Notices: Icon Color"
2566
+ #~ msgstr "Couleur de l’icône des avis"
2567
+
2568
+ #~ msgid "Notices: Color"
2569
+ #~ msgstr "Couleur du texte des avis"
2570
+
2571
+ #~ msgid "Notices: Link Color"
2572
+ #~ msgstr "Couleur du lien des avis"
2573
+
2574
+ #~ msgid "Notices: Link Color: Hover"
2575
+ #~ msgstr "Couleur du lien des avis au survol"
2576
+
2577
+ #~ msgid "Notices Form: Border Color"
2578
+ #~ msgstr "Couleur de la bordure des avis de formulaire"
2579
+
2580
+ #~ msgid "Titles Color"
2581
+ #~ msgstr "Couleur des titres"
2582
+
2583
+ #~ msgid "Titles Border Bottom Color"
2584
+ #~ msgstr "Couleur de bordure inférieure des titres"
2585
+
2586
+ #~ msgid "Table Main Background"
2587
+ #~ msgstr "Arrière-plan principal de tableau"
2588
+
2589
+ #~ msgid "Table Titles Color"
2590
+ #~ msgstr "Couleur des titres de tableau"
2591
+
2592
+ #~ msgid "Table Borders Color"
2593
+ #~ msgstr "Couleur de bordure de tableau"
2594
+
2595
+ #~ msgid "Payment Methods Background"
2596
+ #~ msgstr "Arrière-plan des méthodes de paiement"
2597
+
2598
+ #~ msgid "Payment Methods Borders Color"
2599
+ #~ msgstr "Couleur de bordure des méthodes de paiement"
2600
+
2601
+ #~ msgid "Payment Box Background"
2602
+ #~ msgstr "Arrière-plan de la boîte de paiement"
2603
+
2604
+ #~ msgid "Payment Box Color"
2605
+ #~ msgstr "Couleur de la boîte de paiement"
2606
+
2607
+ #~ msgid "Type your search"
2608
+ #~ msgstr "Saisissez votre recherche"
2609
+
2610
+ #~ msgid "Recent Posts"
2611
+ #~ msgstr "Articles récents"
2612
+
2613
+ #~ msgid "Search Results Found"
2614
+ #~ msgstr "Résultats trouvés pour la recherche"
2615
+
2616
+ #~ msgid "Daily Archives: %s"
2617
+ #~ msgstr "Archives quotidiennes : %s"
2618
+
2619
+ #~ msgid "Monthly Archives: %s"
2620
+ #~ msgstr "Archives mensuelles : %s"
2621
+
2622
+ #~ msgid "Yearly Archives: %s"
2623
+ #~ msgstr "Archives annuelles : %s"
2624
+
2625
+ #~ msgid "404: Page Not Found"
2626
+ #~ msgstr "404 : page introuvable"
2627
+
2628
+ #~ msgid "You searched for:"
2629
+ #~ msgstr "Votre recherche pour : "
2630
+
2631
+ #~ msgid "This author has written"
2632
+ #~ msgstr "Cet auteur a écrit"
2633
+
2634
+ #~ msgid "articles"
2635
+ #~ msgstr "articles"
2636
+
2637
+ #~ msgid "Read More"
2638
+ #~ msgstr "Lire la suite"
2639
+
2640
+ #~ msgid "Tags"
2641
+ #~ msgstr "Étiquettes"
2642
+
2643
+ #~ msgid "Social Share"
2644
+ #~ msgstr "Partage réseaux sociaux"
2645
+
2646
+ #~ msgid "Next/Prev Links"
2647
+ #~ msgstr "Liens Préc./Suiv."
2648
+
2649
+ #~ msgid "Author Box"
2650
+ #~ msgstr "Encart sur l’auteur"
2651
+
2652
+ #~ msgid "Related Posts"
2653
+ #~ msgstr "Articles similaires"
2654
+
2655
+ #~ msgid "Pingback:"
2656
+ #~ msgstr "Pingback : "
2657
+
2658
+ #~ msgid "(Edit)"
2659
+ #~ msgstr "(Éditer)"
2660
+
2661
+ #~ msgid "%s "
2662
+ #~ msgstr "%s "
2663
+
2664
+ #~ msgid "edit"
2665
+ #~ msgstr "éditer"
2666
+
2667
+ #~ msgid "Your comment is awaiting moderation."
2668
+ #~ msgstr "Votre commentaire est en attente de modération."
2669
+
2670
+ #~ msgid "Name (required)"
2671
+ #~ msgstr "Nom (requis)"
2672
+
2673
+ #~ msgid "Email (required)"
2674
+ #~ msgstr "Courriel (requis)"
2675
+
2676
+ #~ msgid "Website"
2677
+ #~ msgstr "Site Web"
2678
+
2679
+ #~ msgid "Newer Posts"
2680
+ #~ msgstr "Nouveaux articles"
2681
+
2682
+ #~ msgid "Older Posts"
2683
+ #~ msgstr "Anciens articles"
2684
+
2685
+ #~ msgid "OceanWP"
2686
+ #~ msgstr "OceanWP"
2687
+
2688
+ #~ msgid "Default Icon"
2689
+ #~ msgstr "Icône par défaut"
2690
+
2691
+ #~ msgid "3D X"
2692
+ #~ msgstr "3D Xv"
2693
+
2694
+ #~ msgid "3D X Reverse"
2695
+ #~ msgstr "3D X inversé"
2696
+
2697
+ #~ msgid "3D Y"
2698
+ #~ msgstr "3D Y"
2699
+
2700
+ #~ msgid "3D Y Reverse"
2701
+ #~ msgstr "3D Y inversé"
2702
+
2703
+ #~ msgid "3D XY"
2704
+ #~ msgstr "3D XY"
2705
+
2706
+ #~ msgid "3D XY Reverse"
2707
+ #~ msgstr "3D XY inversé"
2708
+
2709
+ #~ msgid "Arrow"
2710
+ #~ msgstr "Flèche"
2711
+
2712
+ #~ msgid "Arrow Reverse"
2713
+ #~ msgstr "Flèche inversé"
2714
+
2715
+ #~ msgid "Arrowalt"
2716
+ #~ msgstr "Flèche pivotante"
2717
+
2718
+ #~ msgid "Arrowalt Reverse"
2719
+ #~ msgstr "Flèche pivotante inversée"
2720
+
2721
+ #~ msgid "Arrowturn"
2722
+ #~ msgstr "Flèche tournante"
2723
+
2724
+ #~ msgid "Arrowturn Reverse"
2725
+ #~ msgstr "Tournant inversé"
2726
+
2727
+ #~ msgid "Collapse"
2728
+ #~ msgstr "Réduire"
2729
+
2730
+ #~ msgid "Collapse Reverse"
2731
+ #~ msgstr "Réduire inversé"
2732
+
2733
+ #~ msgid "Elastic"
2734
+ #~ msgstr "Élastique"
2735
+
2736
+ #~ msgid "Elastic Reverse"
2737
+ #~ msgstr "Élastique inversé"
2738
+
2739
+ #~ msgid "Minus"
2740
+ #~ msgstr "Moins"
2741
+
2742
+ #~ msgid "Slider"
2743
+ #~ msgstr "Glissé"
2744
+
2745
+ #~ msgid "Slider Reverse"
2746
+ #~ msgstr "Glissé inversé"
2747
+
2748
+ #~ msgid "Spin"
2749
+ #~ msgstr "Tourner"
2750
+
2751
+ #~ msgid "Spin Reverse"
2752
+ #~ msgstr "Tourner inversé"
2753
+
2754
+ #, fuzzy
2755
+ #~ msgid "Stand"
2756
+ #~ msgstr "Si coché la première entrée se démarquera avec une grande image"
2757
+
2758
+ #~ msgid "Vortex"
2759
+ #~ msgstr "Vortex"
2760
+
2761
+ #~ msgid "Vortex Reverse"
2762
+ #~ msgstr "Vortex inversé"
2763
+
2764
+ #~ msgid "Copyright [oceanwp_date] - OceanWP Theme by Nick"
2765
+ #~ msgstr "© [oceanwp_date] - OceanWP thème par Nick"
2766
+
2767
+ #~ msgid "Twitter"
2768
+ #~ msgstr "Twitter"
2769
+
2770
+ #~ msgid "Facebook"
2771
+ #~ msgstr "Facebook"
2772
+
2773
+ #~ msgid "Google Plus"
2774
+ #~ msgstr "Google +"
2775
+
2776
+ #~ msgid "Pinterest"
2777
+ #~ msgstr "Pinterest"
2778
+
2779
+ #~ msgid "Dribbble"
2780
+ #~ msgstr "Dribbble"
2781
+
2782
+ #~ msgid "VK"
2783
+ #~ msgstr "VK"
2784
+
2785
+ #~ msgid "Instagram"
2786
+ #~ msgstr "Instagram"
2787
+
2788
+ #~ msgid "LinkedIn"
2789
+ #~ msgstr "LinkedIn"
2790
+
2791
+ #~ msgid "Tumblr"
2792
+ #~ msgstr "Tumblr"
2793
+
2794
+ #~ msgid "Github"
2795
+ #~ msgstr "Github"
2796
+
2797
+ #~ msgid "Flickr"
2798
+ #~ msgstr "Flickr"
2799
+
2800
+ #~ msgid "Skype"
2801
+ #~ msgstr "Skype"
2802
+
2803
+ #~ msgid "Youtube"
2804
+ #~ msgstr "YouTube"
2805
+
2806
+ #~ msgid "Vimeo"
2807
+ #~ msgstr "Vimeo"
2808
+
2809
+ #~ msgid "Vine"
2810
+ #~ msgstr "Vine"
2811
+
2812
+ #~ msgid "Xing"
2813
+ #~ msgstr "Xing"
2814
+
2815
+ #~ msgid "Yelp"
2816
+ #~ msgstr "Yelp"
2817
+
2818
+ #~ msgid "Tripadvisor"
2819
+ #~ msgstr "Tripadvisor"
2820
+
2821
+ #~ msgid "RSS"
2822
+ #~ msgstr "RSS"
2823
+
2824
+ #~ msgid "Email"
2825
+ #~ msgstr "Courriel "
2826
+
2827
+ #~ msgid "Install Required Plugins"
2828
+ #~ msgstr "Installation des extensions requises"
2829
+
2830
+ #~ msgid "Install Plugins"
2831
+ #~ msgstr "Installer des extensions"
2832
+
2833
+ #~ msgid "Installing Plugin: %s"
2834
+ #~ msgstr "Installation de l’extension : %s"
2835
+
2836
+ #~ msgid "Updating Plugin: %s"
2837
+ #~ msgstr "Mise à jour de l’extension : %s"
2838
+
2839
+ #~ msgid "Something went wrong with the plugin API."
2840
+ #~ msgstr "Une erreur s’est produite avec l’API de l’extension."
2841
+
2842
+ #~ msgid "Return to Required Plugins Installer"
2843
+ #~ msgstr "Retour à l’installateur des extensions obligatoires"
2844
+
2845
+ #~ msgid "Return to the Dashboard"
2846
+ #~ msgstr "Retourner au tableau de bord"
2847
+
2848
+ #~ msgid "Plugin activated successfully."
2849
+ #~ msgstr "Extension activée avec succès."
2850
+
2851
+ #~ msgid "The following plugin was activated successfully:"
2852
+ #~ msgstr "L’extension suivante a été activée avec succès&nbsp;: "
2853
+
2854
+ #~ msgid "No action taken. Plugin %1$s was already active."
2855
+ #~ msgstr "Pas d'action requise. L’extension %1$s est déjà activée."
2856
+
2857
+ #~ msgid ""
2858
+ #~ "Plugin not activated. A higher version of %s is needed for this theme. "
2859
+ #~ "Please update the plugin."
2860
+ #~ msgstr ""
2861
+ #~ "Extension non activée. Une version supérieure à %s est nécessaire pour "
2862
+ #~ "ce thème. Merci de mettre à jour l’extension."
2863
+
2864
+ #~ msgid "All plugins installed and activated successfully. %1$s"
2865
+ #~ msgstr "Toutes les extensions installées et activées avec succès. %1$s"
2866
+
2867
+ #~ msgid ""
2868
+ #~ "There are one or more required or recommended plugins to install, update "
2869
+ #~ "or activate."
2870
+ #~ msgstr ""
2871
+ #~ "Il existe une ou plusieurs extensions requises ou recommandées pour "
2872
+ #~ "l'installation, la mise à jour ou l'activation."
2873
+
2874
+ #~ msgid "Please contact the administrator of this site for help."
2875
+ #~ msgstr ""
2876
+ #~ "Veuillez contacter l’administrateur de ce site pour obtenir de l’aide."
2877
+
2878
+ #~ msgid "Update Required"
2879
+ #~ msgstr "Mise à jour requise"
2880
+
2881
+ #~ msgid ""
2882
+ #~ "The remote plugin package does not contain a folder with the desired slug "
2883
+ #~ "and renaming did not work."
2884
+ #~ msgstr ""
2885
+ #~ "Le pack à distance d’extensions ne contient pas de dossier avec le "
2886
+ #~ "déterminant souhaitée et le renommage n'a pas fonctionné."
2887
+
2888
+ #~ msgid ""
2889
+ #~ "Please contact the plugin provider and ask them to package their plugin "
2890
+ #~ "according to the WordPress guidelines."
2891
+ #~ msgstr ""
2892
+ #~ "Veuillez contacter le développeur de l’extension pour lui demander de la "
2893
+ #~ "rendre conforme aux directives de WordPress."
2894
+
2895
+ #~ msgid ""
2896
+ #~ "The remote plugin package consists of more than one file, but the files "
2897
+ #~ "are not packaged in a folder."
2898
+ #~ msgstr ""
2899
+ #~ "Le pack à distance d’extensions se compose de plus d'un fichier, mais les "
2900
+ #~ "fichiers ne sont pas installés dans un dossier."
2901
+
2902
+ #~ msgid "TGMPA v%s"
2903
+ #~ msgstr "TGMPA v%s"
2904
+
2905
+ #~ msgid "Required"
2906
+ #~ msgstr "Requis"
2907
+
2908
+ #~ msgid "Recommended"
2909
+ #~ msgstr "Recommandé"
2910
+
2911
+ #~ msgid "WordPress Repository"
2912
+ #~ msgstr "Dépôt de WordPress"
2913
+
2914
+ #~ msgid "External Source"
2915
+ #~ msgstr "Source externe"
2916
+
2917
+ #~ msgid "Pre-Packaged"
2918
+ #~ msgstr "Pré-installé"
2919
+
2920
+ #~ msgid "Not Installed"
2921
+ #~ msgstr "Non installé"
2922
+
2923
+ #~ msgid "Installed But Not Activated"
2924
+ #~ msgstr "Installée mais non activée"
2925
+
2926
+ #~ msgid "Active"
2927
+ #~ msgstr "Activé"
2928
+
2929
+ #~ msgid "Required Update not Available"
2930
+ #~ msgstr "Mise à jour requise non disponible"
2931
+
2932
+ #~ msgid "Requires Update"
2933
+ #~ msgstr "Requiert une mise à jour"
2934
+
2935
+ #~ msgid "Update recommended"
2936
+ #~ msgstr "Mise à jour recommandée"
2937
+
2938
+ #~ msgid "Installed version:"
2939
+ #~ msgstr "Version installée : "
2940
+
2941
+ #~ msgid "Minimum required version:"
2942
+ #~ msgstr "Requiert au minimum la version : "
2943
+
2944
+ #~ msgid "Available version:"
2945
+ #~ msgstr "Version disponible : "
2946
+
2947
+ #~ msgid "No plugins to install, update or activate."
2948
+ #~ msgstr "Pas d’extension à installer, à mettre à jour ou à activer."
2949
+
2950
+ #~ msgid "Plugin"
2951
+ #~ msgstr "Extension"
2952
+
2953
+ #~ msgid "Type"
2954
+ #~ msgstr "Type"
2955
+
2956
+ #~ msgid "Version"
2957
+ #~ msgstr "Version "
2958
+
2959
+ #~ msgid "Install %2$s"
2960
+ #~ msgstr "Installer %2$s"
2961
+
2962
+ #~ msgid "Update %2$s"
2963
+ #~ msgstr "Mettre à jour %2$s"
2964
+
2965
+ #~ msgid "Activate %2$s"
2966
+ #~ msgstr "Activer %2$s"
2967
+
2968
+ #~ msgid "Upgrade message from the plugin author:"
2969
+ #~ msgstr "Message de mise à niveau de l’auteur de l’extension : "
2970
+
2971
+ #~ msgid "Install"
2972
+ #~ msgstr "Installer"
2973
+
2974
+ #~ msgid "Update"
2975
+ #~ msgstr "Mettre à jour"
2976
+
2977
+ #~ msgid "Activate"
2978
+ #~ msgstr "Activer"
2979
+
2980
+ #~ msgid "No plugins were selected to be installed. No action taken."
2981
+ #~ msgstr ""
2982
+ #~ "Aucune extension n’a été sélectionnée pour être installée. Aucune action "
2983
+ #~ "effective."
2984
+
2985
+ #~ msgid "No plugins were selected to be updated. No action taken."
2986
+ #~ msgstr ""
2987
+ #~ "Aucune extension n’a été sélectionnée pour être mise à jour. Aucune "
2988
+ #~ "action effective."
2989
+
2990
+ #~ msgid "No plugins are available to be installed at this time."
2991
+ #~ msgstr "Aucune extension n'est disponible pour être installée en ce moment."
2992
+
2993
+ #~ msgid "No plugins are available to be updated at this time."
2994
+ #~ msgstr ""
2995
+ #~ "Aucune extension n'est disponible pour être mise à jour en ce moment."
2996
+
2997
+ #~ msgid "No plugins were selected to be activated. No action taken."
2998
+ #~ msgstr ""
2999
+ #~ "Aucune extension n'a été sélectionnée pour être activée. Aucune action "
3000
+ #~ "effective."
3001
+
3002
+ #~ msgid "No plugins are available to be activated at this time."
3003
+ #~ msgstr "Aucune extension n'est disponible pour être activée en ce moment."
3004
+
3005
+ #~ msgid "Plugin activation failed."
3006
+ #~ msgstr "L’activation de l’extension a écouhé."
3007
+
3008
+ #~ msgid "Updating Plugin %1$s (%2$d/%3$d)"
3009
+ #~ msgstr "Mise à jour de l’extension %1$s (%2$d/%3$d)"
3010
+
3011
+ #~ msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
3012
+ #~ msgstr ""
3013
+ #~ "Une erreur s'est produite lors de l'installation de %1$s : <strong>%2$s</"
3014
+ #~ "strong>."
3015
+
3016
+ #~ msgid "The installation of %1$s failed."
3017
+ #~ msgstr "L’installation de %1$s a échouée."
3018
+
3019
+ #~ msgid ""
3020
+ #~ "The installation and activation process is starting. This process may "
3021
+ #~ "take a while on some hosts, so please be patient."
3022
+ #~ msgstr ""
3023
+ #~ "Le processus d'installation et d'activation démarre. Ce processus peut "
3024
+ #~ "prendre un certain temps sur certains hébergeurs, soyez patient."
3025
+
3026
+ #~ msgid "%1$s installed and activated successfully."
3027
+ #~ msgstr "%1$s a été installé et activé avec succès."
3028
+
3029
+ #~ msgid "Show Details"
3030
+ #~ msgstr "Afficher les détails"
3031
+
3032
+ #~ msgid "Hide Details"
3033
+ #~ msgstr "Masquer les détails"
3034
+
3035
+ #~ msgid "All installations and activations have been completed."
3036
+ #~ msgstr ""
3037
+ #~ "Toutes les installations et les activations ont été effectuées avec "
3038
+ #~ "succès."
3039
+
3040
+ #~ msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
3041
+ #~ msgstr "Installation et activation de l’extension %1$s (%2$d/%3$d)"
3042
+
3043
+ #~ msgid ""
3044
+ #~ "The installation process is starting. This process may take a while on "
3045
+ #~ "some hosts, so please be patient."
3046
+ #~ msgstr ""
3047
+ #~ "Le processus d'installation démarre. Ce processus peut prendre un certain "
3048
+ #~ "temps sur certains hôtes, soyez patient."
3049
+
3050
+ #~ msgid "%1$s installed successfully."
3051
+ #~ msgstr "%1$s installé avec succès."
3052
+
3053
+ #~ msgid "All installations have been completed."
3054
+ #~ msgstr "Toutes les installations sont terminées."
3055
+
3056
+ #~ msgid "Installing Plugin %1$s (%2$d/%3$d)"
3057
+ #~ msgstr "Installation de l’extension %1$s (%2$d/%3$d)"
3058
+
3059
+ #~ msgid "Page"
3060
+ #~ msgstr "Page"
3061
+
3062
+ #~ msgid "Before Page"
3063
+ #~ msgstr "Avant la page"
3064
+
3065
+ #~ msgid "After Page"
3066
+ #~ msgstr "Après la page"
3067
+
3068
+ #~ msgid "Before Top Bar"
3069
+ #~ msgstr "Avant la barre supérieure"
3070
+
3071
+ #~ msgid "Before Top Bar Inner"
3072
+ #~ msgstr "Avant l’intérieur de la barre supérieure"
3073
+
3074
+ #~ msgid "After Top Bar Inner"
3075
+ #~ msgstr "Après l’intérieur de la barre supérieure"
3076
+
3077
+ #~ msgid "After Top Bar"
3078
+ #~ msgstr "Après la barre supérieure"
3079
+
3080
+ #~ msgid "Before Header"
3081
+ #~ msgstr "Avant l’entête"
3082
+
3083
+ #~ msgid "Before Header Inner"
3084
+ #~ msgstr "Avant l’intérieur de l’entête de page"
3085
+
3086
+ #~ msgid "After Header Inner"
3087
+ #~ msgstr "Après l’intérieur de l’entête"
3088
+
3089
+ #~ msgid "After Header"
3090
+ #~ msgstr "Après l’entête"
3091
+
3092
+ #~ msgid "Page Header"
3093
+ #~ msgstr "Entête de page"
3094
+
3095
+ #~ msgid "Before Page Header"
3096
+ #~ msgstr "Avant l'entête de la page"
3097
+
3098
+ #~ msgid "Before Page Header Inner"
3099
+ #~ msgstr "Avant l’intérieur du titre de page"
3100
+
3101
+ #~ msgid "After Page Header Inner"
3102
+ #~ msgstr "Après l’intérieur du titre de page"
3103
+
3104
+ #~ msgid "After Page Header"
3105
+ #~ msgstr "Après le titre de page"
3106
+
3107
+ #~ msgid "Before Content"
3108
+ #~ msgstr "Avant le contenu"
3109
+
3110
+ #~ msgid "Before Content Inner"
3111
+ #~ msgstr "Avant l’intérieur du contenu"
3112
+
3113
+ #~ msgid "After Content Inner"
3114
+ #~ msgstr "Après l’intérieur du contenu"
3115
+
3116
+ #~ msgid "After Content"
3117
+ #~ msgstr "Après le contenu"
3118
+
3119
+ #~ msgid "Before Sidebar"
3120
+ #~ msgstr "Avant la barre latérale"
3121
+
3122
+ #~ msgid "Before Sidebar Inner"
3123
+ #~ msgstr "Avant l’intérieur de la barre latérale"
3124
+
3125
+ #~ msgid "After Sidebar Inner"
3126
+ #~ msgstr "Après l’intérieur de la barre latérale"
3127
+
3128
+ #~ msgid "After Sidebar"
3129
+ #~ msgstr "Après la barre latérale"
3130
+
3131
+ #~ msgid "Before Footer"
3132
+ #~ msgstr "Avant le pied de page"
3133
+
3134
+ #~ msgid "Before Footer Inner"
3135
+ #~ msgstr "Avant l’intérieur du pied de page"
3136
+
3137
+ #~ msgid "After Footer Inner"
3138
+ #~ msgstr "Après l’intérieur du pied de page"
3139
+
3140
+ #~ msgid "After Footer"
3141
+ #~ msgstr "Après le pied de page"
3142
+
3143
+ #~ msgid "Template"
3144
+ #~ msgstr "Modèle"
3145
+
3146
+ #~ msgid "Theme Panel > My Library"
3147
+ #~ msgstr "Theme Panel > ma bibliothèque"
3148
+
3149
+ #~ msgid "Select A Template"
3150
+ #~ msgstr "Choisissez un modèle"
3151
+
3152
+ #~ msgid "Disable link"
3153
+ #~ msgstr "Désactiver le lien"
3154
+
3155
+ #~ msgid "Display Latest Posts"
3156
+ #~ msgstr "Afficher les derniers articles"
3157
+
3158
+ #~ msgid "Enable megamenu"
3159
+ #~ msgstr "Activer le méga-menu"
3160
+
3161
+ #~ msgid "Megamenu auto width?"
3162
+ #~ msgstr "Hauteur automatique du méga menu ?"
3163
+
3164
+ #~ msgid "Megamenu columns (from 1 to 6)"
3165
+ #~ msgstr "Colonnes du Méga menu (de 1 à 6)"
3166
+
3167
+ #~ msgid "Hide Mega menu heading?"
3168
+ #~ msgstr "Masquer les titres du Mega menu ?"
3169
+
3170
+ #~ msgid "Mega Menu Widget Area"
3171
+ #~ msgstr "Zone de Widget du Méga Menu"
3172
+
3173
+ #~ msgid "Select Widget Area"
3174
+ #~ msgstr "Choisir la zone des Widgets"
3175
+
3176
+ #, fuzzy
3177
+ #~ msgid "Latest in"
3178
+ #~ msgstr "Dernier [ themes ]"
3179
+
3180
+ #~ msgid "WooCommerce Sidebar"
3181
+ #~ msgstr "Barre latérale Woocommerce"
3182
+
3183
+ #~ msgid "Grid view"
3184
+ #~ msgstr "Vue en grille"
3185
+
3186
+ #~ msgid "List view"
3187
+ #~ msgstr "Vue en liste"
3188
+
3189
+ #~ msgid "Out of Stock"
3190
+ #~ msgstr "Produit épuisé"
3191
+
3192
+ #~ msgid "Welcome!"
3193
+ #~ msgstr "Bienvenue !"
3194
+
3195
+ #~ msgid "Logout"
3196
+ #~ msgstr "Déconnexion"
3197
+
3198
+ #~ msgid "Your cart"
3199
+ #~ msgstr "Votre panier"
3200
+
3201
+ #~ msgid "WooCommerce Product Title"
3202
+ #~ msgstr "Titre produit Woocommerce"
3203
+
3204
+ #, fuzzy
3205
+ #~| msgid "WooCommerce Product Title"
3206
+ #~ msgid "WooCommerce Product Price"
3207
+ #~ msgstr ""
3208
+ #~ "Changez automatiquement le prix et la devise du produit WooCommerce par "
3209
+ #~ "pays du client."
3210
+
3211
+ #~ msgid "WooCommerce Product Add To Cart"
3212
+ #~ msgstr "Ajouter au panier produit WooCommerce"
3213
+
3214
+ #~ msgid "Placeholder Image"
3215
+ #~ msgstr "Image générique"
3216
+
3217
+ #~ msgid "0 Comments"
3218
+ #~ msgstr "0 commentaire"
3219
+
3220
+ #~ msgid "1 Comment"
3221
+ #~ msgstr "1 commentaire"
3222
+
3223
+ #~ msgid "% Comments"
3224
+ #~ msgstr "% commentaires"
3225
+
3226
+ #~ msgid "Continue Reading"
3227
+ #~ msgstr "Continuer la lecture"
3228
+
3229
+ #~ msgid "Type your text and hit enter to search"
3230
+ #~ msgstr "Saisir votre texte et appuyer sur Entrée pour rechercher…"
3231
+
3232
+ #~ msgid "Type then hit enter to search..."
3233
+ #~ msgstr "Saisir et appuyer sur Entrée pour rechercher…"
3234
+
3235
+ #~ msgid "Search..."
3236
+ #~ msgstr "Rechercher…"
3237
+
3238
+ #~ msgid "Search"
3239
+ #~ msgstr "Rechercher"
3240
+
3241
+ #~ msgid "Ready to publish your first post? %1$sGet started here%2$s."
3242
+ #~ msgstr "Prêt à publier votre premier article ? %1$sCommencez ici%2$s."
3243
+
3244
+ #~ msgid ""
3245
+ #~ "Sorry, but nothing matched your search terms. Please try again with "
3246
+ #~ "different keywords."
3247
+ #~ msgstr ""
3248
+ #~ "Aucun résultat ne correspond à vos critères de recherche. Essayez de "
3249
+ #~ "nouveau avec des mots clés différents."
3250
+
3251
+ #~ msgid "There aren't any posts currently published in this category."
3252
+ #~ msgstr "Il n’y a aucun article publié actuellement dans cette catégorie."
3253
+
3254
+ #~ msgid "There aren't any posts currently published under this taxonomy."
3255
+ #~ msgstr "Il n’y a aucun article publié actuellement pour cette taxinomie."
3256
+
3257
+ #~ msgid "There aren't any posts currently published under this tag."
3258
+ #~ msgstr "Il n’y a aucun article publié actuellement sous cette étiquette."
3259
+
3260
+ #~ msgid "It seems we can&rsquo;t find what you&rsquo;re looking for."
3261
+ #~ msgstr "Il semble que nous ne pouvons pas trouver ce que vous recherchez."
3262
+
3263
+ #~ msgid "Pages:"
3264
+ #~ msgstr "Pages : "
3265
+
3266
+ #~ msgid "Previous Post"
3267
+ #~ msgstr "Article précédent"
3268
+
3269
+ #~ msgid "Next Post"
3270
+ #~ msgstr "Article suivant"
3271
+
3272
+ #~ msgid "You Might Also Like"
3273
+ #~ msgstr "Vous aimerez peut-être aussi"
3274
+
3275
+ #~ msgid "Have a coupon?"
3276
+ #~ msgstr "Avez-vous un code promo ?"
3277
+
3278
+ #~ msgid "Click here to enter your code"
3279
+ #~ msgstr "Cliquez ici pour entrer votre code"
3280
+
3281
+ #~ msgid "View:"
3282
+ #~ msgstr "Visualiser : "
3283
+
3284
+ #~ msgid "All"
3285
+ #~ msgstr "Tous"
3286
+
3287
+ #~ msgid "Custom CSS/JS"
3288
+ #~ msgstr "CSS/JS personnalisés"
3289
+
3290
+ #~ msgid "Custom JS"
3291
+ #~ msgstr "Scripts JS personnalisés"
3292
+
3293
+ #~ msgid ""
3294
+ #~ "You need to reload to see the changes. No need to add the <script> tags."
3295
+ #~ msgstr ""
3296
+ #~ "Vous devez recharger pour voir les modifications. Pas besoin d'ajouter "
3297
+ #~ "les balises <script>."
3298
+
3299
+ #~ msgid "Visit Author Page"
3300
+ #~ msgstr "Visitez la page de l’auteur"
3301
+
3302
+ #~ msgid "Coupon code"
3303
+ #~ msgstr "Code promo"
3304
+
3305
+ #~ msgid "Apply coupon"
3306
+ #~ msgstr "Appliquer le code promo"
3307
+
3308
+ #~ msgid "g:i a"
3309
+ #~ msgstr "g:i a"
3310
+
3311
+ #~ msgid "i"
3312
+ #~ msgstr "i"
3313
+
3314
+ #~ msgid "g a"
3315
+ #~ msgstr "g a"
3316
+
3317
+ #~ msgid "Y"
3318
+ #~ msgstr "Y"
3319
+
3320
+ #~ msgid "F"
3321
+ #~ msgstr "F"
3322
+
3323
+ #~ msgid "j"
3324
+ #~ msgstr "j"
3325
+
3326
+ #~ msgid "W"
3327
+ #~ msgstr "W"
3328
+
3329
+ #~ msgid "Page ID"
3330
+ #~ msgstr "ID de la page"
3331
+
3332
+ #~ msgid ""
3333
+ #~ "Deprecated, this field is no longer supported. Please use the Select "
3334
+ #~ "Template field below instead."
3335
+ #~ msgstr ""
3336
+ #~ "Déconseillé, ce champ n'est plus pris en charge. Utilisez plutôt le champ "
3337
+ #~ "Sélectionner le modèle ci-dessous."
3338
+
3339
+ #~ msgid "Elementor Templates"
3340
+ #~ msgstr "Modèles Elementor"
3341
+
3342
+ #~ msgid ""
3343
+ #~ "Deprecated, this field is no longer supported. If you want a different "
3344
+ #~ "logo when scrolling, go to Sticky Header > Logo."
3345
+ #~ msgstr ""
3346
+ #~ "Déconseillé, ce champ n'est plus pris en charge. Si vous voulez un logo "
3347
+ #~ "différent lors du défilement, allez à Entête collante > Logo."
3348
+
3349
+ #~ msgid ""
3350
+ #~ "Deprecated, this field is no longer supported. If you want a different "
3351
+ #~ "retina logo when scrolling, go to Sticky Header > Retina Logo."
3352
+ #~ msgstr ""
3353
+ #~ "Déconseillé, ce champ n'est plus pris en charge. Si vous voulez un logo "
3354
+ #~ "de rétina différent lors du défilement, allez à Entête collante > Logo "
3355
+ #~ "rétina."
3356
+
3357
+ #~ msgid "Enter the height of your normal logo, used for retina."
3358
+ #~ msgstr "Saisir la hauteur de votre logo normal, utilisé pour le rétina."
3359
+
3360
+ #~ msgid "Effect 1"
3361
+ #~ msgstr "Filet bas progressif"
3362
+
3363
+ #~ msgid "Effect 2"
3364
+ #~ msgstr "Filet bas montant"
3365
+
3366
+ #~ msgid "Effect 3"
3367
+ #~ msgstr "Filet bas descendant"
3368
+
3369
+ #~ msgid "Effect 4"
3370
+ #~ msgstr "Parenthèses ouvrantes"
3371
+
3372
+ #~ msgid "Effect 5"
3373
+ #~ msgstr "Souligné filet montant"
3374
+
3375
+ #~ msgid "Effect 6"
3376
+ #~ msgstr "Double cercle filet"
3377
+
3378
+ #~ msgid "Effect 7"
3379
+ #~ msgstr "3 points centrés"
3380
+
3381
+ #~ msgid "Effect 8"
3382
+ #~ msgstr "Double filet en croix"
3383
+
3384
+ #~ msgid "Effect 9"
3385
+ #~ msgstr "Double filet fermant"
3386
+
3387
+ #~ msgid "Effect 10"
3388
+ #~ msgstr "Bloc ombré"
3389
+
3390
+ #~ msgid "Menu Social"
3391
+ #~ msgstr "Menu Social"
3392
+
3393
+ #~ msgid "Enable Menu Social"
3394
+ #~ msgstr "Activer le menu réseaux sociaux"
3395
+
3396
+ #~ msgid "Simple Social Links Color"
3397
+ #~ msgstr "Couleur des liens sociaux individuels"
3398
+
3399
+ #~ msgid "Simple Social Links Color: Hover"
3400
+ #~ msgstr "Couleur des liens sociaux individuels au survol"
3401
+
3402
+ #~ msgid ""
3403
+ #~ "Deprecated, this field is no longer supported. Please use the Social "
3404
+ #~ "Alternative field below instead."
3405
+ #~ msgstr ""
3406
+ #~ "Déconseillé, ce champ n'est plus pris en charge. Veuillez utiliser le "
3407
+ #~ "champ Social alternatif ci-dessous."
3408
+
3409
+ #~ msgid "F Y"
3410
+ #~ msgstr "F Y"
3411
+
3412
+ #~ msgid "This theme requires the following plugin: %1$s."
3413
+ #~ msgid_plural "This theme requires the following plugins: %1$s."
3414
+ #~ msgstr[0] "Ce thème nécessite l’extension suivante : %1$s."
3415
+ #~ msgstr[1] "Ce thème nécessite les extension suivantes : %1$s."
3416
+
3417
+ #~ msgid "This theme recommends the following plugin: %1$s."
3418
+ #~ msgid_plural "This theme recommends the following plugins: %1$s."
3419
+ #~ msgstr[0] "Ce thème recommande l’extension suivante : %1$s."
3420
+ #~ msgstr[1] "Ce thème recommande les extensions suivantes : %1$s."
3421
+
3422
+ #~ msgid ""
3423
+ #~ "The following plugin needs to be updated to its latest version to ensure "
3424
+ #~ "maximum compatibility with this theme: %1$s."
3425
+ #~ msgid_plural ""
3426
+ #~ "The following plugins need to be updated to their latest version to "
3427
+ #~ "ensure maximum compatibility with this theme: %1$s."
3428
+ #~ msgstr[0] ""
3429
+ #~ "Afin d'assurer une compatibilité maximale avec ce thème, l’extension "
3430
+ #~ "suivante doit être mise à jour dans sa dernière version : %1$s."
3431
+ #~ msgstr[1] ""
3432
+ #~ "Afin d'assurer une compatibilité maximale avec ce thème, les extensions "
3433
+ #~ "suivantes doivent être mises à jour dans leur dernière version : %1$s."
3434
+
3435
+ #~ msgid "There is an update available for: %1$s."
3436
+ #~ msgid_plural "There are updates available for the following plugins: %1$s."
3437
+ #~ msgstr[0] "Il y a une mise à jour disponible pour : %1$s."
3438
+ #~ msgstr[1] "Il y a des mises à jour disponibles pour : %1$s."
3439
+
3440
+ #~ msgid "The following required plugin is currently inactive: %1$s."
3441
+ #~ msgid_plural "The following required plugins are currently inactive: %1$s."
3442
+ #~ msgstr[0] "L’extension requise suivante est actuellement inactive : %1$s."
3443
+ #~ msgstr[1] ""
3444
+ #~ "Les extensions requises suivantes sont actuellement inactives : %1$s."
3445
+
3446
+ #~ msgid "The following recommended plugin is currently inactive: %1$s."
3447
+ #~ msgid_plural ""
3448
+ #~ "The following recommended plugins are currently inactive: %1$s."
3449
+ #~ msgstr[0] ""
3450
+ #~ "L’extension recommandée suivante est actuellement inactive : %1$s."
3451
+ #~ msgstr[1] ""
3452
+ #~ "Les extensions recommandées suivantes sont actuellement inactives : %1$s."
3453
+
3454
+ #~ msgid "Begin installing plugin"
3455
+ #~ msgid_plural "Begin installing plugins"
3456
+ #~ msgstr[0] "Commencez à installer l’extension"
3457
+ #~ msgstr[1] "Commencez à installer les extensions"
3458
+
3459
+ #~ msgid "Begin updating plugin"
3460
+ #~ msgid_plural "Begin updating plugins"
3461
+ #~ msgstr[0] "Commercer la mise à jour de l’extension"
3462
+ #~ msgstr[1] "Commercer la mise à jour des extensions"
3463
+
3464
+ #~ msgid "Begin activating plugin"
3465
+ #~ msgid_plural "Begin activating plugins"
3466
+ #~ msgstr[0] "Avant d’activer l’extension"
3467
+ #~ msgstr[1] "Avant d’activer les extensions"
3468
+
3469
+ #~ msgid "and"
3470
+ #~ msgstr "et"
3471
+
3472
+ #~ msgctxt "Install/Update Status"
3473
+ #~ msgid "%1$s, %2$s"
3474
+ #~ msgstr "%1$s, %2$s"
3475
+
3476
+ #~ msgctxt "plugins"
3477
+ #~ msgid "All <span class=\"count\">(%s)</span>"
3478
+ #~ msgid_plural "All <span class=\"count\">(%s)</span>"
3479
+ #~ msgstr[0] "Tout <span class=\"count\">(%s)</span>"
3480
+ #~ msgstr[1] "Tous <span class=\"count\">(%s)</span>"
3481
+
3482
+ #~ msgid "To Install <span class=\"count\">(%s)</span>"
3483
+ #~ msgid_plural "To Install <span class=\"count\">(%s)</span>"
3484
+ #~ msgstr[0] "Pour installer <span class=\"count\">(%s)</span>"
3485
+ #~ msgstr[1] "Pour installer <span class=\"count\">(%s)</span>"
3486
+
3487
+ #~ msgid "Update Available <span class=\"count\">(%s)</span>"
3488
+ #~ msgid_plural "Update Available <span class=\"count\">(%s)</span>"
3489
+ #~ msgstr[0] "Mise à jour disponible <span class=\"count\">(%s)</span>"
3490
+ #~ msgstr[1] "Mises à jour disponibles <span class=\"count\">(%s)</span>"
3491
+
3492
+ #~ msgid "To Activate <span class=\"count\">(%s)</span>"
3493
+ #~ msgid_plural "To Activate <span class=\"count\">(%s)</span>"
3494
+ #~ msgstr[0] "Pour activer <span class=\"count\">(%s)</span>"
3495
+ #~ msgstr[1] "Pour activer <span class=\"count\">(%s)</span>"
3496
+
3497
+ #~ msgctxt "as in: \"version nr unknown\""
3498
+ #~ msgid "unknown"
3499
+ #~ msgstr "inconnu"
3500
+
3501
+ #~ msgid "Elementor Template"
3502
+ #~ msgstr "Modèle Elementor"
3503
+
3504
+ #~ msgid ""
3505
+ #~ "Deprecated, this field is no longer supported. Please use the Select A "
3506
+ #~ "Template field below instead."
3507
+ #~ msgstr ""
3508
+ #~ "Déconseillé, ce champ n'est plus pris en charge. Veuillez utiliser le "
3509
+ #~ "champ Sélectionner un modèle ci-dessous."
3510
+
3511
+ #~ msgid "Enter Icon Class (Deprecated)"
3512
+ #~ msgstr "Entrer une classe d'icône (déprécié)"
3513
+
3514
+ #~ msgid "If you want to display a different logo for this style (optional)"
3515
+ #~ msgstr ""
3516
+ #~ "Si vous souhaitez afficher un logo différent pour ce style (optionnel)"
3517
+
3518
+ #~ msgid "Mobile Sidebar Menu"
3519
+ #~ msgstr "Menu de la barre latérale mobile"
3520
+
3521
+ #~ msgid "Mobile Menu: Dropdowns"
3522
+ #~ msgstr "Menu mobile déroulant"
3523
+
3524
+ #~ msgid ""
3525
+ #~ "The following shortcodes can be added:%1$s %2$s[oceanwp_date]%3$s To show "
3526
+ #~ "a dynamic date.%1$s %2$s[oceanwp_site_url]%3$s To add a homepage link."
3527
+ #~ msgstr ""
3528
+ #~ "Les codes courts suivants peuvent être ajoutés : %1$s "
3529
+ #~ "%2$s[oceanwp_date]%3$s pour afficher une date dynamique. %1$s "
3530
+ #~ "%2$s[oceanwp_site_url]%3$s pour ajouter un lien de page d'accueil."
3531
+
3532
+ #~ msgid "Padding (DECREPITATED)"
3533
+ #~ msgstr "Marge interne (déprécié)"
3534
+
3535
+ #~ msgid ""
3536
+ #~ "This field will be removed in OceanWP 1.2.0, add your value(s) in the "
3537
+ #~ "dimensions control below"
3538
+ #~ msgstr ""
3539
+ #~ "Ce champ sera supprimé dans OceanWP 1.2.0, saisissez vos valeurs dans le "
3540
+ #~ "contrôle des dimensions ci-dessous"
3541
+
3542
+ #~ msgid "Choose a page to replace the widgets by this page."
3543
+ #~ msgstr "Choisissez une page pour remplacer les widgets par cette page."
3544
+
3545
+ #~ msgid "Border Width (DECREPITATED)"
3546
+ #~ msgstr "Largeur de la bordure (déprécié)"
3547
+
3548
+ #~ msgid "Choose a page where the content will be displayed in the header."
3549
+ #~ msgstr "Choisissez une page où le contenu sera affiché dans l'entête."
3550
+
3551
+ #~ msgid "Used for retina."
3552
+ #~ msgstr "Utilisé pour le Rétina."
3553
+
3554
+ #~ msgid ""
3555
+ #~ "The following shortcodes can be added:%1$s %2$s[oceanwp_login]%3$s To add "
3556
+ #~ "a login/logout link.%1$s %2$s[oceanwp_search]%3$s To show a search form."
3557
+ #~ msgstr ""
3558
+ #~ "Les codes courts suivants peuvent être ajoutés : %1$s "
3559
+ #~ "%2$s[oceanwp_login]%3$s pour ajouter un lien connexion / connexion, %1$s "
3560
+ #~ "%2$s[oceanwp_search]%3$s pour afficher un formulaire de recherche."
3561
+
3562
+ #~ msgid "Choose a page to display the content of such page."
3563
+ #~ msgstr "Choisissez une page pour afficher le contenu de cette page."
3564
+
3565
+ #~ msgid "Menu Cart: Display"
3566
+ #~ msgstr "Menu panier : afficher"
3567
+
3568
+ #~ msgid "Menu Cart: Custom Link"
3569
+ #~ msgstr "Lien personnalisé du menu panier"
3570
+
3571
+ #~ msgid "Styling: Cart Dropdowns"
3572
+ #~ msgstr "Style du menu panier déroulant"
3573
+
3574
+ #~ msgid ""
3575
+ #~ "Enter your extension license keys here to receive updates for purchased "
3576
+ #~ "extensions. If your license key has expired, please %1$srenew your license"
3577
+ #~ "%2$s."
3578
+ #~ msgstr ""
3579
+ #~ "Entrez vos clés de licence d'extension ici pour recevoir des mises à jour "
3580
+ #~ "pour les extensions achetées. Si votre clé de licence a expirée, merci de "
3581
+ #~ "%1$srenouveler votre license%2$s."
3582
+
3583
+ #~ msgid ""
3584
+ #~ "Your license key expired on %1$s. Please <a href=\"%2$s\" target=\"_blank"
3585
+ #~ "\">renew your license key</a>."
3586
+ #~ msgstr ""
3587
+ #~ "Votre clé de licence a expirée à %1$s. Merci de <a href=\"%2$s\" target="
3588
+ #~ "\"_blank\">renouveler votre clé de licence</a>."
3589
+
3590
+ #~ msgid ""
3591
+ #~ "Your license key has been disabled. Please <a href=\"%1$s\" target="
3592
+ #~ "\"_blank\">contact support</a> for more information."
3593
+ #~ msgstr ""
3594
+ #~ "Votre clé de licence a été désactivée. Merci de a href=« %1$s\" target="
3595
+ #~ "\"_blank\">renouveler votre clé de licence</a>."
3596
+
3597
+ #~ msgid ""
3598
+ #~ "Invalid license. Please <a href=\"%1$s\" target=\"_blank\">visit your "
3599
+ #~ "account page</a> and verify it."
3600
+ #~ msgstr ""
3601
+ #~ "Licence invalide. Merci de <a href=\"%1$s\" target=\"_blank\">visiter "
3602
+ #~ "votre page de compte</a> et vérifiez-le."
3603
+
3604
+ #~ msgid ""
3605
+ #~ "Your %1$s is not active for this URL. Please <a href=\"%2$s\" target="
3606
+ #~ "\"_blank\">visit your account page</a> to manage your license key URLs."
3607
+ #~ msgstr ""
3608
+ #~ "Votre %1$s n'est pas actif pour cette URL. Merci de <a href=\"%2$s\" "
3609
+ #~ "target=\"_blank\">consulter votre page de compte</a> pour gérer vos URL "
3610
+ #~ "de clé de licence."
3611
+
3612
+ #~ msgid "This appears to be an invalid license key for %1$s."
3613
+ #~ msgstr "Cela semble être une clé de licence invalide pour %1$s."
3614
+
3615
+ #~ msgid ""
3616
+ #~ "Your license key has reached its activation limit. <a href=\"%1$s\">View "
3617
+ #~ "possible upgrades</a> now."
3618
+ #~ msgstr ""
3619
+ #~ "Votre clé de licence a atteint sa limite d'activation. <a href=\"%1$s"
3620
+ #~ "\">Voir les améliorations possibles</a> maintenant."
3621
+
3622
+ #~ msgid ""
3623
+ #~ "The key you entered belongs to a bundle, please use the product specific "
3624
+ #~ "license key."
3625
+ #~ msgstr ""
3626
+ #~ "La clé que vous avez entrée appartient à un pack, merci d’utilisez la clé "
3627
+ #~ "de licence spécifique au produit."
3628
+
3629
+ #~ msgid "unknown_error"
3630
+ #~ msgstr "unknown_error"
3631
+
3632
+ #~ msgid ""
3633
+ #~ "There was an error with this license key: %1$s. Please <a href=\"%2$s"
3634
+ #~ "\">contact our support team</a>."
3635
+ #~ msgstr ""
3636
+ #~ "Une erreur s'est produite avec cette clé de licence de : %1$s. Merci de "
3637
+ #~ "<a href=\"%2$s\">contacter notre équipe de support</a>."
3638
+
3639
+ #~ msgid "License key never expires."
3640
+ #~ msgstr "La clé de licence n'expire jamais."
3641
+
3642
+ #~ msgid ""
3643
+ #~ "Your license key expires soon! It expires on %1$s. <a href=\"%2$s\" "
3644
+ #~ "target=\"_blank\">Renew your license key</a>."
3645
+ #~ msgstr ""
3646
+ #~ "Votre clé de licence expire bientôt ! Elle expire le %1$s. <a href=\"%2$s"
3647
+ #~ "\" target=\"_blank\">Renouvelez votre clé de licence</a>."
3648
+
3649
+ #~ msgid "Your license key expires on %1$s."
3650
+ #~ msgstr "Votre clé de licence expire le %1$s."
3651
+
3652
+ #~ msgid "To receive updates, please enter your valid %1$s license key."
3653
+ #~ msgstr ""
3654
+ #~ "Pour recevoir des mises à jour, entrez une clé de licence %1$s valide."
3655
+
3656
+ #~ msgid "%1$s License Key"
3657
+ #~ msgstr "Clé de licence %1$s "
3658
+
3659
+ #~ msgid "Deactivate License"
3660
+ #~ msgstr "Désactiver la Licence"
3661
+
3662
+ #~ msgid ""
3663
+ #~ "There is a new version of %1$s available. <a target=\"_blank\" class="
3664
+ #~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
3665
+ #~ msgstr ""
3666
+ #~ "Il existe une nouvelle version disponible de %1$s. <a target=\"_blank\" "
3667
+ #~ "class=\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a>."
3668
+
3669
+ #~ msgid ""
3670
+ #~ "There is a new version of %1$s available. <a target=\"_blank\" class="
3671
+ #~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
3672
+ #~ "\">update now</a>."
3673
+ #~ msgstr ""
3674
+ #~ "Il existe une nouvelle version disponible de %1$s. <a target=\"_blank\" "
3675
+ #~ "class=\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a> "
3676
+ #~ "ou <a href=\"%4$s\">mettre à jour maintenant</a>."
3677
+
3678
+ #~ msgid "You do not have permission to install plugin updates"
3679
+ #~ msgstr ""
3680
+ #~ "Vous n'avez pas la permission d'installer des mises à jour d’extension"
3681
+
3682
+ #~ msgid ""
3683
+ #~ "Thanks for choosing OceanWP! You can read hints and tips on how get the "
3684
+ #~ "most out of your new theme on the %1$swelcome screen%2$s."
3685
+ #~ msgstr ""
3686
+ #~ "Merci d'avoir choisi OceanWP ! Vous pouvez lire des conseils et astuces "
3687
+ #~ "sur la façon d'obtenir le meilleur de votre nouveau thème sur l'écran "
3688
+ #~ "%1$sde bienvenuen%2$s."
3689
+
3690
+ #~ msgid "Get started with OceanWP"
3691
+ #~ msgstr "Commencer avec OceanWP"
3692
+
3693
+ #~ msgid "Theme"
3694
+ #~ msgstr "Thème"
3695
+
3696
+ #~ msgid "Join us on Twitter"
3697
+ #~ msgstr "Nous retrouver sur Twitter"
3698
+
3699
+ #~ msgid "Join us on Facebook"
3700
+ #~ msgstr "Nous retrouver sur Facebook"
3701
+
3702
+ #~ msgid "Find us on GitHub"
3703
+ #~ msgstr "Nous trouver sur GitHub"
3704
+
3705
+ #~ msgid ""
3706
+ #~ "OceanWP is the perfect theme for your project. Lightweight and highly "
3707
+ #~ "extendible, it will enable you to create almost any type of site with a "
3708
+ #~ "beautiful & professional design. There are several options to personalise "
3709
+ #~ "your website, multiple widget regions, a responsive design and much more. "
3710
+ #~ "Developers will love his extensible codebase making it a joy to customise "
3711
+ #~ "and extend."
3712
+ #~ msgstr ""
3713
+ #~ "OceanWP est le thème parfait pour votre projet. Léger et hautement "
3714
+ #~ "extensible, il vous permettra de créer presque n'importe quel type de "
3715
+ #~ "site avec un design magnifique et professionnel. Il existe plusieurs "
3716
+ #~ "options pour personnaliser votre site Web, plusieurs zones de widgets, un "
3717
+ #~ "design responsif et bien plus encore. Les développeurs aimeront sa base "
3718
+ #~ "de code extensible, ce qui permet de le personnaliser facilement."
3719
+
3720
+ #~ msgid "The perfect theme to use with your favorite page builder!"
3721
+ #~ msgstr ""
3722
+ #~ "Le thème parfait à utiliser avec votre constructeur de pages préféré !"
3723
+
3724
+ #~ msgid "Extend his functionalities with our extensions"
3725
+ #~ msgstr "Étendre ses fonctionnalités avec nos extensions"
3726
+
3727
+ #~ msgid ""
3728
+ #~ "Check our free and premium extensions that extend OceanWP&rsquo;s "
3729
+ #~ "functionality and make it more powerful."
3730
+ #~ msgstr ""
3731
+ #~ "Consultez nos extensions gratuites et Premium qui étendent la "
3732
+ #~ "fonctionnalité d'OceanWP et le rendent plus performant."
3733
+
3734
+ #~ msgid "Ocean Extra"
3735
+ #~ msgstr "Extras OceanWP"
3736
+
3737
+ #~ msgid "free"
3738
+ #~ msgstr "gratuit"
3739
+
3740
+ #~ msgid ""
3741
+ #~ "Add extra features like metaboxes, import/export and a panel to activate "
3742
+ #~ "the extensions."
3743
+ #~ msgstr ""
3744
+ #~ "Ajoutez des fonctionnalités supplémentaires comme métabox, import/export "
3745
+ #~ "et un panneau pour activer les extensions."
3746
+
3747
+ #~ msgid ""
3748
+ #~ "Add some awesome new widgets to the popular free page builder Elementor."
3749
+ #~ msgstr ""
3750
+ #~ "Ajoutez de nouveaux widgets géniaux au populaire Créateur de Pages "
3751
+ #~ "Elementor (gratuit)."
3752
+
3753
+ #~ msgid ""
3754
+ #~ "Generates an unlimited number of sidebars and place them on any page or "
3755
+ #~ "post."
3756
+ #~ msgstr ""
3757
+ #~ "Gérez un nombre illimité de barres latérales et placez-les sur n'importe "
3758
+ #~ "quelle page ou article."
3759
+
3760
+ #~ msgid "Sticky Header"
3761
+ #~ msgstr "Entête collant"
3762
+
3763
+ #~ msgid ""
3764
+ #~ "A simple extension to attach the header at the top of your screen with an "
3765
+ #~ "animation."
3766
+ #~ msgstr ""
3767
+ #~ "Une extension simple pour joindre l'entête en haut de votre écran avec "
3768
+ #~ "une animation."
3769
+
3770
+ #~ msgid "Footer Callout"
3771
+ #~ msgstr "Bloc d’appel en pied de page"
3772
+
3773
+ #~ msgid ""
3774
+ #~ "Add some relevant/important information about your company or product in "
3775
+ #~ "your footer."
3776
+ #~ msgstr ""
3777
+ #~ "Ajoutez des informations pertinentes ou importantes sur votre entreprise "
3778
+ #~ "ou votre produit dans votre pied de page."
3779
+
3780
+ #~ msgid "Side Panel"
3781
+ #~ msgstr "Panneau latéral"
3782
+
3783
+ #~ msgid ""
3784
+ #~ "Display a panel on the right or left with your favorite widgets by "
3785
+ #~ "clicking on an icon in the menu."
3786
+ #~ msgstr ""
3787
+ #~ "Affiche un panneau à droite ou à gauche avec vos widgets favoris en "
3788
+ #~ "cliquant sur une icône dans le menu."
3789
+
3790
+ #~ msgid ""
3791
+ #~ "Import the OceanWP demo content, widgets and customizer settings with one "
3792
+ #~ "click."
3793
+ #~ msgstr ""
3794
+ #~ "Importez le contenu de démonstration OceanWP, les widgets et les "
3795
+ #~ "paramètres personnalisés en un clic."
3796
+
3797
+ #~ msgid "Social Sharing"
3798
+ #~ msgstr "Partage social"
3799
+
3800
+ #~ msgid ""
3801
+ #~ "A simple extension to add your prefered social sharing buttons to your "
3802
+ #~ "single posts."
3803
+ #~ msgstr ""
3804
+ #~ "Une extension simple pour ajouter vos boutons de partage social préférés "
3805
+ #~ "à vos articles."
3806
+
3807
+ #~ msgid "View all OceanWP extensions"
3808
+ #~ msgstr "Voir toutes les extensions OceanWP"
3809
+
3810
+ #~ msgid "Create your WordPress site quickly with Themecloud"
3811
+ #~ msgstr "Créez votre site WordPress rapidement avec Themecloud"
3812
+
3813
+ #~ msgid "What is Themecloud?"
3814
+ #~ msgstr "Qu'est-ce que Themecloud ?"
3815
+
3816
+ #~ msgid ""
3817
+ #~ "It&rsquo;s a better way to build WordPress websites, instant setup, no "
3818
+ #~ "coding required. They are removed all of the technical hurdles standing "
3819
+ #~ "between you and your ideal site. Don’t worry about installations, "
3820
+ #~ "configurations, migrations and maintenance. Focus on creating stellar "
3821
+ #~ "content – and watch your business skyrocket! Not convinced yet?"
3822
+ #~ msgstr ""
3823
+ #~ "C'est une meilleure façon de créer des sites Web WordPress, une "
3824
+ #~ "configuration instantanée, aucun codage requis. Tous les obstacles "
3825
+ #~ "techniques sont simplifiés entre vous et votre site idéal. Ne vous "
3826
+ #~ "inquiétez pas pour les installations, les configurations, les migrations "
3827
+ #~ "et la maintenance. Concentrez-vous sur la création de contenu, et "
3828
+ #~ "regardez votre notoriété progresser en flèche ! Pas encore convaincu ?"
3829
+
3830
+ #~ msgid "Look at this great review from WPKube"
3831
+ #~ msgstr "Regardez cette excellente critique de WPKube"
3832
+
3833
+ #~ msgid "( 15-day free trial, no credit card required )"
3834
+ #~ msgstr "(15 jours d’essai gratuit, sans carte de crédit requise)"
3835
+
3836
+ #~ msgid "Learn more about Themecloud"
3837
+ #~ msgstr "En savoir plus sur Themecloud"
3838
+
3839
+ #~ msgid "Getting started with OceanWP"
3840
+ #~ msgstr "Pour commencer avec OceanWP"
3841
+
3842
+ #~ msgid ""
3843
+ #~ "Take a look in the options of the Customizer and see yourself how easy "
3844
+ #~ "and quick to customize the theme as you wish."
3845
+ #~ msgstr ""
3846
+ #~ "Jetez un coup d'oeil dans les options du Customizer et voyez comment vous "
3847
+ #~ "pouvez simplifier et personnaliser le thème comme vous le souhaitez."
3848
+
3849
+ #~ msgid "Upload your logo"
3850
+ #~ msgstr "Télécharger votre logo"
3851
+
3852
+ #~ msgid "Add your own logo and retina logo used for the mobile design."
3853
+ #~ msgstr ""
3854
+ #~ "Ajoutez votre propre logo et logo rétina utilisé pour la conception "
3855
+ #~ "mobile."
3856
+
3857
+ #~ msgid "Go to the option"
3858
+ #~ msgstr "Aller à l’option"
3859
+
3860
+ #~ msgid "Add your favicon"
3861
+ #~ msgstr "Télécharger votre favicon"
3862
+
3863
+ #~ msgid "The favicon is used as a browser and app icon for your website."
3864
+ #~ msgstr ""
3865
+ #~ "Le favicon est utilisé comme icône de navigateur et d'application pour "
3866
+ #~ "votre site."
3867
+
3868
+ #~ msgid "Choose your primary color"
3869
+ #~ msgstr "Choisissez votre couleur primaire"
3870
+
3871
+ #~ msgid "Replace the default primary and hover color by your own colors."
3872
+ #~ msgstr ""
3873
+ #~ "Remplacez la couleur par défaut et la couleur au survol par vos propres "
3874
+ #~ "couleurs."
3875
+
3876
+ #~ msgid "Change the links color"
3877
+ #~ msgstr "Changer la couleur des liens"
3878
+
3879
+ #~ msgid "Choose the color and hover color of your links for the entire site."
3880
+ #~ msgstr ""
3881
+ #~ "Choisissez la couleur et couleur de survol des liens pour l'ensemble du "
3882
+ #~ "site."
3883
+
3884
+ #~ msgid "Choose your typography"
3885
+ #~ msgstr "Choisissez votre typographie"
3886
+
3887
+ #~ msgid "Choose your own typography for any parts of your website."
3888
+ #~ msgstr ""
3889
+ #~ "Choisissez votre propre typographie pour toutes les parties de votre site."
3890
+
3891
+ #~ msgid "Top bar options"
3892
+ #~ msgstr "Options barre supérieure"
3893
+
3894
+ #~ msgid "Enable/Disable the top bar, add your own paddings and colors."
3895
+ #~ msgstr ""
3896
+ #~ "Activer/Désactiver la barre supérieure, ajouter vos propres marges "
3897
+ #~ "internes et couleurs."
3898
+
3899
+ #~ msgid "Header options"
3900
+ #~ msgstr "Options de l’entête"
3901
+
3902
+ #~ msgid "Choose the style, the height and the colors for your site header."
3903
+ #~ msgstr ""
3904
+ #~ "Choisissez le style, la hauteur et les couleurs pour l'entête de votre "
3905
+ #~ "site."
3906
+
3907
+ #~ msgid "Footer bottom options"
3908
+ #~ msgstr "Options du Copyright"
3909
+
3910
+ #~ msgid "Add your copyright, paddings and colors for the footer bottom."
3911
+ #~ msgstr ""
3912
+ #~ "Ajoutez un Copyright, marge interne et couleurs pour le bas de page."
3913
+
3914
+ #~ msgid "Customize Your Site"
3915
+ #~ msgstr "Personnaliser votre site"
3916
+
3917
+ #~ msgid "Contribute to OceanWP"
3918
+ #~ msgstr "Contribuer à OceanWP"
3919
+
3920
+ #~ msgid ""
3921
+ #~ "You&rsquo;ve found a bug? Want to contribute a patch, create a new "
3922
+ #~ "feature or extension?"
3923
+ #~ msgstr ""
3924
+ #~ "Vous avez trouvé un bogue ? Voulez-vous contribuer un correctif, créer "
3925
+ #~ "une nouvelle fonctionnalité ou une extension ?"
3926
+
3927
+ #~ msgid "GitHub is the place to go!"
3928
+ #~ msgstr "GitHub est l'endroit où aller !"
3929
+
3930
+ #~ msgid ""
3931
+ #~ "You can find a wide range of information on how to use and customise "
3932
+ #~ "OceanWP in our"
3933
+ #~ msgstr ""
3934
+ #~ "Vous pouvez trouver un large éventail d'informations sur la façon "
3935
+ #~ "d'utiliser et de personnaliser OceanWP dans notre"
3936
+
3937
+ #~ msgid "If you need help?"
3938
+ #~ msgstr "Si vous avez besoin d'aide ?"
3939
+
3940
+ #~ msgid "open a support ticket"
3941
+ #~ msgstr "Ouvrir un ticket de support"
3942
+
3943
+ #~ msgid "Recommended plugins"
3944
+ #~ msgstr "Extensions recommandées"
3945
+
3946
+ #~ msgid ""
3947
+ #~ "Below you will find links to plugins I personally like and recommend. "
3948
+ #~ "None of these plugins are required for your theme to work, they simply "
3949
+ #~ "add additional functionality."
3950
+ #~ msgstr ""
3951
+ #~ "Vous trouverez ci-dessous des liens vers des extensions que j'aime "
3952
+ #~ "personnellement et je vous recommande. Aucune de ces extensions n'est "
3953
+ #~ "nécessaire pour que votre thème fonctionne, elles ajoutent simplement des "
3954
+ #~ "fonctionnalités supplémentaires."
3955
+
3956
+ #~ msgid ""
3957
+ #~ "Manage multiple contact forms and customize the form and the mail "
3958
+ #~ "contents with markups."
3959
+ #~ msgstr ""
3960
+ #~ "Gérez les formulaires de contact multiples et personnalisez le formulaire "
3961
+ #~ "et les contenus du courrier avec des balises."
3962
+
3963
+ #~ msgid ""
3964
+ #~ "Gravity Forms is the easiest tool to create advanced forms for your "
3965
+ #~ "WordPress powered website."
3966
+ #~ msgstr ""
3967
+ #~ "GravityForms est l'outil le plus simple pour créer des formulaires "
3968
+ #~ "avancés pour votre site Web WordPress."
3969
+
3970
+ #~ msgid ""
3971
+ #~ "The most advanced frontend drag & drop page builder. Create high-end, "
3972
+ #~ "pixel perfect websites."
3973
+ #~ msgstr ""
3974
+ #~ "Le constructeur de page par glisser/déposer le plus avancé. Créez des "
3975
+ #~ "sites Web modernes, précis et haut de gamme."
3976
+
3977
+ #~ msgid ""
3978
+ #~ "A drag and drop WordPress Page Builder. Create with ease beautiful & "
3979
+ #~ "professional pages."
3980
+ #~ msgstr ""
3981
+ #~ "Un créateur de pages par glissé/déposé pour WordPress. Créez facilement "
3982
+ #~ "des pages magnifiques et professionnelles."
3983
+
3984
+ #~ msgid ""
3985
+ #~ "Visual Composer is the ultimate plugin for building every WordPress site "
3986
+ #~ "without coding."
3987
+ #~ msgstr ""
3988
+ #~ "Visual Composer est l’extension ultime pour construire votre site "
3989
+ #~ "WordPress sans coder."
3990
+
3991
+ #~ msgid ""
3992
+ #~ "It&rsquo;s not just a slider, build modern & mobile friendly "
3993
+ #~ "presentations for your website in no time."
3994
+ #~ msgstr ""
3995
+ #~ "Ce n’est pas seulement un diaporama, créez des présentations conviviales "
3996
+ #~ "modernes et mobiles pour votre site Web en un rien de temps."
3997
+
3998
+ #~ msgid ""
3999
+ #~ "A powerful and flexible plugin that makes it a breeze for users to sign-"
4000
+ #~ "up and become members."
4001
+ #~ msgstr ""
4002
+ #~ "Une extension puissante et flexible qui permet aux utilisateurs de "
4003
+ #~ "s'inscrire et de devenir membres."
4004
+
4005
+ #~ msgid ""
4006
+ #~ "WooCommerce is a free eCommerce plugin that allows you to sell anything, "
4007
+ #~ "beautifully."
4008
+ #~ msgstr ""
4009
+ #~ "WooCommerce est une extension de e-commerce gratuite qui vous permet de "
4010
+ #~ "vendre de tout, magnifiquement."
4011
+
4012
+ #~ msgid "More Recommended Plugins"
4013
+ #~ msgstr "Plus d’extensions recommandées"
4014
+
4015
+ #~ msgid "Sale!"
4016
+ #~ msgstr "Promo !"
lang/wf_customer_import_export-fr_FR.po DELETED
File without changes
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webtoffee
3
  Donate link: https://www.webtoffee.com/plugins/
4
  Tags: Export Users to CSV, Import Users from CSV, woocommerce export customers, user export, export import users, woocommerce import customers, woocommerce export customer email
5
  Requires at least: 3.0.1
6
- Tested up to: 5.0.2
7
- Stable tag: 1.2.1
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -19,7 +19,7 @@ Import users and export users made fast and simple! Import Export WordPress User
19
 
20
  &#128312; Users Export - Export Users to CSV file.</li>
21
  &#128312; Users import - Import Users from CSV format to WordPress/WooCommerce Store.
22
- &#128312; Tested OK with WooCommerce 3.5.2
23
 
24
  Highlights: WordPress Users Export, WordPress Users CSV Import Suite, Export WordPress Users to CSV. Pro Version supports export and import of all additional user meta like WooCommerce deatils.
25
 
@@ -37,7 +37,7 @@ You can create the CSV from the scratch or you can export the users to get the f
37
 
38
  Import Export WordPress Users & WooCommerce Customers
39
 
40
- &#9989; Export Import WooCommerce Customer details into a CSV file.( Basic version supports only WordPress User Import and User Export )
41
  &#9989; Option to choose All Roles or Multiple Roles while export (Basic Supports only single role at a time)
42
  &#9989; Various Filter options for exporting Customers.
43
  &#9989; Map and Transform fields while Importing Customers.
@@ -148,6 +148,10 @@ No. You may want to use https://wordpress.org/plugins/order-import-export-for-wo
148
 
149
  == Changelog ==
150
 
 
 
 
 
151
  = 1.2.1 =
152
  * Tested OK with WP 5.0.2 and WC 3.5.1
153
  = 1.2.0 =
@@ -201,5 +205,7 @@ No. You may want to use https://wordpress.org/plugins/order-import-export-for-wo
201
 
202
  == Upgrade Notice ==
203
 
204
- = 1.2.1 =
205
- * Tested OK with WP 5.0.2 and WC 3.5.1
 
 
3
  Donate link: https://www.webtoffee.com/plugins/
4
  Tags: Export Users to CSV, Import Users from CSV, woocommerce export customers, user export, export import users, woocommerce import customers, woocommerce export customer email
5
  Requires at least: 3.0.1
6
+ Tested up to: 5.0.3
7
+ Stable tag: 1.2.2
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
19
 
20
  &#128312; Users Export - Export Users to CSV file.</li>
21
  &#128312; Users import - Import Users from CSV format to WordPress/WooCommerce Store.
22
+ &#128312; Tested OK with WooCommerce 3.5.3
23
 
24
  Highlights: WordPress Users Export, WordPress Users CSV Import Suite, Export WordPress Users to CSV. Pro Version supports export and import of all additional user meta like WooCommerce deatils.
25
 
37
 
38
  Import Export WordPress Users & WooCommerce Customers
39
 
40
+ &#9989; Export Import WooCommerce Customer details into CSV a file.(Basic version supports only WordPress User Import and User Export)
41
  &#9989; Option to choose All Roles or Multiple Roles while export (Basic Supports only single role at a time)
42
  &#9989; Various Filter options for exporting Customers.
43
  &#9989; Map and Transform fields while Importing Customers.
148
 
149
  == Changelog ==
150
 
151
+ = 1.2.2 =
152
+ * Tested OK with WP 5.0.3 and WC 3.5.3
153
+ * Bug Fix: User cannot import without email.
154
+ * Translation added German and French - Thanks for contributing French translation Jean(@momo-fr).
155
  = 1.2.1 =
156
  * Tested OK with WP 5.0.2 and WC 3.5.1
157
  = 1.2.0 =
205
 
206
  == Upgrade Notice ==
207
 
208
+ = 1.2.2 =
209
+ * Tested OK with WP 5.0.3 and WC 3.5.3
210
+ * Translation added German and French.
211
+ * Fix: User cannot import without email.
customer-import-export.php → users-customers-import-export-for-wp-woocommerce.php RENAMED
@@ -6,9 +6,9 @@
6
  Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
7
  Author: WebToffee
8
  Author URI: https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/
9
- Version: 1.2.1
10
- WC tested up to: 3.5.2
11
- Text Domain: wf_customer_import_export
12
  License: GPLv3
13
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
14
  */
@@ -38,7 +38,7 @@ if( !defined('WF_CUSTOMER_IMP_EXP_ID') )
38
 
39
  if( !defined('WF_CUSTOMER_IMP_EXP_VERSION') )
40
  {
41
- define("WF_CUSTOMER_IMP_EXP_VERSION", "1.2.1");
42
  }
43
 
44
 
@@ -92,10 +92,10 @@ if (!class_exists('WF_Customer_Import_Export_CSV')) :
92
  public function wf_plugin_action_links($links) {
93
 
94
  $plugin_links = array(
95
- '<a href="' . admin_url('admin.php?page=hf_wordpress_customer_im_ex') . '">' . __('Import Export Users', 'wf_customer_import_export') . '</a>',
96
- '<a target="_blank" href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" style="color:#3db634;">' . __('Premium Upgrade', 'wf_customer_import_export') . '</a>',
97
- '<a target="_blank" href="https://www.webtoffee.com/support/">' . __('Support', 'wf_customer_import_export') . '</a>',
98
- '<a target="_blank" href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews/">' . __('Review', 'wf_customer_import_export') . '</a>',
99
  );
100
 
101
  if (array_key_exists('deactivate', $links)) {
@@ -117,7 +117,7 @@ if (!class_exists('WF_Customer_Import_Export_CSV')) :
117
  * Handle localisation
118
  */
119
  public function load_plugin_textdomain() {
120
- load_plugin_textdomain('wf_customer_import_export', false, dirname(plugin_basename(__FILE__)) . '/lang/');
121
  }
122
 
123
  /**
@@ -154,7 +154,7 @@ if (!class_exists('WF_Customer_Import_Export_CSV')) :
154
  * Register importers for use
155
  */
156
  public function register_importers() {
157
- register_importer('wordpress_hf_user_csv', 'WordPress User/Customers (CSV)', __('Import <strong>users/customers</strong> to your site via a csv file.', 'wf_customer_import_export'), 'WF_CustomerImpExpCsv_Importer::customer_importer');
158
  }
159
 
160
  private function hf_user_permission() {
@@ -181,8 +181,8 @@ if (!class_exists('WF_Customer_Import_Export_CSV')) :
181
  $allowed_screen_ids = array('users_page_hf_wordpress_customer_im_ex');
182
  if (in_array($screen->id, $allowed_screen_ids)|| (isset($_GET['import']) && $_GET['import'] == 'wordpress_hf_user_csv')) {
183
 
184
- $notice = __('<h3>Save Time, Money & Hassle on Your WooCommerce Data Migration?</h3>', 'wf_customer_import_export');
185
- $notice .= __('<h3>Use StoreFrog Migration Services.</h3>', 'wf_customer_import_export');
186
 
187
  $content = '<style>.webtoffee-storefrog-nav-tab.updated {z-index:2; display: flex;align-items: center;margin: 18px 20px 10px 0;padding:23px;border-left-color: #2c85d7!important}.webtoffee-storefrog-nav-tab ul {margin: 0;}.webtoffee-storefrog-nav-tab h3 {margin-top: 0;margin-bottom: 9px;font-weight: 500;font-size: 16px;color: #2880d3;}.webtoffee-storefrog-nav-tab h3:last-child {margin-bottom: 0;}.webtoffee-storefrog-banner {flex-basis: 20%;padding: 0 15px;margin-left: auto;} .webtoffee-storefrog-banner a:focus{box-shadow: none;}</style>';
188
  $content .= '<div class="updated woocommerce-message webtoffee-storefrog-nav-tab notice is-dismissible"><ul>' . $notice . '</ul><div class="webtoffee-storefrog-banner"><a href="http://www.storefrog.com/" target="_blank"> <img src="' . plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE))) . '/images/storefrog.png"/></a></div><div style="position: absolute;top: 0;right: 1px;z-index: 10000;" ><button type="button" id="webtoffee-storefrog-notice-dismiss" class="notice-dismiss"><span class="screen-reader-text">' . __('Dismiss this notice.', 'wf_order_import_export') . '</span></button></div></div>';
@@ -217,7 +217,7 @@ if (!class_exists('WF_Customer_Import_Export_CSV')) :
217
  if (in_array($screen->id, $allowed_screen_ids) || (isset($_GET['import']) && $_GET['import'] == 'wordpress_hf_user_csv')) {
218
  if (!get_option('ucie_wt_plugin_reviewed')) {
219
  $footer_text = sprintf(
220
- __('If you like the plugin please leave us a %1$s review.', 'wf_customer_import_export'), '<a href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews?rate=5#new-post" target="_blank" class="wt-review-link" data-rated="' . esc_attr__('Thanks :)', 'wf_customer_import_export') . '">&#9733;&#9733;&#9733;&#9733;&#9733;</a>'
221
  );
222
 
223
  $user_js = "jQuery( 'a.wt-review-link' ).click( function() {
@@ -229,7 +229,7 @@ if (!class_exists('WF_Customer_Import_Export_CSV')) :
229
 
230
 
231
  } else {
232
- $footer_text = __('Thank you for your review.', 'wf_customer_import_export');
233
  }
234
  }
235
 
6
  Description: Export and Import User/Customers details From and To your WordPress/WooCommerce.
7
  Author: WebToffee
8
  Author URI: https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/
9
+ Version: 1.2.2
10
+ WC tested up to: 3.5.3
11
+ Text Domain: users-customers-import-export-for-wp-woocommerce
12
  License: GPLv3
13
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
14
  */
38
 
39
  if( !defined('WF_CUSTOMER_IMP_EXP_VERSION') )
40
  {
41
+ define("WF_CUSTOMER_IMP_EXP_VERSION", "1.2.2");
42
  }
43
 
44
 
92
  public function wf_plugin_action_links($links) {
93
 
94
  $plugin_links = array(
95
+ '<a href="' . admin_url('admin.php?page=hf_wordpress_customer_im_ex') . '">' . __('Import Export Users', 'users-customers-import-export-for-wp-woocommerce') . '</a>',
96
+ '<a target="_blank" href="https://www.webtoffee.com/product/wordpress-users-woocommerce-customers-import-export/" style="color:#3db634;">' . __('Premium Upgrade', 'users-customers-import-export-for-wp-woocommerce') . '</a>',
97
+ '<a target="_blank" href="https://www.webtoffee.com/support/">' . __('Support', 'users-customers-import-export-for-wp-woocommerce') . '</a>',
98
+ '<a target="_blank" href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews/">' . __('Review', 'users-customers-import-export-for-wp-woocommerce') . '</a>',
99
  );
100
 
101
  if (array_key_exists('deactivate', $links)) {
117
  * Handle localisation
118
  */
119
  public function load_plugin_textdomain() {
120
+ load_plugin_textdomain('users-customers-import-export-for-wp-woocommerce', false, dirname(plugin_basename(__FILE__)) . '/lang/');
121
  }
122
 
123
  /**
154
  * Register importers for use
155
  */
156
  public function register_importers() {
157
+ register_importer('wordpress_hf_user_csv', 'WordPress User/Customers (CSV)', __('Import <strong>users/customers</strong> to your site via a csv file.', 'users-customers-import-export-for-wp-woocommerce'), 'WF_CustomerImpExpCsv_Importer::customer_importer');
158
  }
159
 
160
  private function hf_user_permission() {
181
  $allowed_screen_ids = array('users_page_hf_wordpress_customer_im_ex');
182
  if (in_array($screen->id, $allowed_screen_ids)|| (isset($_GET['import']) && $_GET['import'] == 'wordpress_hf_user_csv')) {
183
 
184
+ $notice = __('<h3>Save Time, Money & Hassle on Your WooCommerce Data Migration?</h3>', 'users-customers-import-export-for-wp-woocommerce');
185
+ $notice .= __('<h3>Use StoreFrog Migration Services.</h3>', 'users-customers-import-export-for-wp-woocommerce');
186
 
187
  $content = '<style>.webtoffee-storefrog-nav-tab.updated {z-index:2; display: flex;align-items: center;margin: 18px 20px 10px 0;padding:23px;border-left-color: #2c85d7!important}.webtoffee-storefrog-nav-tab ul {margin: 0;}.webtoffee-storefrog-nav-tab h3 {margin-top: 0;margin-bottom: 9px;font-weight: 500;font-size: 16px;color: #2880d3;}.webtoffee-storefrog-nav-tab h3:last-child {margin-bottom: 0;}.webtoffee-storefrog-banner {flex-basis: 20%;padding: 0 15px;margin-left: auto;} .webtoffee-storefrog-banner a:focus{box-shadow: none;}</style>';
188
  $content .= '<div class="updated woocommerce-message webtoffee-storefrog-nav-tab notice is-dismissible"><ul>' . $notice . '</ul><div class="webtoffee-storefrog-banner"><a href="http://www.storefrog.com/" target="_blank"> <img src="' . plugins_url(basename(plugin_dir_path(WF_CustomerImpExpCsv_FILE))) . '/images/storefrog.png"/></a></div><div style="position: absolute;top: 0;right: 1px;z-index: 10000;" ><button type="button" id="webtoffee-storefrog-notice-dismiss" class="notice-dismiss"><span class="screen-reader-text">' . __('Dismiss this notice.', 'wf_order_import_export') . '</span></button></div></div>';
217
  if (in_array($screen->id, $allowed_screen_ids) || (isset($_GET['import']) && $_GET['import'] == 'wordpress_hf_user_csv')) {
218
  if (!get_option('ucie_wt_plugin_reviewed')) {
219
  $footer_text = sprintf(
220
+ __('If you like the plugin please leave us a %1$s review.', 'users-customers-import-export-for-wp-woocommerce'), '<a href="https://wordpress.org/support/plugin/users-customers-import-export-for-wp-woocommerce/reviews?rate=5#new-post" target="_blank" class="wt-review-link" data-rated="' . esc_attr__('Thanks :)', 'users-customers-import-export-for-wp-woocommerce') . '">&#9733;&#9733;&#9733;&#9733;&#9733;</a>'
221
  );
222
 
223
  $user_js = "jQuery( 'a.wt-review-link' ).click( function() {
229
 
230
 
231
  } else {
232
+ $footer_text = __('Thank you for your review.', 'users-customers-import-export-for-wp-woocommerce');
233
  }
234
  }
235