Import users from CSV with meta - Version 1.10.6

Version Description

  • Now you can hide the extra profile fields created with the plugin thanks to Steph O'Brien
Download this release

Release Info

Developer carazo
Plugin Icon 128x128 Import users from CSV with meta
Version 1.10.6
Comparing to
See all releases

Code changes from version 1.10.5 to 1.10.6

import-users-from-csv-with-meta.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Import users from CSV with meta
4
  Plugin URI: http://www.codection.com
5
  Description: This plugins allows to import users using CSV files to WP database automatically
6
  Author: codection
7
- Version: 1.10.5
8
  Author URI: http://codection.com
9
  Text Domain: import-users-from-csv-with-meta
10
  Domain Path: /languages
@@ -66,6 +66,7 @@ function acui_activate(){
66
  add_option( "acui_cron_role" );
67
  add_option( "acui_cron_log" );
68
  add_option( "acui_automattic_wordpress_email" );
 
69
 
70
  // smtp
71
  foreach ( $acui_smtp_options as $name => $val ) {
@@ -96,6 +97,7 @@ function acui_delete_options(){
96
  delete_option( "acui_cron_role" );
97
  delete_option( "acui_cron_log" );
98
  delete_option( "acui_automattic_wordpress_email" );
 
99
 
100
  foreach ( $acui_smtp_options as $name => $val ) {
101
  delete_option( $name );
@@ -210,7 +212,7 @@ function acui_check_options(){
210
  function acui_admin_tabs( $current = 'homepage' ) {
211
  $tabs = array(
212
  'homepage' => __( 'Import users from CSV', 'import-users-from-csv-with-meta' ),
213
- 'columns' => __( 'Customs columns loaded', 'import-users-from-csv-with-meta' ),
214
  'mail-options' => __( 'Mail options', 'import-users-from-csv-with-meta' ),
215
  'smtp-settings' => __( 'SMTP settings', 'import-users-from-csv-with-meta' ),
216
  'doc' => __( 'Documentation', 'import-users-from-csv-with-meta' ),
@@ -334,6 +336,15 @@ function acui_fileupload_process( $form_data, $is_cron = false ) {
334
  endif;
335
  }
336
 
 
 
 
 
 
 
 
 
 
337
  function acui_save_mail_template( $form_data ){
338
  update_option( "acui_automattic_wordpress_email", stripslashes( $form_data["automattic_wordpress_email"] ) );
339
  update_option( "acui_mail_body", stripslashes( $form_data["body_mail"] ) );
@@ -601,14 +612,17 @@ add_action( "plugins_loaded", "acui_init" );
601
  add_action( "admin_menu", "acui_menu" );
602
  add_filter( 'plugin_row_meta', 'acui_plugin_row_meta', 10, 2 );
603
  add_action( 'admin_init', 'acui_modify_user_edit_admin' );
604
- add_action( "show_user_profile", "acui_extra_user_profile_fields" );
605
- add_action( "edit_user_profile", "acui_extra_user_profile_fields" );
606
- add_action( "personal_options_update", "acui_save_extra_user_profile_fields" );
607
- add_action( "edit_user_profile_update", "acui_save_extra_user_profile_fields" );
608
  add_action( 'wp_ajax_acui_delete_attachment', 'acui_delete_attachment' );
609
  add_action( 'wp_ajax_acui_bulk_delete_attachment', 'acui_bulk_delete_attachment' );
610
  add_action( 'acui_cron_process', 'acui_cron_process' );
611
 
 
 
 
 
 
 
 
612
  // misc
613
  if (!function_exists('str_getcsv')) {
614
  function str_getcsv($input, $delimiter = ',', $enclosure = '"', $escape = '\\', $eol = '\n') {
4
  Plugin URI: http://www.codection.com
5
  Description: This plugins allows to import users using CSV files to WP database automatically
6
  Author: codection
7
+ Version: 1.10.6
8
  Author URI: http://codection.com
9
  Text Domain: import-users-from-csv-with-meta
10
  Domain Path: /languages
66
  add_option( "acui_cron_role" );
67
  add_option( "acui_cron_log" );
68
  add_option( "acui_automattic_wordpress_email" );
69
+ add_option( "acui_show_profile_fields" );
70
 
71
  // smtp
72
  foreach ( $acui_smtp_options as $name => $val ) {
97
  delete_option( "acui_cron_role" );
98
  delete_option( "acui_cron_log" );
99
  delete_option( "acui_automattic_wordpress_email" );
100
+ delete_option( "acui_show_profile_fields" );
101
 
102
  foreach ( $acui_smtp_options as $name => $val ) {
103
  delete_option( $name );
212
  function acui_admin_tabs( $current = 'homepage' ) {
213
  $tabs = array(
214
  'homepage' => __( 'Import users from CSV', 'import-users-from-csv-with-meta' ),
215
+ 'columns' => __( 'Extra profile fields', 'import-users-from-csv-with-meta' ),
216
  'mail-options' => __( 'Mail options', 'import-users-from-csv-with-meta' ),
217
  'smtp-settings' => __( 'SMTP settings', 'import-users-from-csv-with-meta' ),
218
  'doc' => __( 'Documentation', 'import-users-from-csv-with-meta' ),
336
  endif;
337
  }
338
 
339
+ function acui_manage_extra_profile_fields( $form_data ){
340
+ if( isset( $form_data["show-profile-fields"] ) && $form_data["show-profile-fields"] == "yes" ){
341
+ update_option( "acui_show_profile_fields", true );
342
+ }
343
+ else{
344
+ update_option( "acui_show_profile_fields", false );
345
+ }
346
+ }
347
+
348
  function acui_save_mail_template( $form_data ){
349
  update_option( "acui_automattic_wordpress_email", stripslashes( $form_data["automattic_wordpress_email"] ) );
350
  update_option( "acui_mail_body", stripslashes( $form_data["body_mail"] ) );
612
  add_action( "admin_menu", "acui_menu" );
613
  add_filter( 'plugin_row_meta', 'acui_plugin_row_meta', 10, 2 );
614
  add_action( 'admin_init', 'acui_modify_user_edit_admin' );
 
 
 
 
615
  add_action( 'wp_ajax_acui_delete_attachment', 'acui_delete_attachment' );
616
  add_action( 'wp_ajax_acui_bulk_delete_attachment', 'acui_bulk_delete_attachment' );
617
  add_action( 'acui_cron_process', 'acui_cron_process' );
618
 
619
+ if( get_option( 'acui_show_profile_fields' ) == true ){
620
+ add_action( "show_user_profile", "acui_extra_user_profile_fields" );
621
+ add_action( "edit_user_profile", "acui_extra_user_profile_fields" );
622
+ add_action( "personal_options_update", "acui_save_extra_user_profile_fields" );
623
+ add_action( "edit_user_profile_update", "acui_save_extra_user_profile_fields" );
624
+ }
625
+
626
  // misc
627
  if (!function_exists('str_getcsv')) {
628
  function str_getcsv($input, $delimiter = ',', $enclosure = '"', $escape = '\\', $eol = '\n') {
importer.php CHANGED
@@ -509,10 +509,13 @@ function acui_options()
509
  switch ( $tab ){
510
  case 'homepage':
511
  acui_fileupload_process( $_POST, false );
512
-
513
  return;
514
  break;
515
 
 
 
 
 
516
  case 'mail-options':
517
  acui_save_mail_template( $_POST );
518
  break;
@@ -834,15 +837,25 @@ function acui_options()
834
  break;
835
 
836
  case 'columns':
837
-
838
- $headers = get_option("acui_columns");
839
  ?>
840
 
841
- <h3><?php _e( 'Custom columns loaded', 'import-users-from-csv-with-meta' ); ?></h3>
842
  <table class="form-table">
843
  <tbody>
844
  <tr valign="top">
845
- <th scope="row"><?php _e( 'Columns loaded in previous files', 'import-users-from-csv-with-meta' ); ?></th>
 
 
 
 
 
 
 
 
 
 
846
  <td><small><em><?php _e( '(if you load another CSV with different columns, the new ones will replace this list)', 'import-users-from-csv-with-meta' ); ?></em></small>
847
  <ol>
848
  <?php
509
  switch ( $tab ){
510
  case 'homepage':
511
  acui_fileupload_process( $_POST, false );
 
512
  return;
513
  break;
514
 
515
+ case 'columns':
516
+ acui_manage_extra_profile_fields( $_POST );
517
+ break;
518
+
519
  case 'mail-options':
520
  acui_save_mail_template( $_POST );
521
  break;
837
  break;
838
 
839
  case 'columns':
840
+ $show_profile_fields = get_option( "acui_show_profile_fields");
841
+ $headers = get_option("acui_columns");
842
  ?>
843
 
844
+ <h3><?php _e( 'Extra profile fields', 'import-users-from-csv-with-meta' ); ?></h3>
845
  <table class="form-table">
846
  <tbody>
847
  <tr valign="top">
848
+ <th scope="row"><?php _e( 'Show fields in profile?', 'import-users-from-csv-with-meta' ); ?></th>
849
+ <td>
850
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8">
851
+ <input type="checkbox" name="show-profile-fields" value ="<?php _e('yes','import-users-from-csv-with-meta'); ?>" <?php if( $show_profile_fields == true ) echo "checked='checked'"; ?>>
852
+ <input type="hidden" name="show-profile-fields-action" value="update"/>
853
+ <input class="button-primary" type="submit" value="<?php _e( 'Save option', 'import-users-from-csv-with-meta'); ?>"/>
854
+ </form>
855
+ </td>
856
+ </tr>
857
+ <tr valign="top">
858
+ <th scope="row"><?php _e( 'Extra profile fields loadad in previous files', 'import-users-from-csv-with-meta' ); ?></th>
859
  <td><small><em><?php _e( '(if you load another CSV with different columns, the new ones will replace this list)', 'import-users-from-csv-with-meta' ); ?></em></small>
860
  <ol>
861
  <?php
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://paypal.me/codection
4
  Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
5
  Requires at least: 3.4
6
  Tested up to: 4.7.2
7
- Stable tag: 1.10.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -70,6 +70,9 @@ Plugin will automatically detect:
70
 
71
  == Changelog ==
72
 
 
 
 
73
  = 1.10.5 =
74
  * Now you can import list of elements using :: as separator and it can also be done in BuddyPress profile fields thanks to Jon Eiseman
75
  * Fixes in SMTP settings
4
  Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
5
  Requires at least: 3.4
6
  Tested up to: 4.7.2
7
+ Stable tag: 1.10.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
70
 
71
  == Changelog ==
72
 
73
+ = 1.10.6 =
74
+ * Now you can hide the extra profile fields created with the plugin thanks to Steph O'Brien
75
+
76
  = 1.10.5 =
77
  * Now you can import list of elements using :: as separator and it can also be done in BuddyPress profile fields thanks to Jon Eiseman
78
  * Fixes in SMTP settings
trunk/csv_example.png ADDED
Binary file
trunk/email-repeated.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ function acui_hack_email( $email ) {
6
+ if ( ! is_email( $email ) ) {
7
+ return;
8
+ }
9
+
10
+ $old_email = $email;
11
+
12
+ for ( $i = 0; ! $skip_remap && email_exists( $email ); $i++ ) {
13
+ $email = str_replace( '@', "+ama{$i}@", $old_email );
14
+ }
15
+
16
+ return $email;
17
+ }
18
+
19
+ function acui_hack_restore_remapped_email_address( $user_id, $email ) {
20
+ global $wpdb;
21
+
22
+ $wpdb->update(
23
+ $wpdb->users,
24
+ array( 'user_email' => $hacked_email ),
25
+ array( 'ID' => $user_id )
26
+ );
27
+
28
+ clean_user_cache( $user_id );
29
+ }
trunk/icon_coffee.png ADDED
Binary file
trunk/import-users-from-csv-with-meta.php ADDED
@@ -0,0 +1,686 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: Import users from CSV with meta
4
+ Plugin URI: http://www.codection.com
5
+ Description: This plugins allows to import users using CSV files to WP database automatically
6
+ Author: codection
7
+ Version: 1.10.6
8
+ Author URI: http://codection.com
9
+ Text Domain: import-users-from-csv-with-meta
10
+ Domain Path: /languages
11
+ */
12
+
13
+ if ( ! defined( 'ABSPATH' ) ) exit;
14
+
15
+ $url_plugin = WP_PLUGIN_URL . '/' . str_replace( basename( __FILE__ ), "", plugin_basename( __FILE__ ) );
16
+ $wp_users_fields = array( "id", "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim", "yim", "user_registered", "password", "user_pass", "locale" );
17
+ $wp_min_fields = array("Username", "Email");
18
+ $acui_fields = array( "bp_group", "bp_group_role" );
19
+ $acui_restricted_fields = array_merge( $wp_users_fields, $wp_min_fields, $acui_fields );
20
+
21
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
22
+
23
+ require_once( "smtp.php" );
24
+ require_once( "email-repeated.php" );
25
+
26
+ if( is_plugin_active( 'buddypress/bp-loader.php' ) ){
27
+ if ( defined( 'BP_VERSION' ) )
28
+ acui_loader();
29
+ else
30
+ add_action( 'bp_init', 'acui_loader' );
31
+ }
32
+ else
33
+ acui_loader();
34
+
35
+ function acui_loader(){
36
+ require_once( "importer.php" );
37
+ }
38
+
39
+ function acui_init(){
40
+ load_plugin_textdomain( 'import-users-from-csv-with-meta', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
41
+
42
+ acui_activate();
43
+ }
44
+
45
+ function acui_activate(){
46
+ global $acui_smtp_options;
47
+
48
+ $sitename = strtolower( $_SERVER['SERVER_NAME'] );
49
+ if ( substr( $sitename, 0, 4 ) == 'www.' ) {
50
+ $sitename = substr( $sitename, 4 );
51
+ }
52
+
53
+ add_option( "acui_columns" );
54
+
55
+ add_option( "acui_mail_subject", __('Welcome to', 'import-users-from-csv-with-meta') . ' ' . get_bloginfo("name"), '', false );
56
+ add_option( "acui_mail_body", __('Welcome,', 'import-users-from-csv-with-meta') . '<br/>' . __('Your data to login in this site is:', 'import-users-from-csv-with-meta') . '<br/><ul><li>' . __('URL to login', 'import-users-from-csv-with-meta') . ': **loginurl**</li><li>' . __( 'Username', 'import-users-from-csv-with-meta') . '= **username**</li><li>Password = **password**</li></ul>', '', false );
57
+
58
+ add_option( "acui_cron_activated" );
59
+ add_option( "acui_send_mail_cron" );
60
+ add_option( "acui_send_mail_updated" );
61
+ add_option( "acui_cron_delete_users" );
62
+ add_option( "acui_cron_path_to_file" );
63
+ add_option( "acui_cron_path_to_move" );
64
+ add_option( "acui_cron_path_to_move_auto_rename" );
65
+ add_option( "acui_cron_period" );
66
+ add_option( "acui_cron_role" );
67
+ add_option( "acui_cron_log" );
68
+ add_option( "acui_automattic_wordpress_email" );
69
+ add_option( "acui_show_profile_fields" );
70
+
71
+ // smtp
72
+ foreach ( $acui_smtp_options as $name => $val ) {
73
+ add_option( $name, $val );
74
+ }
75
+ }
76
+
77
+ function acui_deactivate(){
78
+ wp_clear_scheduled_hook( 'acui_cron' );
79
+ }
80
+
81
+ function acui_delete_options(){
82
+ global $acui_smtp_options;
83
+
84
+ delete_option( "acui_columns" );
85
+
86
+ delete_option( "acui_mail_subject" );
87
+ delete_option( "acui_mail_body" );
88
+
89
+ delete_option( "acui_cron_activated" );
90
+ delete_option( "acui_send_mail_cron" );
91
+ delete_option( "acui_send_mail_updated" );
92
+ delete_option( "acui_cron_delete_users" );
93
+ delete_option( "acui_cron_path_to_file" );
94
+ delete_option( "acui_cron_path_to_move" );
95
+ delete_option( "acui_cron_path_to_move_auto_rename" );
96
+ delete_option( "acui_cron_period" );
97
+ delete_option( "acui_cron_role" );
98
+ delete_option( "acui_cron_log" );
99
+ delete_option( "acui_automattic_wordpress_email" );
100
+ delete_option( "acui_show_profile_fields" );
101
+
102
+ foreach ( $acui_smtp_options as $name => $val ) {
103
+ delete_option( $name );
104
+ }
105
+ }
106
+
107
+ function acui_menu() {
108
+ add_submenu_page( 'tools.php', __( 'Insert users massively (CSV)', 'import-users-from-csv-with-meta' ), __( 'Import users from CSV', 'import-users-from-csv-with-meta' ), 'create_users', 'acui', 'acui_options' );
109
+ }
110
+
111
+ function acui_plugin_row_meta( $links, $file ){
112
+ if ( strpos( $file, basename( __FILE__ ) ) !== false ) {
113
+ $new_links = array(
114
+ '<a href="https://www.paypal.me/codection" target="_blank">' . __( 'Donate', 'import-users-from-csv-with-meta' ) . '</a>',
115
+ '<a href="mailto:contacto@codection.com" target="_blank">' . __( 'Premium support', 'import-users-from-csv-with-meta' ) . '</a>',
116
+ '<a href="http://codection.com/tienda" target="_blank">' . __( 'Premium plugins', 'import-users-from-csv-with-meta' ) . '</a>',
117
+ );
118
+
119
+ $links = array_merge( $links, $new_links );
120
+ }
121
+
122
+ return $links;
123
+ }
124
+
125
+ function acui_detect_delimiter($file){
126
+ $handle = @fopen($file, "r");
127
+ $sumComma = 0;
128
+ $sumSemiColon = 0;
129
+ $sumBar = 0;
130
+
131
+ if($handle){
132
+ while (($data = fgets($handle, 4096)) !== FALSE):
133
+ $sumComma += substr_count($data, ",");
134
+ $sumSemiColon += substr_count($data, ";");
135
+ $sumBar += substr_count($data, "|");
136
+ endwhile;
137
+ }
138
+ fclose($handle);
139
+
140
+ if(($sumComma > $sumSemiColon) && ($sumComma > $sumBar))
141
+ return ",";
142
+ else if(($sumSemiColon > $sumComma) && ($sumSemiColon > $sumBar))
143
+ return ";";
144
+ else
145
+ return "|";
146
+ }
147
+
148
+ function acui_string_conversion( $string ){
149
+ if(!preg_match('%(?:
150
+ [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
151
+ |\xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
152
+ |[\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
153
+ |\xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
154
+ |\xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
155
+ |[\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
156
+ |\xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
157
+ )+%xs', $string)){
158
+ return utf8_encode($string);
159
+ }
160
+ else
161
+ return $string;
162
+ }
163
+
164
+ function acui_mail_from(){
165
+ return get_option( "acui_mail_from" );
166
+ }
167
+
168
+ function acui_mail_from_name(){
169
+ return get_option( "acui_mail_from_name" );
170
+ }
171
+
172
+ function acui_user_id_exists( $user_id ){
173
+ if ( get_userdata( $user_id ) === false )
174
+ return false;
175
+ else
176
+ return true;
177
+ }
178
+
179
+ function acui_get_roles($user_id){
180
+ $roles = array();
181
+ $user = new WP_User( $user_id );
182
+
183
+ if ( !empty( $user->roles ) && is_array( $user->roles ) ) {
184
+ foreach ( $user->roles as $role )
185
+ $roles[] = $role;
186
+ }
187
+
188
+ return $roles;
189
+ }
190
+
191
+ function acui_get_editable_roles() {
192
+ global $wp_roles;
193
+
194
+ $all_roles = $wp_roles->roles;
195
+ $editable_roles = apply_filters('editable_roles', $all_roles);
196
+ $list_editable_roles = array();
197
+
198
+ foreach ($editable_roles as $key => $editable_role)
199
+ $list_editable_roles[$key] = $editable_role["name"];
200
+
201
+ return $list_editable_roles;
202
+ }
203
+
204
+ function acui_check_options(){
205
+ if( get_option( "acui_mail_body" ) == "" )
206
+ update_option( "acui_mail_body", __( 'Welcome,', 'import-users-from-csv-with-meta' ) . '<br/>' . __( 'Your data to login in this site is:', 'import-users-from-csv-with-meta' ) . '<br/><ul><li>' . __( 'URL to login', 'import-users-from-csv-with-meta' ) . ': **loginurl**</li><li>' . __( 'Username', 'import-users-from-csv-with-meta' ) . ' = **username**</li><li>' . __( 'Password', 'import-users-from-csv-with-meta' ) . ' = **password**</li></ul>' );
207
+
208
+ if( get_option( "acui_mail_subject" ) == "" )
209
+ update_option( "acui_mail_subject", __('Welcome to','import-users-from-csv-with-meta') . ' ' . get_bloginfo("name") );
210
+ }
211
+
212
+ function acui_admin_tabs( $current = 'homepage' ) {
213
+ $tabs = array(
214
+ 'homepage' => __( 'Import users from CSV', 'import-users-from-csv-with-meta' ),
215
+ 'columns' => __( 'Extra profile fields', 'import-users-from-csv-with-meta' ),
216
+ 'mail-options' => __( 'Mail options', 'import-users-from-csv-with-meta' ),
217
+ 'smtp-settings' => __( 'SMTP settings', 'import-users-from-csv-with-meta' ),
218
+ 'doc' => __( 'Documentation', 'import-users-from-csv-with-meta' ),
219
+ 'cron' => __( 'Cron import', 'import-users-from-csv-with-meta' ),
220
+ 'donate' => __( 'Donate', 'import-users-from-csv-with-meta' ),
221
+ 'shop' => __( 'Shop', 'import-users-from-csv-with-meta' ),
222
+ 'help' => __( 'Hire an expert', 'import-users-from-csv-with-meta' )
223
+ );
224
+
225
+ echo '<div id="icon-themes" class="icon32"><br></div>';
226
+ echo '<h2 class="nav-tab-wrapper">';
227
+ foreach( $tabs as $tab => $name ){
228
+ $class = ( $tab == $current ) ? ' nav-tab-active' : '';
229
+
230
+ if( $tab == "shop" ){
231
+ $href = "http://codection.com/tienda/";
232
+ $target = "_blank";
233
+ }
234
+ else{
235
+ $href = "?page=acui&tab=$tab";
236
+ $target = "_self";
237
+ }
238
+
239
+ echo "<a class='nav-tab$class' href='$href' target='$target'>$name</a>";
240
+
241
+ }
242
+ echo '</h2>';
243
+ }
244
+
245
+ /**
246
+ * Handle file uploads
247
+ *
248
+ * @todo check file size
249
+ *
250
+ * @return none
251
+ */
252
+ function acui_fileupload_process( $form_data, $is_cron = false ) {
253
+ if ( !$is_cron && ( ! isset( $_POST['acui-nonce'] ) || ! wp_verify_nonce( $_POST['acui-nonce'], 'acui-import' ) ) ){
254
+ wp_die( 'Nonce problem' );
255
+ }
256
+
257
+ $path_to_file = $form_data["path_to_file"];
258
+ $role = $form_data["role"];
259
+ $uploadfiles = $_FILES['uploadfiles'];
260
+
261
+ if( empty( $uploadfiles["name"][0] ) ):
262
+
263
+ if( !file_exists ( $path_to_file ) )
264
+ wp_die( __( 'Error, we cannot find the file', 'import-users-from-csv-with-meta' ) . ": $path_to_file" );
265
+
266
+ acui_import_users( $path_to_file, $form_data, 0, $is_cron );
267
+
268
+ else:
269
+
270
+ if ( is_array($uploadfiles) ) {
271
+
272
+ foreach ( $uploadfiles['name'] as $key => $value ) {
273
+
274
+ // look only for uploded files
275
+ if ($uploadfiles['error'][$key] == 0) {
276
+ $filetmp = $uploadfiles['tmp_name'][$key];
277
+
278
+ //clean filename and extract extension
279
+ $filename = $uploadfiles['name'][$key];
280
+
281
+ // get file info
282
+ // @fixme: wp checks the file extension....
283
+ $filetype = wp_check_filetype( basename( $filename ), array('csv' => 'text/csv') );
284
+ $filetitle = preg_replace('/\.[^.]+$/', '', basename( $filename ) );
285
+ $filename = $filetitle . '.' . $filetype['ext'];
286
+ $upload_dir = wp_upload_dir();
287
+
288
+ if ($filetype['ext'] != "csv") {
289
+ wp_die('File must be a CSV');
290
+ return;
291
+ }
292
+
293
+ /**
294
+ * Check if the filename already exist in the directory and rename the
295
+ * file if necessary
296
+ */
297
+ $i = 0;
298
+ while ( file_exists( $upload_dir['path'] .'/' . $filename ) ) {
299
+ $filename = $filetitle . '_' . $i . '.' . $filetype['ext'];
300
+ $i++;
301
+ }
302
+ $filedest = $upload_dir['path'] . '/' . $filename;
303
+
304
+ /**
305
+ * Check write permissions
306
+ */
307
+ if ( !is_writeable( $upload_dir['path'] ) ) {
308
+ wp_die( __( 'Unable to write to directory. Is this directory writable by the server?', 'import-users-from-csv-with-meta' ));
309
+ return;
310
+ }
311
+
312
+ /**
313
+ * Save temporary file to uploads dir
314
+ */
315
+ if ( !@move_uploaded_file($filetmp, $filedest) ){
316
+ wp_die( __( 'Error, the file', 'import-users-from-csv-with-meta' ) . " $filetmp " . __( 'could not moved to', 'import-users-from-csv-with-meta' ) . " : $filedest");
317
+ continue;
318
+ }
319
+
320
+ $attachment = array(
321
+ 'post_mime_type' => $filetype['type'],
322
+ 'post_title' => $filetitle,
323
+ 'post_content' => '',
324
+ 'post_status' => 'inherit'
325
+ );
326
+
327
+ $attach_id = wp_insert_attachment( $attachment, $filedest );
328
+ require_once( ABSPATH . "wp-admin" . '/includes/image.php' );
329
+ $attach_data = wp_generate_attachment_metadata( $attach_id, $filedest );
330
+ wp_update_attachment_metadata( $attach_id, $attach_data );
331
+
332
+ acui_import_users( $filedest, $form_data, $attach_id, $is_cron );
333
+ }
334
+ }
335
+ }
336
+ endif;
337
+ }
338
+
339
+ function acui_manage_extra_profile_fields( $form_data ){
340
+ if( isset( $form_data["show-profile-fields"] ) && $form_data["show-profile-fields"] == "yes" ){
341
+ update_option( "acui_show_profile_fields", true );
342
+ }
343
+ else{
344
+ update_option( "acui_show_profile_fields", false );
345
+ }
346
+ }
347
+
348
+ function acui_save_mail_template( $form_data ){
349
+ update_option( "acui_automattic_wordpress_email", stripslashes( $form_data["automattic_wordpress_email"] ) );
350
+ update_option( "acui_mail_body", stripslashes( $form_data["body_mail"] ) );
351
+ update_option( "acui_mail_subject", stripslashes( $form_data["subject_mail"] ) );
352
+ ?>
353
+ <div class="updated">
354
+ <p><?php _e( 'Mail template updated correctly', 'import-users-from-csv-with-meta' )?></p>
355
+ </div>
356
+ <?php
357
+ }
358
+
359
+ function acui_manage_cron_process( $form_data ){
360
+ $next_timestamp = wp_next_scheduled( 'acui_cron_process' );
361
+
362
+ if( isset( $form_data["cron-activated"] ) && $form_data["cron-activated"] == "yes" ){
363
+ update_option( "acui_cron_activated", true );
364
+
365
+ if( !$next_timestamp ) {
366
+ wp_schedule_event( time(), $form_data[ "period" ], 'acui_cron_process' );
367
+ }
368
+ }
369
+ else{
370
+ update_option( "acui_cron_activated", false );
371
+ wp_unschedule_event( $next_timestamp, 'acui_cron_process');
372
+ }
373
+
374
+ if( isset( $form_data["send-mail-cron"] ) && $form_data["send-mail-cron"] == "yes" )
375
+ update_option( "acui_send_mail_cron", true );
376
+ else
377
+ update_option( "acui_send_mail_cron", false );
378
+
379
+ if( isset( $form_data["send-mail-updated"] ) && $form_data["send-mail-updated"] == "yes" )
380
+ update_option( "acui_send_mail_updated", true );
381
+ else
382
+ update_option( "acui_send_mail_updated", false );
383
+
384
+ if( isset( $form_data["cron-delete-users"] ) && $form_data["cron-delete-users"] == "yes" )
385
+ update_option( "acui_cron_delete_users", true );
386
+ else
387
+ update_option( "acui_cron_delete_users", false );
388
+
389
+ if( isset( $form_data["move-file-cron"] ) && $form_data["move-file-cron"] == "yes" )
390
+ update_option( "acui_move_file_cron", true );
391
+ else
392
+ update_option( "acui_move_file_cron", false );
393
+
394
+ if( isset( $form_data["path_to_move_auto_rename"] ) && $form_data["path_to_move_auto_rename"] == "yes" )
395
+ update_option( "acui_cron_path_to_move_auto_rename", true );
396
+ else
397
+ update_option( "acui_cron_path_to_move_auto_rename", false );
398
+
399
+ update_option( "acui_cron_path_to_file", $form_data["path_to_file"] );
400
+ update_option( "acui_cron_path_to_move", $form_data["path_to_move"] );
401
+ update_option( "acui_cron_period", $form_data["period"] );
402
+ update_option( "acui_cron_role", $form_data["role"] );
403
+ update_option( "acui_cron_delete_users_assign_posts", $form_data["cron-delete-users-assign-posts"] );
404
+ ?>
405
+
406
+ <div class="updated">
407
+ <p><?php _e( 'Settings updated correctly', 'import-users-from-csv-with-meta' ) ?></p>
408
+ </div>
409
+ <?php
410
+ }
411
+
412
+ function acui_cron_process(){
413
+ $message = __('Import cron task starts at', 'import-users-from-csv-with-meta' ) . ' ' . date("Y-m-d H:i:s") . '<br/>';
414
+
415
+ $form_data = array();
416
+ $form_data[ "path_to_file" ] = get_option( "acui_cron_path_to_file");
417
+ $form_data[ "role" ] = get_option( "acui_cron_role");
418
+ $form_data[ "empty_cell_action" ] = "leave";
419
+
420
+ ob_start();
421
+ acui_fileupload_process( $form_data, true );
422
+ $message .= "<br/>" . ob_get_contents() . "<br/>";
423
+ ob_end_clean();
424
+
425
+ $move_file_cron = get_option( "acui_move_file_cron");
426
+
427
+ if( $move_file_cron ){
428
+ $path_to_file = get_option( "acui_cron_path_to_file");
429
+ $path_to_move = get_option( "acui_cron_path_to_move");
430
+
431
+ rename( $path_to_file, $path_to_move );
432
+ }
433
+
434
+ $message .= __( '--Finished at', 'import-users-from-csv-with-meta' ) . ' ' . date("Y-m-d H:i:s") . '<br/><br/>';
435
+
436
+ update_option( "acui_cron_log", $message );
437
+ }
438
+
439
+ add_action( 'acui_cron_process', 'acui_cron_process_auto_rename', 99 );
440
+ function acui_cron_process_auto_rename () {
441
+ if( get_option( "acui_cron_path_to_move_auto_rename" ) !== 'yes' )
442
+ return;
443
+
444
+ $movefile = get_option( "acui_cron_path_to_move");
445
+ if ($movefile && file_exists($movefile)) {
446
+ $parts = pathinfo($movefile);
447
+ $filename = $parts['filename'];
448
+ if ($filename){
449
+ $date = date('YmdHis');
450
+ $newfile = $parts['dirname'] . '/' . $filename .'_' . $date . '.' . $parts['extension'];
451
+ rename($movefile , $newfile);
452
+ }
453
+ }
454
+ }
455
+
456
+ function acui_extra_user_profile_fields( $user ) {
457
+ global $acui_restricted_fields;
458
+
459
+ $headers = get_option("acui_columns");
460
+ if( is_array( $headers ) && !empty( $headers ) ):
461
+ ?>
462
+ <h3>Extra profile information</h3>
463
+
464
+ <table class="form-table"><?php
465
+
466
+ foreach ( $headers as $column ):
467
+ if( in_array( $column, $acui_restricted_fields ) )
468
+ continue;
469
+ ?>
470
+ <tr>
471
+ <th><label for="<?php echo $column; ?>"><?php echo $column; ?></label></th>
472
+ <td><input type="text" name="<?php echo $column; ?>" id="<?php echo $column; ?>" value="<?php echo esc_attr(get_the_author_meta($column, $user->ID )); ?>" class="regular-text" /></td>
473
+ </tr>
474
+ <?php
475
+ endforeach;
476
+ ?>
477
+ </table><?php
478
+ endif;
479
+ }
480
+
481
+ function acui_save_extra_user_profile_fields( $user_id ){
482
+ global $acui_restricted_fields;
483
+
484
+ $headers = get_option("acui_columns");
485
+
486
+ $post_filtered = filter_input_array( INPUT_POST );
487
+
488
+ if( is_array( $headers ) && count( $headers ) > 0 ):
489
+ foreach ( $headers as $column ){
490
+ if( in_array( $column, $acui_restricted_fields ) )
491
+ continue;
492
+
493
+ $column_sanitized = str_replace(" ", "_", $column);
494
+ update_user_meta( $user_id, $column, $post_filtered[$column_sanitized] );
495
+ }
496
+ endif;
497
+ }
498
+
499
+ function acui_modify_user_edit_admin(){
500
+ global $pagenow;
501
+
502
+ if(in_array($pagenow, array("user-edit.php", "profile.php"))){
503
+ $acui_columns = get_option("acui_columns");
504
+
505
+ if(is_array($acui_columns) && !empty($acui_columns)){
506
+ $new_columns = array();
507
+ $core_fields = array(
508
+ 'username',
509
+ 'user_email',
510
+ 'first_name',
511
+ 'role',
512
+ 'last_name',
513
+ 'nickname',
514
+ 'display_name',
515
+ 'description',
516
+ 'billing_first_name',
517
+ 'billing_last_name',
518
+ 'billing_company',
519
+ 'billing_address_1',
520
+ 'billing_address_2',
521
+ 'billing_city',
522
+ 'billing_postcode',
523
+ 'billing_country',
524
+ 'billing_state',
525
+ 'billing_phone',
526
+ 'billing_email',
527
+ 'shipping_first_name',
528
+ 'shipping_last_name',
529
+ 'shipping_company',
530
+ 'shipping_address_1',
531
+ 'shipping_address_2',
532
+ 'shipping_city',
533
+ 'shipping_postcode',
534
+ 'shipping_country',
535
+ 'shipping_state'
536
+ );
537
+
538
+ foreach ($acui_columns as $key => $column) {
539
+
540
+ if(in_array($column, $core_fields)) {
541
+ // error_log('removing column because core '.$column);
542
+ continue;
543
+ }
544
+ if(in_array($column, $new_columns)) {
545
+ // error_log('removing column because not unique '.$column);
546
+ continue;
547
+ }
548
+
549
+ array_push($new_columns, $column);
550
+ }
551
+
552
+ update_option("acui_columns", $new_columns);
553
+ }
554
+ }
555
+ }
556
+
557
+ function acui_delete_attachment() {
558
+ if( ! current_user_can( 'manage_options' ) )
559
+ wp_die( __('You are not an adminstrator', 'import-users-from-csv-with-meta' ) );
560
+
561
+ $attach_id = intval( $_POST['attach_id'] );
562
+
563
+ $result = wp_delete_attachment( $attach_id, true );
564
+
565
+ if( $result === false )
566
+ echo 0;
567
+ else
568
+ echo 1;
569
+
570
+ wp_die();
571
+ }
572
+
573
+ function acui_bulk_delete_attachment(){
574
+ $args_old_csv = array( 'post_type'=> 'attachment', 'post_mime_type' => 'text/csv', 'post_status' => 'inherit', 'posts_per_page' => -1 );
575
+ $old_csv_files = new WP_Query( $args_old_csv );
576
+ $result = 1;
577
+
578
+ while($old_csv_files->have_posts()) :
579
+ $old_csv_files->the_post();
580
+
581
+ if( wp_delete_attachment( get_the_ID(), true ) === false )
582
+ $result = 0;
583
+ endwhile;
584
+
585
+ wp_reset_postdata();
586
+
587
+ echo $result;
588
+
589
+ wp_die();
590
+ }
591
+
592
+ // wp-access-areas functions
593
+ function acui_set_cap_for_user( $capability , &$user , $add ) {
594
+ $has_cap = $user->has_cap( $capability );
595
+ $is_change = ($add && ! $has_cap) || (!$add && $has_cap);
596
+ if ( $is_change ) {
597
+ if ( $add ) {
598
+ $user->add_cap( $capability , true );
599
+ do_action( 'wpaa_grant_access' , $user , $capability );
600
+ do_action( "wpaa_grant_{$capability}" , $user );
601
+ } else if ( ! $add ) {
602
+ $user->remove_cap( $capability );
603
+ do_action( 'wpaa_revoke_access' , $user , $capability );
604
+ do_action( "wpaa_revoke_{$capability}" , $user );
605
+ }
606
+ }
607
+ }
608
+
609
+ register_activation_hook( __FILE__,'acui_init' );
610
+ register_deactivation_hook( __FILE__, 'acui_deactivate' );
611
+ add_action( "plugins_loaded", "acui_init" );
612
+ add_action( "admin_menu", "acui_menu" );
613
+ add_filter( 'plugin_row_meta', 'acui_plugin_row_meta', 10, 2 );
614
+ add_action( 'admin_init', 'acui_modify_user_edit_admin' );
615
+ add_action( 'wp_ajax_acui_delete_attachment', 'acui_delete_attachment' );
616
+ add_action( 'wp_ajax_acui_bulk_delete_attachment', 'acui_bulk_delete_attachment' );
617
+ add_action( 'acui_cron_process', 'acui_cron_process' );
618
+
619
+ if( get_option( 'acui_show_profile_fields' ) == true ){
620
+ add_action( "show_user_profile", "acui_extra_user_profile_fields" );
621
+ add_action( "edit_user_profile", "acui_extra_user_profile_fields" );
622
+ add_action( "personal_options_update", "acui_save_extra_user_profile_fields" );
623
+ add_action( "edit_user_profile_update", "acui_save_extra_user_profile_fields" );
624
+ }
625
+
626
+ // misc
627
+ if (!function_exists('str_getcsv')) {
628
+ function str_getcsv($input, $delimiter = ',', $enclosure = '"', $escape = '\\', $eol = '\n') {
629
+ if (is_string($input) && !empty($input)) {
630
+ $output = array();
631
+ $tmp = preg_split("/".$eol."/",$input);
632
+ if (is_array($tmp) && !empty($tmp)) {
633
+ while (list($line_num, $line) = each($tmp)) {
634
+ if (preg_match("/".$escape.$enclosure."/",$line)) {
635
+ while ($strlen = strlen($line)) {
636
+ $pos_delimiter = strpos($line,$delimiter);
637
+ $pos_enclosure_start = strpos($line,$enclosure);
638
+ if (
639
+ is_int($pos_delimiter) && is_int($pos_enclosure_start)
640
+ && ($pos_enclosure_start < $pos_delimiter)
641
+ ) {
642
+ $enclosed_str = substr($line,1);
643
+ $pos_enclosure_end = strpos($enclosed_str,$enclosure);
644
+ $enclosed_str = substr($enclosed_str,0,$pos_enclosure_end);
645
+ $output[$line_num][] = $enclosed_str;
646
+ $offset = $pos_enclosure_end+3;
647
+ } else {
648
+ if (empty($pos_delimiter) && empty($pos_enclosure_start)) {
649
+ $output[$line_num][] = substr($line,0);
650
+ $offset = strlen($line);
651
+ } else {
652
+ $output[$line_num][] = substr($line,0,$pos_delimiter);
653
+ $offset = (
654
+ !empty($pos_enclosure_start)
655
+ && ($pos_enclosure_start < $pos_delimiter)
656
+ )
657
+ ?$pos_enclosure_start
658
+ :$pos_delimiter+1;
659
+ }
660
+ }
661
+ $line = substr($line,$offset);
662
+ }
663
+ } else {
664
+ $line = preg_split("/".$delimiter."/",$line);
665
+
666
+ /*
667
+ * Validating against pesky extra line breaks creating false rows.
668
+ */
669
+ if (is_array($line) && !empty($line[0])) {
670
+ $output[$line_num] = $line;
671
+ }
672
+ }
673
+ }
674
+ return $output;
675
+ } else {
676
+ return false;
677
+ }
678
+ } else {
679
+ return false;
680
+ }
681
+ }
682
+ }
683
+
684
+ function cod_set_html_content_type() {
685
+ return 'text/html';
686
+ }
trunk/importer.php ADDED
@@ -0,0 +1,1326 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ function acui_import_users( $file, $form_data, $attach_id = 0, $is_cron = false ){?>
6
+ <div class="wrap">
7
+ <h2>Importing users</h2>
8
+ <?php
9
+ set_time_limit(0);
10
+
11
+ do_action( 'before_acui_import_users' );
12
+
13
+ global $wpdb;
14
+ global $wp_users_fields;
15
+ global $wp_min_fields;
16
+ global $acui_fields;
17
+ global $acui_restricted_fields;
18
+
19
+ if( is_plugin_active( 'wp-access-areas/wp-access-areas.php' ) ){
20
+ $wpaa_labels = WPAA_AccessArea::get_available_userlabels();
21
+ }
22
+
23
+ $buddypress_fields = array();
24
+
25
+ if( is_plugin_active( 'buddypress/bp-loader.php' ) ){
26
+ $profile_groups = BP_XProfile_Group::get( array( 'fetch_fields' => true ) );
27
+
28
+ if ( !empty( $profile_groups ) ) {
29
+ foreach ( $profile_groups as $profile_group ) {
30
+ if ( !empty( $profile_group->fields ) ) {
31
+ foreach ( $profile_group->fields as $field ) {
32
+ $buddypress_fields[] = $field->name;
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
38
+
39
+ $users_registered = array();
40
+ $headers = array();
41
+ $headers_filtered = array();
42
+ $update_existing_users = $form_data["update_existing_users"];
43
+ $role = $form_data["role"];
44
+ $update_roles_existing_users = $form_data["update_roles_existing_users"];
45
+ $empty_cell_action = $form_data["empty_cell_action"];
46
+
47
+ if( empty( $form_data["activate_users_wp_members"] ) )
48
+ $activate_users_wp_members = "no_activate";
49
+ else
50
+ $activate_users_wp_members = $form_data["activate_users_wp_members"];
51
+
52
+ if( empty( $form_data["allow_multiple_accounts"] ) )
53
+ $allow_multiple_accounts = "not_allowed";
54
+ else
55
+ $allow_multiple_accounts = $form_data["allow_multiple_accounts"];
56
+
57
+ if( empty( $form_data["approve_users_new_user_appove"] ) )
58
+ $approve_users_new_user_appove = "no_approve";
59
+ else
60
+ $approve_users_new_user_appove = $form_data["approve_users_new_user_appove"];
61
+
62
+ echo "<h3>" . __('Ready to registers','import-users-from-csv-with-meta') . "</h3>";
63
+ echo "<p>" . __('First row represents the form of sheet','import-users-from-csv-with-meta') . "</p>";
64
+ $row = 0;
65
+ $positions = array();
66
+
67
+ ini_set('auto_detect_line_endings',TRUE);
68
+
69
+ $delimiter = acui_detect_delimiter( $file );
70
+
71
+ $manager = new SplFileObject( $file );
72
+ while ( $data = $manager->fgetcsv( $delimiter ) ):
73
+ if( empty($data[0]) )
74
+ continue;
75
+
76
+ if( count( $data ) == 1 )
77
+ $data = $data[0];
78
+
79
+ foreach ($data as $key => $value){
80
+ $data[ $key ] = trim( $value );
81
+ }
82
+
83
+ for($i = 0; $i < count($data); $i++){
84
+ $data[$i] = acui_string_conversion( $data[$i] );
85
+
86
+ if( is_serialized( $data[$i] ) ) // serialized
87
+ $data[$i] = maybe_unserialize( $data[$i] );
88
+ elseif( strpos( $data[$i], "::" ) !== false ) // list of items
89
+ $data[$i] = explode( "::", $data[$i] );
90
+ }
91
+
92
+ if($row == 0):
93
+ // check min columns username - email
94
+ if(count( $data ) < 2){
95
+ echo "<div id='message' class='error'>" . __( 'File must contain at least 2 columns: username and email', 'import-users-from-csv-with-meta' ) . "</div>";
96
+ break;
97
+ }
98
+
99
+ $i = 0;
100
+ $password_position = false;
101
+ $id_position = false;
102
+
103
+ foreach ( $acui_restricted_fields as $acui_restricted_field ) {
104
+ $positions[ $acui_restricted_field ] = false;
105
+ }
106
+
107
+ foreach($data as $element){
108
+ $headers[] = $element;
109
+
110
+ if( in_array( strtolower($element) , $acui_restricted_fields ) )
111
+ $positions[ strtolower($element) ] = $i;
112
+
113
+ if( !in_array( strtolower( $element ), $acui_restricted_fields ) && !in_array( $element, $buddypress_fields ) )
114
+ $headers_filtered[] = $element;
115
+
116
+ $i++;
117
+ }
118
+
119
+ $columns = count( $data );
120
+
121
+ update_option( "acui_columns", $headers_filtered );
122
+ ?>
123
+ <h3><?php _e( 'Inserting and updating data', 'import-users-from-csv-with-meta' ); ?></h3>
124
+ <table>
125
+ <tr><th><?php _e( 'Row', 'import-users-from-csv-with-meta' ); ?></th><?php foreach( $headers as $element ) echo "<th>" . $element . "</th>"; ?></tr>
126
+ <?php
127
+ $row++;
128
+ else:
129
+ if( count( $data ) != $columns ): // if number of columns is not the same that columns in header
130
+ echo '<script>alert("' . __( 'Row number', 'import-users-from-csv-with-meta' ) . " $row " . __( 'does not have the same columns than the header, we are going to skip', 'import-users-from-csv-with-meta') . '");</script>';
131
+ continue;
132
+ endif;
133
+
134
+ do_action('pre_acui_import_single_user', $headers, $data );
135
+ $data = apply_filters('pre_acui_import_single_user_data', $data, $headers);
136
+
137
+ $username = $data[0];
138
+ $email = $data[1];
139
+ $user_id = 0;
140
+ $problematic_row = false;
141
+ $password_position = $positions["password"];
142
+ $password = "";
143
+ $id_position = $positions["id"];
144
+
145
+ if ( !empty( $id_position ) )
146
+ $id = $data[ $id_position ];
147
+ else
148
+ $id = "";
149
+
150
+ $created = true;
151
+
152
+ if( $password_position === false )
153
+ $password = wp_generate_password();
154
+ else
155
+ $password = $data[ $password_position ];
156
+
157
+ if( !empty( $id ) ){ // if user have used id
158
+ if( acui_user_id_exists( $id ) ){
159
+ if( $update_existing_users == 'no' ){
160
+ continue;
161
+ }
162
+
163
+ // we check if username is the same than in row
164
+ $user = get_user_by( 'ID', $id );
165
+
166
+ if( $user->user_login == $username ){
167
+ $user_id = $id;
168
+
169
+ if( $password !== "" )
170
+ wp_set_password( $password, $user_id );
171
+
172
+ if( !empty( $email ) ) {
173
+ $updateEmailArgs = array(
174
+ 'ID' => $user_id,
175
+ 'user_email' => $email
176
+ );
177
+ wp_update_user( $updateEmailArgs );
178
+ }
179
+
180
+ $created = false;
181
+ }
182
+ else{
183
+ echo '<script>alert("' . __( 'Problems with ID', 'import-users-from-csv-with-meta' ) . ": $id , " . __( 'username is not the same in the CSV and in database, we are going to skip.', 'import-users-from-csv-with-meta' ) . '");</script>';
184
+ continue;
185
+ }
186
+
187
+ }
188
+ else{
189
+ $userdata = array(
190
+ 'ID' => $id,
191
+ 'user_login' => $username,
192
+ 'user_email' => $email,
193
+ 'user_pass' => $password
194
+ );
195
+
196
+ $user_id = wp_insert_user( $userdata );
197
+
198
+ $created = true;
199
+ }
200
+ }
201
+ elseif( username_exists( $username ) ){ // if user exists, we take his ID by login, we will update his mail if it has changed
202
+ if( $update_existing_users == 'no' ){
203
+ continue;
204
+ }
205
+
206
+ $user_object = get_user_by( "login", $username );
207
+ $user_id = $user_object->ID;
208
+
209
+ if( $password !== "" )
210
+ wp_set_password( $password, $user_id );
211
+
212
+ if( !empty( $email ) ) {
213
+ $updateEmailArgs = array(
214
+ 'ID' => $user_id,
215
+ 'user_email' => $email
216
+ );
217
+ wp_update_user( $updateEmailArgs );
218
+ }
219
+
220
+ $created = false;
221
+ }
222
+ elseif( email_exists( $email ) && $allow_multiple_accounts == "not_allowed" ){ // if the email is registered, we take the user from this and we don't allow repeated emails
223
+ if( $update_existing_users == 'no' ){
224
+ continue;
225
+ }
226
+
227
+ $user_object = get_user_by( "email", $email );
228
+ $user_id = $user_object->ID;
229
+
230
+ $data[0] = __( 'User already exists as:', 'import-users-from-csv-with-meta' ) . $user_object->user_login . '<br/>' . __( '(in this CSV file is called:', 'import-users-from-csv-with-meta' ) . $username . ")";
231
+ $problematic_row = true;
232
+
233
+ if( $password !== "" )
234
+ wp_set_password( $password, $user_id );
235
+
236
+ $created = false;
237
+ }
238
+ elseif( email_exists( $email ) && $allow_multiple_accounts == "allowed" ){ // if the email is registered and repeated emails are allowed
239
+ $hacked_email = acui_hack_email( $email );
240
+ $user_id = wp_create_user( $username, $password, $hacked_email );
241
+ acui_hack_restore_remapped_email_address( $user_id, $email );
242
+ }
243
+ else{
244
+ $user_id = wp_create_user( $username, $password, $email );
245
+ }
246
+
247
+ if( is_wp_error( $user_id ) ){ // in case the user is generating errors after this checks
248
+ $error_string = $user_id->get_error_message();
249
+ echo '<script>alert("' . __( 'Problems with user:', 'import-users-from-csv-with-meta' ) . $username . __( ', we are going to skip. \r\nError: ', 'import-users-from-csv-with-meta') . $error_string . '");</script>';
250
+ continue;
251
+ }
252
+
253
+ $users_registered[] = $user_id;
254
+ $user_object = new WP_User( $user_id );
255
+
256
+ if( $created || $update_roles_existing_users == 'yes'){
257
+ if(!( in_array("administrator", acui_get_roles($user_id), FALSE) || is_multisite() && is_super_admin( $user_id ) )){
258
+
259
+ $default_roles = $user_object->roles;
260
+ foreach ( $default_roles as $default_role ) {
261
+ $user_object->remove_role( $default_role );
262
+ }
263
+
264
+ if( !empty( $role ) ){
265
+ if( is_array( $role ) ){
266
+ foreach ($role as $single_role) {
267
+ $user_object->add_role( $single_role );
268
+ }
269
+ }
270
+ else{
271
+ $user_object->add_role( $role );
272
+ }
273
+ }
274
+ }
275
+ }
276
+
277
+ // WP Members activation
278
+ if( $activate_users_wp_members == "activate" )
279
+ update_user_meta( $user_id, "active", true );
280
+
281
+ // New User Approve
282
+ if( $approve_users_new_user_appove == "approve" )
283
+ update_user_meta( $user_id, "pw_user_status", "approved" );
284
+ else
285
+ update_user_meta( $user_id, "pending", true );
286
+
287
+ if( $columns > 2 ){
288
+ for( $i = 2 ; $i < $columns; $i++ ):
289
+ $data[$i] = apply_filters( 'pre_acui_import_single_user_single_data', $data[$i], $headers[$i], $i);
290
+
291
+ if( !empty( $data ) ){
292
+ if( strtolower( $headers[ $i ] ) == "password" ){ // passwords -> continue
293
+ continue;
294
+ }
295
+ elseif( strtolower( $headers[ $i ] ) == "user_pass" ){ // hashed pass
296
+ $wpdb->update( $wpdb->users, array( 'user_pass' => $data[ $i ] ), array( 'ID' => $user_id ) );
297
+ }
298
+ elseif( in_array( $headers[ $i ], $wp_users_fields ) ){ // wp_user data
299
+ if( empty( $data[ $i ] ) && $empty_cell_action == "leave" ){
300
+ continue;
301
+ }
302
+ else{
303
+ wp_update_user( array( 'ID' => $user_id, $headers[ $i ] => $data[ $i ] ) );
304
+ continue;
305
+ }
306
+ }
307
+ elseif( strtolower( $headers[ $i ] ) == "wp-access-areas" && is_plugin_active( 'wp-access-areas/wp-access-areas.php' ) ){ // wp-access-areas
308
+ $active_labels = array_map( 'trim', explode( "#", $data[ $i ] ) );
309
+
310
+ foreach( $wpaa_labels as $wpa_label ){
311
+ if( in_array( $wpa_label->cap_title , $active_labels )){
312
+ acui_set_cap_for_user( $wpa_label->capability , $user_object , true );
313
+ }
314
+ else{
315
+ acui_set_cap_for_user( $wpa_label->capability , $user_object , false );
316
+ }
317
+ }
318
+
319
+ continue;
320
+ }
321
+ elseif( in_array( $headers[ $i ], $buddypress_fields ) ){ // buddypress
322
+ xprofile_set_field_data( $headers[ $i ], $user_id, $data[ $i ] );
323
+ continue;
324
+ }
325
+ elseif( $headers[ $i ] == 'bp_group' ){ // buddypress group
326
+ $groups = explode( ',', $data[ $i ] );
327
+ $groups_role = explode( ',', $data[ $positions[ 'bp_group_role' ] ] );
328
+
329
+ for( $j = 0; $j < count( $groups ); $j++ ){
330
+ $group_id = BP_Groups_Group::group_exists( $groups[ $j ] );
331
+
332
+ if( !empty( $group_id ) ){
333
+ groups_join_group( $group_id, $user_id );
334
+
335
+ if( $groups_role[ $j ] == 'Moderator' ){
336
+ groups_promote_member( $user_id, $group_id, 'mod' );
337
+ }
338
+ elseif( $groups_role[ $j ] == 'Administrator' ){
339
+ groups_promote_member( $user_id, $group_id, 'admin' );
340
+ }
341
+ }
342
+ }
343
+
344
+ continue;
345
+ }
346
+ elseif( $headers[ $i ] == 'bp_group_role' ){
347
+ continue;
348
+ }
349
+ else{ // wp_usermeta data
350
+
351
+ if( $data[ $i ] === '' ){
352
+ if( $empty_cell_action == "delete" )
353
+ delete_user_meta( $user_id, $headers[ $i ] );
354
+ else
355
+ continue;
356
+ }
357
+ else{
358
+ update_user_meta( $user_id, $headers[ $i ], $data[ $i ] );
359
+ continue;
360
+ }
361
+ }
362
+
363
+ }
364
+ endfor;
365
+ }
366
+
367
+ $styles = "";
368
+ if( $problematic_row )
369
+ $styles = "background-color:red; color:white;";
370
+
371
+ echo "<tr style='$styles' ><td>" . ($row - 1) . "</td>";
372
+ foreach ($data as $element){
373
+ if( is_array( $element ) )
374
+ $element = implode ( ',' , $element );
375
+
376
+ echo "<td>$element</td>";
377
+ }
378
+
379
+ echo "</tr>\n";
380
+
381
+ flush();
382
+
383
+ $mail_for_this_user = false;
384
+ if( $created )
385
+ $mail_for_this_user = true;
386
+ else{
387
+ if( !$is_cron && isset( $form_data["send_email_updated"] ) && $form_data["send_email_updated"] )
388
+ $mail_for_this_user = true;
389
+ else if( $is_cron && get_option( "acui_send_mail_cron" ) )
390
+ $mail_for_this_user = true;
391
+ }
392
+
393
+ // send mail
394
+ if( isset( $form_data["sends_email"] ) && $form_data["sends_email"] && $mail_for_this_user ):
395
+ $key = get_password_reset_key( $user_object );
396
+ $user_login= $user_object->user_login;
397
+
398
+ $body_mail = get_option( "acui_mail_body" );
399
+ $subject = get_option( "acui_mail_subject" );
400
+
401
+ $body_mail = str_replace( "**loginurl**", "<a href='" . home_url() . "/wp-login.php" . "'>" . home_url() . "/wp-login.php" . "</a>", $body_mail );
402
+ $body_mail = str_replace( "**username**", $user_login, $body_mail );
403
+ $body_mail = str_replace( "**lostpasswordurl**", wp_lostpassword_url(), $body_mail );
404
+
405
+ if( !is_wp_error( $key ) )
406
+ $body_mail = str_replace( "**passwordreseturl**", network_site_url( 'wp-login.php?action=rp&key=' . $key . '&login=' . rawurlencode( $user_login ), 'login' ), $body_mail );
407
+
408
+ if( empty( $password ) && !$created )
409
+ $password = __( 'Password has not been changed', 'import-users-from-csv-with-meta' );
410
+
411
+ $body_mail = str_replace("**password**", $password, $body_mail);
412
+ $body_mail = str_replace("**email**", $email, $body_mail);
413
+
414
+ foreach ( $wp_users_fields as $wp_users_field ) {
415
+ if( $positions[ $wp_users_field ] != false && $wp_users_field != "password" ){
416
+ $body_mail = str_replace("**" . $wp_users_field . "**", $data[ $positions[ $wp_users_field ] ] , $body_mail);
417
+ }
418
+ }
419
+
420
+ for( $i = 0 ; $i < count( $headers ); $i++ ) {
421
+ $body_mail = str_replace("**" . $headers[ $i ] . "**", $data[ $i ] , $body_mail);
422
+ }
423
+
424
+ if( !get_option('acui_automattic_wordpress_email') ){
425
+ add_filter( 'send_email_change_email', '__return_false' );
426
+ add_filter( 'send_password_change_email', '__return_false' );
427
+ }
428
+
429
+ $body_mail = wpautop( $body_mail );
430
+
431
+ add_filter( 'wp_mail_content_type', 'cod_set_html_content_type' );
432
+
433
+ if( get_option( "acui_settings" ) == "plugin" ){
434
+ add_action( 'phpmailer_init', 'acui_mailer_init' );
435
+ add_filter( 'wp_mail_from', 'acui_mail_from' );
436
+ add_filter( 'wp_mail_from_name', 'acui_mail_from_name' );
437
+
438
+ wp_mail( $email, $subject, $body_mail );
439
+
440
+ remove_filter( 'wp_mail_from', 'acui_mail_from' );
441
+ remove_filter( 'wp_mail_from_name', 'acui_mail_from_name' );
442
+ remove_action( 'phpmailer_init', 'acui_mailer_init' );
443
+ }
444
+ else
445
+ wp_mail( $email, $subject, $body_mail );
446
+
447
+ remove_filter( 'wp_mail_content_type', 'cod_set_html_content_type' );
448
+
449
+ if( !get_option('acui_automattic_wordpress_email') ){
450
+ remove_filter( 'send_email_change_email', '__return_false' );
451
+ remove_filter( 'send_password_change_email', '__return_false' );
452
+ }
453
+
454
+ endif;
455
+
456
+ endif;
457
+
458
+ $row++;
459
+ endwhile;
460
+
461
+ if( $attach_id != 0 )
462
+ wp_delete_attachment( $attach_id );
463
+
464
+ // delete all users that have not been imported
465
+ if( $is_cron && get_option( "acui_cron_delete_users" ) ):
466
+ $all_users = get_users( array( 'fields' => array( 'ID' ) ) );
467
+ $cron_delete_users_assign_posts = get_option( "acui_cron_delete_users_assign_posts");
468
+
469
+ foreach ( $all_users as $user ) {
470
+ if( !in_array( $user->ID, $users_registered ) ){
471
+ if( !empty( $cron_delete_users_assign_posts ) && get_userdata( $cron_delete_users_assign_posts ) !== false ){
472
+ wp_delete_user( $user->ID, $cron_delete_users_assign_posts );
473
+ }
474
+ else{
475
+ wp_delete_user( $user->ID );
476
+ }
477
+ }
478
+ }
479
+ endif;
480
+
481
+ ?>
482
+ </table>
483
+ <br/>
484
+ <p><?php _e( 'Process finished you can go', 'import-users-from-csv-with-meta' ); ?> <a href="<?php echo get_admin_url() . '/users.php'; ?>"><?php _e( 'here to see results', 'import-users-from-csv-with-meta' ); ?></a></p>
485
+ <?php
486
+ ini_set('auto_detect_line_endings',FALSE);
487
+
488
+ do_action( 'after_acui_import_users' );
489
+ ?>
490
+ </div>
491
+ <?php
492
+ }
493
+
494
+ function acui_options()
495
+ {
496
+ global $url_plugin;
497
+
498
+ if ( !current_user_can('create_users') ) {
499
+ wp_die( __( 'You are not allowed to see this content.', 'import-users-from-csv-with-meta' ));
500
+ }
501
+
502
+ if ( isset ( $_GET['tab'] ) )
503
+ $tab = $_GET['tab'];
504
+ else
505
+ $tab = 'homepage';
506
+
507
+
508
+ if( isset( $_POST ) && !empty( $_POST ) ):
509
+ switch ( $tab ){
510
+ case 'homepage':
511
+ acui_fileupload_process( $_POST, false );
512
+ return;
513
+ break;
514
+
515
+ case 'columns':
516
+ acui_manage_extra_profile_fields( $_POST );
517
+ break;
518
+
519
+ case 'mail-options':
520
+ acui_save_mail_template( $_POST );
521
+ break;
522
+
523
+ case 'cron':
524
+ acui_manage_cron_process( $_POST );
525
+ break;
526
+
527
+ }
528
+
529
+ endif;
530
+
531
+ if ( isset ( $_GET['tab'] ) )
532
+ acui_admin_tabs( $_GET['tab'] );
533
+ else
534
+ acui_admin_tabs('homepage');
535
+
536
+ switch ( $tab ){
537
+ case 'homepage' :
538
+
539
+ $args_old_csv = array( 'post_type'=> 'attachment', 'post_mime_type' => 'text/csv', 'post_status' => 'inherit', 'posts_per_page' => -1 );
540
+ $old_csv_files = new WP_Query( $args_old_csv );
541
+
542
+ acui_check_options();
543
+ ?>
544
+ <div class="wrap">
545
+
546
+ <?php if( $old_csv_files->found_posts > 0 ): ?>
547
+ <div class="postbox">
548
+ <div title="<?php _e( 'Click to open/close', 'import-users-from-csv-with-meta' ); ?>" class="handlediv">
549
+ <br>
550
+ </div>
551
+
552
+ <h3 class="hndle"><span>&nbsp;<?php _e( 'Old CSV files uploaded', 'import-users-from-csv-with-meta' ); ?></span></h3>
553
+
554
+ <div class="inside" style="display: block;">
555
+ <p><?php _e( 'For security reasons you should delete this files, probably they would be visible in the Internet if a bot or someone discover the URL. You can delete each file or maybe you want delete all CSV files you have uploaded:', 'import-users-from-csv-with-meta' ); ?></p>
556
+ <input type="button" value="<?php _e( 'Delete all CSV files uploaded', 'import-users-from-csv-with-meta' ); ?>" id="bulk_delete_attachment" style="float:right;" />
557
+ <ul>
558
+ <?php while($old_csv_files->have_posts()) :
559
+ $old_csv_files->the_post();
560
+
561
+ if( get_the_date() == "" )
562
+ $date = "undefined";
563
+ else
564
+ $date = get_the_date();
565
+ ?>
566
+ <li><a href="<?php echo wp_get_attachment_url( get_the_ID() ); ?>"><?php the_title(); ?></a> _e( 'uploaded on', 'import-users-from-csv-with-meta' ) . ' ' . <?php echo $date; ?> <input type="button" value="<?php _e( 'Delete', 'import-users-from-csv-with-meta' ); ?>" class="delete_attachment" attach_id="<?php the_ID(); ?>" /></li>
567
+ <?php endwhile; ?>
568
+ <?php wp_reset_postdata(); ?>
569
+ </ul>
570
+ <div style="clear:both;"></div>
571
+ </div>
572
+ </div>
573
+ <?php endif; ?>
574
+
575
+ <div id='message' class='updated'><?php _e( 'File must contain at least <strong>2 columns: username and email</strong>. These should be the first two columns and it should be placed <strong>in this order: username and email</strong>. If there are more columns, this plugin will manage it automatically.', 'import-users-from-csv-with-meta' ); ?></div>
576
+ <div id='message-password' class='error'><?php _e( 'Please, read carefully how <strong>passwords are managed</strong> and also take note about capitalization, this plugin is <strong>case sensitive</strong>.', 'import-users-from-csv-with-meta' ); ?></div>
577
+
578
+ <div style="float:left; width:80%;">
579
+ <h2><?php _e( 'Import users from CSV','import-users-from-csv-with-meta' ); ?></h2>
580
+ </div>
581
+
582
+ <div style="clear:both;"></div>
583
+
584
+ <div style="width:100%;">
585
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8" onsubmit="return check();">
586
+ <table class="form-table">
587
+ <tbody>
588
+ <tr class="form-field form-required">
589
+ <th scope="row"><label><?php _e( 'Update existing users?', 'import-users-from-csv-with-meta' ); ?></label></th>
590
+ <td>
591
+ <select name="update_existing_users">
592
+ <option value="yes"><?php _e( 'Yes', 'import-users-from-csv-with-meta' ); ?></option>
593
+ <option value="no"><?php _e( 'No', 'import-users-from-csv-with-meta' ); ?></option>
594
+ </select>
595
+ </td>
596
+ </tr>
597
+
598
+ <tr class="form-field">
599
+ <th scope="row"><label for="role"><?php _e( 'Role', 'import-users-from-csv-with-meta' ); ?></label></th>
600
+ <td>
601
+ <?php
602
+ $list_roles = acui_get_editable_roles();
603
+
604
+ foreach ($list_roles as $key => $value) {
605
+ if($key == "subscriber")
606
+ echo "<label style='margin-right:5px;'><input name='role[]' type='checkbox' checked='checked' value='$key'/>$value</label>";
607
+ else
608
+ echo "<label style='margin-right:5px;'><input name='role[]' type='checkbox' value='$key'/>$value</label>";
609
+ }
610
+ ?>
611
+
612
+ <p class="description"><?php _e( 'If you choose more than one role, the roles would be assigned correctly but you should use some plugin like <a href="https://wordpress.org/plugins/user-role-editor/">User Role Editor</a> to manage them.', 'import-users-from-csv-with-meta' ); ?></p>
613
+ </td>
614
+ </tr>
615
+
616
+ <tr class="form-field form-required">
617
+ <th scope="row"><label><?php _e( 'Update roles for existing users?', 'import-users-from-csv-with-meta' ); ?></label></th>
618
+ <td>
619
+ <select name="update_roles_existing_users">
620
+ <option value="no"><?php _e( 'No', 'import-users-from-csv-with-meta' ); ?></option>
621
+ <option value="yes"><?php _e( 'Yes', 'import-users-from-csv-with-meta' ); ?></option>
622
+ </select>
623
+ </td>
624
+ </tr>
625
+
626
+ <tr class="form-field form-required">
627
+ <th scope="row"><label><?php _e( 'CSV file <span class="description">(required)</span></label>', 'import-users-from-csv-with-meta' ); ?></th>
628
+ <td>
629
+ <div id="upload_file">
630
+ <input type="file" name="uploadfiles[]" id="uploadfiles" size="35" class="uploadfiles" />
631
+ <?php _e( '<em>or you can choose directly a file from your host,', 'import-users-from-csv-with-meta' ) ?> <a href="#" class="toggle_upload_path"><?php _e( 'click here', 'import-users-from-csv-with-meta' ) ?></a>.</em>
632
+ </div>
633
+ <div id="introduce_path" style="display:none;">
634
+ <input placeholder="<?php _e( 'You have to introduce the path to file, i.e.:' ,'import-users-from-csv-with-meta' ); ?><?php $upload_dir = wp_upload_dir(); echo $upload_dir["path"]; ?>/test.csv" type="text" name="path_to_file" id="path_to_file" value="<?php echo dirname( __FILE__ ); ?>/test.csv" style="width:70%;" />
635
+ <em><?php _e( 'or you can upload it directly from your PC', 'import-users-from-csv-with-meta' ); ?>, <a href="#" class="toggle_upload_path"><?php _e( 'click here', 'import-users-from-csv-with-meta' ); ?></a>.</em>
636
+ </div>
637
+ </td>
638
+ </tr>
639
+
640
+ <tr class="form-field form-required">
641
+ <th scope="row"><label><?php _e( 'What should the plugin do with empty cells?', 'import-users-from-csv-with-meta' ); ?></label></th>
642
+ <td>
643
+ <select name="empty_cell_action">
644
+ <option value="leave"><?php _e( 'Leave the old value for this metadata', 'import-users-from-csv-with-meta' ); ?></option>
645
+ <option value="delete"><?php _e( 'Delete the metadata', 'import-users-from-csv-with-meta' ); ?></option>
646
+ </select>
647
+ </td>
648
+ </tr>
649
+
650
+ <?php if( is_plugin_active( 'buddypress/bp-loader.php' ) ):
651
+
652
+ if( !class_exists( "BP_XProfile_Group" ) ){
653
+ require_once( WP_PLUGIN_DIR . "/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php" );
654
+ }
655
+
656
+ $buddypress_fields = array();
657
+ $profile_groups = BP_XProfile_Group::get( array( 'fetch_fields' => true ) );
658
+
659
+ if ( !empty( $profile_groups ) ) {
660
+ foreach ( $profile_groups as $profile_group ) {
661
+ if ( !empty( $profile_group->fields ) ) {
662
+ foreach ( $profile_group->fields as $field ) {
663
+ $buddypress_fields[] = $field->name;
664
+ }
665
+ }
666
+ }
667
+ }
668
+ ?>
669
+
670
+ <tr class="form-field form-required">
671
+ <th scope="row"><label><?php _e( 'BuddyPress users', 'import-users-from-csv-with-meta' ); ?></label></th>
672
+ <td><?php _e( 'You can insert any profile from BuddyPress using his name as header. Plugin will check, before import, which fields are defined in BuddyPress and will assign it in the update. You can use this fields:', 'import-users-from-csv-with-meta' ); ?>
673
+ <ul style="list-style:disc outside none;margin-left:2em;">
674
+ <?php foreach ($buddypress_fields as $buddypress_field ): ?><li><?php echo $buddypress_field; ?></li><?php endforeach; ?>
675
+ </ul>
676
+ <?php _e( 'Remember that all date fields have to be imported using a format like this: 2016-01-01 00:00:00', 'import-users-from-csv-with-meta' ); ?>
677
+
678
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/buddypress/">BuddyPress</a> <?php _e( 'users', 'import-users-from-csv-with-meta' ); ?></strong>.)</p>
679
+ </td>
680
+ </tr>
681
+
682
+ <?php endif; ?>
683
+
684
+ <?php if( is_plugin_active( 'wp-members/wp-members.php' ) ): ?>
685
+
686
+ <tr class="form-field form-required">
687
+ <th scope="row"><label>Y</label></th>
688
+ <td>
689
+ <select name="activate_users_wp_members">
690
+ <option value="no_activate"><?php _e( 'Do not activate users', 'import-users-from-csv-with-meta' ); ?></option>
691
+ <option value="activate"><?php _e( 'Activate users when they are being imported', 'import-users-from-csv-with-meta' ); ?></option>
692
+ </select>
693
+
694
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/wp-members/"><?php _e( 'WP Members', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'users', 'import-users-from-csv-with-meta' ); ?>)</strong>.</p>
695
+ </td>
696
+
697
+ </tr>
698
+
699
+ <?php endif; ?>
700
+
701
+ <?php if( is_plugin_active( 'new-user-approve/new-user-approve.php' ) ): ?>
702
+
703
+ <tr class="form-field form-required">
704
+ <th scope="row"><label><?php _e( 'Approve users at the same time is being created', 'import-users-from-csv-with-meta' ); ?></label></th>
705
+ <td>
706
+ <select name="approve_users_new_user_appove">
707
+ <option value="no_approve"><?php _e( 'Do not approve users', 'import-users-from-csv-with-meta' ); ?></option>
708
+ <option value="approve"><?php _e( 'Approve users when they are being imported', 'import-users-from-csv-with-meta' ); ?></option>
709
+ </select>
710
+
711
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://es.wordpress.org/plugins/new-user-approve/"><?php _e( 'New User Approve', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'users', 'import-users-from-csv-with-meta' ); ?></strong>.</p>
712
+ </td>
713
+
714
+ </tr>
715
+
716
+ <?php endif; ?>
717
+
718
+ <?php if( is_plugin_active( 'allow-multiple-accounts/allow-multiple-accounts.php' ) ): ?>
719
+
720
+ <tr class="form-field form-required">
721
+ <th scope="row"><label><?php _e( 'Repeated email in different users?', 'import-users-from-csv-with-meta' ); ?></label></th>
722
+ <td>
723
+ <select name="allow_multiple_accounts">
724
+ <option value="not_allowed"><?php _e( 'Not allowed', 'import-users-from-csv-with-meta' ); ?></option>
725
+ <option value="allowed"><?php _e( 'Allowed', 'import-users-from-csv-with-meta' ); ?></option>
726
+ </select>
727
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/allow-multiple-accounts/"><?php _e( 'Allow Multiple Accounts', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'users', 'import-users-from-csv-with-meta'); ?>)</strong>. <?php _e('Allow multiple user accounts to be created having the same email address.','import-users-from-csv-with-meta' ); ?></p>
728
+ </td>
729
+ </tr>
730
+
731
+ <?php endif; ?>
732
+
733
+ <?php if( is_plugin_active( 'wp-access-areas/wp-access-areas.php' ) ): ?>
734
+
735
+ <tr class="form-field form-required">
736
+ <th scope="row"><label><?php _e('WordPress Access Areas is activated','import-users-from-csv-with-meta'); ?></label></th>
737
+ <td>
738
+ <p class="description"><?php _e('As user of','import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/wp-access-areas/"><?php _e( 'WordPress Access Areas', 'import-users-from-csv-with-meta' )?></a> <?php _e( 'you can use the Access Areas created', 'import-users-from-csv-with-meta' ); ?> <a href="<?php echo admin_url( 'users.php?page=user_labels' ); ?>"><?php _e( 'here', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'and use this areas in your own CSV file. Please use the column name <strong>wp-access-areas</strong> and in each row use <strong>the name that you have used', 'import-users-from-csv-with-meta' ); ?> <a href="<?php echo admin_url( 'users.php?page=user_labels' ); ?>"><?php _e( 'here', 'import-users-from-csv-with-meta' ); ?></a></strong><?php _e( ', like this ones:', 'import-users-from-csv-with-meta' ); ?></p>
739
+ <ol>
740
+ <?php
741
+ $data = WPAA_AccessArea::get_available_userlabels( '0,5' , NULL );
742
+ foreach ( $data as $access_area_object ): ?>
743
+ <li><?php echo $access_area_object->cap_title; ?></li>
744
+ <?php endforeach; ?>
745
+
746
+ </ol>
747
+ <p class="description"><?php _e( "If you leave this cell empty for some user or the access area indicated doesn't exist, user won't be assigned to any access area. You can choose more than one area for each user using pads between them in the same row, i.e.: ", 'import-users-from-csv-with-meta' ) ?>access_area1#accces_area2</p>
748
+ </td>
749
+ </tr>
750
+
751
+ <?php endif; ?>
752
+
753
+ <tr class="form-field">
754
+ <th scope="row"><label for="user_login"><?php _e( 'Send mail', 'import-users-from-csv-with-meta' ); ?></label></th>
755
+ <td>
756
+ <p><?php _e( 'Do you wish to send a mail with credentials and other data?', 'import-users-from-csv-with-meta' ); ?> <input type="checkbox" name="sends_email" value = "<?php _e('yes','import-users-from-csv-with-meta'); ?>"></p>
757
+ <p><?php _e( 'Do you wish to send this mail also to users that are being updated? (not only to the one which are being created)', 'import-users-from-csv-with-meta' ); ?> <input type="checkbox" name="send_email_updated" value = "<?php _e( 'yes', 'import-users-from-csv-with-meta' ); ?>" checked="checked"></p>
758
+ </td>
759
+ </tr>
760
+ </tbody>
761
+ </table>
762
+
763
+ <?php wp_nonce_field( 'acui-import', 'acui-nonce' ); ?>
764
+
765
+ <input class="button-primary" type="submit" name="uploadfile" id="uploadfile_btn" value="<?php _e( 'Start importing', 'import-users-from-csv-with-meta' ); ?>"/>
766
+ </form>
767
+ </div>
768
+
769
+ </div>
770
+ <script type="text/javascript">
771
+ function check(){
772
+ if(document.getElementById("uploadfiles").value == "" && jQuery( "#upload_file" ).is(":visible") ) {
773
+ alert("<?php _e( 'Please choose a file', 'import-users-from-csv-with-meta' ); ?>");
774
+ return false;
775
+ }
776
+
777
+ if( jQuery( "#path_to_file" ).val() == "" && jQuery( "#introduce_path" ).is(":visible") ) {
778
+ alert("<?php _e( 'Please enter a path to the file', 'import-users-from-csv-with-meta' ); ?>");
779
+ return false;
780
+ }
781
+
782
+ if( jQuery("[name=role\\[\\]]input:checkbox:checked").length == 0 ){
783
+ alert("<?php _e( 'Please select a role', 'import-users-from-csv-with-meta'); ?>");
784
+ return false;
785
+ }
786
+ }
787
+
788
+ jQuery( document ).ready( function( $ ){
789
+ $( ".delete_attachment" ).click( function(){
790
+ var answer = confirm( "<?php _e( 'Are you sure to delete this file?', 'import-users-from-csv-with-meta' ); ?>" );
791
+ if( answer ){
792
+ var data = {
793
+ 'action': 'acui_delete_attachment',
794
+ 'attach_id': $( this ).attr( "attach_id" )
795
+ };
796
+
797
+ $.post(ajaxurl, data, function(response) {
798
+ if( response != 1 )
799
+ alert( "<?php _e( 'There were problems deleting the file, please check file permissions', 'import-users-from-csv-with-meta' ); ?>" );
800
+ else{
801
+ alert( "<?php _e( 'File successfully deleted', 'import-users-from-csv-with-meta' ); ?>" );
802
+ document.location.reload();
803
+ }
804
+ });
805
+ }
806
+ });
807
+
808
+ $( "#bulk_delete_attachment" ).click( function(){
809
+ var answer = confirm( "<?php _e( 'Are you sure to delete ALL CSV files uploaded? There can be CSV files from other plugins.', 'import-users-from-csv-with-meta' ); ?>" );
810
+ if( answer ){
811
+ var data = {
812
+ 'action': 'acui_bulk_delete_attachment',
813
+ };
814
+
815
+ $.post(ajaxurl, data, function(response) {
816
+ if( response != 1 )
817
+ alert( "<?php _e( 'There were problems deleting the files, please check files permissions', 'import-users-from-csv-with-meta' ); ?>" );
818
+ else{
819
+ alert( "<?php _e( 'Files successfully deleted', 'import-users-from-csv-with-meta' ); ?>" );
820
+ document.location.reload();
821
+ }
822
+ });
823
+ }
824
+ });
825
+
826
+ $( ".toggle_upload_path" ).click( function( e ){
827
+ e.preventDefault();
828
+
829
+ $("#upload_file,#introduce_path").toggle();
830
+ } );
831
+
832
+ } );
833
+ </script>
834
+
835
+ <?php
836
+
837
+ break;
838
+
839
+ case 'columns':
840
+ $show_profile_fields = get_option( "acui_show_profile_fields");
841
+ $headers = get_option("acui_columns");
842
+ ?>
843
+
844
+ <h3><?php _e( 'Extra profile fields', 'import-users-from-csv-with-meta' ); ?></h3>
845
+ <table class="form-table">
846
+ <tbody>
847
+ <tr valign="top">
848
+ <th scope="row"><?php _e( 'Show fields in profile?', 'import-users-from-csv-with-meta' ); ?></th>
849
+ <td>
850
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8">
851
+ <input type="checkbox" name="show-profile-fields" value ="<?php _e('yes','import-users-from-csv-with-meta'); ?>" <?php if( $show_profile_fields == true ) echo "checked='checked'"; ?>>
852
+ <input type="hidden" name="show-profile-fields-action" value="update"/>
853
+ <input class="button-primary" type="submit" value="<?php _e( 'Save option', 'import-users-from-csv-with-meta'); ?>"/>
854
+ </form>
855
+ </td>
856
+ </tr>
857
+ <tr valign="top">
858
+ <th scope="row"><?php _e( 'Extra profile fields loadad in previous files', 'import-users-from-csv-with-meta' ); ?></th>
859
+ <td><small><em><?php _e( '(if you load another CSV with different columns, the new ones will replace this list)', 'import-users-from-csv-with-meta' ); ?></em></small>
860
+ <ol>
861
+ <?php
862
+ if( is_array( $headers ) && count( $headers ) > 0 ):
863
+ foreach ($headers as $column): ?>
864
+ <li><?php echo $column; ?></li>
865
+ <?php endforeach; ?>
866
+
867
+ <?php else: ?>
868
+ <li><?php _e( 'There is no columns loaded yet', 'import-users-from-csv-with-meta' ); ?></li>
869
+ <?php endif; ?>
870
+ </ol>
871
+ </td>
872
+ </tr>
873
+ </tbody></table>
874
+
875
+ <?php
876
+
877
+ break;
878
+
879
+ case 'doc':
880
+
881
+ ?>
882
+
883
+ <h3><?php _e( 'Documentation', 'import-users-from-csv-with-meta' ); ?></h3>
884
+ <table class="form-table">
885
+ <tbody>
886
+ <tr valign="top">
887
+ <th scope="row"><?php _e( 'Columns position', 'import-users-from-csv-with-meta' ); ?></th>
888
+ <td><small><em><?php _e( '(Documents should look like the one presented into screenshot. Remember you should fill the first two columns with the next values)', 'import-users-from-csv-with-meta' ); ?></em></small>
889
+ <ol>
890
+ <li><?php _e( 'Username', 'import-users-from-csv-with-meta' ); ?></li>
891
+ <li><?php _e( 'Email', 'import-users-from-csv-with-meta' ); ?></li>
892
+ </ol>
893
+ <small><em><?php _e( '(The next columns are totally customizable and you can use whatever you want. All rows must contains same columns)', 'import-users-from-csv-with-meta' ); ?></em></small>
894
+ <small><em><?php _e( '(User profile will be adapted to the kind of data you have selected)', 'import-users-from-csv-with-meta' ); ?></em></small>
895
+ <small><em><?php _e( '(If you want to disable the extra profile information, please deactivate this plugin after make the import)', 'import-users-from-csv-with-meta' ); ?></em></small>
896
+ </td>
897
+ </tr>
898
+ <tr valign="top">
899
+ <th scope="row"><?php _e( 'id', 'import-users-from-csv-with-meta' ); ?></th>
900
+ <td><?php _e( 'You can use a column called id in order to make inserts or updates of an user using the ID used by WordPress in the wp_users table. We have two different cases:', 'import-users-from-csv-with-meta' ); ?>
901
+ <ul style="list-style:disc outside none; margin-left:2em;">
902
+ <li><?php _e( "If id <strong>doesn't exist in your users table</strong>: user will be inserted", 'import-users-from-csv-with-meta' ); ?></li>
903
+ <li><?php _e( "If id <strong>exists</strong>: plugin check if username is the same, if yes, it will update the data, if not, it ignores the cell to avoid problems", 'import-users-from-csv-with-meta' ); ?></li>
904
+ </ul>
905
+ </td>
906
+ </tr>
907
+ <tr valign="top">
908
+ <th scope="row"><?php _e( "Passwords", 'import-users-from-csv-with-meta' ); ?></th>
909
+ <td><?php _e( "A string that contains user passwords. We have different options for this case:", 'import-users-from-csv-with-meta' ); ?>
910
+ <ul style="list-style:disc outside none; margin-left:2em;">
911
+ <li><?php _e( "If you <strong>don't create a column for passwords</strong>: passwords will be generated automatically", 'import-users-from-csv-with-meta' ); ?></li>
912
+ <li><?php _e( "If you <strong>create a column for passwords</strong>: if cell is empty, password won't be updated; if cell has a value, it will be used", 'import-users-from-csv-with-meta' ); ?></li>
913
+ </ul>
914
+ </td>
915
+ </tr>
916
+ <tr valign="top">
917
+ <th scope="row"><?php _e( "Serialized data", 'import-users-from-csv-with-meta' ); ?></th>
918
+ <td><?php _e( "Plugin can now import serialized data. You have to use the serialized string directly in the CSV cell in order the plugin will be able to understand it as an serialized data instead as any other string.", 'import-users-from-csv-with-meta' ); ?>
919
+ </td>
920
+ </tr>
921
+ <tr valign="top">
922
+ <th scope="row"><?php _e( "Lists", 'import-users-from-csv-with-meta' ); ?></th>
923
+ <td><?php _e( "Plugin can now import lists an array. Use this separator:", 'import-users-from-csv-with-meta'); ?> <strong>::</strong> <?php _e("two colons, inside the cell in order to split the string in a list of items.", 'import-users-from-csv-with-meta' ); ?>
924
+ </td>
925
+ </tr>
926
+ <tr valign="top">
927
+ <th scope="row"><?php _e( 'WordPress default profile data', 'import-users-from-csv-with-meta' ); ?></th>
928
+ <td><?php _e( "You can use those labels if you want to set data adapted to the WordPress default user columns (the ones who use the function", 'import-users-from-csv-with-meta' ); ?> <a href="http://codex.wordpress.org/Function_Reference/wp_update_user">wp_update_user</a>)
929
+ <ol>
930
+ <li><strong>user_nicename</strong>: <?php _e( "A string that contains a URL-friendly name for the user. The default is the user's username.", 'import-users-from-csv-with-meta' ); ?></li>
931
+ <li><strong>user_url</strong>: <?php _e( "A string containing the user's URL for the user's web site.", 'import-users-from-csv-with-meta' ); ?> </li>
932
+ <li><strong>display_name</strong>: <?php _e( "A string that will be shown on the site. Defaults to user's username. It is likely that you will want to change this, for both appearance and security through obscurity (that is if you don't use and delete the default admin user).", 'import-users-from-csv-with-meta' ); ?></li>
933
+ <li><strong>nickname</strong>: <?php _e( "The user's nickname, defaults to the user's username.", 'import-users-from-csv-with-meta' ); ?> </li>
934
+ <li><strong>first_name</strong>: <?php _e( "The user's first name.", 'import-users-from-csv-with-meta' ); ?></li>
935
+ <li><strong>last_name</strong>: <?php _e("The user's last name.", 'import-users-from-csv-with-meta' ); ?></li>
936
+ <li><strong>description</strong>: <?php _e("A string containing content about the user.", 'import-users-from-csv-with-meta' ); ?></li>
937
+ <li><strong>jabber</strong>: <?php _e("User's Jabber account.", 'import-users-from-csv-with-meta' ); ?></li>
938
+ <li><strong>aim</strong>: <?php _e("User's AOL IM account.", 'import-users-from-csv-with-meta' ); ?></li>
939
+ <li><strong>yim</strong>: <?php _e("User's Yahoo IM account.", 'import-users-from-csv-with-meta' ); ?></li>
940
+ <li><strong>user_registered</strong>: <?php _e( "Using the WordPress format for this kind of data Y-m-d H:i:s.", "import-users-from-csv-with-meta "); ?></li>
941
+ </ol>
942
+ </td>
943
+ </tr>
944
+ <?php if( is_plugin_active( 'woocommerce/woocommerce.php' ) ): ?>
945
+
946
+ <tr valign="top">
947
+ <th scope="row"><?php _e( "WooCommerce is activated", 'import-users-from-csv-with-meta' ); ?></th>
948
+ <td><?php _e( "You can use those labels if you want to set data adapted to the WooCommerce default user columns", 'import-users-from-csv-with-meta' ); ?>
949
+ <ol>
950
+ <li>billing_first_name</li>
951
+ <li>billing_last_name</li>
952
+ <li>billing_company</li>
953
+ <li>billing_address_1</li>
954
+ <li>billing_address_2</li>
955
+ <li>billing_city</li>
956
+ <li>billing_postcode</li>
957
+ <li>billing_country</li>
958
+ <li>billing_state</li>
959
+ <li>billing_phone</li>
960
+ <li>billing_email</li>
961
+ <li>shipping_first_name</li>
962
+ <li>shipping_last_name</li>
963
+ <li>shipping_company</li>
964
+ <li>shipping_address_1</li>
965
+ <li>shipping_address_2</li>
966
+ <li>shipping_city</li>
967
+ <li>shipping_postcode</li>
968
+ <li>shipping_country</li>
969
+ <li>shipping_state</li>
970
+ </ol>
971
+ </td>
972
+ </tr>
973
+
974
+ <?php endif; ?>
975
+
976
+ <?php if( is_plugin_active( 'buddypress/bp-loader.php' ) ): ?>
977
+
978
+ <tr valign="top">
979
+ <th scope="row"><?php _e( "BuddyPress is activated", 'import-users-from-csv-with-meta' ); ?></th>
980
+ <td><?php _e( "You can use the <strong>profile fields</strong> you have created and also you can set one or more groups for each user. For example:", 'import-users-from-csv-with-meta' ); ?>
981
+ <ul style="list-style:disc outside none; margin-left:2em;">
982
+ <li><?php _e( "If you want to assign an user to a group you have to create a column 'bp_group' and a column 'bp_group_role'", 'import-users-from-csv-with-meta' ); ?></li>
983
+ <li><?php _e( "Then in each cell you have to fill with the BuddyPress <strong>group slug</strong>", 'import-users-from-csv-with-meta' ); ?></li>
984
+ <li><?php _e( "And the role assigned in this group: <em>Administrator, Moderator or Member</em>", 'import-users-from-csv-with-meta' ); ?></li>
985
+ <li><?php _e( "You can do it with multiple groups at the same time using commas to separate different groups, in bp_group column, i.e.: <em>group_1, group_2, group_3</em>", 'import-users-from-csv-with-meta' ); ?></li>
986
+ <li><?php _e( "But you will have to assign a role for each group: <em>Moderator,Moderator,Member,Member</em>", 'import-users-from-csv-with-meta' ); ?></li>
987
+ </ul>
988
+ </td>
989
+ </tr>
990
+
991
+ <?php endif; ?>
992
+
993
+ <tr valign="top">
994
+ <th scope="row"><?php _e( "Important notice", 'import-users-from-csv-with-meta' ); ?></th>
995
+ <td><?php _e( "You can upload as many files as you want, but all must have the same columns. If you upload another file, the columns will change to the form of last file uploaded.", 'import-users-from-csv-with-meta' ); ?></td>
996
+ </tr>
997
+ <tr valign="top">
998
+ <th scope="row"><?php _e( "Any question about it", 'import-users-from-csv-with-meta' ); ?></th>
999
+ <td>
1000
+ <ul style="list-style:disc outside none; margin-left:2em;">
1001
+ <li><?php _e( 'Free support (in WordPress forums):', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/support/plugin/import-users-from-csv-with-meta">https://wordpress.org/support/plugin/import-users-from-csv-with-meta</a>.</li>
1002
+ <li><?php _e( 'Premium support (with a quote):', 'import-users-from-csv-with-meta' ); ?> <a href="mailto:contacto@codection.com">contacto@codection.com</a>.</li>
1003
+ </ul>
1004
+ </td>
1005
+ </tr>
1006
+ <tr valign="top">
1007
+ <th scope="row"><?php _e( 'Example', 'import-users-from-csv-with-meta' ); ?></th>
1008
+ <td><?php _e( 'Download this', 'import-users-from-csv-with-meta' ); ?> <a href="<?php echo plugins_url() . "/import-users-from-csv-with-meta/test.csv"; ?>">.csv <?php _e('file','import-users-from-csv-with-meta'); ?></a> <?php _e( 'to test', 'import-users-from-csv-with-meta' ); ?></td>
1009
+ </tr>
1010
+ </tbody>
1011
+ </table>
1012
+ <br/>
1013
+ <div style="width:775px;margin:0 auto"><img src="<?php echo plugins_url() . "/import-users-from-csv-with-meta/csv_example.png"; ?>"/></div>
1014
+ <?php break; ?>
1015
+
1016
+ <?php case 'mail-options':
1017
+ $from_email = get_option( "acui_mail_from" );
1018
+ $from_name = get_option( "acui_mail_from_name" );
1019
+ $body_mail = get_option( "acui_mail_body" );
1020
+ $subject_mail = get_option( "acui_mail_subject" );
1021
+ $automattic_wordpress_email = get_option( "acui_automattic_wordpress_email" );
1022
+ ?>
1023
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8">
1024
+ <h3><?php _e('Mail options','import-users-from-csv-with-meta'); ?></h3>
1025
+
1026
+ <p class="description"><?php _e( 'You can set your own SMTP and other mail details', 'import-users-from-csv-with-meta' ); ?> <a href="<?php echo admin_url( 'tools.php?page=acui-smtp' ); ?>" target="_blank"><?php _e( 'here', 'import-users-from-csv-with-meta' ); ?></a>.
1027
+
1028
+ <table class="optiontable form-table">
1029
+ <tbody>
1030
+ <tr valign="top">
1031
+ <th scope="row"><?php _e( 'WordPress automatic emails users updated', 'import-users-from-csv-with-meta' ); ?></th>
1032
+ <td>
1033
+ <fieldset>
1034
+ <legend class="screen-reader-text">
1035
+ <span><?php _e( 'Send automattic WordPress emails?', 'import-users-from-csv-with-meta' ); ?></span>
1036
+ </legend>
1037
+ <label for="automattic_wordpress_email">
1038
+ <select name="automattic_wordpress_email" id="automattic_wordpress_email">
1039
+ <option <?php if( $automattic_wordpress_email == 'false' ) echo "selected='selected'"; ?> value="false"><?php _e( "Deactivate WordPress automattic email when an user is updated or his password is changed", 'import-users-from-csv-with-meta' ) ;?></option>
1040
+ <option <?php if( $automattic_wordpress_email == 'true' ) echo "selected='selected'"; ?> value="true"><?php _e( 'Activate WordPress automattic email when an user is updated or his password is changed', 'import-users-from-csv-with-meta' ); ?></option>
1041
+ </select>
1042
+ <span class="description"><? _e( "When you update an user or change his password, WordPress prepare and send automattic email, you can deactivate it here.", 'import-users-from-csv-with-meta' ); ?></span>
1043
+ </label>
1044
+ </fieldset>
1045
+ </td>
1046
+ </tr>
1047
+ </tbody>
1048
+ </table>
1049
+
1050
+ <h3><?php _e( 'Customize the email that can be sent when importing users', 'import-users-from-csv-with-meta' ); ?></h3>
1051
+
1052
+ <p><?php _e( 'Mail subject :', 'import-users-from-csv-with-meta' ); ?><input name="subject_mail" size="100" value="<?php echo $subject_mail; ?>" id="title" autocomplete="off" type="text"></p>
1053
+ <?php wp_editor( $body_mail , 'body_mail'); ?>
1054
+
1055
+ <br/>
1056
+ <input class="button-primary" type="submit" value="Save mail template"/>
1057
+
1058
+ <p>You can use:</p>
1059
+ <ul style="list-style-type:disc; margin-left:2em;">
1060
+ <li>**username** = <?php _e( 'username to login', 'import-users-from-csv-with-meta' ); ?></li>
1061
+ <li>**password** = <?php _e( 'user password', 'import-users-from-csv-with-meta' ); ?></li>
1062
+ <li>**loginurl** = <?php _e( 'current site login url', 'import-users-from-csv-with-meta' ); ?></li>
1063
+ <li>**lostpasswordurl** = <?php _e( 'lost password url', 'import-users-from-csv-with-meta' ); ?></li>
1064
+ <li>**passwordreseturl** = <?php _e( 'password reset url', 'import-users-from-csv-with-meta' ); ?></li>
1065
+ <li>**email** = <?php _e( 'user email', 'import-users-from-csv-with-meta' ); ?></li>
1066
+ <li><?php _e( "You can also use any WordPress user standard field or an own metadata, if you have used it in your CSV. For example, if you have a first_name column, you could use **first_name** or any other meta_data like **my_custom_meta**", 'import-users-from-csv-with-meta' ) ;?></li>
1067
+ </ul>
1068
+
1069
+ </form>
1070
+
1071
+ <?php break; ?>
1072
+
1073
+ <?php case 'smtp-settings': ?>
1074
+
1075
+ <?php acui_smtp(); ?>
1076
+
1077
+ <?php break; ?>
1078
+
1079
+ <?php case 'cron':
1080
+
1081
+ $cron_activated = get_option( "acui_cron_activated");
1082
+ $send_mail_cron = get_option( "acui_send_mail_cron");
1083
+ $send_mail_updated = get_option( "acui_send_mail_updated");
1084
+ $cron_delete_users = get_option( "acui_cron_delete_users");
1085
+ $cron_delete_users_assign_posts = get_option( "acui_cron_delete_users_assign_posts");
1086
+ $path_to_file = get_option( "acui_cron_path_to_file");
1087
+ $period = get_option( "acui_cron_period");
1088
+ $role = get_option( "acui_cron_role");
1089
+ $move_file_cron = get_option( "acui_move_file_cron");
1090
+ $path_to_move = get_option( "acui_cron_path_to_move");
1091
+ $path_to_move_auto_rename = get_option( "acui_cron_path_to_move_auto_rename");
1092
+ $log = get_option( "acui_cron_log");
1093
+
1094
+ if( empty( $cron_activated ) )
1095
+ $cron_activated = false;
1096
+
1097
+ if( empty( $send_mail_cron ) )
1098
+ $send_mail_cron = false;
1099
+
1100
+ if( empty( $send_mail_updated ) )
1101
+ $send_mail_updated = false;
1102
+
1103
+ if( empty( $cron_delete_users ) )
1104
+ $cron_delete_users = false;
1105
+
1106
+ if( empty( $cron_delete_users_assign_posts ) )
1107
+ $cron_delete_users_assign_posts = '';
1108
+
1109
+ if( empty( $path_to_file ) )
1110
+ $path_to_file = dirname( __FILE__ ) . '/test.csv';
1111
+
1112
+ if( empty( $period ) )
1113
+ $period = 'hourly';
1114
+
1115
+ if( empty( $move_file_cron ) )
1116
+ $move_file_cron = false;
1117
+
1118
+ if( empty( $path_to_move ) )
1119
+ $path_to_move = dirname( __FILE__ ) . '/move.csv';
1120
+
1121
+ if( empty( $path_to_move_auto_rename ) )
1122
+ $path_to_move_auto_rename = false;
1123
+
1124
+ if( empty( $log ) )
1125
+ $log = "No tasks done yet.";
1126
+
1127
+ ?>
1128
+ <h3><?php _e( "Execute an import of users periodically", 'import-users-from-csv-with-meta' ); ?></h3>
1129
+
1130
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8">
1131
+ <table class="form-table">
1132
+ <tbody>
1133
+ <tr class="form-field">
1134
+ <th scope="row"><label for="path_to_file"><?php _e( "Path of file that are going to be imported", 'import-users-from-csv-with-meta' ); ?></label></th>
1135
+ <td>
1136
+ <input placeholder="<?php _e('Insert complete path to the file', 'import-users-from-csv-with-meta' ) ?>" type="text" name="path_to_file" id="path_to_file" value="<?php echo $path_to_file; ?>" style="width:70%;" />
1137
+ <p class="description"><?php _e( 'You have to introduce the path to file, i.e.:', 'import-users-from-csv-with-meta' ); ?> <?php $upload_dir = wp_upload_dir(); echo $upload_dir["path"]; ?>/test.csv</p>
1138
+ </td>
1139
+ </tr>
1140
+ <tr class="form-field form-required">
1141
+ <th scope="row"><label for="period"><?php _e( 'Period', 'import-users-from-csv-with-meta' ); ?></label></th>
1142
+ <td>
1143
+ <select id="period" name="period">
1144
+ <option <?php if( $period == 'hourly' ) echo "selected='selected'"; ?> value="hourly"><?php _e( 'Hourly', 'import-users-from-csv-with-meta' ); ?></option>
1145
+ <option <?php if( $period == 'twicedaily' ) echo "selected='selected'"; ?> value="twicedaily"><?php _e( 'Twicedaily', 'import-users-from-csv-with-meta' ); ?></option>
1146
+ <option <?php if( $period == 'daily' ) echo "selected='selected'"; ?> value="daily"><?php _e( 'Daily', 'import-users-from-csv-with-meta' ); ?></option>
1147
+ </select>
1148
+ <p class="description"><?php _e( 'How often the event should reoccur?', 'import-users-from-csv-with-meta' ); ?></p>
1149
+ </td>
1150
+ </tr>
1151
+ <tr class="form-field form-required">
1152
+ <th scope="row"><label for="cron-activated"><?php _e( 'Activate periodical import?', 'import-users-from-csv-with-meta' ); ?></label></th>
1153
+ <td>
1154
+ <input type="checkbox" name="cron-activated" value="yes" <?php if( $cron_activated == true ) echo "checked='checked'"; ?>/>
1155
+ </td>
1156
+ </tr>
1157
+ <tr class="form-field form-required">
1158
+ <th scope="row"><label for="send-mail-cron"><?php _e( 'Send mail when using periodical import?', 'import-users-from-csv-with-meta' ); ?></label></th>
1159
+ <td>
1160
+ <input type="checkbox" name="send-mail-cron" value="yes" <?php if( $send_mail_cron == true ) echo "checked='checked'"; ?>/>
1161
+ </td>
1162
+ </tr>
1163
+ <tr class="form-field form-required">
1164
+ <th scope="row"><label for="send-mail-updated"><?php _e( 'Send mail also to users that are being updated?', 'import-users-from-csv-with-meta' ); ?></label></th>
1165
+ <td>
1166
+ <input type="checkbox" name="send-mail-updated" value="yes" <?php if( $send_mail_updated == true ) echo "checked='checked'"; ?>/>
1167
+ </td>
1168
+ </tr>
1169
+ <tr class="form-field form-required">
1170
+ <th scope="row"><label for="cron-delete-users"><?php _e( 'Delete users that are not present in the CSV?', 'import-users-from-csv-with-meta' ); ?></label></th>
1171
+ <td>
1172
+ <div style="float:left;">
1173
+ <input type="checkbox" name="cron-delete-users" value="yes" <?php if( $cron_delete_users == true ) echo "checked='checked'"; ?>/>
1174
+ </div>
1175
+ <div style="margin-left:25px;">
1176
+ <select id="cron-delete-users-assign-posts" name="cron-delete-users-assign-posts">
1177
+ <?php
1178
+ if( $cron_delete_users_assign_posts == '' )
1179
+ echo "<option selected='selected' value=''>" . __( 'Delete posts of deled users without assing to any user', 'import-users-from-csv-with-meta' ) . "</option>";
1180
+ else
1181
+ echo "<option value=''>" . __( 'Delete posts of deled users without assing to any user', 'import-users-from-csv-with-meta' ) . "</option>";
1182
+
1183
+ $blogusers = get_users();
1184
+
1185
+ foreach ( $blogusers as $bloguser ) {
1186
+ if( $bloguser->ID == $cron_delete_users_assign_posts )
1187
+ echo "<option selected='selected' value='{$bloguser->ID}'>{$bloguser->display_name}</option>";
1188
+ else
1189
+ echo "<option value='{$bloguser->ID}'>{$bloguser->display_name}</option>";
1190
+ }
1191
+ ?>
1192
+ </select>
1193
+ <p class="description"><?php _e( 'After delete users, we can choose if we want to assign their posts to another user. Please do not delete them or posts will be deleted.', 'import-users-from-csv-with-meta' ); ?></p>
1194
+ </div>
1195
+ </td>
1196
+ </tr>
1197
+ <tr class="form-field form-required">
1198
+ <th scope="row"><label for="role"><?php _e( 'Role', 'import-users-from-csv-with-meta' ); ?></label></th>
1199
+ <td>
1200
+ <select id="role" name="role">
1201
+ <?php
1202
+ if( $role == '' )
1203
+ echo "<option selected='selected' value=''>" . __( 'Disable role assignement in cron import', 'import-users-from-csv-with-meta' ) . "</option>";
1204
+ else
1205
+ echo "<option value=''>" . __( 'Disable role assignement in cron import', 'import-users-from-csv-with-meta' ) . "</option>";
1206
+
1207
+ $list_roles = acui_get_editable_roles();
1208
+ foreach ($list_roles as $key => $value) {
1209
+ if($key == $role)
1210
+ echo "<option selected='selected' value='$key'>$value</option>";
1211
+ else
1212
+ echo "<option value='$key'>$value</option>";
1213
+ }
1214
+ ?>
1215
+ </select>
1216
+ <p class="description"><?php _e( 'Which role would be used to import users?', 'import-users-from-csv-with-meta' ); ?></p>
1217
+ </td>
1218
+ </tr>
1219
+ <tr class="form-field form-required">
1220
+ <th scope="row"><label for="move-file-cron"><?php _e( 'Move file after import?', 'import-users-from-csv-with-meta' ); ?></label></th>
1221
+ <td>
1222
+ <div style="float:left;">
1223
+ <input type="checkbox" name="move-file-cron" value="yes" <?php if( $move_file_cron == true ) echo "checked='checked'"; ?>/>
1224
+ </div>
1225
+
1226
+ <div class="move-file-cron-cell" style="margin-left:25px;">
1227
+ <input placeholder="<?php _e( 'Insert complete path to the file', 'import-users-from-csv-with-meta'); ?>" type="text" name="path_to_move" id="path_to_move" value="<?php echo $path_to_move; ?>" style="width:70%;" />
1228
+ <p class="description"><?php _e( 'You have to introduce the path to file, i.e.:', 'import-users-from-csv-with-meta'); ?> <?php $upload_dir = wp_upload_dir(); echo $upload_dir["path"]; ?>/move.csv</p>
1229
+ </div>
1230
+ </td>
1231
+ </tr>
1232
+ <tr class="form-field form-required move-file-cron-cell">
1233
+ <th scope="row"><label for="move-file-cron"><?php _e( 'Auto rename after move?', 'import-users-from-csv-with-meta' ); ?></label></th>
1234
+ <td>
1235
+ <div style="float:left;">
1236
+ <input type="checkbox" name="path_to_move_auto_rename" value="yes" <?php if( $path_to_move_auto_rename == true ) echo "checked='checked'"; ?>/>
1237
+ </div>
1238
+
1239
+ <div style="margin-left:25px;">
1240
+ <p class="description"><?php _e( 'Your file will be renamed after moved, so you will not lost any version of it. The way to rename will be append the time stamp using this date format: YmdHis.', 'import-users-from-csv-with-meta'); ?></p>
1241
+ </div>
1242
+ </td>
1243
+ </tr>
1244
+ <tr class="form-field form-required">
1245
+ <th scope="row"><label for="log"><?php _e( 'Last actions of schedule task', 'import-users-from-csv-with-meta' ); ?></label></th>
1246
+ <td>
1247
+ <pre><?php echo $log; ?></pre>
1248
+ </td>
1249
+ </tr>
1250
+ </tbody>
1251
+ </table>
1252
+ <input class="button-primary" type="submit" value="<?php _e( 'Save schedule options', 'import-users-from-csv-with-meta'); ?>"/>
1253
+ </form>
1254
+
1255
+ <script>
1256
+ jQuery( document ).ready( function( $ ){
1257
+ $( "[name='cron-delete-users']" ).change(function() {
1258
+ if( $(this).is( ":checked" ) ) {
1259
+ var returnVal = confirm("<?php _e( 'Are you sure to delete all users that are not present in the CSV? This action cannot be undone.', 'import-users-from-csv-with-meta' ); ?>");
1260
+ $(this).attr("checked", returnVal);
1261
+
1262
+ if( returnVal )
1263
+ $( '#cron-delete-users-assign-posts' ).show();
1264
+ }
1265
+ else{
1266
+ $( '#cron-delete-users-assign-posts' ).hide();
1267
+ }
1268
+ });
1269
+
1270
+ $( "[name='move-file-cron']" ).change(function() {
1271
+ if( $(this).is( ":checked" ) ){
1272
+ $( '.move-file-cron-cell' ).show();
1273
+ }
1274
+ else{
1275
+ $( '.move-file-cron-cell' ).hide();
1276
+ }
1277
+ });
1278
+
1279
+ <?php if( $cron_delete_users == '' ): ?>
1280
+ $( '#cron-delete-users-assign-posts' ).hide();
1281
+ <?php endif; ?>
1282
+
1283
+ <?php if( !$move_file_cron ): ?>
1284
+ $( '.move-file-cron-cell' ).hide();
1285
+ <?php endif; ?>
1286
+ });
1287
+ </script>
1288
+ <?php break; ?>
1289
+
1290
+ <?php case 'donate': ?>
1291
+
1292
+ <div class="postbox">
1293
+ <h3 class="hndle"><span>&nbsp;<?php _e( 'Do you like it?', 'import-users-from-csv-with-meta' ); ?></span></h3>
1294
+
1295
+ <div class="inside" style="display: block;">
1296
+ <img src="<?php echo $url_plugin; ?>icon_coffee.png" alt="<?php _e( 'buy me a coffee', 'import-users-from-csv-with-meta' ); ?>" style=" margin: 5px; float:left;">
1297
+ <p><?php _e( 'Hi! we are', 'import-users-from-csv-with-meta'); ?> <a href="https://twitter.com/fjcarazo" target="_blank" title="Javier Carazo">Javier Carazo</a> <?php _e( 'and', 'import-users-from-csv-with-meta' ); ?> <a href="https://twitter.com/ahornero" target="_blank" title="Alberto Hornero">Alberto Hornero</a> <?php _e( 'from', 'import-users-from-csv-with-meta' ); ?> <a href="http://codection.com">Codection</a>, <?php _e("developers of this plugin.", 'import-users-from-csv-with-meta' ); ?></p>
1298
+ <p><?php _e( 'We have been spending many hours to develop this plugin. <br>If you like and use this plugin, you can <strong>buy us a cup of coffee</strong>.', 'import-users-from-csv-with-meta' ); ?></p>
1299
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
1300
+ <input type="hidden" name="cmd" value="_s-xclick">
1301
+ <input type="hidden" name="hosted_button_id" value="QPYVWKJG4HDGG">
1302
+ <input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="<?php _e('PayPal – The safer, easier way to pay online.', 'import-users-from-csv-with-meta' ); ?>">
1303
+ <img alt="" border="0" src="https://www.paypalobjects.com/es_ES/i/scr/pixel.gif" width="1" height="1">
1304
+ </form>
1305
+ <div style="clear:both;"></div>
1306
+ </div>
1307
+ </div>
1308
+
1309
+ <?php break; ?>
1310
+
1311
+ <?php case 'help': ?>
1312
+
1313
+ <div class="postbox">
1314
+ <h3 class="hndle"><span>&nbsp;<?php _e( 'Need help with WordPress or WooCommerce?', 'import-users-from-csv-with-meta' ); ?></span></h3>
1315
+
1316
+ <div class="inside" style="display: block;">
1317
+ <p><?php _e( 'Hi! we are', 'import-users-from-csv-with-meta' ); ?> <a href="https://twitter.com/fjcarazo" target="_blank" title="Javier Carazo">Javier Carazo</a><?php _e( 'and', 'import-users-from-csv-with-meta' ) ?> <a href="https://twitter.com/ahornero" target="_blank" title="Alberto Hornero">Alberto Hornero</a> <?php _e( 'from', 'import-users-from-csv-with-meta' ); ?> <a href="http://codection.com">Codection</a>, <?php _e( 'developers of this plugin.', 'import-users-from-csv-with-meta' ); ?></p>
1318
+ <p><?php _e( 'We work everyday with WordPress and WooCommerce, if you need help hire us, send us a message to', 'import-users-from-csv-with-meta' ); ?> <a href="mailto:contacto@codection.com">contacto@codection.com</a>.</p>
1319
+ <div style="clear:both;"></div>
1320
+ </div>
1321
+ </div>
1322
+
1323
+ <?php break; ?>
1324
+ <?php
1325
+ }
1326
+ }
trunk/languages/import-users-from-csv-with-meta-de_DE.mo ADDED
Binary file
trunk/languages/import-users-from-csv-with-meta-de_DE.po ADDED
@@ -0,0 +1,1151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WordPress Blank Pot
2
+ # Copyright (C) 2014 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WordPress Blank Pot v1.0.0\n"
7
+ "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
8
+ "POT-Creation-Date: 2016-11-07 21:17+0100\n"
9
+ "PO-Revision-Date: \n"
10
+ "Language-Team: Your Team <translations@example.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
19
+ "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
20
+ "X-Poedit-Basepath: ..\n"
21
+ "X-Generator: Poedit 1.8.9\n"
22
+ "Last-Translator: \n"
23
+ "Language: de_DE\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: smtp.php:26 smtp.php:245
27
+ msgid "Send Test"
28
+ msgstr "Test senden"
29
+
30
+ #: smtp.php:40
31
+ msgid "Test mail to "
32
+ msgstr "Test-Mail an"
33
+
34
+ #: smtp.php:41
35
+ msgid ""
36
+ "This is a test email generated by the Import User From CSV With Meta "
37
+ "WordPress plugin."
38
+ msgstr ""
39
+ "Dies ist eine Test-Email erzeugt vom Plugin \"Import Benutzer aus CSV mit "
40
+ "Meta\"."
41
+
42
+ #: smtp.php:79
43
+ msgid "Message sent successfully"
44
+ msgstr "Nachricht erfolgreich gesendet"
45
+
46
+ #: smtp.php:83
47
+ msgid "Test Message Sent"
48
+ msgstr "Nachricht gesendet"
49
+
50
+ #: smtp.php:84
51
+ msgid "The result was:"
52
+ msgstr "Das Ergebnis war:"
53
+
54
+ #: smtp.php:86
55
+ msgid "The full debugging output is shown below:"
56
+ msgstr "Die vollständige Debugausgabe ist nachfolgend dargestellt:"
57
+
58
+ #: smtp.php:88
59
+ msgid "The SMTP debugging output is shown below:"
60
+ msgstr "Die SMTP-Debugausgabe ist nachfolgend dargestellt:"
61
+
62
+ #: smtp.php:119
63
+ msgid "Import User From CSV With Meta - SMTP server options"
64
+ msgstr "SMTP-Server-Optionen"
65
+
66
+ #: smtp.php:123
67
+ msgid "Global options"
68
+ msgstr "Allgemeine Optionen"
69
+
70
+ #: smtp.php:124
71
+ msgid ""
72
+ "Do you want to use your own SMTP settings for this plugin or the WordPress "
73
+ "settings."
74
+ msgstr "Eigene SMTP-Einstellungen oder WordPress-Einstellungen verwenden."
75
+
76
+ #: smtp.php:128
77
+ msgid "Settings"
78
+ msgstr "Einstellungen"
79
+
80
+ #: smtp.php:131
81
+ msgid "Use plugin SMTP settings"
82
+ msgstr "SMTP-Einstellungen des Plugins verwenden"
83
+
84
+ #: smtp.php:133
85
+ msgid "Use this settings to send mail."
86
+ msgstr "Diese Einstellungen zum Mailversand verwenden."
87
+
88
+ #: smtp.php:135
89
+ msgid "Use WordPress general settings to send mail."
90
+ msgstr "Allgemeine WordPress-Einstellungen zum Mailversand verwenden."
91
+
92
+ #: smtp.php:143
93
+ msgid "From Email"
94
+ msgstr "Emailadresse des Absenders"
95
+
96
+ #: smtp.php:145
97
+ msgid ""
98
+ "You can specify the email address that emails should be sent from. If you "
99
+ "leave this blank, the default email will be used."
100
+ msgstr ""
101
+ "Absenderadresse festlegen. Falls leer, wird die Default-Emailadresse "
102
+ "verwendet."
103
+
104
+ #: smtp.php:145
105
+ msgid ""
106
+ "<strong>Please Note:</strong> You appear to be using a version of WordPress "
107
+ "prior to 2.3. Please ignore the From Name field and instead enter Name&lt;"
108
+ "email@domain.com&gt; in this field."
109
+ msgstr ""
110
+ "<strong>Achtung</strong>Anscheinend wird eine WordPressversion vor 2.3 "
111
+ "verwendet. Ignoriere das Feld \"Absendername\" und füge statt dessen Name&lt;"
112
+ "email@domain.com&gt; in dieses Feld."
113
+
114
+ #: smtp.php:148
115
+ msgid "From Name"
116
+ msgstr "Absendername"
117
+
118
+ #: smtp.php:150
119
+ msgid ""
120
+ "You can specify the name that emails should be sent from. If you leave this "
121
+ "blank, the emails will be sent from WordPress."
122
+ msgstr ""
123
+ "Absendernamen festlegen. Falls leer, werden die Emails von WordPress "
124
+ "gesendet."
125
+
126
+ #: smtp.php:156 smtp.php:159
127
+ msgid "Mailer"
128
+ msgstr "Mailer"
129
+
130
+ #: smtp.php:161
131
+ msgid "Send emails of this plugin via SMTP."
132
+ msgstr "Emails dieses Plugins per SMTP senden."
133
+
134
+ #: smtp.php:163
135
+ msgid "Use the PHP mail() function to send emails."
136
+ msgstr "Die PHP mail() Funktion zum Emailversand verwenden."
137
+
138
+ #: smtp.php:171 smtp.php:174
139
+ msgid "Return Path"
140
+ msgstr "Antwort an"
141
+
142
+ #: smtp.php:176
143
+ msgid "Set the return-path to match the From Email"
144
+ msgstr "\"Antowrt an\" auf Absenderadresse setzen"
145
+
146
+ #: smtp.php:182
147
+ msgid "SMTP Options"
148
+ msgstr "SMTP Optionen"
149
+
150
+ #: smtp.php:183
151
+ msgid "These options only apply if you have chosen to send mail by SMTP above."
152
+ msgstr "Diese Optionen werden nur angewendet, wenn SMTP ausgewählt wurde."
153
+
154
+ #: smtp.php:187
155
+ msgid "SMTP Host"
156
+ msgstr "SMTP Host"
157
+
158
+ #: smtp.php:191
159
+ msgid "SMTP Port"
160
+ msgstr "SMTP Port"
161
+
162
+ #: smtp.php:195 smtp.php:198
163
+ msgid "Encryption"
164
+ msgstr "Verschlüsselung"
165
+
166
+ #: smtp.php:200
167
+ msgid "No encryption."
168
+ msgstr "Keine Verschlüsselung."
169
+
170
+ #: smtp.php:202
171
+ msgid "Use SSL encryption."
172
+ msgstr "SSL Verschlüsselung verwenden."
173
+
174
+ #: smtp.php:204
175
+ msgid ""
176
+ "Use TLS encryption. This is not the same as STARTTLS. For most servers SSL "
177
+ "is the recommended option."
178
+ msgstr ""
179
+ "TLS Verschlüsselung verwenden. Nicht identisch mit STARTTLS. Meist wird SSL "
180
+ "empfohlen."
181
+
182
+ #: smtp.php:208
183
+ msgid "Authentication"
184
+ msgstr "Authentifizerung"
185
+
186
+ #: smtp.php:211
187
+ msgid "No: Do not use SMTP authentication."
188
+ msgstr "Nein: Authentifizerung nicht verwenden."
189
+
190
+ #: smtp.php:213
191
+ msgid "Yes: Use SMTP authentication."
192
+ msgstr "Ja: Authentifizerung verwenden."
193
+
194
+ #: smtp.php:214
195
+ msgid "If this is set to no, the values below are ignored."
196
+ msgstr "Falls nein gesetzt ist, werden die folgenden Eingaben ignoriert."
197
+
198
+ #: smtp.php:218 importer.php:830 import-users-from-csv-with-meta.php:52
199
+ #: import-users-from-csv-with-meta.php:195
200
+ msgid "Username"
201
+ msgstr "Benutzername"
202
+
203
+ #: smtp.php:222 import-users-from-csv-with-meta.php:195
204
+ msgid "Password"
205
+ msgstr "Passwort"
206
+
207
+ #: smtp.php:227
208
+ msgid "Save Changes"
209
+ msgstr "Änderungen speichern"
210
+
211
+ #: smtp.php:234
212
+ msgid "Send a Test Email"
213
+ msgstr "Testemail senden"
214
+
215
+ #: smtp.php:240
216
+ msgid "To:"
217
+ msgstr "An:"
218
+
219
+ #: smtp.php:242
220
+ msgid ""
221
+ "Type an email address here and then click Send Test to generate a test email."
222
+ msgstr ""
223
+ "Eine Emailadresse eingeben und \"Sende Test\" klicken, um eine Testemail zu "
224
+ "erzeugen."
225
+
226
+ #: importer.php:60
227
+ msgid "Ready to registers"
228
+ msgstr "Bereit zu registrieren"
229
+
230
+ #: importer.php:61
231
+ msgid "First row represents the form of sheet"
232
+ msgstr "Erste Zeile enthält das Format der Tabelle"
233
+
234
+ #: importer.php:88
235
+ msgid "File must contain at least 2 columns: username and email"
236
+ msgstr "Mindestens 2 Spalten erforderlich: username und email"
237
+
238
+ #: importer.php:116
239
+ msgid "Inserting and updating data"
240
+ msgstr "Daten werden eingefügt und upgedated"
241
+
242
+ #: importer.php:118
243
+ msgid "Row"
244
+ msgstr "Zeile"
245
+
246
+ #: importer.php:123
247
+ msgid "Row number"
248
+ msgstr "Zeile Nummer"
249
+
250
+ #: importer.php:123
251
+ msgid "does not have the same columns than the header, we are going to skip"
252
+ msgstr "enthält nicht die gleichen Spalten wie Kopfzeile: wird übersprungen"
253
+
254
+ #: importer.php:174
255
+ msgid "Problems with ID"
256
+ msgstr "Probleme mit ID"
257
+
258
+ #: importer.php:174
259
+ msgid ""
260
+ "username is not the same in the CSV and in database, we are going to skip."
261
+ msgstr "username in CSV und Datenbank stimmen nicht überein: wird übersprungen"
262
+
263
+ #: importer.php:222
264
+ msgid "User already exists as:"
265
+ msgstr "Benutzer existiert bereits als:"
266
+
267
+ #: importer.php:222
268
+ msgid "(in this CSV file is called:"
269
+ msgstr "(in der CSV-Datei lautet er:"
270
+
271
+ #: importer.php:248
272
+ msgid "Problems with user:"
273
+ msgstr "Probleme mit Benutzer:"
274
+
275
+ #: importer.php:248
276
+ msgid ", we are going to skip. \\r\\nError: "
277
+ msgstr ", wird übersprungen. \\r\\nFehler: "
278
+
279
+ #: importer.php:368
280
+ msgid "Password has not been changed"
281
+ msgstr "Passwort nicht geändert"
282
+
283
+ #: importer.php:437
284
+ msgid "Process finished you can go"
285
+ msgstr "Vorgang abgeschlossen. Du kannst"
286
+
287
+ #: importer.php:437
288
+ msgid "here to see results"
289
+ msgstr "hier die Ergebnisse sehen"
290
+
291
+ #: importer.php:452
292
+ msgid "You are not allowed to see this content."
293
+ msgstr "Zugriff nicht erlaubt"
294
+
295
+ #: importer.php:498
296
+ msgid "Click to open/close"
297
+ msgstr "Zum Öffnen/Schließen klicken"
298
+
299
+ #: importer.php:502
300
+ msgid "Old CSV files uploaded"
301
+ msgstr "Alte CSV-Datei hochgeladen"
302
+
303
+ #: importer.php:505
304
+ msgid ""
305
+ "For security reasons you should delete this files, probably they would be "
306
+ "visible in the Internet if a bot or someone discover the URL. You can delete "
307
+ "each file or maybe you want delete all CSV files you have uploaded:"
308
+ msgstr ""
309
+ "Aus Sicherheitsgründen sollte diese Datei gelöscht werden, da sie im "
310
+ "Internet sichtbar ist, falls ein bot oder jemand die URL entdeckt. Du kannst "
311
+ "jede Datei oder alle hochgeladenen CSV-Dateien löschen:"
312
+
313
+ #: importer.php:506
314
+ msgid "Delete all CSV files uploaded"
315
+ msgstr "Alle hochgeladenen CSV-Dateien löschen"
316
+
317
+ #: importer.php:516
318
+ msgid "Delete"
319
+ msgstr "Lösche"
320
+
321
+ #: importer.php:525
322
+ msgid ""
323
+ "File must contain at least <strong>2 columns: username and email</strong>. "
324
+ "These should be the first two columns and it should be placed <strong>in "
325
+ "this order: username and email</strong>. If there are more columns, this "
326
+ "plugin will manage it automatically."
327
+ msgstr ""
328
+ "Datei muss zumindest <strong>2 Spalten haben: username und email</strong>. "
329
+ "Diese sollten die ersten beiden Spalten sein und sie sollten in "
330
+ "<strong>dieser Reihenfolge stehen: username und email</strong>. Weitere "
331
+ "Spalten werden vom Plugin automatisch verarbeitet."
332
+
333
+ #: importer.php:526
334
+ msgid ""
335
+ "Please, read carefully how <strong>passwords are managed</strong> and also "
336
+ "take note about capitalization, this plugin is <strong>case sensitive</"
337
+ "strong>."
338
+ msgstr ""
339
+ "Bitte lies sorgfältig, wie <strong>Passwörter gehandhabt werden</strong> und "
340
+ "beachte auch die Groß- und Kleinschreibung, Dieses Plugin ist <strong>case "
341
+ "sensitive</strong>."
342
+
343
+ #: importer.php:529 import-users-from-csv-with-meta.php:96
344
+ #: import-users-from-csv-with-meta.php:202
345
+ msgid "Import users from CSV"
346
+ msgstr "Benutzer aus CSV importieren"
347
+
348
+ #: importer.php:539
349
+ msgid "Update existing users?"
350
+ msgstr "Bestehende Benutzer updaten?"
351
+
352
+ #: importer.php:542 importer.php:571
353
+ msgid "Yes"
354
+ msgstr "Ja"
355
+
356
+ #: importer.php:543 importer.php:570
357
+ msgid "No"
358
+ msgstr "Nein"
359
+
360
+ #: importer.php:549 importer.php:1077
361
+ msgid "Role"
362
+ msgstr "Role"
363
+
364
+ #: importer.php:562
365
+ msgid ""
366
+ "If you choose more than one role, the roles would be assigned correctly but "
367
+ "you should use some plugin like <a href=\"https://wordpress.org/plugins/user-"
368
+ "role-editor/\">User Role Editor</a> to manage them."
369
+ msgstr ""
370
+ "Wird mehr als eine Role gewählt, so werden die Roles korrekt zugewiesen, "
371
+ "aber du solltest ein Plugin wie den <a href=\"https://wordpress.org/plugins/"
372
+ "user-role-editor/\">User Role Editor</a> zur Bearbeitung verwenden."
373
+
374
+ #: importer.php:567
375
+ msgid "Update roles for existing users?"
376
+ msgstr "Roles für bestehende Benutzer upaten?"
377
+
378
+ #: importer.php:577
379
+ msgid "CSV file <span class=\"description\">(required)</span></label>"
380
+ msgstr "CSV Datei <span class=\"description\">(erforderlich)</span></label>"
381
+
382
+ #: importer.php:581
383
+ msgid "<em>or you can choose directly a file from your host,"
384
+ msgstr "<em>oder direkt eine Datei vom Host wählen,"
385
+
386
+ #: importer.php:581 importer.php:585
387
+ msgid "click here"
388
+ msgstr "hier klicken"
389
+
390
+ #: importer.php:584 importer.php:1038 importer.php:1103
391
+ msgid "You have to introduce the path to file, i.e.:"
392
+ msgstr "Du musst den Pfad zur Datei angeben, d.h:"
393
+
394
+ #: importer.php:585
395
+ msgid "or you can upload it directly from your PC"
396
+ msgstr "oder direkt vom PC hochladen"
397
+
398
+ #: importer.php:591
399
+ msgid "What should the plugin do with empty cells?"
400
+ msgstr "Was soll mit leeren Zellen geschehen?"
401
+
402
+ #: importer.php:594
403
+ msgid "Leave the old value for this metadata"
404
+ msgstr "Werte für alte Metadaten behalten"
405
+
406
+ #: importer.php:595
407
+ msgid "Delete the metadata"
408
+ msgstr "Metadaten löschen"
409
+
410
+ #: importer.php:621
411
+ msgid "BuddyPress users"
412
+ msgstr "BuddyPress Benutzer"
413
+
414
+ #: importer.php:622
415
+ msgid ""
416
+ "You can insert any profile from BuddyPress using his name as header. Plugin "
417
+ "will check, before import, which fields are defined in BuddyPress and will "
418
+ "assign it in the update. You can use this fields:"
419
+ msgstr ""
420
+ "Du kannst jedes Profil von BuddyPress einfügen, indem du den name als Header "
421
+ "verwendest. Das Plugin prüft vor dem Import, welche Felder in BuddyPress "
422
+ "definiert sind und weist sie beim Update zu. Du kannst diese Felder "
423
+ "verwenden:"
424
+
425
+ #: importer.php:626
426
+ msgid ""
427
+ "Remember that all date fields have to be imported using a format like this: "
428
+ "2016-01-01 00:00:00"
429
+ msgstr ""
430
+ "Alle zu importierenden Datumsfelder müssen ein solches Format haben: "
431
+ "2016-01-01 00:00:00"
432
+
433
+ #: importer.php:628 importer.php:644 importer.php:661 importer.php:677
434
+ msgid "Only for"
435
+ msgstr "Nur für"
436
+
437
+ #: importer.php:628 importer.php:644 importer.php:661 importer.php:677
438
+ msgid "users"
439
+ msgstr "Benutzer"
440
+
441
+ #: importer.php:640
442
+ msgid "Do not activate users"
443
+ msgstr "Benutzer nicht aktivieren"
444
+
445
+ #: importer.php:641
446
+ msgid "Activate users when they are being imported"
447
+ msgstr "Benutzer beim Import aktivieren"
448
+
449
+ #: importer.php:644
450
+ msgid "WP Members"
451
+ msgstr "WP Members"
452
+
453
+ #: importer.php:654
454
+ msgid "Approve users at the same time is being created"
455
+ msgstr "Benutzer zur gelichen Zeit approbieren"
456
+
457
+ #: importer.php:657
458
+ msgid "Do not approve users"
459
+ msgstr "Benutzer nicht approbieren"
460
+
461
+ #: importer.php:658
462
+ msgid "Approve users when they are being imported"
463
+ msgstr "Benutzer beim Import approbieren"
464
+
465
+ #: importer.php:661
466
+ msgid "New User Approve"
467
+ msgstr "Neue Benutzer approbieren"
468
+
469
+ #: importer.php:671
470
+ msgid "Repeated email in different users?"
471
+ msgstr "Wiederhole email bei verschiedenen Benutzern?"
472
+
473
+ #: importer.php:674
474
+ msgid "Not allowed"
475
+ msgstr "Nicht erlaubt"
476
+
477
+ #: importer.php:675
478
+ msgid "Allowed"
479
+ msgstr "Erlaubt"
480
+
481
+ #: importer.php:677
482
+ msgid "Allow Multiple Accounts"
483
+ msgstr "Erlaube mehrfache Accounts"
484
+
485
+ #: importer.php:677
486
+ msgid ""
487
+ "Allow multiple user accounts to be created having the same email address."
488
+ msgstr "Mehrfache Accounts mit der gleichen Emailadresse erlauben."
489
+
490
+ #: importer.php:686
491
+ msgid "WordPress Access Areas is activated"
492
+ msgstr "WordPress Access Areas aktiviert"
493
+
494
+ #: importer.php:688
495
+ msgid "As user of"
496
+ msgstr "Ein Benutzer von"
497
+
498
+ #: importer.php:688
499
+ msgid "WordPress Access Areas"
500
+ msgstr "WordPress Access Areas"
501
+
502
+ #: importer.php:688
503
+ msgid "you can use the Access Areas created"
504
+ msgstr "Verwende erstellte Access Areas"
505
+
506
+ #: importer.php:688 importer.php:938
507
+ msgid "here"
508
+ msgstr "hier "
509
+
510
+ #: importer.php:688
511
+ msgid ""
512
+ "and use this areas in your own CSV file. Please use the column name "
513
+ "<strong>wp-access-areas</strong> and in each row use <strong>the name that "
514
+ "you have used"
515
+ msgstr ""
516
+ "und verwendie sie in deiner CSV Datei. Verwende den Spaltennamen <strong>wp-"
517
+ "access-areas</strong> und in jeder Zeile den <strong>verwendeten Namen"
518
+
519
+ #: importer.php:688
520
+ msgid ", like this ones:"
521
+ msgstr ", so wie hier:"
522
+
523
+ #: importer.php:697
524
+ msgid ""
525
+ "If you leave this cell empty for some user or the access area indicated "
526
+ "doesn't exist, user won't be assigned to any access area. You can choose "
527
+ "more than one area for each user using pads between them in the same row, i."
528
+ "e.: "
529
+ msgstr ""
530
+ "Wenn diese Zelle leer ist oder die angegebene access area nicht existiert, "
531
+ "wird der Benutzer keiner access area zugeordnet. Für jeden Benutzer kann "
532
+ "mehr als eine area gewählt werden, indem in derselben Zeile pads gesetzt "
533
+ "werden, d.h."
534
+
535
+ #: importer.php:704
536
+ msgid "Send mail"
537
+ msgstr "Mail senden"
538
+
539
+ #: importer.php:706
540
+ msgid "Do you wish to send a mail with credentials and other data?"
541
+ msgstr "Möchten Sie eine Mail mit den Zugangsdaten senden?"
542
+
543
+ #: importer.php:706 importer.php:707
544
+ msgid "yes"
545
+ msgstr "ja"
546
+
547
+ #: importer.php:707
548
+ msgid ""
549
+ "Do you wish to send this mail also to users that are being updated? (not "
550
+ "only to the one which are being created)"
551
+ msgstr ""
552
+ "Soll diese Mail auch an Benutzer gesendet werden, die upgedated wurden (also "
553
+ "nicht nur neu angelegte)"
554
+
555
+ #: importer.php:715
556
+ msgid "Start importing"
557
+ msgstr "Import beginnen"
558
+
559
+ #: importer.php:723
560
+ msgid "Please choose a file"
561
+ msgstr "Bitte Datei wählen"
562
+
563
+ #: importer.php:728
564
+ msgid "Please enter a path to the file"
565
+ msgstr "Bitte Pfad zur Datei angeben"
566
+
567
+ #: importer.php:733
568
+ msgid "Please select a role"
569
+ msgstr "Bitte eine Role auswählen"
570
+
571
+ #: importer.php:740
572
+ msgid "Are you sure to delete this file?"
573
+ msgstr "Diese Datei löschen?"
574
+
575
+ #: importer.php:749
576
+ msgid "There were problems deleting the file, please check file permissions"
577
+ msgstr "Problem beim Löschen der Datei, bitte Berechtigungen prüfen"
578
+
579
+ #: importer.php:751
580
+ msgid "File successfully deleted"
581
+ msgstr "Datei erfolgreich gelöscht"
582
+
583
+ #: importer.php:759
584
+ msgid ""
585
+ "Are you sure to delete ALL CSV files uploaded? There can be CSV files from "
586
+ "other plugins."
587
+ msgstr ""
588
+ "Wirklich ALLE CSV-Dateien löschen? Es könnten auch CSV-Dateien von anderen "
589
+ "Plugins dabei sein."
590
+
591
+ #: importer.php:767
592
+ msgid "There were problems deleting the files, please check files permissions"
593
+ msgstr "Problem beim Löschen der Datei, bitte Berechtigungen prüfen"
594
+
595
+ #: importer.php:769
596
+ msgid "Files successfully deleted"
597
+ msgstr "Dateien erfolgreich gelöscht"
598
+
599
+ #: importer.php:794
600
+ msgid "Custom columns loaded"
601
+ msgstr "Benutzerdefinierte Spalten geladen"
602
+
603
+ #: importer.php:798
604
+ msgid "Columns loaded in previous files"
605
+ msgstr "Benutzerdefinierte Spalten von früheren Dateien"
606
+
607
+ #: importer.php:799
608
+ msgid ""
609
+ "(if you load another CSV with different columns, the new ones will replace "
610
+ "this list)"
611
+ msgstr ""
612
+ "(beim Laden einer anderen CSV-Datei mit unterschiedlichen Spalten ersetzen "
613
+ "die neuen Spalten diese Liste)"
614
+
615
+ #: importer.php:808
616
+ msgid "There is no columns loaded yet"
617
+ msgstr "Noch keine Spalten geladen"
618
+
619
+ #: importer.php:823 import-users-from-csv-with-meta.php:202
620
+ msgid "Documentation"
621
+ msgstr "Dokumentation"
622
+
623
+ #: importer.php:827
624
+ msgid "Columns position"
625
+ msgstr "Spaltenposition"
626
+
627
+ #: importer.php:828
628
+ msgid ""
629
+ "(Documents should look like the one presented into screenshot. Remember you "
630
+ "should fill the first two columns with the next values)"
631
+ msgstr ""
632
+ "(Dateien sollten so aussehen wie die im Screenshot. Die ersten beiden "
633
+ "Spalten sollten mit folgenden Werten gefüllt sein)"
634
+
635
+ #: importer.php:831
636
+ msgid "Email"
637
+ msgstr "Email"
638
+
639
+ #: importer.php:833
640
+ msgid ""
641
+ "(The next columns are totally customizable and you can use whatever you "
642
+ "want. All rows must contains same columns)"
643
+ msgstr ""
644
+ "(Die folgenden Spalten sind benutzerdefiniert und können für beliebige "
645
+ "Zwecke verwendet werden. Alle Zeilen müssen jedoch dieselben Spalten haben)"
646
+
647
+ #: importer.php:834
648
+ msgid "(User profile will be adapted to the kind of data you have selected)"
649
+ msgstr "(Benutzerprofile werden entsprechend der gewählten Daten angepasst)"
650
+
651
+ #: importer.php:835
652
+ msgid ""
653
+ "(If you want to disable the extra profile information, please deactivate "
654
+ "this plugin after make the import)"
655
+ msgstr ""
656
+ "(Um die zusätzlichen Profilinformationen inaktiv zu setzen, deaktivieren Sie "
657
+ "bitte dieses Plugin nach dem Import)"
658
+
659
+ #: importer.php:839
660
+ msgid "id"
661
+ msgstr "id"
662
+
663
+ #: importer.php:840
664
+ msgid ""
665
+ "You can use a column called id in order to make inserts or updates of an "
666
+ "user using the ID used by WordPress in the wp_users table. We have two "
667
+ "different cases:"
668
+ msgstr ""
669
+ "Eine Spalte mit der Bezeichnung \"id\" kann verwendet werden, um Einfügen "
670
+ "oder Update eines Benutzers mittels der ID in der wp_users Tabelle zu "
671
+ "steuern. Zwei Möglichkeiten:"
672
+
673
+ #: importer.php:842
674
+ msgid ""
675
+ "If id <strong>doesn't exist in your users table</strong>: user will be "
676
+ "inserted"
677
+ msgstr ""
678
+ "Wenn die id <strong>nicht in der Benutzertabelle existiert</strong>, wird "
679
+ "der Benutzer hinzugefügt."
680
+
681
+ #: importer.php:843
682
+ msgid ""
683
+ "If id <strong>exists</strong>: plugin check if username is the same, if yes, "
684
+ "it will update the data, if not, it ignores the cell to avoid problems"
685
+ msgstr ""
686
+ "Wenn die id <strong>existiert</strong>, prüft das Plugin, ob der username "
687
+ "identisch ist. Wenn ja, werden die Daten aktualisiert, wenn nein, wird die "
688
+ "Zelle ignoriert, um Probleme zu vermeiden."
689
+
690
+ #: importer.php:848
691
+ msgid "Passwords"
692
+ msgstr "Passwörter"
693
+
694
+ #: importer.php:849
695
+ msgid ""
696
+ "A string that contains user passwords. We have different options for this "
697
+ "case:"
698
+ msgstr "Ein String, der Bentuzerpassworte enthält. Mehrere Möglichkeiten:"
699
+
700
+ #: importer.php:851
701
+ msgid ""
702
+ "If you <strong>don't create a column for passwords</strong>: passwords will "
703
+ "be generated automatically"
704
+ msgstr ""
705
+ "Wird <strong>keine Passwortspalte</strong> gesetzt, dann werden die "
706
+ "Passworte automatisch generiert"
707
+
708
+ #: importer.php:852
709
+ msgid ""
710
+ "If you <strong>create a column for passwords</strong>: if cell is empty, "
711
+ "password won't be updated; if cell has a value, it will be used"
712
+ msgstr ""
713
+ "Wird <strong>eine Passwortspalte gesetzt</strong>, dann gilt: Ist der Inhalt "
714
+ "leer, werden Passwörter nicht verändert, enthält sie einen Wert, wird "
715
+ "dieser benutzt"
716
+
717
+ #: importer.php:857
718
+ msgid "WordPress default profile data"
719
+ msgstr "WordPress Standardprofildaten"
720
+
721
+ #: importer.php:858
722
+ msgid ""
723
+ "You can use those labels if you want to set data adapted to the WordPress "
724
+ "default user columns (the ones who use the function"
725
+ msgstr ""
726
+ "Diese Bezeichnungen können verwendet werden, um Daten in den Standardspalten "
727
+ "der WordPress Bneutzerdatei zu setzen (benutzen die Funktion"
728
+
729
+ #: importer.php:860
730
+ msgid ""
731
+ "A string that contains a URL-friendly name for the user. The default is the "
732
+ "user's username."
733
+ msgstr ""
734
+ "String, der einen URL-fähigen Namen für den Benutzer enthält. Normalerweise "
735
+ "der username."
736
+
737
+ #: importer.php:861
738
+ msgid "A string containing the user's URL for the user's web site."
739
+ msgstr "String, der die URL des Benutzers für seine Webseite enthält."
740
+
741
+ #: importer.php:862
742
+ msgid ""
743
+ "A string that will be shown on the site. Defaults to user's username. It is "
744
+ "likely that you will want to change this, for both appearance and security "
745
+ "through obscurity (that is if you don't use and delete the default admin "
746
+ "user)."
747
+ msgstr ""
748
+ "String, der angezeigt wird. Vorgabe ist der username. Sollte geändert "
749
+ "werden, sowohl für das Erscheinungsbild als auch zur Sicherheit durch "
750
+ "Verschleierung (wenn der vorgegebene Adminbenutzer nicht verwendet und "
751
+ "gelöscht wird)."
752
+
753
+ #: importer.php:863
754
+ msgid "The user's nickname, defaults to the user's username."
755
+ msgstr "Nickname des Benutzers, Vorgabe ist der username."
756
+
757
+ #: importer.php:864
758
+ msgid "The user's first name."
759
+ msgstr "Vorname des Benutzers."
760
+
761
+ #: importer.php:865
762
+ msgid "The user's last name."
763
+ msgstr "Nachname des Benutzers."
764
+
765
+ #: importer.php:866
766
+ msgid "A string containing content about the user."
767
+ msgstr "Text mit Informationen über den Benutzer."
768
+
769
+ #: importer.php:867
770
+ msgid "User's Jabber account."
771
+ msgstr "Jabber account des Benutzers."
772
+
773
+ #: importer.php:868
774
+ msgid "User's AOL IM account."
775
+ msgstr "AOL IM account des Benutzers."
776
+
777
+ #: importer.php:869
778
+ msgid "User's Yahoo IM account."
779
+ msgstr "Yahoo IM account des Benutzers."
780
+
781
+ #: importer.php:870
782
+ msgid "Using the WordPress format for this kind of data Y-m-d H:i:s."
783
+ msgstr "Verwende das WordPress-Format für diese Art der Daten Y-m-d H:i:s"
784
+
785
+ #: importer.php:877
786
+ msgid "WooCommerce is activated"
787
+ msgstr "WooCommerce aktiviert"
788
+
789
+ #: importer.php:878
790
+ msgid ""
791
+ "You can use those labels if you want to set data adapted to the WooCommerce "
792
+ "default user columns"
793
+ msgstr ""
794
+ "Diese Bezeichnungen können verwendet werden, um Daten in den Standardspalten "
795
+ "der WooCommerce Bneutzerdatei zu setzen"
796
+
797
+ #: importer.php:906
798
+ msgid "Important notice"
799
+ msgstr "Wichtige Notiz"
800
+
801
+ #: importer.php:907
802
+ msgid ""
803
+ "You can upload as many files as you want, but all must have the same "
804
+ "columns. If you upload another file, the columns will change to the form of "
805
+ "last file uploaded."
806
+ msgstr ""
807
+ "Es können beliebig viele Dateien hochgeladen werden, aber alle müssen die "
808
+ "gleichen Spalten haben. Wenn eine andere Datei hochgeladen wird, werden die "
809
+ "Spalten an die letzte Datei angepasst."
810
+
811
+ #: importer.php:910
812
+ msgid "Any question about it"
813
+ msgstr "Fragen dazu"
814
+
815
+ #: importer.php:913
816
+ msgid "Free support (in WordPress forums):"
817
+ msgstr "kosenloser Support (im WordPress Forum):"
818
+
819
+ #: importer.php:914
820
+ msgid "Premium support (with a quote):"
821
+ msgstr "Premium Support (kostenpflichtig):"
822
+
823
+ #: importer.php:919
824
+ msgid "Example"
825
+ msgstr "Beispiel"
826
+
827
+ #: importer.php:920
828
+ msgid "Download this"
829
+ msgstr "Lade diese"
830
+
831
+ #: importer.php:920
832
+ msgid "file"
833
+ msgstr "Datei"
834
+
835
+ #: importer.php:920
836
+ msgid "to test"
837
+ msgstr "zum Testen"
838
+
839
+ #: importer.php:936 import-users-from-csv-with-meta.php:202
840
+ msgid "Mail options"
841
+ msgstr "Mail Optionen"
842
+
843
+ #: importer.php:938
844
+ msgid "You can set your own SMTP and other mail details"
845
+ msgstr "Eigene SMTP Optionen und andere Details können gesetzt werden"
846
+
847
+ #: importer.php:943
848
+ msgid "WordPress automatic emails users updated"
849
+ msgstr "Automatische WordPress Emails angepasst"
850
+
851
+ #: importer.php:947
852
+ msgid "Send automattic WordPress emails?"
853
+ msgstr "Automatische WordPress Emails senden?"
854
+
855
+ #: importer.php:951
856
+ msgid ""
857
+ "Deactivate WordPress automattic email when an user is updated or his "
858
+ "password is changed"
859
+ msgstr ""
860
+ "Automatische WordPress Emails deaktivieren, wenn ein Benutzer upgedatet oder "
861
+ "sein Passwort geändert wird"
862
+
863
+ #: importer.php:952
864
+ msgid ""
865
+ "Activate WordPress automattic email when an user is updated or his password "
866
+ "is changed"
867
+ msgstr ""
868
+ "Automatische WordPress Emails aktivieren, wenn ein Benutzer upgedatet oder "
869
+ "sein Passwort geändert wird"
870
+
871
+ #: importer.php:954
872
+ msgid ""
873
+ "When you update an user or change his password, WordPress prepare and send "
874
+ "automattic email, you can deactivate it here."
875
+ msgstr ""
876
+ "Beim Update eines Benutzers oder einer Passwortänderung sendet WordPress "
877
+ "automatisch eine Mail. Das kann hier deaktivert werden"
878
+
879
+ #: importer.php:962
880
+ msgid "Customize the email that can be sent when importing users"
881
+ msgstr "Anpassen der Email, die beim Import gesendet wird"
882
+
883
+ #: importer.php:964
884
+ msgid "Mail subject :"
885
+ msgstr "Betreff:"
886
+
887
+ #: importer.php:972
888
+ msgid "username to login"
889
+ msgstr "Loginname"
890
+
891
+ #: importer.php:973
892
+ msgid "user password"
893
+ msgstr "Passwort"
894
+
895
+ #: importer.php:974
896
+ msgid "current site login url"
897
+ msgstr "URL für Login"
898
+
899
+ #: importer.php:975
900
+ msgid "lost password url"
901
+ msgstr "URL für Passwort vergessen"
902
+
903
+ #: importer.php:976
904
+ msgid "password reset url"
905
+ msgstr "URL für Passwort zurücksetzen"
906
+
907
+ #: importer.php:977
908
+ msgid "user email"
909
+ msgstr "Benutzer Email"
910
+
911
+ #: importer.php:978
912
+ msgid ""
913
+ "You can also use any WordPress user standard field or an own metadata, if "
914
+ "you have used it in your CSV. For example, if you have a first_name column, "
915
+ "you could use **first_name** or any other meta_data like **my_custom_meta**"
916
+ msgstr ""
917
+ "Jedes Standardfeld der WordPress Benutzerdatei und jedes eigene Metadatafeld "
918
+ "kann verwendet werden, sofern es in der CSV-Datei enthalten ist. Wenn eine "
919
+ "Spalte first_name vorhanden ist, kann **first_name** verwendet werden oder "
920
+ "irgend ein Metafeld wie zB **my_custom_meta**"
921
+
922
+ #: importer.php:1029
923
+ msgid "Execute an import of users periodically"
924
+ msgstr "Benutzerimport periodisch ausführen"
925
+
926
+ #: importer.php:1035
927
+ msgid "Path of file that are going to be imported"
928
+ msgstr "Pfad zu den Dateien, die importiert werden sollen"
929
+
930
+ #: importer.php:1037 importer.php:1102
931
+ msgid "Insert complete path to the file"
932
+ msgstr "Kompletten Pfad angeben"
933
+
934
+ #: importer.php:1042
935
+ msgid "Period"
936
+ msgstr "Wiederholung"
937
+
938
+ #: importer.php:1045
939
+ msgid "Hourly"
940
+ msgstr "Stündlich"
941
+
942
+ #: importer.php:1046
943
+ msgid "Twicedaily"
944
+ msgstr "Zweimal pro Tag"
945
+
946
+ #: importer.php:1047
947
+ msgid "Daily"
948
+ msgstr "Täglich"
949
+
950
+ #: importer.php:1049
951
+ msgid "How often the event should reoccur?"
952
+ msgstr "Wie oft soll der Import stattfinden?"
953
+
954
+ #: importer.php:1053
955
+ msgid "Activate periodical import?"
956
+ msgstr "Periodischen Import aktivieren?"
957
+
958
+ #: importer.php:1059
959
+ msgid "Send mail when using periodical import?"
960
+ msgstr "Email nach periodischem Import versenden?"
961
+
962
+ #: importer.php:1065
963
+ msgid "Send mail also to users that are being updated?"
964
+ msgstr "Email auch an Benutzer, die adaptiert wurden?"
965
+
966
+ #: importer.php:1071
967
+ msgid "Delete users that are not present in the CSV?"
968
+ msgstr "Benutzer, die nicht in der CSV-Datei enthalten sind, löschen?"
969
+
970
+ #: importer.php:1091
971
+ msgid "Which role would be used to import users?"
972
+ msgstr "Welche Role soll beim Import zugewiesen werden?"
973
+
974
+ #: importer.php:1095
975
+ msgid "Move file after import?"
976
+ msgstr "Datei nach Import verschieben?"
977
+
978
+ #: importer.php:1108
979
+ msgid "Last actions of schedule task"
980
+ msgstr "Letzte zeitgesteuerte Ausführung"
981
+
982
+ #: importer.php:1114
983
+ msgid "Mail sending"
984
+ msgstr "Mailversand"
985
+
986
+ #: importer.php:1115
987
+ msgid ""
988
+ "Please take care: for this option, cron import, mail sending is not "
989
+ "available in this version (if you need it"
990
+ msgstr ""
991
+ "Achtung: Für diiese Option, zeitgesteuerter Import, ist die Funktion "
992
+ "Mailversand in dieser Version nicht verfügbar (wenn sie benötigt wird"
993
+
994
+ #: importer.php:1115
995
+ msgid "talk with us"
996
+ msgstr "kontaktieren Sie uns"
997
+
998
+ #: importer.php:1119
999
+ msgid "Save schedule options"
1000
+ msgstr "Zeitsteuerungsoptionen speichern"
1001
+
1002
+ #: importer.php:1126
1003
+ msgid ""
1004
+ "Are you sure to delete all users that are not present in the CSV? This "
1005
+ "action cannot be undone."
1006
+ msgstr ""
1007
+ "Wirklich alle Benutzer, die nicht in der CSV-Datei enthalten sind, löschen? "
1008
+ "Diese Aktion kann nicht zurückgenommen werden."
1009
+
1010
+ #: importer.php:1149
1011
+ msgid "Do you like it?"
1012
+ msgstr "Gefällt es Dir?"
1013
+
1014
+ #: importer.php:1152
1015
+ msgid "buy me a coffee"
1016
+ msgstr "zahl mir einen Kaffee"
1017
+
1018
+ #: importer.php:1153 importer.php:1173
1019
+ msgid "Hi! we are"
1020
+ msgstr "Hi! Wir sind"
1021
+
1022
+ #: importer.php:1153 importer.php:1173
1023
+ msgid "and"
1024
+ msgstr "und"
1025
+
1026
+ #: importer.php:1153 importer.php:1173
1027
+ msgid "from"
1028
+ msgstr "von"
1029
+
1030
+ #: importer.php:1153 importer.php:1173
1031
+ msgid "developers of this plugin."
1032
+ msgstr "Entwickler dieses Plugins."
1033
+
1034
+ #: importer.php:1154
1035
+ msgid ""
1036
+ "We have been spending many hours to develop this plugin. <br>If you like and "
1037
+ "use this plugin, you can <strong>buy us a cup of coffee</strong>."
1038
+ msgstr ""
1039
+ "Wir haben viele Stunden in die Entwicklung investiert. <br>Wenn es dir "
1040
+ "gefällt, zahl uns <strong>eine Tasse Kaffee</strong>."
1041
+
1042
+ #: importer.php:1158
1043
+ msgid "PayPal – The safer, easier way to pay online."
1044
+ msgstr "PayPal – der sicherere, einfachere Weg, online zu bezahlen."
1045
+
1046
+ #: importer.php:1170
1047
+ msgid "Need help with WordPress or WooCommerce?"
1048
+ msgstr "Brauchst du Hilfe zu WordPress oder WooCommerce?"
1049
+
1050
+ #: importer.php:1174
1051
+ msgid ""
1052
+ "We work everyday with WordPress and WooCommerce, if you need help hire us, "
1053
+ "send us a message to"
1054
+ msgstr ""
1055
+ "Wir arbeiten täglich mit WordPress und WooCommerce, wenn du Hilfe benötigst, "
1056
+ "beauftrage uns, sende eine Nachricht an"
1057
+
1058
+ #: import-users-from-csv-with-meta.php:51
1059
+ #: import-users-from-csv-with-meta.php:198
1060
+ msgid "Welcome to"
1061
+ msgstr "Willkommen bei"
1062
+
1063
+ #: import-users-from-csv-with-meta.php:52
1064
+ #: import-users-from-csv-with-meta.php:195
1065
+ msgid "Welcome,"
1066
+ msgstr "Willkommen,"
1067
+
1068
+ #: import-users-from-csv-with-meta.php:52
1069
+ #: import-users-from-csv-with-meta.php:195
1070
+ msgid "Your data to login in this site is:"
1071
+ msgstr "Deine Daten zum Login sind:"
1072
+
1073
+ #: import-users-from-csv-with-meta.php:52
1074
+ #: import-users-from-csv-with-meta.php:195
1075
+ msgid "URL to login"
1076
+ msgstr "URL zum Login"
1077
+
1078
+ #: import-users-from-csv-with-meta.php:96
1079
+ msgid "Insert users massively (CSV)"
1080
+ msgstr "Massenimport von Benutzers (CSV)"
1081
+
1082
+ #: import-users-from-csv-with-meta.php:97
1083
+ msgid "SMTP Configuration"
1084
+ msgstr "SMTP Konfiguration"
1085
+
1086
+ #: import-users-from-csv-with-meta.php:103
1087
+ #: import-users-from-csv-with-meta.php:202
1088
+ msgid "Donate"
1089
+ msgstr "Spenden"
1090
+
1091
+ #: import-users-from-csv-with-meta.php:104
1092
+ msgid "Premium support"
1093
+ msgstr "Premium Support"
1094
+
1095
+ #: import-users-from-csv-with-meta.php:105
1096
+ msgid "Premium plugins"
1097
+ msgstr "Premium Plugins"
1098
+
1099
+ #: import-users-from-csv-with-meta.php:202
1100
+ msgid "Customs columns loaded"
1101
+ msgstr "Benutzerdefinierte Spalten geladen"
1102
+
1103
+ #: import-users-from-csv-with-meta.php:202
1104
+ msgid "Cron import"
1105
+ msgstr "Zeitgesteuerter Import"
1106
+
1107
+ #: import-users-from-csv-with-meta.php:202
1108
+ msgid "Shop"
1109
+ msgstr "Shop"
1110
+
1111
+ #: import-users-from-csv-with-meta.php:202
1112
+ msgid "Hire an expert"
1113
+ msgstr "Beauftrage einen Experten"
1114
+
1115
+ #: import-users-from-csv-with-meta.php:242
1116
+ msgid "Error, we cannot find the file"
1117
+ msgstr "Fehler, die Datei wurde nicht gefunden"
1118
+
1119
+ #: import-users-from-csv-with-meta.php:286
1120
+ msgid "Unable to write to directory. Is this directory writable by the server?"
1121
+ msgstr ""
1122
+ "Verzeichnis ist nicht beschreibbar. Ist das Verzeichnis durch den Server "
1123
+ "beschreibbar?"
1124
+
1125
+ #: import-users-from-csv-with-meta.php:294
1126
+ msgid "Error, the file"
1127
+ msgstr "Fehler, die Datei"
1128
+
1129
+ #: import-users-from-csv-with-meta.php:294
1130
+ msgid "could not moved to"
1131
+ msgstr "konnte nicht verschoben werden nach"
1132
+
1133
+ #: import-users-from-csv-with-meta.php:323
1134
+ msgid "Mail template updated correctly"
1135
+ msgstr "Mailvorlage korrekt angepasst"
1136
+
1137
+ #: import-users-from-csv-with-meta.php:370
1138
+ msgid "Settings updated correctly"
1139
+ msgstr "Einstellungen korrekt angepasst"
1140
+
1141
+ #: import-users-from-csv-with-meta.php:376
1142
+ msgid "Import cron task starts at"
1143
+ msgstr "Zeitgesteuerter Import beginnt um"
1144
+
1145
+ #: import-users-from-csv-with-meta.php:397
1146
+ msgid "--Finished at"
1147
+ msgstr "--Beendet um"
1148
+
1149
+ #: import-users-from-csv-with-meta.php:506
1150
+ msgid "You are not an adminstrator"
1151
+ msgstr "Du bist kein Administrator"
trunk/languages/import-users-from-csv-with-meta-fr_FR.mo ADDED
Binary file
trunk/languages/import-users-from-csv-with-meta-fr_FR.po ADDED
@@ -0,0 +1,1188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WordPress Blank Pot
2
+ # Copyright (C) 2014 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WordPress Blank Pot v1.0.0\n"
7
+ "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
8
+ "POT-Creation-Date: 2016-11-05 10:32+0100\n"
9
+ "PO-Revision-Date: \n"
10
+ "Language-Team: Your Team <translations@example.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
19
+ "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
20
+ "X-Poedit-Basepath: ..\n"
21
+ "X-Generator: Poedit 1.8.7\n"
22
+ "Last-Translator: FreePixel <contact@freepixel.net>\n"
23
+ "Language: fr_FR\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: smtp.php:26 smtp.php:245
27
+ msgid "Send Test"
28
+ msgstr "Envoyer un courriel de test"
29
+
30
+ #: smtp.php:40
31
+ msgid "Test mail to "
32
+ msgstr "Tester le courriel pour"
33
+
34
+ #: smtp.php:41
35
+ msgid ""
36
+ "This is a test email generated by the Import User From CSV With Meta "
37
+ "WordPress plugin."
38
+ msgstr ""
39
+ "Il s'agit d'un test de courrier électronique généré par l'utilisateur "
40
+ "d'importation de CSV avec l’extension Meta WordPress."
41
+
42
+ #: smtp.php:79
43
+ msgid "Message sent successfully"
44
+ msgstr "Message envoyé avec succès"
45
+
46
+ #: smtp.php:83
47
+ msgid "Test Message Sent"
48
+ msgstr "Message de test envoyé"
49
+
50
+ #: smtp.php:84
51
+ msgid "The result was:"
52
+ msgstr "Le résultat est :"
53
+
54
+ #: smtp.php:86
55
+ msgid "The full debugging output is shown below:"
56
+ msgstr "La sortie de débogage complète est montrée ci-dessous :"
57
+
58
+ #: smtp.php:88
59
+ msgid "The SMTP debugging output is shown below:"
60
+ msgstr "La sortie de débogage SMTP est illustrée ci-dessous :"
61
+
62
+ #: smtp.php:119
63
+ msgid "Import User From CSV With Meta - SMTP server options"
64
+ msgstr ""
65
+ "Importer un utilisateur à partir de CSV avec Meta - Options du serveur SMTP"
66
+
67
+ #: smtp.php:123
68
+ msgid "Global options"
69
+ msgstr "Options globales"
70
+
71
+ #: smtp.php:124
72
+ msgid ""
73
+ "Do you want to use your own SMTP settings for this plugin or the WordPress "
74
+ "settings."
75
+ msgstr ""
76
+ "Voulez-vous utiliser vos propres paramètres SMTP pour cette extension ou les "
77
+ "paramètres WordPress."
78
+
79
+ #: smtp.php:128
80
+ msgid "Settings"
81
+ msgstr "Paramètres"
82
+
83
+ #: smtp.php:131
84
+ msgid "Use plugin SMTP settings"
85
+ msgstr "Utiliser les paramètres SMTP de l’extension"
86
+
87
+ #: smtp.php:133
88
+ msgid "Use this settings to send mail."
89
+ msgstr "Utilisez ces paramètres pour envoyer les courriels."
90
+
91
+ #: smtp.php:135
92
+ msgid "Use WordPress general settings to send mail."
93
+ msgstr "Utilisez les paramètres généraux WordPress pour envoyer les courriels."
94
+
95
+ #: smtp.php:143
96
+ msgid "From Email"
97
+ msgstr "Courriel source de l’envoi"
98
+
99
+ #: smtp.php:145
100
+ msgid ""
101
+ "You can specify the email address that emails should be sent from. If you "
102
+ "leave this blank, the default email will be used."
103
+ msgstr ""
104
+ "Vous pouvez spécifier l'adresse courriel à laquelle les messages doivent "
105
+ "être envoyés. Si vous laissez cette case vide, le courriel admin par défaut "
106
+ "sera utilisé."
107
+
108
+ #: smtp.php:145
109
+ msgid ""
110
+ "<strong>Please Note:</strong> You appear to be using a version of WordPress "
111
+ "prior to 2.3. Please ignore the From Name field and instead enter Name&lt;"
112
+ "email@domain.com&gt; in this field."
113
+ msgstr ""
114
+ "<strong>Remarque :</strong> Vous semblez utiliser une version de WordPress < "
115
+ "2.3. Veuillez ignorer le champ de nom et entrez le nom&lt;email@domaine."
116
+ "com&gt; dans ce champ."
117
+
118
+ #: smtp.php:148
119
+ msgid "From Name"
120
+ msgstr "Nom de l’envoyeur"
121
+
122
+ #: smtp.php:150
123
+ msgid ""
124
+ "You can specify the name that emails should be sent from. If you leave this "
125
+ "blank, the emails will be sent from WordPress."
126
+ msgstr ""
127
+ "Vous pouvez spécifier le nom duquel les courriels doivent être envoyés. Si "
128
+ "vous laissez ce champ vide, les courriels seront envoyés à partir de nom "
129
+ "admin WordPress."
130
+
131
+ #: smtp.php:156 smtp.php:159
132
+ msgid "Mailer"
133
+ msgstr "Mailer"
134
+
135
+ #: smtp.php:161
136
+ msgid "Send emails of this plugin via SMTP."
137
+ msgstr "Envoyez des emails de cette extension via SMTP."
138
+
139
+ #: smtp.php:163
140
+ msgid "Use the PHP mail() function to send emails."
141
+ msgstr "Utilisez la fonction PHP mail() pour envoyer des courriels."
142
+
143
+ #: smtp.php:171 smtp.php:174
144
+ msgid "Return Path"
145
+ msgstr "Chemin de retour"
146
+
147
+ #: smtp.php:176
148
+ msgid "Set the return-path to match the From Email"
149
+ msgstr "Définissez le courriel pour correspondre à De"
150
+
151
+ #: smtp.php:182
152
+ msgid "SMTP Options"
153
+ msgstr "Options SMTP"
154
+
155
+ #: smtp.php:183
156
+ msgid "These options only apply if you have chosen to send mail by SMTP above."
157
+ msgstr ""
158
+ "Ces options s'appliquent uniquement si vous avez choisi d'envoyer des "
159
+ "messages par SMTP ci-dessus."
160
+
161
+ #: smtp.php:187
162
+ msgid "SMTP Host"
163
+ msgstr "Hôte SMTP"
164
+
165
+ #: smtp.php:191
166
+ msgid "SMTP Port"
167
+ msgstr "Port SMTP"
168
+
169
+ #: smtp.php:195 smtp.php:198
170
+ msgid "Encryption"
171
+ msgstr "Chiffrement"
172
+
173
+ #: smtp.php:200
174
+ msgid "No encryption."
175
+ msgstr "Pas de chiffrement."
176
+
177
+ #: smtp.php:202
178
+ msgid "Use SSL encryption."
179
+ msgstr "Utiliser le chiffrage SSL."
180
+
181
+ #: smtp.php:204
182
+ msgid ""
183
+ "Use TLS encryption. This is not the same as STARTTLS. For most servers SSL "
184
+ "is the recommended option."
185
+ msgstr ""
186
+ "Utilisez le chiffrage TLS. Ce n'est pas la même chose que STARTTLS. Pour la "
187
+ "plupart des serveurs l'option SSL est recommandée."
188
+
189
+ #: smtp.php:208
190
+ msgid "Authentication"
191
+ msgstr "Authentification"
192
+
193
+ #: smtp.php:211
194
+ msgid "No: Do not use SMTP authentication."
195
+ msgstr "Non : ne pas utiliser l'authentification SMTP."
196
+
197
+ #: smtp.php:213
198
+ msgid "Yes: Use SMTP authentication."
199
+ msgstr "Oui : utiliser l'authentification SMTP."
200
+
201
+ #: smtp.php:214
202
+ msgid "If this is set to no, the values below are ignored."
203
+ msgstr ""
204
+ "Si cette valeur est définie sur non, les valeurs ci-dessous sont ignorées."
205
+
206
+ #: smtp.php:218 importer.php:830 import-users-from-csv-with-meta.php:52
207
+ #: import-users-from-csv-with-meta.php:195
208
+ msgid "Username"
209
+ msgstr "Nom d’utilisateur"
210
+
211
+ #: smtp.php:222 import-users-from-csv-with-meta.php:195
212
+ msgid "Password"
213
+ msgstr "Mot de passe"
214
+
215
+ #: smtp.php:227
216
+ msgid "Save Changes"
217
+ msgstr "Sauvegarder les changements"
218
+
219
+ #: smtp.php:234
220
+ msgid "Send a Test Email"
221
+ msgstr "Envoyer un courriel de test"
222
+
223
+ #: smtp.php:240
224
+ msgid "To:"
225
+ msgstr "A :"
226
+
227
+ #: smtp.php:242
228
+ msgid ""
229
+ "Type an email address here and then click Send Test to generate a test email."
230
+ msgstr ""
231
+ "Entrez une adresse courriel ici, puis cliquez sur Envoyer un test pour "
232
+ "générer un courriel de test."
233
+
234
+ #: importer.php:60
235
+ msgid "Ready to registers"
236
+ msgstr "Prêt à enregistrer"
237
+
238
+ #: importer.php:61
239
+ msgid "First row represents the form of sheet"
240
+ msgstr "La première rangée représente la forme de la feuille"
241
+
242
+ #: importer.php:88
243
+ msgid "File must contain at least 2 columns: username and email"
244
+ msgstr ""
245
+ "Le fichier doit contenir au moins 2 colonnes : nom d'utilisateur et adresse "
246
+ "courriel"
247
+
248
+ #: importer.php:116
249
+ msgid "Inserting and updating data"
250
+ msgstr "Insertion et mise à jour de données"
251
+
252
+ #: importer.php:118
253
+ msgid "Row"
254
+ msgstr "Rangée"
255
+
256
+ #: importer.php:123
257
+ msgid "Row number"
258
+ msgstr "Numéro de rangée"
259
+
260
+ #: importer.php:123
261
+ msgid "does not have the same columns than the header, we are going to skip"
262
+ msgstr "n’a pas les mêmes colonnes que l'en-tête, nous allons abandonner"
263
+
264
+ #: importer.php:174
265
+ msgid "Problems with ID"
266
+ msgstr "Problèmes avec l’ID"
267
+
268
+ #: importer.php:174
269
+ msgid ""
270
+ "username is not the same in the CSV and in database, we are going to skip."
271
+ msgstr ""
272
+ "nom d'utilisateur n'est pas le même dans le CSV et dans la base de données, "
273
+ "nous allons abandonner."
274
+
275
+ #: importer.php:222
276
+ msgid "User already exists as:"
277
+ msgstr "L'utilisateur existe déjà comme :"
278
+
279
+ #: importer.php:222
280
+ msgid "(in this CSV file is called:"
281
+ msgstr "(dans ce fichier CSV est appelé :"
282
+
283
+ #: importer.php:248
284
+ msgid "Problems with user:"
285
+ msgstr "Problèmes avec l'utilisateur :"
286
+
287
+ #: importer.php:248
288
+ msgid ", we are going to skip. \\r\\nError: "
289
+ msgstr ", nous allons abandonner. \\r\\nErreur : "
290
+
291
+ #: importer.php:368
292
+ msgid "Password has not been changed"
293
+ msgstr "Le mot de passe n'a pas été modifié"
294
+
295
+ #: importer.php:437
296
+ msgid "Process finished you can go"
297
+ msgstr "Processus terminé, vous pouvez aller"
298
+
299
+ #: importer.php:437
300
+ msgid "here to see results"
301
+ msgstr "Ici pour voir les résultats"
302
+
303
+ #: importer.php:452
304
+ msgid "You are not allowed to see this content."
305
+ msgstr "Vous n'êtes pas autorisé à voir ce contenu."
306
+
307
+ #: importer.php:498
308
+ msgid "Click to open/close"
309
+ msgstr "Cliquez pour ouvrir/fermer"
310
+
311
+ #: importer.php:502
312
+ msgid "Old CSV files uploaded"
313
+ msgstr "Anciens fichiers CSV téléchargés"
314
+
315
+ #: importer.php:505
316
+ msgid ""
317
+ "For security reasons you should delete this files, probably they would be "
318
+ "visible in the Internet if a bot or someone discover the URL. You can delete "
319
+ "each file or maybe you want delete all CSV files you have uploaded:"
320
+ msgstr ""
321
+ "Pour des raisons de sécurité, vous devez supprimer ces fichiers, ils "
322
+ "seraient probablement visibles sur Internet si un robot ou quelqu'un "
323
+ "découvre l'URL. Vous pouvez supprimer chaque fichier ou peut-être supprimer "
324
+ "tous les fichiers CSV que vous avez téléchargés :"
325
+
326
+ #: importer.php:506
327
+ msgid "Delete all CSV files uploaded"
328
+ msgstr "Supprimer tous les fichiers CSV téléchargés"
329
+
330
+ #: importer.php:516
331
+ msgid "Delete"
332
+ msgstr "Supprimer"
333
+
334
+ #: importer.php:525
335
+ msgid ""
336
+ "File must contain at least <strong>2 columns: username and email</strong>. "
337
+ "These should be the first two columns and it should be placed <strong>in "
338
+ "this order: username and email</strong>. If there are more columns, this "
339
+ "plugin will manage it automatically."
340
+ msgstr ""
341
+ "Le fichier doit contenir au moins <strong>2 colonnes : nom d'utilisateur et "
342
+ "courriel</strong>. Ceux-ci doivent être les deux premières colonnes et il "
343
+ "doivent être placé <strong>dans cet ordre : nom d'utilisateur et courriel</"
344
+ "strong>. S'il y a plus de colonnes, cette extension va les gérer "
345
+ "automatiquement."
346
+
347
+ #: importer.php:526
348
+ msgid ""
349
+ "Please, read carefully how <strong>passwords are managed</strong> and also "
350
+ "take note about capitalization, this plugin is <strong>case sensitive</"
351
+ "strong>."
352
+ msgstr ""
353
+ "Merci de lire attentivement comment <strong>les mots de passe sont gérés</"
354
+ "strong> et prenez également note des majuscules, cette extension est "
355
+ "<strong>sensible à la casse</strong>."
356
+
357
+ #: importer.php:529 import-users-from-csv-with-meta.php:96
358
+ #: import-users-from-csv-with-meta.php:202
359
+ msgid "Import users from CSV"
360
+ msgstr "Importer des utilisateurs à partir de CSV"
361
+
362
+ #: importer.php:539
363
+ msgid "Update existing users?"
364
+ msgstr "Mettre à jour les utilisateurs existants ?"
365
+
366
+ #: importer.php:542 importer.php:571
367
+ msgid "Yes"
368
+ msgstr "Oui"
369
+
370
+ #: importer.php:543 importer.php:570
371
+ msgid "No"
372
+ msgstr "Non"
373
+
374
+ #: importer.php:549 importer.php:1077
375
+ msgid "Role"
376
+ msgstr "Rôle"
377
+
378
+ #: importer.php:562
379
+ msgid ""
380
+ "If you choose more than one role, the roles would be assigned correctly but "
381
+ "you should use some plugin like <a href=\"https://wordpress.org/plugins/user-"
382
+ "role-editor/\">User Role Editor</a> to manage them."
383
+ msgstr ""
384
+ "Si vous choisissez plus d'un rôle, les rôles seront attribués correctement, "
385
+ "mais vous devriez utiliser une extension comme <a href=\"https://wordpress."
386
+ "org/plugins/user-role-editor/\">User Role Editor</a> pour les gérer."
387
+
388
+ #: importer.php:567
389
+ msgid "Update roles for existing users?"
390
+ msgstr "Mise à jour des rôles pour les utilisateurs existants ?"
391
+
392
+ #: importer.php:577
393
+ msgid "CSV file <span class=\"description\">(required)</span></label>"
394
+ msgstr "Fichier CSV <em>(requis)</em>"
395
+
396
+ #: importer.php:581
397
+ msgid "<em>or you can choose directly a file from your host,"
398
+ msgstr "<em>ou vous pouvez choisir directement un fichier de votre hôte,"
399
+
400
+ #: importer.php:581 importer.php:585
401
+ msgid "click here"
402
+ msgstr "cliquer ici"
403
+
404
+ #: importer.php:584 importer.php:1038 importer.php:1103
405
+ msgid "You have to introduce the path to file, i.e.:"
406
+ msgstr "Vous devez saisir le chemin d'accès au fichier, par exemple :"
407
+
408
+ #: importer.php:585
409
+ msgid "or you can upload it directly from your PC"
410
+ msgstr "ou vous pouvez le télécharger directement depuis votre ordinateur"
411
+
412
+ #: importer.php:591
413
+ msgid "What should the plugin do with empty cells?"
414
+ msgstr "Que doit faire l’extension avec les cellules vides ?"
415
+
416
+ #: importer.php:594
417
+ msgid "Leave the old value for this metadata"
418
+ msgstr "Laisser l'ancienne valeur de ces métadonnées"
419
+
420
+ #: importer.php:595
421
+ msgid "Delete the metadata"
422
+ msgstr "Supprimer les métadonnées"
423
+
424
+ #: importer.php:621
425
+ msgid "BuddyPress users"
426
+ msgstr "Utilisateurs BuddyPress"
427
+
428
+ #: importer.php:622
429
+ msgid ""
430
+ "You can insert any profile from BuddyPress using his name as header. Plugin "
431
+ "will check, before import, which fields are defined in BuddyPress and will "
432
+ "assign it in the update. You can use this fields:"
433
+ msgstr ""
434
+ "Vous pouvez insérer n'importe quel profil de BuddyPress en utilisant son nom "
435
+ "comme en-tête. L’extension vérifiera, avant l'importation, quels champs sont "
436
+ "définis dans BuddyPress et l'affectera dans la mise à jour. Vous pouvez "
437
+ "utiliser les champs suivants :"
438
+
439
+ #: importer.php:626
440
+ msgid ""
441
+ "Remember that all date fields have to be imported using a format like this: "
442
+ "2016-01-01 00:00:00"
443
+ msgstr ""
444
+ "N'oubliez pas que tous les champs de date doivent être importés avec un "
445
+ "format comme celui-ci : 2016-01-01 00:00:00"
446
+
447
+ #: importer.php:628 importer.php:644 importer.php:661 importer.php:677
448
+ msgid "Only for"
449
+ msgstr "Seulement pour"
450
+
451
+ #: importer.php:628 importer.php:644 importer.php:661 importer.php:677
452
+ msgid "users"
453
+ msgstr "utilisateurs"
454
+
455
+ #: importer.php:640
456
+ msgid "Do not activate users"
457
+ msgstr "Ne pas activer les utilisateurs"
458
+
459
+ #: importer.php:641
460
+ msgid "Activate users when they are being imported"
461
+ msgstr "Activer les utilisateurs lors de leur importation"
462
+
463
+ #: importer.php:644
464
+ msgid "WP Members"
465
+ msgstr "Membres WP"
466
+
467
+ #: importer.php:654
468
+ msgid "Approve users at the same time is being created"
469
+ msgstr "Approuver les utilisateurs en même temps que leur création"
470
+
471
+ #: importer.php:657
472
+ msgid "Do not approve users"
473
+ msgstr "Ne pas approuver les utilisateurs"
474
+
475
+ #: importer.php:658
476
+ msgid "Approve users when they are being imported"
477
+ msgstr "Approuver les utilisateurs lors de leur importation"
478
+
479
+ #: importer.php:661
480
+ msgid "New User Approve"
481
+ msgstr "Nouvel utilisateur approuvé"
482
+
483
+ #: importer.php:671
484
+ msgid "Repeated email in different users?"
485
+ msgstr "Courriel répété dans différents utilisateurs ?"
486
+
487
+ #: importer.php:674
488
+ msgid "Not allowed"
489
+ msgstr "Non permis"
490
+
491
+ #: importer.php:675
492
+ msgid "Allowed"
493
+ msgstr "Permis"
494
+
495
+ #: importer.php:677
496
+ msgid "Allow Multiple Accounts"
497
+ msgstr "Autoriser plusieurs comptes"
498
+
499
+ #: importer.php:677
500
+ msgid ""
501
+ "Allow multiple user accounts to be created having the same email address."
502
+ msgstr ""
503
+ "Autoriser la création de plusieurs comptes d'utilisateurs ayant la même "
504
+ "adresse courriel."
505
+
506
+ #: importer.php:686
507
+ msgid "WordPress Access Areas is activated"
508
+ msgstr "Les zones d'accès WordPress sont activées"
509
+
510
+ #: importer.php:688
511
+ msgid "As user of"
512
+ msgstr "En tant qu'utilisateur de"
513
+
514
+ #: importer.php:688
515
+ msgid "WordPress Access Areas"
516
+ msgstr "Zones d'accès WordPress"
517
+
518
+ #: importer.php:688
519
+ msgid "you can use the Access Areas created"
520
+ msgstr "vous pouvez utiliser les zones d'accès créées"
521
+
522
+ #: importer.php:688 importer.php:938
523
+ msgid "here"
524
+ msgstr "par ici"
525
+
526
+ #: importer.php:688
527
+ msgid ""
528
+ "and use this areas in your own CSV file. Please use the column name "
529
+ "<strong>wp-access-areas</strong> and in each row use <strong>the name that "
530
+ "you have used"
531
+ msgstr ""
532
+ "et utilisez ces zones dans votre propre fichier CSV. Veuillez utiliser le "
533
+ "nom de la colonne <strong>wp-access-areas</strong> et utiliser dans chaque "
534
+ "ligne <strong>le nom que vous avez utilisé"
535
+
536
+ #: importer.php:688
537
+ msgid ", like this ones:"
538
+ msgstr ", comme celui-ci :"
539
+
540
+ #: importer.php:697
541
+ msgid ""
542
+ "If you leave this cell empty for some user or the access area indicated "
543
+ "doesn't exist, user won't be assigned to any access area. You can choose "
544
+ "more than one area for each user using pads between them in the same row, i."
545
+ "e.: "
546
+ msgstr ""
547
+ "Si vous laissez cette cellule vide pour un utilisateur ou si la zone d'accès "
548
+ "indiquée n'existe pas, l'utilisateur ne sera affecté à aucune zone d'accès. "
549
+ "Vous pouvez choisir plus d'une zone pour chaque utilisateur en utilisant des "
550
+ "pads entre eux dans la même rangée, par exemple : "
551
+
552
+ #: importer.php:704
553
+ msgid "Send mail"
554
+ msgstr "Envoyer le courriel"
555
+
556
+ #: importer.php:706
557
+ msgid "Do you wish to send a mail with credentials and other data?"
558
+ msgstr ""
559
+ "Voulez-vous envoyer un courriel avec des informations d'identification et "
560
+ "d'autres données ?"
561
+
562
+ #: importer.php:706 importer.php:707
563
+ msgid "yes"
564
+ msgstr "oui"
565
+
566
+ #: importer.php:707
567
+ msgid ""
568
+ "Do you wish to send this mail also to users that are being updated? (not "
569
+ "only to the one which are being created)"
570
+ msgstr ""
571
+ "Voulez-vous envoyer ce courriel également aux utilisateurs qui sont mis à "
572
+ "jour ? (et pas seulement à ceux qui sont créés)"
573
+
574
+ #: importer.php:715
575
+ msgid "Start importing"
576
+ msgstr "Démarrer l’importation"
577
+
578
+ #: importer.php:723
579
+ msgid "Please choose a file"
580
+ msgstr "Veuillez choisir un fichier"
581
+
582
+ #: importer.php:728
583
+ msgid "Please enter a path to the file"
584
+ msgstr "Chemin d'accès au fichier"
585
+
586
+ #: importer.php:733
587
+ msgid "Please select a role"
588
+ msgstr "Veuillez sélectionner un rôle"
589
+
590
+ #: importer.php:740
591
+ msgid "Are you sure to delete this file?"
592
+ msgstr "Voulez-vous vraiment supprimer ce fichier ?"
593
+
594
+ #: importer.php:749
595
+ msgid "There were problems deleting the file, please check file permissions"
596
+ msgstr ""
597
+ "Problèmes pour supprimer le fichier, merci de vérifier les autorisations du "
598
+ "fichier"
599
+
600
+ #: importer.php:751
601
+ msgid "File successfully deleted"
602
+ msgstr "Fichier supprimé avec succès"
603
+
604
+ #: importer.php:759
605
+ msgid ""
606
+ "Are you sure to delete ALL CSV files uploaded? There can be CSV files from "
607
+ "other plugins."
608
+ msgstr ""
609
+ "Voulez-vous vraiment supprimer tous les fichiers CSV téléchargés ? Il peut y "
610
+ "avoir des fichiers CSV à partir d'autres extensions."
611
+
612
+ #: importer.php:767
613
+ msgid "There were problems deleting the files, please check files permissions"
614
+ msgstr "Des problèmes ont été rencontrés lors de la suppression des fichiers."
615
+
616
+ #: importer.php:769
617
+ msgid "Files successfully deleted"
618
+ msgstr "Fichiers supprimés avec succès"
619
+
620
+ #: importer.php:794
621
+ msgid "Custom columns loaded"
622
+ msgstr "Colonnes personnalisées"
623
+
624
+ #: importer.php:798
625
+ msgid "Columns loaded in previous files"
626
+ msgstr "Colonnes chargées dans des fichiers précédents"
627
+
628
+ #: importer.php:799
629
+ msgid ""
630
+ "(if you load another CSV with different columns, the new ones will replace "
631
+ "this list)"
632
+ msgstr ""
633
+ "(Si vous chargez un autre CSV avec des colonnes différentes, les nouvelles "
634
+ "remplacent cette liste)"
635
+
636
+ #: importer.php:808
637
+ msgid "There is no columns loaded yet"
638
+ msgstr "Il n'y a pas de colonnes chargées"
639
+
640
+ #: importer.php:823 import-users-from-csv-with-meta.php:202
641
+ msgid "Documentation"
642
+ msgstr "Documentation"
643
+
644
+ #: importer.php:827
645
+ msgid "Columns position"
646
+ msgstr "Position des colonnes"
647
+
648
+ #: importer.php:828
649
+ msgid ""
650
+ "(Documents should look like the one presented into screenshot. Remember you "
651
+ "should fill the first two columns with the next values)"
652
+ msgstr ""
653
+ "(Les documents doivent ressembler à ceux présentés dans la capture d'écran. "
654
+ "N'oubliez pas que vous devriez remplir les deux premières colonnes avec les "
655
+ "valeurs suivantes)"
656
+
657
+ #: importer.php:831
658
+ msgid "Email"
659
+ msgstr "Courriel"
660
+
661
+ #: importer.php:833
662
+ msgid ""
663
+ "(The next columns are totally customizable and you can use whatever you "
664
+ "want. All rows must contains same columns)"
665
+ msgstr ""
666
+ "(Les colonnes suivantes sont totalement personnalisables et vous pouvez "
667
+ "utiliser ce que vous voulez. Toutes les lignes doivent contenir les mêmes "
668
+ "colonnes)"
669
+
670
+ #: importer.php:834
671
+ msgid "(User profile will be adapted to the kind of data you have selected)"
672
+ msgstr ""
673
+ "(Le profil utilisateur sera adapté au type de données que vous avez "
674
+ "sélectionné)"
675
+
676
+ #: importer.php:835
677
+ msgid ""
678
+ "(If you want to disable the extra profile information, please deactivate "
679
+ "this plugin after make the import)"
680
+ msgstr ""
681
+ "(Si vous souhaitez désactiver les informations de profil supplémentaires, "
682
+ "veuillez désactiver cette extension après avoir fait l'importation)"
683
+
684
+ #: importer.php:839
685
+ msgid "id"
686
+ msgstr "ID"
687
+
688
+ #: importer.php:840
689
+ msgid ""
690
+ "You can use a column called id in order to make inserts or updates of an "
691
+ "user using the ID used by WordPress in the wp_users table. We have two "
692
+ "different cases:"
693
+ msgstr ""
694
+ "Vous pouvez utiliser une colonne appelée ID pour faire des insertions ou des "
695
+ "mises à jour d'un utilisateur utilisant l'ID utilisé par WordPress dans la "
696
+ "table wp_users. Nous avons deux cas différents :"
697
+
698
+ #: importer.php:842
699
+ msgid ""
700
+ "If id <strong>doesn't exist in your users table</strong>: user will be "
701
+ "inserted"
702
+ msgstr ""
703
+ "Si l’ID <strong>n'existe pas dans la table des utilisateurs</strong> : "
704
+ "l'utilisateur sera inséré"
705
+
706
+ #: importer.php:843
707
+ msgid ""
708
+ "If id <strong>exists</strong>: plugin check if username is the same, if yes, "
709
+ "it will update the data, if not, it ignores the cell to avoid problems"
710
+ msgstr ""
711
+ "Si l’ID <strong>existe</strong> : l’extension va vérifier si le nom "
712
+ "d’utilisateur est le même, si oui, il va mettre à jour les données, si non, "
713
+ "il ignore la cellule pour éviter les problèmes"
714
+
715
+ #: importer.php:848
716
+ msgid "Passwords"
717
+ msgstr "Mots de passe"
718
+
719
+ #: importer.php:849
720
+ msgid ""
721
+ "A string that contains user passwords. We have different options for this "
722
+ "case:"
723
+ msgstr ""
724
+ "Chaîne contenant des mots de passe utilisateur. Nous avons différentes "
725
+ "options pour ce cas :"
726
+
727
+ #: importer.php:851
728
+ msgid ""
729
+ "If you <strong>don't create a column for passwords</strong>: passwords will "
730
+ "be generated automatically"
731
+ msgstr ""
732
+ "Si vous <strong>ne créez pas de colonne pour les mots de passe</strong> : "
733
+ "les mots de passe seront générés automatiquement"
734
+
735
+ #: importer.php:852
736
+ msgid ""
737
+ "If you <strong>create a column for passwords</strong>: if cell is empty, "
738
+ "password won't be updated; if cell has a value, it will be used"
739
+ msgstr ""
740
+ "Si vous <strong>créez une colonne pour les mots de passe</strong> : si la "
741
+ "cellule est vide, le mot de passe ne sera pas mis à jour ; Si la cellule a "
742
+ "une valeur, elle sera utilisée"
743
+
744
+ #: importer.php:857
745
+ msgid "WordPress default profile data"
746
+ msgstr "Données de profil par défaut de WordPress"
747
+
748
+ #: importer.php:858
749
+ msgid ""
750
+ "You can use those labels if you want to set data adapted to the WordPress "
751
+ "default user columns (the ones who use the function"
752
+ msgstr ""
753
+ "Vous pouvez utiliser ces étiquettes si vous souhaitez définir des données "
754
+ "adaptées aux colonnes utilisateur par défaut de WordPress (celles qui "
755
+ "utilisent la fonction"
756
+
757
+ #: importer.php:860
758
+ msgid ""
759
+ "A string that contains a URL-friendly name for the user. The default is the "
760
+ "user's username."
761
+ msgstr ""
762
+ "Chaîne contenant un nom familier pour l'utilisateur. La valeur par défaut "
763
+ "est le nom d'utilisateur de l'utilisateur."
764
+
765
+ #: importer.php:861
766
+ msgid "A string containing the user's URL for the user's web site."
767
+ msgstr ""
768
+ "Chaîne contenant l'URL de l'utilisateur pour le site web de l'utilisateur."
769
+
770
+ #: importer.php:862
771
+ msgid ""
772
+ "A string that will be shown on the site. Defaults to user's username. It is "
773
+ "likely that you will want to change this, for both appearance and security "
774
+ "through obscurity (that is if you don't use and delete the default admin "
775
+ "user)."
776
+ msgstr ""
777
+ "La chaîne qui sera affichée sur le site. Par défaut, le nom d'utilisateur de "
778
+ "l'utilisateur. Il est probable que vous voudrez changer cela, à la fois pour "
779
+ "l'aspect et la sécurité par masquage (c'est-à-dire si vous n'utilisez pas et "
780
+ "ne supprimez pas l'utilisateur admin par défaut)."
781
+
782
+ #: importer.php:863
783
+ msgid "The user's nickname, defaults to the user's username."
784
+ msgstr ""
785
+ "Le pseudonyme de l'utilisateur, par défaut, est le nom d'utilisateur de "
786
+ "l'utilisateur."
787
+
788
+ #: importer.php:864
789
+ msgid "The user's first name."
790
+ msgstr "Prénom de l'utilisateur."
791
+
792
+ #: importer.php:865
793
+ msgid "The user's last name."
794
+ msgstr "Nom de l'utilisateur."
795
+
796
+ #: importer.php:866
797
+ msgid "A string containing content about the user."
798
+ msgstr "Chaîne contenant du contenu sur l'utilisateur."
799
+
800
+ #: importer.php:867
801
+ msgid "User's Jabber account."
802
+ msgstr "Compte Jabber de l'utilisateur."
803
+
804
+ #: importer.php:868
805
+ msgid "User's AOL IM account."
806
+ msgstr "Compte AOL IM de l'utilisateur."
807
+
808
+ #: importer.php:869
809
+ msgid "User's Yahoo IM account."
810
+ msgstr "Compte Yahoo IM de l'utilisateur."
811
+
812
+ #: importer.php:870
813
+ msgid "Using the WordPress format for this kind of data Y-m-d H:i:s."
814
+ msgstr "Utilisation du format WordPress pour ce type de données Y-m-d H:i:s."
815
+
816
+ #: importer.php:877
817
+ msgid "WooCommerce is activated"
818
+ msgstr "WooCommerce est activé"
819
+
820
+ #: importer.php:878
821
+ msgid ""
822
+ "You can use those labels if you want to set data adapted to the WooCommerce "
823
+ "default user columns"
824
+ msgstr ""
825
+ "Vous pouvez utiliser ces étiquettes si vous souhaitez définir des données "
826
+ "adaptées aux colonnes utilisateur WooCommerce par défaut"
827
+
828
+ #: importer.php:906
829
+ msgid "Important notice"
830
+ msgstr "Avis important"
831
+
832
+ #: importer.php:907
833
+ msgid ""
834
+ "You can upload as many files as you want, but all must have the same "
835
+ "columns. If you upload another file, the columns will change to the form of "
836
+ "last file uploaded."
837
+ msgstr ""
838
+ "Vous pouvez télécharger autant de fichiers que vous voulez, mais tous "
839
+ "doivent avoir les mêmes colonnes. Si vous téléchargez un autre fichier, les "
840
+ "colonnes changent dans la forme du dernier fichier téléchargé."
841
+
842
+ #: importer.php:910
843
+ msgid "Any question about it"
844
+ msgstr "Toute question à ce sujet"
845
+
846
+ #: importer.php:913
847
+ msgid "Free support (in WordPress forums):"
848
+ msgstr "Support gratuit (dans les forums WordPress) :"
849
+
850
+ #: importer.php:914
851
+ msgid "Premium support (with a quote):"
852
+ msgstr "Assistance Premium (avec un devis) :"
853
+
854
+ #: importer.php:919
855
+ msgid "Example"
856
+ msgstr "Exemple"
857
+
858
+ #: importer.php:920
859
+ msgid "Download this"
860
+ msgstr "Télécharger"
861
+
862
+ #: importer.php:920
863
+ msgid "file"
864
+ msgstr "fichier"
865
+
866
+ #: importer.php:920
867
+ msgid "to test"
868
+ msgstr "pour tester"
869
+
870
+ #: importer.php:936 import-users-from-csv-with-meta.php:202
871
+ msgid "Mail options"
872
+ msgstr "Options de courriel"
873
+
874
+ #: importer.php:938
875
+ msgid "You can set your own SMTP and other mail details"
876
+ msgstr ""
877
+ "Vous pouvez définir <strong>votre propre SMTP</strong> et d'autres détails "
878
+ "de courriel"
879
+
880
+ #: importer.php:943
881
+ msgid "WordPress automatic emails users updated"
882
+ msgstr "Courriels automatiques pour les mises à jour d’utilisateurs"
883
+
884
+ #: importer.php:947
885
+ msgid "Send automattic WordPress emails?"
886
+ msgstr "Envoyer des courriels automatiques WordPress ?"
887
+
888
+ #: importer.php:951
889
+ msgid ""
890
+ "Deactivate WordPress automattic email when an user is updated or his "
891
+ "password is changed"
892
+ msgstr ""
893
+ "Désactiver le courriel automatique lorsqu'un utilisateur est mis à jour ou "
894
+ "que son mot de passe est modifié"
895
+
896
+ #: importer.php:952
897
+ msgid ""
898
+ "Activate WordPress automattic email when an user is updated or his password "
899
+ "is changed"
900
+ msgstr ""
901
+ "Activer le courriel automatique quand un utilisateur est mis à jour ou son "
902
+ "mot de passe est changé"
903
+
904
+ #: importer.php:954
905
+ msgid ""
906
+ "When you update an user or change his password, WordPress prepare and send "
907
+ "automattic email, you can deactivate it here."
908
+ msgstr ""
909
+ "Lorsque vous mettez à jour un utilisateur ou modifiez son mot de passe, "
910
+ "WordPress prépare et envoie un courrier électronique automatique, vous "
911
+ "pouvez le désactiver ici."
912
+
913
+ #: importer.php:962
914
+ msgid "Customize the email that can be sent when importing users"
915
+ msgstr ""
916
+ "Personnaliser le courriel qui peut être envoyé lors de l'importation "
917
+ "d'utilisateurs"
918
+
919
+ #: importer.php:964
920
+ msgid "Mail subject :"
921
+ msgstr "Sujet du courriel :"
922
+
923
+ #: importer.php:972
924
+ msgid "username to login"
925
+ msgstr "nom d'utilisateur pour ce connecter"
926
+
927
+ #: importer.php:973
928
+ msgid "user password"
929
+ msgstr "mot de passe utilisateur"
930
+
931
+ #: importer.php:974
932
+ msgid "current site login url"
933
+ msgstr "URL actuelle de connexion au site"
934
+
935
+ #: importer.php:975
936
+ msgid "lost password url"
937
+ msgstr "URL de mot de passe perdu"
938
+
939
+ #: importer.php:976
940
+ msgid "password reset url"
941
+ msgstr "URL de réinitialisation du mot de passe"
942
+
943
+ #: importer.php:977
944
+ msgid "user email"
945
+ msgstr "courriel utilisateur"
946
+
947
+ #: importer.php:978
948
+ msgid ""
949
+ "You can also use any WordPress user standard field or an own metadata, if "
950
+ "you have used it in your CSV. For example, if you have a first_name column, "
951
+ "you could use **first_name** or any other meta_data like **my_custom_meta**"
952
+ msgstr ""
953
+ "Vous pouvez également utiliser n'importe quel champ standard d'utilisateur "
954
+ "WordPress ou une méta-donnée, si vous l'avez utilisé dans votre CSV. Par "
955
+ "exemple, si vous avez une colonne first_name, vous pouvez utiliser ** "
956
+ "first_name ** ou tout autre meta_data comme ** my_custom_meta **"
957
+
958
+ #: importer.php:1029
959
+ msgid "Execute an import of users periodically"
960
+ msgstr "Exécuter une importation d'utilisateurs périodiquement"
961
+
962
+ #: importer.php:1035
963
+ msgid "Path of file that are going to be imported"
964
+ msgstr "Chemin du fichier qui va être importé"
965
+
966
+ #: importer.php:1037 importer.php:1102
967
+ msgid "Insert complete path to the file"
968
+ msgstr "Insérer le chemin d'accès complet au fichier"
969
+
970
+ #: importer.php:1042
971
+ msgid "Period"
972
+ msgstr "Période"
973
+
974
+ #: importer.php:1045
975
+ msgid "Hourly"
976
+ msgstr "Toutes les heures"
977
+
978
+ #: importer.php:1046
979
+ msgid "Twicedaily"
980
+ msgstr "Deux fois par jour"
981
+
982
+ #: importer.php:1047
983
+ msgid "Daily"
984
+ msgstr "Quotidien"
985
+
986
+ #: importer.php:1049
987
+ msgid "How often the event should reoccur?"
988
+ msgstr "À quelle fréquence l’importation doit se produire ?"
989
+
990
+ #: importer.php:1053
991
+ msgid "Activate periodical import?"
992
+ msgstr "Activer l'importation périodique ?"
993
+
994
+ #: importer.php:1059
995
+ msgid "Send mail when using periodical import?"
996
+ msgstr "Envoyer un courriel lors de l'importation périodique ?"
997
+
998
+ #: importer.php:1065
999
+ msgid "Send mail also to users that are being updated?"
1000
+ msgstr "Envoyer également aux utilisateurs qui sont mis à jour ?"
1001
+
1002
+ #: importer.php:1071
1003
+ msgid "Delete users that are not present in the CSV?"
1004
+ msgstr "Supprimer les utilisateurs qui ne sont pas présents dans le CSV ?"
1005
+
1006
+ #: importer.php:1091
1007
+ msgid "Which role would be used to import users?"
1008
+ msgstr "Quel rôle serait utilisé pour importer des utilisateurs ?"
1009
+
1010
+ #: importer.php:1095
1011
+ msgid "Move file after import?"
1012
+ msgstr "Déplacer le fichier après l'importation ?"
1013
+
1014
+ #: importer.php:1108
1015
+ msgid "Last actions of schedule task"
1016
+ msgstr "Dernières actions de la tâche programmée"
1017
+
1018
+ #: importer.php:1114
1019
+ msgid "Mail sending"
1020
+ msgstr "Envoi automatisé"
1021
+
1022
+ #: importer.php:1115
1023
+ msgid ""
1024
+ "Please take care: for this option, cron import, mail sending is not "
1025
+ "available in this version (if you need it"
1026
+ msgstr ""
1027
+ "Veuillez prendre note : pour l’option d’importation automatique, l'envoi de "
1028
+ "courrier n'est pas disponible dans cette version (si vous en avez besoin"
1029
+
1030
+ #: importer.php:1115
1031
+ msgid "talk with us"
1032
+ msgstr "parlez avec nous"
1033
+
1034
+ #: importer.php:1119
1035
+ msgid "Save schedule options"
1036
+ msgstr "Enregistrer les options de planification"
1037
+
1038
+ #: importer.php:1126
1039
+ msgid ""
1040
+ "Are you sure to delete all users that are not present in the CSV? This "
1041
+ "action cannot be undone."
1042
+ msgstr ""
1043
+ "Êtes-vous sûr de supprimer tous les utilisateurs qui ne sont pas présents "
1044
+ "dans le CSV ? Cette action ne peut pas être annulée."
1045
+
1046
+ #: importer.php:1149
1047
+ msgid "Do you like it?"
1048
+ msgstr "Vous aimez cette extension ?"
1049
+
1050
+ #: importer.php:1152
1051
+ msgid "buy me a coffee"
1052
+ msgstr "payez moi un café"
1053
+
1054
+ #: importer.php:1153 importer.php:1173
1055
+ msgid "Hi! we are"
1056
+ msgstr "Bonjour ! Nous sommes"
1057
+
1058
+ #: importer.php:1153 importer.php:1173
1059
+ msgid "and"
1060
+ msgstr "et"
1061
+
1062
+ #: importer.php:1153 importer.php:1173
1063
+ msgid "from"
1064
+ msgstr "de"
1065
+
1066
+ #: importer.php:1153 importer.php:1173
1067
+ msgid "developers of this plugin."
1068
+ msgstr "développeurs de cette extension."
1069
+
1070
+ #: importer.php:1154
1071
+ msgid ""
1072
+ "We have been spending many hours to develop this plugin. <br>If you like and "
1073
+ "use this plugin, you can <strong>buy us a cup of coffee</strong>."
1074
+ msgstr ""
1075
+ "Nous avons passé plusieurs heures à développer cette extension. <br>Si vous "
1076
+ "aimez et utilisez cette extension, vous pourriez au moins <strong>nous payer "
1077
+ "un café</strong>."
1078
+
1079
+ #: importer.php:1158
1080
+ msgid "PayPal – The safer, easier way to pay online."
1081
+ msgstr "PayPal - La manière la plus sûre et la plus simple de payer en ligne."
1082
+
1083
+ #: importer.php:1170
1084
+ msgid "Need help with WordPress or WooCommerce?"
1085
+ msgstr "Besoin d'aide avec WordPress ou WooCommerce ?"
1086
+
1087
+ #: importer.php:1174
1088
+ msgid ""
1089
+ "We work everyday with WordPress and WooCommerce, if you need help hire us, "
1090
+ "send us a message to"
1091
+ msgstr ""
1092
+ "Nous travaillons tous les jours avec WordPress et WooCommerce, si vous avez "
1093
+ "besoin d'aide, envoyez-nous un message à"
1094
+
1095
+ #: import-users-from-csv-with-meta.php:51
1096
+ #: import-users-from-csv-with-meta.php:198
1097
+ msgid "Welcome to"
1098
+ msgstr "Bienvenue à"
1099
+
1100
+ #: import-users-from-csv-with-meta.php:52
1101
+ #: import-users-from-csv-with-meta.php:195
1102
+ msgid "Welcome,"
1103
+ msgstr "Bienvenue,"
1104
+
1105
+ #: import-users-from-csv-with-meta.php:52
1106
+ #: import-users-from-csv-with-meta.php:195
1107
+ msgid "Your data to login in this site is:"
1108
+ msgstr "Vos données pour vous connecter sur ce site sont les suivantes :"
1109
+
1110
+ #: import-users-from-csv-with-meta.php:52
1111
+ #: import-users-from-csv-with-meta.php:195
1112
+ msgid "URL to login"
1113
+ msgstr "URL de connexion"
1114
+
1115
+ #: import-users-from-csv-with-meta.php:96
1116
+ msgid "Insert users massively (CSV)"
1117
+ msgstr "Insérer des utilisateurs massivement (CSV)"
1118
+
1119
+ #: import-users-from-csv-with-meta.php:97
1120
+ msgid "SMTP Configuration"
1121
+ msgstr "Configuration SMTP"
1122
+
1123
+ #: import-users-from-csv-with-meta.php:103
1124
+ #: import-users-from-csv-with-meta.php:202
1125
+ msgid "Donate"
1126
+ msgstr "Faites un don"
1127
+
1128
+ #: import-users-from-csv-with-meta.php:104
1129
+ msgid "Premium support"
1130
+ msgstr "Assistance Premium"
1131
+
1132
+ #: import-users-from-csv-with-meta.php:105
1133
+ msgid "Premium plugins"
1134
+ msgstr "Extensions Premium"
1135
+
1136
+ #: import-users-from-csv-with-meta.php:202
1137
+ msgid "Customs columns loaded"
1138
+ msgstr "Colonnes personnalisées"
1139
+
1140
+ #: import-users-from-csv-with-meta.php:202
1141
+ msgid "Cron import"
1142
+ msgstr "Automatisation"
1143
+
1144
+ #: import-users-from-csv-with-meta.php:202
1145
+ msgid "Shop"
1146
+ msgstr "Boutique"
1147
+
1148
+ #: import-users-from-csv-with-meta.php:202
1149
+ msgid "Hire an expert"
1150
+ msgstr "Embaucher un expert"
1151
+
1152
+ #: import-users-from-csv-with-meta.php:242
1153
+ msgid "Error, we cannot find the file"
1154
+ msgstr "Erreur, impossible de trouver le fichier"
1155
+
1156
+ #: import-users-from-csv-with-meta.php:286
1157
+ msgid "Unable to write to directory. Is this directory writable by the server?"
1158
+ msgstr ""
1159
+ "Impossible d'écrire dans le répertoire. Ce répertoire est-il accessible en "
1160
+ "écriture par le serveur ?"
1161
+
1162
+ #: import-users-from-csv-with-meta.php:294
1163
+ msgid "Error, the file"
1164
+ msgstr "Erreur, le fichier"
1165
+
1166
+ #: import-users-from-csv-with-meta.php:294
1167
+ msgid "could not moved to"
1168
+ msgstr "ne peut pas être déplacé à"
1169
+
1170
+ #: import-users-from-csv-with-meta.php:323
1171
+ msgid "Mail template updated correctly"
1172
+ msgstr "Modèle de courriel mis à jour correctement"
1173
+
1174
+ #: import-users-from-csv-with-meta.php:370
1175
+ msgid "Settings updated correctly"
1176
+ msgstr "Paramètres mis à jour correctement"
1177
+
1178
+ #: import-users-from-csv-with-meta.php:376
1179
+ msgid "Import cron task starts at"
1180
+ msgstr "La tâche cron d’importation commence à"
1181
+
1182
+ #: import-users-from-csv-with-meta.php:397
1183
+ msgid "--Finished at"
1184
+ msgstr "-- Finis à"
1185
+
1186
+ #: import-users-from-csv-with-meta.php:506
1187
+ msgid "You are not an adminstrator"
1188
+ msgstr "Vous n'êtes pas un administrateur"
trunk/languages/import-users-from-csv-with-meta.pot ADDED
@@ -0,0 +1,1067 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WordPress Blank Pot
2
+ # Copyright (C) 2014 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ #, fuzzy
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WordPress Blank Pot v1.0.0\n"
8
+ "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
9
+ "POT-Creation-Date: 2017-01-24 19:47+0100\n"
10
+ "PO-Revision-Date: \n"
11
+ "Last-Translator: Toni Ginard <toni.ginard@gmail.com>\n"
12
+ "Language-Team: Your Team <translations@example.com>\n"
13
+ "Language: en_US\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
21
+ "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
22
+ "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
23
+ "X-Poedit-Basepath: ..\n"
24
+ "X-Generator: Poedit 1.8.9\n"
25
+ "X-Poedit-SearchPath-0: .\n"
26
+
27
+ #: import-users-from-csv-with-meta.php:51
28
+ #: import-users-from-csv-with-meta.php:204
29
+ msgid "Welcome to"
30
+ msgstr ""
31
+
32
+ #: import-users-from-csv-with-meta.php:52
33
+ #: import-users-from-csv-with-meta.php:201
34
+ msgid "Welcome,"
35
+ msgstr ""
36
+
37
+ #: import-users-from-csv-with-meta.php:52
38
+ #: import-users-from-csv-with-meta.php:201
39
+ msgid "Your data to login in this site is:"
40
+ msgstr ""
41
+
42
+ #: import-users-from-csv-with-meta.php:52
43
+ #: import-users-from-csv-with-meta.php:201
44
+ msgid "URL to login"
45
+ msgstr ""
46
+
47
+ #: import-users-from-csv-with-meta.php:52
48
+ #: import-users-from-csv-with-meta.php:201 importer.php:834 smtp.php:218
49
+ msgid "Username"
50
+ msgstr ""
51
+
52
+ #: import-users-from-csv-with-meta.php:102
53
+ msgid "Insert users massively (CSV)"
54
+ msgstr ""
55
+
56
+ #: import-users-from-csv-with-meta.php:102
57
+ #: import-users-from-csv-with-meta.php:208 importer.php:533
58
+ msgid "Import users from CSV"
59
+ msgstr ""
60
+
61
+ #: import-users-from-csv-with-meta.php:103
62
+ msgid "SMTP Configuration"
63
+ msgstr ""
64
+
65
+ #: import-users-from-csv-with-meta.php:109
66
+ #: import-users-from-csv-with-meta.php:208
67
+ msgid "Donate"
68
+ msgstr ""
69
+
70
+ #: import-users-from-csv-with-meta.php:110
71
+ msgid "Premium support"
72
+ msgstr ""
73
+
74
+ #: import-users-from-csv-with-meta.php:111
75
+ msgid "Premium plugins"
76
+ msgstr ""
77
+
78
+ #: import-users-from-csv-with-meta.php:201 smtp.php:222
79
+ msgid "Password"
80
+ msgstr ""
81
+
82
+ #: import-users-from-csv-with-meta.php:208
83
+ msgid "Customs columns loaded"
84
+ msgstr ""
85
+
86
+ #: import-users-from-csv-with-meta.php:208 importer.php:940
87
+ msgid "Mail options"
88
+ msgstr ""
89
+
90
+ #: import-users-from-csv-with-meta.php:208 importer.php:827
91
+ msgid "Documentation"
92
+ msgstr ""
93
+
94
+ #: import-users-from-csv-with-meta.php:208
95
+ msgid "Cron import"
96
+ msgstr ""
97
+
98
+ #: import-users-from-csv-with-meta.php:208
99
+ msgid "Shop"
100
+ msgstr ""
101
+
102
+ #: import-users-from-csv-with-meta.php:208
103
+ msgid "Hire an expert"
104
+ msgstr ""
105
+
106
+ #: import-users-from-csv-with-meta.php:248
107
+ msgid "Error, we cannot find the file"
108
+ msgstr ""
109
+
110
+ #: import-users-from-csv-with-meta.php:292
111
+ msgid "Unable to write to directory. Is this directory writable by the server?"
112
+ msgstr ""
113
+
114
+ #: import-users-from-csv-with-meta.php:300
115
+ msgid "Error, the file"
116
+ msgstr ""
117
+
118
+ #: import-users-from-csv-with-meta.php:300
119
+ msgid "could not moved to"
120
+ msgstr ""
121
+
122
+ #: import-users-from-csv-with-meta.php:329
123
+ msgid "Mail template updated correctly"
124
+ msgstr ""
125
+
126
+ #: import-users-from-csv-with-meta.php:382
127
+ msgid "Settings updated correctly"
128
+ msgstr ""
129
+
130
+ #: import-users-from-csv-with-meta.php:388
131
+ msgid "Import cron task starts at"
132
+ msgstr ""
133
+
134
+ #: import-users-from-csv-with-meta.php:409
135
+ msgid "--Finished at"
136
+ msgstr ""
137
+
138
+ #: import-users-from-csv-with-meta.php:535
139
+ msgid "You are not an adminstrator"
140
+ msgstr ""
141
+
142
+ #: importer.php:60
143
+ msgid "Ready to registers"
144
+ msgstr ""
145
+
146
+ #: importer.php:61
147
+ msgid "First row represents the form of sheet"
148
+ msgstr ""
149
+
150
+ #: importer.php:88
151
+ msgid "File must contain at least 2 columns: username and email"
152
+ msgstr ""
153
+
154
+ #: importer.php:116
155
+ msgid "Inserting and updating data"
156
+ msgstr ""
157
+
158
+ #: importer.php:118
159
+ msgid "Row"
160
+ msgstr ""
161
+
162
+ #: importer.php:123
163
+ msgid "Row number"
164
+ msgstr ""
165
+
166
+ #: importer.php:123
167
+ msgid "does not have the same columns than the header, we are going to skip"
168
+ msgstr ""
169
+
170
+ #: importer.php:176
171
+ msgid "Problems with ID"
172
+ msgstr ""
173
+
174
+ #: importer.php:176
175
+ msgid ""
176
+ "username is not the same in the CSV and in database, we are going to skip."
177
+ msgstr ""
178
+
179
+ #: importer.php:223
180
+ msgid "User already exists as:"
181
+ msgstr ""
182
+
183
+ #: importer.php:223
184
+ msgid "(in this CSV file is called:"
185
+ msgstr ""
186
+
187
+ #: importer.php:242
188
+ msgid "Problems with user:"
189
+ msgstr ""
190
+
191
+ #: importer.php:242
192
+ msgid ", we are going to skip. \\r\\nError: "
193
+ msgstr ""
194
+
195
+ #: importer.php:366
196
+ msgid "Password has not been changed"
197
+ msgstr ""
198
+
199
+ #: importer.php:441
200
+ msgid "Process finished you can go"
201
+ msgstr ""
202
+
203
+ #: importer.php:441
204
+ msgid "here to see results"
205
+ msgstr ""
206
+
207
+ #: importer.php:456
208
+ msgid "You are not allowed to see this content."
209
+ msgstr ""
210
+
211
+ #: importer.php:502
212
+ msgid "Click to open/close"
213
+ msgstr ""
214
+
215
+ #: importer.php:506
216
+ msgid "Old CSV files uploaded"
217
+ msgstr ""
218
+
219
+ #: importer.php:509
220
+ msgid ""
221
+ "For security reasons you should delete this files, probably they would be "
222
+ "visible in the Internet if a bot or someone discover the URL. You can delete "
223
+ "each file or maybe you want delete all CSV files you have uploaded:"
224
+ msgstr ""
225
+
226
+ #: importer.php:510
227
+ msgid "Delete all CSV files uploaded"
228
+ msgstr ""
229
+
230
+ #: importer.php:520
231
+ msgid "Delete"
232
+ msgstr ""
233
+
234
+ #: importer.php:529
235
+ msgid ""
236
+ "File must contain at least <strong>2 columns: username and email</strong>. "
237
+ "These should be the first two columns and it should be placed <strong>in "
238
+ "this order: username and email</strong>. If there are more columns, this "
239
+ "plugin will manage it automatically."
240
+ msgstr ""
241
+
242
+ #: importer.php:530
243
+ msgid ""
244
+ "Please, read carefully how <strong>passwords are managed</strong> and also "
245
+ "take note about capitalization, this plugin is <strong>case sensitive</"
246
+ "strong>."
247
+ msgstr ""
248
+
249
+ #: importer.php:543
250
+ msgid "Update existing users?"
251
+ msgstr ""
252
+
253
+ #: importer.php:546 importer.php:575
254
+ msgid "Yes"
255
+ msgstr ""
256
+
257
+ #: importer.php:547 importer.php:574
258
+ msgid "No"
259
+ msgstr ""
260
+
261
+ #: importer.php:553 importer.php:1108
262
+ msgid "Role"
263
+ msgstr ""
264
+
265
+ #: importer.php:566
266
+ msgid ""
267
+ "If you choose more than one role, the roles would be assigned correctly but "
268
+ "you should use some plugin like <a href=\"https://wordpress.org/plugins/user-"
269
+ "role-editor/\">User Role Editor</a> to manage them."
270
+ msgstr ""
271
+
272
+ #: importer.php:571
273
+ msgid "Update roles for existing users?"
274
+ msgstr ""
275
+
276
+ #: importer.php:581
277
+ msgid "CSV file <span class=\"description\">(required)</span></label>"
278
+ msgstr ""
279
+
280
+ #: importer.php:585
281
+ msgid "<em>or you can choose directly a file from your host,"
282
+ msgstr ""
283
+
284
+ #: importer.php:585 importer.php:589
285
+ msgid "click here"
286
+ msgstr ""
287
+
288
+ #: importer.php:588 importer.php:1047 importer.php:1138
289
+ msgid "You have to introduce the path to file, i.e.:"
290
+ msgstr ""
291
+
292
+ #: importer.php:589
293
+ msgid "or you can upload it directly from your PC"
294
+ msgstr ""
295
+
296
+ #: importer.php:595
297
+ msgid "What should the plugin do with empty cells?"
298
+ msgstr ""
299
+
300
+ #: importer.php:598
301
+ msgid "Leave the old value for this metadata"
302
+ msgstr ""
303
+
304
+ #: importer.php:599
305
+ msgid "Delete the metadata"
306
+ msgstr ""
307
+
308
+ #: importer.php:625
309
+ msgid "BuddyPress users"
310
+ msgstr ""
311
+
312
+ #: importer.php:626
313
+ msgid ""
314
+ "You can insert any profile from BuddyPress using his name as header. Plugin "
315
+ "will check, before import, which fields are defined in BuddyPress and will "
316
+ "assign it in the update. You can use this fields:"
317
+ msgstr ""
318
+
319
+ #: importer.php:630
320
+ msgid ""
321
+ "Remember that all date fields have to be imported using a format like this: "
322
+ "2016-01-01 00:00:00"
323
+ msgstr ""
324
+
325
+ #: importer.php:632 importer.php:648 importer.php:665 importer.php:681
326
+ msgid "Only for"
327
+ msgstr ""
328
+
329
+ #: importer.php:632 importer.php:648 importer.php:665 importer.php:681
330
+ msgid "users"
331
+ msgstr ""
332
+
333
+ #: importer.php:644
334
+ msgid "Do not activate users"
335
+ msgstr ""
336
+
337
+ #: importer.php:645
338
+ msgid "Activate users when they are being imported"
339
+ msgstr ""
340
+
341
+ #: importer.php:648
342
+ msgid "WP Members"
343
+ msgstr ""
344
+
345
+ #: importer.php:658
346
+ msgid "Approve users at the same time is being created"
347
+ msgstr ""
348
+
349
+ #: importer.php:661
350
+ msgid "Do not approve users"
351
+ msgstr ""
352
+
353
+ #: importer.php:662
354
+ msgid "Approve users when they are being imported"
355
+ msgstr ""
356
+
357
+ #: importer.php:665
358
+ msgid "New User Approve"
359
+ msgstr ""
360
+
361
+ #: importer.php:675
362
+ msgid "Repeated email in different users?"
363
+ msgstr ""
364
+
365
+ #: importer.php:678
366
+ msgid "Not allowed"
367
+ msgstr ""
368
+
369
+ #: importer.php:679
370
+ msgid "Allowed"
371
+ msgstr ""
372
+
373
+ #: importer.php:681
374
+ msgid "Allow Multiple Accounts"
375
+ msgstr ""
376
+
377
+ #: importer.php:681
378
+ msgid ""
379
+ "Allow multiple user accounts to be created having the same email address."
380
+ msgstr ""
381
+
382
+ #: importer.php:690
383
+ msgid "WordPress Access Areas is activated"
384
+ msgstr ""
385
+
386
+ #: importer.php:692
387
+ msgid "As user of"
388
+ msgstr ""
389
+
390
+ #: importer.php:692
391
+ msgid "WordPress Access Areas"
392
+ msgstr ""
393
+
394
+ #: importer.php:692
395
+ msgid "you can use the Access Areas created"
396
+ msgstr ""
397
+
398
+ #: importer.php:692 importer.php:942
399
+ msgid "here"
400
+ msgstr ""
401
+
402
+ #: importer.php:692
403
+ msgid ""
404
+ "and use this areas in your own CSV file. Please use the column name "
405
+ "<strong>wp-access-areas</strong> and in each row use <strong>the name that "
406
+ "you have used"
407
+ msgstr ""
408
+
409
+ #: importer.php:692
410
+ msgid ", like this ones:"
411
+ msgstr ""
412
+
413
+ #: importer.php:701
414
+ msgid ""
415
+ "If you leave this cell empty for some user or the access area indicated "
416
+ "doesn't exist, user won't be assigned to any access area. You can choose "
417
+ "more than one area for each user using pads between them in the same row, i."
418
+ "e.: "
419
+ msgstr ""
420
+
421
+ #: importer.php:708
422
+ msgid "Send mail"
423
+ msgstr ""
424
+
425
+ #: importer.php:710
426
+ msgid "Do you wish to send a mail with credentials and other data?"
427
+ msgstr ""
428
+
429
+ #: importer.php:710 importer.php:711
430
+ msgid "yes"
431
+ msgstr ""
432
+
433
+ #: importer.php:711
434
+ msgid ""
435
+ "Do you wish to send this mail also to users that are being updated? (not "
436
+ "only to the one which are being created)"
437
+ msgstr ""
438
+
439
+ #: importer.php:719
440
+ msgid "Start importing"
441
+ msgstr ""
442
+
443
+ #: importer.php:727
444
+ msgid "Please choose a file"
445
+ msgstr ""
446
+
447
+ #: importer.php:732
448
+ msgid "Please enter a path to the file"
449
+ msgstr ""
450
+
451
+ #: importer.php:737
452
+ msgid "Please select a role"
453
+ msgstr ""
454
+
455
+ #: importer.php:744
456
+ msgid "Are you sure to delete this file?"
457
+ msgstr ""
458
+
459
+ #: importer.php:753
460
+ msgid "There were problems deleting the file, please check file permissions"
461
+ msgstr ""
462
+
463
+ #: importer.php:755
464
+ msgid "File successfully deleted"
465
+ msgstr ""
466
+
467
+ #: importer.php:763
468
+ msgid ""
469
+ "Are you sure to delete ALL CSV files uploaded? There can be CSV files from "
470
+ "other plugins."
471
+ msgstr ""
472
+
473
+ #: importer.php:771
474
+ msgid "There were problems deleting the files, please check files permissions"
475
+ msgstr ""
476
+
477
+ #: importer.php:773
478
+ msgid "Files successfully deleted"
479
+ msgstr ""
480
+
481
+ #: importer.php:798
482
+ msgid "Custom columns loaded"
483
+ msgstr ""
484
+
485
+ #: importer.php:802
486
+ msgid "Columns loaded in previous files"
487
+ msgstr ""
488
+
489
+ #: importer.php:803
490
+ msgid ""
491
+ "(if you load another CSV with different columns, the new ones will replace "
492
+ "this list)"
493
+ msgstr ""
494
+
495
+ #: importer.php:812
496
+ msgid "There is no columns loaded yet"
497
+ msgstr ""
498
+
499
+ #: importer.php:831
500
+ msgid "Columns position"
501
+ msgstr ""
502
+
503
+ #: importer.php:832
504
+ msgid ""
505
+ "(Documents should look like the one presented into screenshot. Remember you "
506
+ "should fill the first two columns with the next values)"
507
+ msgstr ""
508
+
509
+ #: importer.php:835
510
+ msgid "Email"
511
+ msgstr ""
512
+
513
+ #: importer.php:837
514
+ msgid ""
515
+ "(The next columns are totally customizable and you can use whatever you "
516
+ "want. All rows must contains same columns)"
517
+ msgstr ""
518
+
519
+ #: importer.php:838
520
+ msgid "(User profile will be adapted to the kind of data you have selected)"
521
+ msgstr ""
522
+
523
+ #: importer.php:839
524
+ msgid ""
525
+ "(If you want to disable the extra profile information, please deactivate "
526
+ "this plugin after make the import)"
527
+ msgstr ""
528
+
529
+ #: importer.php:843
530
+ msgid "id"
531
+ msgstr ""
532
+
533
+ #: importer.php:844
534
+ msgid ""
535
+ "You can use a column called id in order to make inserts or updates of an "
536
+ "user using the ID used by WordPress in the wp_users table. We have two "
537
+ "different cases:"
538
+ msgstr ""
539
+
540
+ #: importer.php:846
541
+ msgid ""
542
+ "If id <strong>doesn't exist in your users table</strong>: user will be "
543
+ "inserted"
544
+ msgstr ""
545
+
546
+ #: importer.php:847
547
+ msgid ""
548
+ "If id <strong>exists</strong>: plugin check if username is the same, if yes, "
549
+ "it will update the data, if not, it ignores the cell to avoid problems"
550
+ msgstr ""
551
+
552
+ #: importer.php:852
553
+ msgid "Passwords"
554
+ msgstr ""
555
+
556
+ #: importer.php:853
557
+ msgid ""
558
+ "A string that contains user passwords. We have different options for this "
559
+ "case:"
560
+ msgstr ""
561
+
562
+ #: importer.php:855
563
+ msgid ""
564
+ "If you <strong>don't create a column for passwords</strong>: passwords will "
565
+ "be generated automatically"
566
+ msgstr ""
567
+
568
+ #: importer.php:856
569
+ msgid ""
570
+ "If you <strong>create a column for passwords</strong>: if cell is empty, "
571
+ "password won't be updated; if cell has a value, it will be used"
572
+ msgstr ""
573
+
574
+ #: importer.php:861
575
+ msgid "WordPress default profile data"
576
+ msgstr ""
577
+
578
+ #: importer.php:862
579
+ msgid ""
580
+ "You can use those labels if you want to set data adapted to the WordPress "
581
+ "default user columns (the ones who use the function"
582
+ msgstr ""
583
+
584
+ #: importer.php:864
585
+ msgid ""
586
+ "A string that contains a URL-friendly name for the user. The default is the "
587
+ "user's username."
588
+ msgstr ""
589
+
590
+ #: importer.php:865
591
+ msgid "A string containing the user's URL for the user's web site."
592
+ msgstr ""
593
+
594
+ #: importer.php:866
595
+ msgid ""
596
+ "A string that will be shown on the site. Defaults to user's username. It is "
597
+ "likely that you will want to change this, for both appearance and security "
598
+ "through obscurity (that is if you don't use and delete the default admin "
599
+ "user)."
600
+ msgstr ""
601
+
602
+ #: importer.php:867
603
+ msgid "The user's nickname, defaults to the user's username."
604
+ msgstr ""
605
+
606
+ #: importer.php:868
607
+ msgid "The user's first name."
608
+ msgstr ""
609
+
610
+ #: importer.php:869
611
+ msgid "The user's last name."
612
+ msgstr ""
613
+
614
+ #: importer.php:870
615
+ msgid "A string containing content about the user."
616
+ msgstr ""
617
+
618
+ #: importer.php:871
619
+ msgid "User's Jabber account."
620
+ msgstr ""
621
+
622
+ #: importer.php:872
623
+ msgid "User's AOL IM account."
624
+ msgstr ""
625
+
626
+ #: importer.php:873
627
+ msgid "User's Yahoo IM account."
628
+ msgstr ""
629
+
630
+ #: importer.php:874
631
+ msgid "Using the WordPress format for this kind of data Y-m-d H:i:s."
632
+ msgstr ""
633
+
634
+ #: importer.php:881
635
+ msgid "WooCommerce is activated"
636
+ msgstr ""
637
+
638
+ #: importer.php:882
639
+ msgid ""
640
+ "You can use those labels if you want to set data adapted to the WooCommerce "
641
+ "default user columns"
642
+ msgstr ""
643
+
644
+ #: importer.php:910
645
+ msgid "Important notice"
646
+ msgstr ""
647
+
648
+ #: importer.php:911
649
+ msgid ""
650
+ "You can upload as many files as you want, but all must have the same "
651
+ "columns. If you upload another file, the columns will change to the form of "
652
+ "last file uploaded."
653
+ msgstr ""
654
+
655
+ #: importer.php:914
656
+ msgid "Any question about it"
657
+ msgstr ""
658
+
659
+ #: importer.php:917
660
+ msgid "Free support (in WordPress forums):"
661
+ msgstr ""
662
+
663
+ #: importer.php:918
664
+ msgid "Premium support (with a quote):"
665
+ msgstr ""
666
+
667
+ #: importer.php:923
668
+ msgid "Example"
669
+ msgstr ""
670
+
671
+ #: importer.php:924
672
+ msgid "Download this"
673
+ msgstr ""
674
+
675
+ #: importer.php:924
676
+ msgid "file"
677
+ msgstr ""
678
+
679
+ #: importer.php:924
680
+ msgid "to test"
681
+ msgstr ""
682
+
683
+ #: importer.php:942
684
+ msgid "You can set your own SMTP and other mail details"
685
+ msgstr ""
686
+
687
+ #: importer.php:947
688
+ msgid "WordPress automatic emails users updated"
689
+ msgstr ""
690
+
691
+ #: importer.php:951
692
+ msgid "Send automattic WordPress emails?"
693
+ msgstr ""
694
+
695
+ #: importer.php:955
696
+ msgid ""
697
+ "Deactivate WordPress automattic email when an user is updated or his "
698
+ "password is changed"
699
+ msgstr ""
700
+
701
+ #: importer.php:956
702
+ msgid ""
703
+ "Activate WordPress automattic email when an user is updated or his password "
704
+ "is changed"
705
+ msgstr ""
706
+
707
+ #: importer.php:958
708
+ msgid ""
709
+ "When you update an user or change his password, WordPress prepare and send "
710
+ "automattic email, you can deactivate it here."
711
+ msgstr ""
712
+
713
+ #: importer.php:966
714
+ msgid "Customize the email that can be sent when importing users"
715
+ msgstr ""
716
+
717
+ #: importer.php:968
718
+ msgid "Mail subject :"
719
+ msgstr ""
720
+
721
+ #: importer.php:976
722
+ msgid "username to login"
723
+ msgstr ""
724
+
725
+ #: importer.php:977
726
+ msgid "user password"
727
+ msgstr ""
728
+
729
+ #: importer.php:978
730
+ msgid "current site login url"
731
+ msgstr ""
732
+
733
+ #: importer.php:979
734
+ msgid "lost password url"
735
+ msgstr ""
736
+
737
+ #: importer.php:980
738
+ msgid "password reset url"
739
+ msgstr ""
740
+
741
+ #: importer.php:981
742
+ msgid "user email"
743
+ msgstr ""
744
+
745
+ #: importer.php:982
746
+ msgid ""
747
+ "You can also use any WordPress user standard field or an own metadata, if "
748
+ "you have used it in your CSV. For example, if you have a first_name column, "
749
+ "you could use **first_name** or any other meta_data like **my_custom_meta**"
750
+ msgstr ""
751
+
752
+ #: importer.php:1038
753
+ msgid "Execute an import of users periodically"
754
+ msgstr ""
755
+
756
+ #: importer.php:1044
757
+ msgid "Path of file that are going to be imported"
758
+ msgstr ""
759
+
760
+ #: importer.php:1046 importer.php:1137
761
+ msgid "Insert complete path to the file"
762
+ msgstr ""
763
+
764
+ #: importer.php:1051
765
+ msgid "Period"
766
+ msgstr ""
767
+
768
+ #: importer.php:1054
769
+ msgid "Hourly"
770
+ msgstr ""
771
+
772
+ #: importer.php:1055
773
+ msgid "Twicedaily"
774
+ msgstr ""
775
+
776
+ #: importer.php:1056
777
+ msgid "Daily"
778
+ msgstr ""
779
+
780
+ #: importer.php:1058
781
+ msgid "How often the event should reoccur?"
782
+ msgstr ""
783
+
784
+ #: importer.php:1062
785
+ msgid "Activate periodical import?"
786
+ msgstr ""
787
+
788
+ #: importer.php:1068
789
+ msgid "Send mail when using periodical import?"
790
+ msgstr ""
791
+
792
+ #: importer.php:1074
793
+ msgid "Send mail also to users that are being updated?"
794
+ msgstr ""
795
+
796
+ #: importer.php:1080
797
+ msgid "Delete users that are not present in the CSV?"
798
+ msgstr ""
799
+
800
+ #: importer.php:1089 importer.php:1091
801
+ msgid "Delete posts of deled users without assing to any user"
802
+ msgstr ""
803
+
804
+ #: importer.php:1103
805
+ msgid ""
806
+ "After delete users, we can choose if we want to assign their posts to "
807
+ "another user. Please do not delete them or posts will be deleted."
808
+ msgstr ""
809
+
810
+ #: importer.php:1113 importer.php:1115
811
+ msgid "Disable role assignement in cron import"
812
+ msgstr ""
813
+
814
+ #: importer.php:1126
815
+ msgid "Which role would be used to import users?"
816
+ msgstr ""
817
+
818
+ #: importer.php:1130
819
+ msgid "Move file after import?"
820
+ msgstr ""
821
+
822
+ #: importer.php:1143
823
+ msgid "Auto rename after move?"
824
+ msgstr ""
825
+
826
+ #: importer.php:1150
827
+ msgid ""
828
+ "Your file will be renamed after moved, so you will not lost any version of "
829
+ "it. The way to rename will be append the time stamp using this date format: "
830
+ "YmdHis."
831
+ msgstr ""
832
+
833
+ #: importer.php:1155
834
+ msgid "Last actions of schedule task"
835
+ msgstr ""
836
+
837
+ #: importer.php:1162
838
+ msgid "Save schedule options"
839
+ msgstr ""
840
+
841
+ #: importer.php:1169
842
+ msgid ""
843
+ "Are you sure to delete all users that are not present in the CSV? This "
844
+ "action cannot be undone."
845
+ msgstr ""
846
+
847
+ #: importer.php:1203
848
+ msgid "Do you like it?"
849
+ msgstr ""
850
+
851
+ #: importer.php:1206
852
+ msgid "buy me a coffee"
853
+ msgstr ""
854
+
855
+ #: importer.php:1207 importer.php:1227
856
+ msgid "Hi! we are"
857
+ msgstr ""
858
+
859
+ #: importer.php:1207 importer.php:1227
860
+ msgid "and"
861
+ msgstr ""
862
+
863
+ #: importer.php:1207 importer.php:1227
864
+ msgid "from"
865
+ msgstr ""
866
+
867
+ #: importer.php:1207 importer.php:1227
868
+ msgid "developers of this plugin."
869
+ msgstr ""
870
+
871
+ #: importer.php:1208
872
+ msgid ""
873
+ "We have been spending many hours to develop this plugin. <br>If you like and "
874
+ "use this plugin, you can <strong>buy us a cup of coffee</strong>."
875
+ msgstr ""
876
+
877
+ #: importer.php:1212
878
+ msgid "PayPal – The safer, easier way to pay online."
879
+ msgstr ""
880
+
881
+ #: importer.php:1224
882
+ msgid "Need help with WordPress or WooCommerce?"
883
+ msgstr ""
884
+
885
+ #: importer.php:1228
886
+ msgid ""
887
+ "We work everyday with WordPress and WooCommerce, if you need help hire us, "
888
+ "send us a message to"
889
+ msgstr ""
890
+
891
+ #: smtp.php:26 smtp.php:245
892
+ msgid "Send Test"
893
+ msgstr ""
894
+
895
+ #: smtp.php:40
896
+ msgid "Test mail to "
897
+ msgstr ""
898
+
899
+ #: smtp.php:41
900
+ msgid ""
901
+ "This is a test email generated by the Import User From CSV With Meta "
902
+ "WordPress plugin."
903
+ msgstr ""
904
+
905
+ #: smtp.php:79
906
+ msgid "Message sent successfully"
907
+ msgstr ""
908
+
909
+ #: smtp.php:83
910
+ msgid "Test Message Sent"
911
+ msgstr ""
912
+
913
+ #: smtp.php:84
914
+ msgid "The result was:"
915
+ msgstr ""
916
+
917
+ #: smtp.php:86
918
+ msgid "The full debugging output is shown below:"
919
+ msgstr ""
920
+
921
+ #: smtp.php:88
922
+ msgid "The SMTP debugging output is shown below:"
923
+ msgstr ""
924
+
925
+ #: smtp.php:119
926
+ msgid "Import User From CSV With Meta - SMTP server options"
927
+ msgstr ""
928
+
929
+ #: smtp.php:123
930
+ msgid "Global options"
931
+ msgstr ""
932
+
933
+ #: smtp.php:124
934
+ msgid ""
935
+ "Do you want to use your own SMTP settings for this plugin or the WordPress "
936
+ "settings."
937
+ msgstr ""
938
+
939
+ #: smtp.php:128
940
+ msgid "Settings"
941
+ msgstr ""
942
+
943
+ #: smtp.php:131
944
+ msgid "Use plugin SMTP settings"
945
+ msgstr ""
946
+
947
+ #: smtp.php:133
948
+ msgid "Use this settings to send mail."
949
+ msgstr ""
950
+
951
+ #: smtp.php:135
952
+ msgid "Use WordPress general settings to send mail."
953
+ msgstr ""
954
+
955
+ #: smtp.php:143
956
+ msgid "From Email"
957
+ msgstr ""
958
+
959
+ #: smtp.php:145
960
+ msgid ""
961
+ "You can specify the email address that emails should be sent from. If you "
962
+ "leave this blank, the default email will be used."
963
+ msgstr ""
964
+
965
+ #: smtp.php:145
966
+ msgid ""
967
+ "<strong>Please Note:</strong> You appear to be using a version of WordPress "
968
+ "prior to 2.3. Please ignore the From Name field and instead enter Name&lt;"
969
+ "email@domain.com&gt; in this field."
970
+ msgstr ""
971
+
972
+ #: smtp.php:148
973
+ msgid "From Name"
974
+ msgstr ""
975
+
976
+ #: smtp.php:150
977
+ msgid ""
978
+ "You can specify the name that emails should be sent from. If you leave this "
979
+ "blank, the emails will be sent from WordPress."
980
+ msgstr ""
981
+
982
+ #: smtp.php:156 smtp.php:159
983
+ msgid "Mailer"
984
+ msgstr ""
985
+
986
+ #: smtp.php:161
987
+ msgid "Send emails of this plugin via SMTP."
988
+ msgstr ""
989
+
990
+ #: smtp.php:163
991
+ msgid "Use the PHP mail() function to send emails."
992
+ msgstr ""
993
+
994
+ #: smtp.php:171 smtp.php:174
995
+ msgid "Return Path"
996
+ msgstr ""
997
+
998
+ #: smtp.php:176
999
+ msgid "Set the return-path to match the From Email"
1000
+ msgstr ""
1001
+
1002
+ #: smtp.php:182
1003
+ msgid "SMTP Options"
1004
+ msgstr ""
1005
+
1006
+ #: smtp.php:183
1007
+ msgid "These options only apply if you have chosen to send mail by SMTP above."
1008
+ msgstr ""
1009
+
1010
+ #: smtp.php:187
1011
+ msgid "SMTP Host"
1012
+ msgstr ""
1013
+
1014
+ #: smtp.php:191
1015
+ msgid "SMTP Port"
1016
+ msgstr ""
1017
+
1018
+ #: smtp.php:195 smtp.php:198
1019
+ msgid "Encryption"
1020
+ msgstr ""
1021
+
1022
+ #: smtp.php:200
1023
+ msgid "No encryption."
1024
+ msgstr ""
1025
+
1026
+ #: smtp.php:202
1027
+ msgid "Use SSL encryption."
1028
+ msgstr ""
1029
+
1030
+ #: smtp.php:204
1031
+ msgid ""
1032
+ "Use TLS encryption. This is not the same as STARTTLS. For most servers SSL "
1033
+ "is the recommended option."
1034
+ msgstr ""
1035
+
1036
+ #: smtp.php:208
1037
+ msgid "Authentication"
1038
+ msgstr ""
1039
+
1040
+ #: smtp.php:211
1041
+ msgid "No: Do not use SMTP authentication."
1042
+ msgstr ""
1043
+
1044
+ #: smtp.php:213
1045
+ msgid "Yes: Use SMTP authentication."
1046
+ msgstr ""
1047
+
1048
+ #: smtp.php:214
1049
+ msgid "If this is set to no, the values below are ignored."
1050
+ msgstr ""
1051
+
1052
+ #: smtp.php:227
1053
+ msgid "Save Changes"
1054
+ msgstr ""
1055
+
1056
+ #: smtp.php:234
1057
+ msgid "Send a Test Email"
1058
+ msgstr ""
1059
+
1060
+ #: smtp.php:240
1061
+ msgid "To:"
1062
+ msgstr ""
1063
+
1064
+ #: smtp.php:242
1065
+ msgid ""
1066
+ "Type an email address here and then click Send Test to generate a test email."
1067
+ msgstr ""
trunk/readme.txt ADDED
@@ -0,0 +1,457 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Import users from CSV with meta ===
2
+ Contributors: hornero, carazo
3
+ Donate link: http://paypal.me/codection
4
+ Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
5
+ Requires at least: 3.4
6
+ Tested up to: 4.7.2
7
+ Stable tag: 1.10.6
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ A plugin to import users using CSV files to WP database automatically including custom user meta
12
+
13
+ == Description ==
14
+
15
+ Clean and easy-to-use Import users plugin. It includes custom user meta to be included automatically from a CSV file and delimitation auto-detector. It also is able to send a mail to each user imported and all the meta data imported is ready to edit into user profile.
16
+
17
+ * Import CSV file with users directly to your WordPress
18
+ * Import thousends of users in only some seconds
19
+ * You can also import meta-data like data from WooCommerce customers using the correct meta_keys
20
+ * Send a mail to every new user
21
+ * Use your own
22
+ * You can also update data of each user
23
+ * Assing a role
24
+ * Create a cron task to import users periodically
25
+ * Edit the metadata (you will be able to edit the metadata imported using metakeys directly in the profile of each user)
26
+ * Read our documentation
27
+ * Ask anything in support forum, we try to give the best support
28
+
29
+ In Codection we have more plugins, please take a look to them.
30
+
31
+ * [Clean Login a plugin to create your own register, log in, lost password and update profile forms](https://wordpress.org/plugins/clean-login/) (free)
32
+ * [RedSys Gateway for WooCommerce Pro a plugin to connect your WooCommerce to RedSys](http://codection.com/producto/redsys-gateway-for-woocommerce) (premium)
33
+ * [Ceca Gateway for WooCommerce Pro a plugin to connect your WooCommerce to Ceca](http://codection.com/producto/ceca-gateway-for-woocommerce-pro/) (premium)
34
+ * [BBVA Bancomer for WooCommerce Pro a plugin to connect your WooCommerce to BBVA Bancomer](http://codection.com/producto/bbva-bancomer-mexico-gateway-for-woocommerce-pro/) (premium)
35
+ * [RedSys Button for WordPress a plugin to receive payments using RedSys in WordPress without using WooCommerce](http://codection.com/producto/redsys-button-wordpress/) (premium)
36
+
37
+ ## **Basics**
38
+
39
+ * Import users from a CSV easily
40
+ * And also extra profile information with the user meta data (included in the CSV with your custom fields)
41
+ * Just upload the CSV file (one included as example)
42
+ * All your users will be created/updated with the updated information, and of course including the user meta
43
+ * Autodetect delimiter compatible with `comma , `, `semicolon ; ` and `bar | `
44
+
45
+ ## **Usage**
46
+
47
+ Once the plugin is installed you can use it. Go to Tools menu and there, there will be a section called _Insert users from CSV_. Just choose your CSV file and go!
48
+
49
+ ### **CSV generation**
50
+
51
+ You can generate CSV file with all users inside it, using a standar spreadsheet software like: Microsoft Excel, LibreOffice Calc, OpenOffice Calc or Gnumeric.
52
+
53
+ You have to create the file filled with information (or take it from another database) and you will only have to choose CSV file when you "Save as..." the file. As example, a CSV file is included with the plugin.
54
+
55
+ ### **Some considerations**
56
+
57
+ Plugin will automatically detect:
58
+
59
+ * Charset and set it to **UTF-8** to prevent problems with non-ASCII characters.
60
+ * It also will **auto detect line-ending** to prevent problems with different OS.
61
+ * Finally, it will **detect the delimiter** being used in CSV file ("," or ";" or "|")
62
+
63
+ == Screenshots ==
64
+
65
+ 1. Plugin link from dashboard
66
+ 2. Plugin page
67
+ 3. CSV file structure
68
+ 4. Users imported
69
+ 5. Extra profile information (user meta)
70
+
71
+ == Changelog ==
72
+
73
+ = 1.10.6 =
74
+ * Now you can hide the extra profile fields created with the plugin thanks to Steph O'Brien (Ruddy Good)
75
+
76
+ = 1.10.5 =
77
+ * Now you can import list of elements using :: as separator and it can also be done in BuddyPress profile fields thanks to Jon Eiseman
78
+ * Fixes in SMTP settings
79
+ * SMTP settings now is a new tab
80
+
81
+ = 1.10.4 =
82
+ * Now you can assign BuddyPress groups and assign roles in import thanks to TNTP (tntp.org)
83
+ * Import optimization
84
+ * Readme fixed
85
+
86
+ = 1.10.3.1 =
87
+ * Bug fixed in SMTP settings page
88
+
89
+ = 1.10.3 =
90
+ * Plugin is now prepared for internacionalization using translate.wordpress.org
91
+
92
+ = 1.10.2.2 =
93
+ * German translation fixed thanks to @mfgmicha
94
+ * locale now is considered a data from WordPress user so it won't be shown in profiles
95
+
96
+ = 1.10.2.1 =
97
+ * German translation fixed thanks to @barcelo
98
+ * System compatibility updated
99
+
100
+ = 1.10.2 =
101
+ * New User Approve support fixed thanks to @stephanemartinw (https://wordpress.org/support/topic/new-user-approve-support/#post-8749012)
102
+
103
+ = 1.10.1 =
104
+ * Plugin can now import serialized data.
105
+ * New filter added: $data[$i] = apply_filters( 'pre_acui_import_single_user_single_data', $data[$i], $headers[$i], $i); now you can manage each single data for each user, maybe easier to use than pre_acui_import_single_user_data
106
+
107
+
108
+ = 1.9.9.9 =
109
+ * Now you can automatically rename file after move it. Then you won't lost any file you have imported (thanks to @charlesgodwin)
110
+
111
+ = 1.9.9.8 =
112
+ * Password bug fixed. Now it works as it should (like it is explained in documentation)
113
+
114
+ = 1.9.9.7 =
115
+ * Bug fixed in importer now value 0 is not considered as empty thanks to @lafare (https://wordpress.org/support/topic/importing-values-equal-to-0/#post-8609191)
116
+
117
+ = 1.9.9.6 =
118
+ * From now we are going to keep old versions available in repository
119
+ * We don't delete loaded columns (and fields) when you deactivate the plugin
120
+ * Password is not auto generated when updating user in order to avoid problems (missing password column and update create new passwords and use to create problems)
121
+
122
+ = 1.9.9.5 =
123
+ * Now you can set the email to empty in each row thanks to @sternhagel
124
+
125
+ = 1.9.9.4 =
126
+ * German language added thanks to Wolfgang Kleinrath
127
+ * Added conditional to avoid error on mail sending
128
+
129
+ = 1.9.9.3 =
130
+ * Now you can choose if you want to not assign a role to users when you are making an import cron
131
+
132
+ = 1.9.9.2 =
133
+ * Now you can choose if you want to assign to some user the posts of the users that can be deleted in cron task
134
+
135
+ = 1.9.9.1 =
136
+ * French translation added thanks to @momo-fr
137
+
138
+ = 1.9.9 =
139
+ * Plugin now is localized using i18n thanks to code provided by Toni Ginard @toniginard
140
+
141
+ = 1.9.8.1 =
142
+ * Bug fixed in cron import, nonce conditional check, thanks to Ville Kokkala for showing the bug
143
+
144
+ = 1.9.8 =
145
+ * Password reset url is now available to include in body email thanks to Mary Wheeler (https://wordpress.org/support/users/ransim/)
146
+
147
+ = 1.9.7 =
148
+ * Thanks to Bruce MacPherson we can now choose if we don't want update users roles when importing data if user exist
149
+ * Clearer English thanks to Bruce MacPherson
150
+
151
+ = 1.9.6 =
152
+ * Thanks to Jason Lewis we can now choose if we don't want update users when importing data if user exist
153
+
154
+ = 1.9.5 =
155
+ * Important security fixes added thanks to pluginvulnerabilities.com
156
+
157
+ = 1.9.4.6 =
158
+ * New filter added, thanks to @burton-nerd
159
+
160
+ = 1.9.4.5 =
161
+ * Renamed function to avoid collisions thanks to the message of Jason Lewis
162
+
163
+ = 1.9.4.4 =
164
+ * Fix for the last one, we set true where it was false and vice versa
165
+
166
+ = 1.9.4.3 =
167
+ * We try to make it clear to choose if mails (the one we talked in 1.9.4.2) are being sent or not
168
+
169
+ = 1.9.4.2 =
170
+ * Automatic WordPress emails sending deactivated by default when user is created or updated, thanks to Peter Gariepy
171
+
172
+ = 1.9.4.1 =
173
+ * wpautop added again
174
+
175
+ = 1.9.4 =
176
+ * user_pass can be imported directly hashed thanks to Bad Yogi
177
+
178
+ = 1.9.3 =
179
+ * Now you can move file after cron, thanks to Yme Brugts for supporting this new feature
180
+
181
+ = 1.9.2 =
182
+ * New hook added, thanks to borkenkaefer
183
+
184
+ = 1.9.1 =
185
+ * Fix new feature thanks to bixul ( https://wordpress.org/support/topic/problems-with-user-xxx-error-invalid-user-id?replies=3#post-8572766 )
186
+
187
+ = 1.9 =
188
+ * New feature thanks to Ken Hagen - V3 Insurance Partners LLC, now you can import users directly with his ID or update it using his user ID, please read documentation tab for more information about it
189
+ * New hooks added thank to the idea of borkenkaefer, in the future we will include more and better hooks (actions and filters)
190
+ * Compatibility with New User Approve fixed
191
+
192
+ = 1.8.9 =
193
+ * Lost password link included in the mail template thanks to alex@marckdesign.net
194
+
195
+ = 1.8.8 =
196
+ * Checkbox included in order to avoid sending mail accidentally on password change or user updated.
197
+
198
+ = 1.8.7.4 =
199
+ * Documentation updated.
200
+
201
+ = 1.8.7.3 =
202
+ * Autoparagraph in email text to solve problem about all text in the same line.
203
+ * Tested up to 4.5.1
204
+
205
+ = 1.8.7.2 =
206
+ * Bug in delete_user_meta solved thanks for telling us lizzy2surge
207
+
208
+ = 1.8.7.1 =
209
+ * Bug in HTML mails solved
210
+
211
+ = 1.8.7 =
212
+ * You can choose between plugin mail settings or WordPress mail settings, thanks to Awaken Solutions web design (http://www.awakensolutions.com/)
213
+
214
+ = 1.8.6 =
215
+ * Bug detected in mailer settings, thanks to Carlos (satrebil@gmail.com)
216
+
217
+ = 1.8.5 =
218
+ * Include code changed, after BuddyPress adaptations we break the SMTP settings when activating
219
+
220
+ = 1.8.4 =
221
+ * Labels for mail sending were creating some misunderstandings, we have changed it
222
+
223
+ = 1.8.3 =
224
+ * Deleted var_dump message to debug left accidentally
225
+
226
+ = 1.8.2 =
227
+ * BuddyPress fix in some installation to avoid a fatal error
228
+
229
+ = 1.8.1 =
230
+ * Now you have to select at least a role, we want to prevent the problem of "No roles selected"
231
+ * You can import now BuddyPress fields with this plugin thanks to André Ihlar
232
+
233
+ = 1.8 =
234
+ * Email template has an own custom tab thanks to Amanda Ruggles
235
+ * Email can be sent when you are doing a cron import thanks to Amanda Ruggles
236
+
237
+ = 1.7.9 =
238
+ * Now you can choose if you want to send the email to all users or only to creted users (not to the updated one) thanks to Remy Medranda
239
+ * Compatibility with New User Approve (https://es.wordpress.org/plugins/new-user-approve/) included thanks to Remy Medranda
240
+
241
+ = 1.7.8 =
242
+ * Metadata can be sent in the mail thanks to Remy Medranda
243
+
244
+ = 1.7.7 =
245
+ * Bad link fixed and new links added to the plugin
246
+
247
+ = 1.7.6 =
248
+ * Capability changed from manage_options to create_users, this is a better capatibily to this plugin
249
+
250
+ = 1.7.5 =
251
+ * Bug solved when opening tabs, it were opened in incorrect target
252
+ * Documentation for WooCommerce integration included
253
+
254
+ = 1.7.4 =
255
+ * Bug solved when saving path to file in Cron Import (thanks to Robert Zantow for reporting)
256
+ * New tabs included: Shop and Need help
257
+ * Banner background from WordPress.org updated
258
+
259
+ = 1.7.3 =
260
+ * Users which are not administrator now can edit his extra fields thanks to downka (https://wordpress.org/support/topic/unable-to-edit-imported-custom-profile-fields?replies=1#post-7595520)
261
+
262
+ = 1.7.2 =
263
+ * Plugin is now compatible with WordPress Access Areas plugin (https://wordpress.org/plugins/wp-access-areas/) thanks to Herbert (http://remark.no/)
264
+ * Added some notes to clarify the proper working of the plugin.
265
+
266
+ = 1.7.1 =
267
+ * Bug solved. Thanks for reporting this bug: https://wordpress.org/support/topic/version-17-just-doesnt-work?replies=3#post-7538427
268
+
269
+ = 1.7 =
270
+ * New GUI based on tabs easier to use
271
+ * Thanks to Michael Lancey ( Mckenzie Chase Management, Inc. ) we can now provide all this new features:
272
+ * File can now be refered using a path and not only uploading.
273
+ * You can now create a scheduled event to import users regularly.
274
+
275
+ = 1.6.4 =
276
+ * Bugs detected and solved thanks to a message from Periu Lane and others users, the problem was a var bad named.
277
+
278
+ = 1.6.3 =
279
+ * Default action for empty values now is: leave old value, in this way we prevent unintentional deletions of meta data.
280
+ * Included donate link in plugin.
281
+
282
+ = 1.6.2 =
283
+ * Thanks to Carmine Morra (carminemorra.com) for reporting problems with <p> and <br/> tags in body of emails.
284
+
285
+ = 1.6.1 =
286
+ * Thanks to Matthijs Mons: now this plugin is able to work with Allow Multiple Accounts (https://wordpress.org/plugins/allow-multiple-accounts/) and allow the possibility of register/update users with same email instead as using thme in this case as a secondary reference to the user as the username.
287
+
288
+ = 1.6 =
289
+ * Now options that are only useful if some other plugin is activated, they will only show when those plugins were activated
290
+ * Thanks to Carmine Morra (carminemorra.com) for supporting the next two big features:
291
+ * New role manager: instead of using a select list, you can choose roles now using checkboxes and you can choose more than one role per user
292
+ * SMTP server: you can send now from your WordPress directly or using a external SMTP server (almost all SMTP config and SMTP sending logic are based in the original one from WP Mail SMTP - https://wordpress.org/plugins/wp-mail-smtp/). When the plugin finish sending mail, reset the phpmailer to his previous state, so it won't break another SMTP mail plugin.
293
+ * And this little one, you can use **email** in mail body to send to users their email (as it existed before: **loginurl**, **username**, **password**)
294
+
295
+ = 1.5.2 =
296
+ * Thanks to idealien, if we use username to update users, the email can be updated as the rest of the data and metadata of the user and we silence the email changing message generated by core.
297
+
298
+ = 1.5.1 =
299
+ * Thanks to Mitch ( mitch AT themilkmob DOT org ) for reporting the bug, now headers do not appears twice.
300
+
301
+ = 1.5 =
302
+ * Thanks to Adam Hunkapiller ( of dreambridgepartners.com ) have supported all this new functionalities.
303
+ * You can choose the mail from and the from name of the mail sent.
304
+ * Mail from, from name, mail subject and mail body are now saved in the system and reused anytime you used the plugin in order to make the mail sent easier.
305
+ * You can include all this fields in the mail: "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim", "yim", "user_registered" if you used it in the CSV and you indicate it the mail body in this way **FIELD_NAME**, for example: **first_name**
306
+
307
+ = 1.4.2 =
308
+ * Due to some support threads, we have add a different background-color and color in rows that are problematic: the email was found in the system but the username is not the same
309
+
310
+ = 1.4.1 =
311
+ * Thanks to Peri Lane for supporting the new functionality which make possible to activate users at the same time they are being importing. Activate users as WP Members plugin (https://wordpress.org/plugins/wp-members/) consider a user is activated
312
+
313
+ = 1.4 =
314
+ * Thanks to Kristopher Hutchison we have add an option to choose what you want to do with empty cells: 1) delete the meta-data or 2) ignore it and do not update, previous to this version, the plugin update the value to empty string
315
+
316
+ = 1.3.9.4 =
317
+ * Previous version does not appear as updated in repository, with this version we try to fix it
318
+
319
+ = 1.3.9.3 =
320
+ * In WordPress Network, admins can now use the plugin and not only superadmins. Thanks to @jephperro
321
+
322
+ = 1.3.9.2 =
323
+ * Solved some typos. Thanks to Jonathan Lampe
324
+
325
+ = 1.3.9.1 =
326
+ * JS bug fixed, thanks to Jess C
327
+
328
+ = 1.3.9 =
329
+ * List of old CSV files created in order to prevent security problems.
330
+ * Created a button to delete this files directly in the plugin, you can delete one by one or you can do a bulk delete.
331
+
332
+ = 1.3.8 =
333
+ * Fixed a problem with iterator in columns count. Thanks to alysko for their message: https://wordpress.org/support/topic/3rd-colums-ignored?replies=1
334
+
335
+ = 1.3.7 =
336
+ * After upload, CSV file is deleted in order to prevent security issues.
337
+
338
+ = 1.3.6 =
339
+ * Thanks to idealien for telling us that we should check also if user exist using email (in addition to user login). Now we do this double check to prevent problems with users that exists but was registered using another user login. In the table we show this difference, the login is not changed, but all the rest of data is updated.
340
+
341
+ = 1.3.5 =
342
+ * Bug in image fixed
343
+ * Title changed
344
+
345
+ = 1.3.4 =
346
+ * Warning with sends_mail parameter fixed
347
+ * Button to donate included
348
+
349
+ = 1.3.3 =
350
+ * Screenshot updated, now it has the correct format. Thank to gmsb for telling us the problem with screenshout outdated
351
+
352
+ = 1.3.2 =
353
+ * Thanks to @jRausell for solving a bug with a count and an array
354
+
355
+ = 1.3.1 =
356
+ * WooCommerce fields integration into profile
357
+ * Duplicate fields detection into profile
358
+ * Thanks to @derwentx to give us the code to make possible to include this new features
359
+
360
+ = 1.3 =
361
+ * This is the biggest update in the history of this plugin: mails and passwords generation have been added.
362
+ * Thanks to @jRausell to give us code to start with mail sending functionality. We have improved it and now it is available for everyone.
363
+ * Mails are customizable and you can choose
364
+ * Passwords are also generated, please read carefully the documentation in order to avoid passwords lost in user updates.
365
+
366
+ = 1.2.3 =
367
+ * Extra format check done at the start of each row.
368
+
369
+ = 1.2.2 =
370
+ * Thanks to twmoore3rd we have created a system to detect email collisions, username collision are not detected because plugin update metadata in this case
371
+
372
+ = 1.2.1 =
373
+ * Thanks to Graham May we have fixed a problem when meta keys have a blank space and also we have improved plugin security using filter_input() and filter_input_array() functions instead of $_POSTs
374
+
375
+ = 1.2 =
376
+ * From this version, plugin can both insert new users and update new ones. Thanks to Nick Gallop from Weston Graphics.
377
+
378
+ = 1.1.8 =
379
+ * Donation button added.
380
+
381
+ = 1.1.7 =
382
+ * Fixed problems with \n, \r and \n\r inside CSV fields. Thanks to Ted Stresen-Reuter for his help. We have changed our way to parse CSV files, now we use SplFileObject and we can solve this problem.
383
+
384
+ =======
385
+ = 1.2 =
386
+ * From this version, plugin can both insert new users and update new ones. Thanks to Nick Gallop from Weston Graphics.
387
+
388
+ = 1.1.8 =
389
+ * Donation button added.
390
+
391
+ = 1.1.7 =
392
+ * Fixed problems with \n, \r and \n\r inside CSV fields. Thanks to Ted Stresen-Reuter for his help. We have changed our way to parse CSV files, now we use SplFileObject and we can solve this problem.
393
+
394
+ >>>>>>> .r1121403
395
+ = 1.1.6 =
396
+ * You can import now user_registered but always in the correct format Y-m-d H:i:s
397
+
398
+ = 1.1.5 =
399
+ * Now plugins is only shown to admins. Thanks to flegmatiq and his message https://wordpress.org/support/topic/the-plugin-name-apears-in-dashboard-menu-of-non-aministrators?replies=1#post-6126743
400
+
401
+ = 1.1.4 =
402
+ * Problem solved appeared in 1.1.3: sometimes array was not correctly managed.
403
+
404
+ = 1.1.3 =
405
+ * As fgetscsv() have problems with non UTF8 characters we changed it and now we had problems with commas inside fields, so we have rewritten it using str_getcsv() and declaring the function in case your current PHP version doesn't support it.
406
+
407
+ = 1.1.2 =
408
+ * fgetscsv() have problems with non UTF8 characters, so we have changed it for fgetcsv() thanks to a hebrew user who had problems.
409
+
410
+ = 1.1.1 =
411
+ * Some bugs found and solved managing custom columns after 1.1.0 upgrade.
412
+ * If you have problems/bugs about custom headers, you should deactivate the plugin and then activate it and upload a CSV file with the correct headers again in order to solve some problems.
413
+
414
+ = 1.1.0 =
415
+ * WordPress user profile default info is now saved correctly, the new fields are: "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim" and "yim"
416
+ * New CSV example created.
417
+ * Documentation adapted to new functionality.
418
+
419
+ = 1.0.9 =
420
+ * Bug with some UTF-8 strings, fixed.
421
+
422
+ = 1.0.8 =
423
+ * The list of roles is generated reading all the roles avaible in the system, instead of being the default always.
424
+
425
+ = 1.0.7 =
426
+ * Issue: admin/super_admin change role when file is too large. Two checks done to avoid it.
427
+
428
+ = 1.0.6 =
429
+ * Issue: Problems detecting extension solved (array('csv' => 'text/csv') added)
430
+
431
+ = 1.0.5 =
432
+ * Issue: Existing users role change, fixed
433
+
434
+ = 1.0.0 =
435
+ * First release
436
+
437
+ == Upgrade Notice ==
438
+
439
+ = 1.0 =
440
+ * First installation
441
+
442
+ == Frequently Asked Questions ==
443
+
444
+ * Not yet
445
+
446
+ == Installation ==
447
+
448
+ ### **Installation**
449
+
450
+ * Install **Import users from CSV with meta** automatically through the WordPress Dashboard or by uploading the ZIP file in the _plugins_ directory.
451
+ * Then, after the package is uploaded and extracted, click&nbsp;_Activate Plugin_.
452
+
453
+ Now going through the points above, you should now see a new&nbsp;_Import users from CSV_&nbsp;menu item under Tool menu in the sidebar of the admin panel, see figure below of how it looks like.
454
+
455
+ [Plugin link from dashboard](http://ps.w.org/import-users-from-csv-with-meta/assets/screenshot-1.png)
456
+
457
+ If you get any error after following through the steps above please contact us through item support comments so we can get back to you with possible helps in installing the plugin and more.
trunk/smtp.php ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ /* Most part of this file is based in the original one wp_mail_smtp.php from the plugin WP Mail SMTP that you can find here https://wordpress.org/plugins/wp-mail-smtp/ */
6
+
7
+ global $acui_smtp_options;
8
+ $acui_smtp_options = array (
9
+ 'acui_settings' => 'wordpress',
10
+ 'acui_mail_from' => '',
11
+ 'acui_mail_from_name' => '',
12
+ 'acui_mailer' => 'smtp',
13
+ 'acui_mail_set_return_path' => 'false',
14
+ 'acui_smtp_host' => 'localhost',
15
+ 'acui_smtp_port' => '25',
16
+ 'acui_smtp_ssl' => 'none',
17
+ 'acui_smtp_auth' => false,
18
+ 'acui_smtp_user' => '',
19
+ 'acui_smtp_pass' => ''
20
+ );
21
+
22
+ function acui_smtp() {
23
+ global $acui_smtp_options, $phpmailer;
24
+
25
+ // Send a test mail if necessary
26
+ if( isset( $_POST['acui_smpt_action'] ) && $_POST['acui_smpt_action'] == __('Send Test', 'acui') && isset( $_POST['to'] ) ){
27
+ check_admin_referer('test-email');
28
+
29
+ if ( !is_object( $phpmailer ) || !is_a( $phpmailer, 'PHPMailer' ) ) {
30
+ require_once ABSPATH . WPINC . '/class-phpmailer.php';
31
+ require_once ABSPATH . WPINC . '/class-smtp.php';
32
+ $phpmailer = new PHPMailer( true );
33
+ }
34
+
35
+ add_action( 'phpmailer_init', 'acui_mailer_init' );
36
+
37
+ // Set up the mail variables
38
+ $to = $_POST['to'];
39
+ $subject = 'Import Users From CSV With Meta - Mail SMTP: ' . __('Test mail to ', 'acui') . $to;
40
+ $message = __('This is a test email generated by the Import User From CSV With Meta WordPress plugin.', 'acui');
41
+
42
+ // Set SMTPDebug to true
43
+ $phpmailer->SMTPDebug = true;
44
+
45
+ // Start output buffering to grab smtp debugging output
46
+ ob_start();
47
+
48
+ if( !get_option('acui_automattic_wordpress_email') ){
49
+ add_filter( 'send_email_change_email', '__return_false' );
50
+ add_filter( 'send_password_change_email', '__return_false' );
51
+ }
52
+
53
+ add_filter( 'wp_mail_from', 'acui_mail_from' );
54
+ add_filter( 'wp_mail_from_name', 'acui_mail_from_name' );
55
+ add_filter( 'wp_mail_content_type', 'cod_set_html_content_type' );
56
+
57
+ $result = wp_mail( $to, $subject , $message );
58
+
59
+ remove_filter( 'wp_mail_from', 'acui_mail_from' );
60
+ remove_filter( 'wp_mail_from_name', 'acui_mail_from_name' );
61
+ remove_filter( 'wp_mail_content_type', 'cod_set_html_content_type' );
62
+
63
+ if( !get_option('acui_automattic_wordpress_email') ){
64
+ remove_filter( 'send_email_change_email', '__return_false' );
65
+ remove_filter( 'send_password_change_email', '__return_false' );
66
+ }
67
+
68
+ // Strip out the language strings which confuse users
69
+ //unset($phpmailer->language);
70
+ // This property became protected in WP 3.2
71
+
72
+ // Grab the smtp debugging output
73
+ $smtp_debug = ob_get_clean();
74
+ ?>
75
+ <div id="message" class="updated fade">
76
+ <?php if( $result ): ?>
77
+
78
+ <p><strong><?php _e('Message sent successfully', 'acui'); ?></strong></p>
79
+
80
+ <?php else: ?>
81
+
82
+ <p><strong><?php _e('Test Message Sent', 'acui'); ?></strong></p>
83
+ <p><?php _e('The result was:', 'acui'); ?></p>
84
+ <pre><?php var_dump( $result ); ?></pre>
85
+ <p><?php _e('The full debugging output is shown below:', 'acui'); ?></p>
86
+ <pre><?php var_dump( $phpmailer ); ?></pre>
87
+ <p><?php _e('The SMTP debugging output is shown below:', 'acui'); ?></p>
88
+ <pre><?php echo $smtp_debug ?></pre>
89
+
90
+ <?php endif; ?>
91
+ </div>
92
+
93
+ <?php
94
+ // Destroy $phpmailer so it doesn't cause issues later
95
+ unset($phpmailer);
96
+ remove_action( 'phpmailer_init', 'acui_mailer_init' );
97
+ }
98
+
99
+ if( isset( $_POST['acui_settings'] ) && !empty( $_POST['acui_settings'] ) ) {
100
+ check_admin_referer('email-config');
101
+
102
+ foreach ($acui_smtp_options as $name => $val) {
103
+ update_option( $name, $_POST[ $name ] );
104
+ }
105
+ }
106
+
107
+ // in version 1.8.7 we include this new option, we fill it in a smart way
108
+ if( get_option( "acui_settings" ) == "" ){
109
+ if( get_option( "acui_mail_from" ) == "" )
110
+ update_option( "acui_settings", "wordpress" );
111
+ else
112
+ update_option( "acui_settings", "plugin" );
113
+ }
114
+
115
+ ?>
116
+
117
+ <div class="wrap">
118
+ <h2><?php _e('Import User From CSV With Meta - SMTP server options', 'acui'); ?></h2>
119
+ <form method="post" action="" id="acui_smtp_options">
120
+ <?php wp_nonce_field('email-config'); ?>
121
+
122
+ <h3><?php _e('Global options', 'acui'); ?></h3>
123
+ <p><?php _e('Do you want to use your own SMTP settings for this plugin or the WordPress settings.', 'acui'); ?></p>
124
+
125
+ <table class="optiontable form-table">
126
+ <tr valign="top">
127
+ <th scope="row"><?php _e('Settings', 'acui'); ?> </th>
128
+ <td>
129
+ <fieldset>
130
+ <legend class="screen-reader-text"><span><?php _e('Use plugin SMTP settings', 'acui'); ?></span></legend>
131
+ <p><input id="acui_settings_plugin" type="radio" name="acui_settings" value="plugin" <?php checked('plugin', get_option('acui_settings')); ?> />
132
+ <label for="acui_settings"><?php _e('Use this settings to send mail.', 'acui'); ?></label></p>
133
+ <p><input id="acui_settings_wordpress" type="radio" name="acui_settings" value="wordpress" <?php checked('wordpress', get_option('acui_settings')); ?> />
134
+ <label for="acui_settings"><?php _e('Use WordPress general settings to send mail.', 'acui'); ?></label></p>
135
+ </fieldset>
136
+ </td>
137
+ </tr>
138
+ </table>
139
+
140
+ <table class="optiontable form-table">
141
+ <tr valign="top">
142
+ <th scope="row"><label for="mail_from"><?php _e('From Email', 'acui'); ?></label></th>
143
+ <td><input name="acui_mail_from" type="text" id="acui_mail_from" value="<?php print(get_option('acui_mail_from')); ?>" size="40" class="regular-text" />
144
+ <span class="description"><?php _e('You can specify the email address that emails should be sent from. If you leave this blank, the default email will be used.', 'acui'); if(get_option('db_version') < 6124) { print('<br /><span style="color: red;">'); _e('<strong>Please Note:</strong> You appear to be using a version of WordPress prior to 2.3. Please ignore the From Name field and instead enter Name&lt;email@domain.com&gt; in this field.', 'acui'); print('</span>'); } ?></span></td>
145
+ </tr>
146
+ <tr valign="top">
147
+ <th scope="row"><label for="mail_from_name"><?php _e('From Name', 'acui'); ?></label></th>
148
+ <td><input name="acui_mail_from_name" type="text" id="acui_mail_from_name" value="<?php print(get_option('acui_mail_from_name')); ?>" size="40" class="regular-text" />
149
+ <span class="description"><?php _e('You can specify the name that emails should be sent from. If you leave this blank, the emails will be sent from WordPress.', 'acui'); ?></span></td>
150
+ </tr>
151
+ </table>
152
+
153
+ <table class="optiontable form-table">
154
+ <tr valign="top">
155
+ <th scope="row"><?php _e('Mailer', 'acui'); ?> </th>
156
+ <td>
157
+ <fieldset>
158
+ <legend class="screen-reader-text"><span><?php _e('Mailer', 'acui'); ?></span></legend>
159
+ <p><input id="acui_mailer_smtp" type="radio" name="acui_mailer" value="smtp" <?php checked('smtp', get_option('acui_mailer')); ?> />
160
+ <label for="mailer_smtp"><?php _e('Send emails of this plugin via SMTP.', 'acui'); ?></label></p>
161
+ <p><input id="acui_mailer_mail" type="radio" name="acui_mailer" value="mail" <?php checked('mail', get_option('acui_mailer')); ?> />
162
+ <label for="mailer_mail"><?php _e('Use the PHP mail() function to send emails.', 'acui'); ?></label></p>
163
+ </fieldset>
164
+ </td>
165
+ </tr>
166
+ </table>
167
+
168
+ <table class="optiontable form-table">
169
+ <tr valign="top">
170
+ <th scope="row"><?php _e('Return Path', 'acui'); ?> </th>
171
+ <td>
172
+ <fieldset>
173
+ <legend class="screen-reader-text"><span><?php _e('Return Path', 'acui'); ?></span></legend><label for="mail_set_return_path">
174
+ <input name="acui_mail_set_return_path" type="checkbox" id="acui_mail_set_return_path" value="true" <?php checked('true', get_option('acui_mail_set_return_path')); ?> />
175
+ <?php _e('Set the return-path to match the From Email'); ?></label>
176
+ </fieldset>
177
+ </td>
178
+ </tr>
179
+ </table>
180
+
181
+ <h3><?php _e('SMTP Options', 'acui'); ?></h3>
182
+ <p><?php _e('These options only apply if you have chosen to send mail by SMTP above.', 'acui'); ?></p>
183
+
184
+ <table class="optiontable form-table">
185
+ <tr valign="top">
186
+ <th scope="row"><label for="smtp_host"><?php _e('SMTP Host', 'acui'); ?></label></th>
187
+ <td><input name="acui_smtp_host" type="text" id="acui_smtp_host" value="<?php print(get_option('acui_smtp_host')); ?>" size="40" class="regular-text" /></td>
188
+ </tr>
189
+ <tr valign="top">
190
+ <th scope="row"><label for="smtp_port"><?php _e('SMTP Port', 'acui'); ?></label></th>
191
+ <td><input name="acui_smtp_port" type="text" id="acui_smtp_port" value="<?php print(get_option('acui_smtp_port')); ?>" size="6" class="regular-text" /></td>
192
+ </tr>
193
+ <tr valign="top">
194
+ <th scope="row"><?php _e('Encryption', 'acui'); ?> </th>
195
+ <td>
196
+ <fieldset>
197
+ <legend class="screen-reader-text"><span><?php _e('Encryption', 'acui'); ?></span></legend>
198
+ <input id="acui_smtp_ssl_none" type="radio" name="acui_smtp_ssl" value="none" <?php checked('none', get_option('acui_smtp_ssl')); ?> />
199
+ <label for="smtp_ssl_none"><span><?php _e('No encryption.', 'acui'); ?></span></label><br />
200
+ <input id="acui_smtp_ssl_ssl" type="radio" name="acui_smtp_ssl" value="ssl" <?php checked('ssl', get_option('acui_smtp_ssl')); ?> />
201
+ <label for="smtp_ssl_ssl"><span><?php _e('Use SSL encryption.', 'acui'); ?></span></label><br />
202
+ <input id="acui_smtp_ssl_tls" type="radio" name="acui_smtp_ssl" value="tls" <?php checked('tls', get_option('acui_smtp_ssl')); ?> />
203
+ <label for="smtp_ssl_tls"><span><?php _e('Use TLS encryption. This is not the same as STARTTLS. For most servers SSL is the recommended option.', 'acui'); ?></span></label>
204
+ </td>
205
+ </tr>
206
+ <tr valign="top">
207
+ <th scope="row"><?php _e('Authentication', 'acui'); ?> </th>
208
+ <td>
209
+ <input id="acui_smtp_auth_false" type="radio" name="acui_smtp_auth" value="false" <?php checked('false', get_option('acui_smtp_auth')); ?> />
210
+ <label for="smtp_auth_false"><span><?php _e('No: Do not use SMTP authentication.', 'acui'); ?></span></label><br />
211
+ <input id="acui_smtp_auth_true" type="radio" name="acui_smtp_auth" value="true" <?php checked('true', get_option('acui_smtp_auth')); ?> />
212
+ <label for="smtp_auth_true"><span><?php _e('Yes: Use SMTP authentication.', 'acui'); ?></span></label><br />
213
+ <span class="description"><?php _e('If this is set to no, the values below are ignored.', 'acui'); ?></span>
214
+ </td>
215
+ </tr>
216
+ <tr valign="top">
217
+ <th scope="row"><label for="smtp_user"><?php _e('Username', 'acui'); ?></label></th>
218
+ <td><input name="acui_smtp_user" type="text" id="acui_smtp_user" value="<?php print(get_option('acui_smtp_user')); ?>" size="40" class="code" /></td>
219
+ </tr>
220
+ <tr valign="top">
221
+ <th scope="row"><label for="smtp_pass"><?php _e('Password', 'acui'); ?></label></th>
222
+ <td><input name="acui_smtp_pass" type="password" id="acui_smtp_pass" value="<?php print(get_option('acui_smtp_pass')); ?>" size="40" class="code" /></td>
223
+ </tr>
224
+ </table>
225
+
226
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button-primary" value="<?php _e('Save Changes'); ?>" /></p>
227
+ </form>
228
+
229
+ <h3><?php _e('Send a Test Email', 'acui'); ?></h3>
230
+
231
+ <form method="POST" action="">
232
+ <?php wp_nonce_field('test-email'); ?>
233
+ <table class="optiontable form-table">
234
+ <tr valign="top">
235
+ <th scope="row"><label for="to"><?php _e('To:', 'acui'); ?></label></th>
236
+ <td><input name="to" type="text" id="to" value="" size="40" class="code" />
237
+ <span class="description"><?php _e('Type an email address here and then click Send Test to generate a test email.', 'acui'); ?></span></td>
238
+ </tr>
239
+ </table>
240
+ <p class="submit"><input type="submit" name="acui_smpt_action" id="acui_smpt_action" class="button-primary" value="<?php _e('Send Test', 'acui'); ?>" /></p>
241
+ </form>
242
+ </div>
243
+
244
+ <script>
245
+ jQuery( document ).ready( function( $ ){
246
+ $( "[name='acui_settings']" ).on('change', function() {
247
+ var selected = $( 'input[name=acui_settings]:checked' ).val();
248
+
249
+ if( selected == "wordpress" )
250
+ disableControls();
251
+ else
252
+ enableControls();
253
+ });
254
+
255
+ function disableControls(){
256
+ $("#acui_smtp_options :input").not(":input[type=submit],:input[type=hidden]").prop("disabled", true);
257
+ $("[name='acui_settings']").prop("disabled", false);
258
+ }
259
+
260
+ function enableControls(){
261
+ $("#acui_smtp_options :input").not(":input[type=submit],:input[type=hidden]").prop("disabled", false);
262
+ }
263
+
264
+ <?php if( get_option( "acui_settings" ) == "wordpress" ): ?>
265
+ disableControls();
266
+ <?php else: ?>
267
+ enableControls();
268
+ <?php endif; ?>
269
+ })
270
+ </script>
271
+
272
+ <?php
273
+ }
274
+
275
+ function acui_mailer_init( PHPMailer $phpmailer ){
276
+ if ( ! get_option('acui_mailer') || ( get_option('acui_mailer') == 'smtp' && ! get_option('acui_smtp_host') ) ) {
277
+ return;
278
+ }
279
+
280
+ // Set the mailer type as per config above, this overrides the already called isMail method
281
+ $phpmailer->Mailer = get_option('acui_mailer');
282
+
283
+ // Set the Sender (return-path) if required
284
+ if (get_option('acui_mail_set_return_path'))
285
+ $phpmailer->Sender = $phpmailer->From;
286
+
287
+ // Set the SMTPSecure value, if set to none, leave this blank
288
+ $phpmailer->SMTPSecure = get_option('acui_smtp_ssl') == 'none' ? '' : get_option('acui_smtp_ssl');
289
+
290
+ // If we're sending via SMTP, set the host
291
+ if (get_option('acui_mailer') == "smtp") {
292
+
293
+ // Set the SMTPSecure value, if set to none, leave this blank
294
+ $phpmailer->SMTPSecure = get_option('acui_smtp_ssl') == 'none' ? '' : get_option('acui_smtp_ssl');
295
+
296
+ // Set the other options
297
+ $phpmailer->Host = get_option('acui_smtp_host');
298
+ $phpmailer->Port = get_option('acui_smtp_port');
299
+
300
+ // If we're using smtp auth, set the username & password
301
+ if (get_option('acui_smtp_auth') == "true") {
302
+ $phpmailer->SMTPAuth = TRUE;
303
+ $phpmailer->Username = get_option('acui_smtp_user');
304
+ $phpmailer->Password = get_option('acui_smtp_pass');
305
+ }
306
+ }
307
+
308
+ $phpmailer = apply_filters('acui_smtp_custom_options', $phpmailer);
309
+ }
trunk/test.csv ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ Username,Email,Password,Address,City,State,Zip code,Country,user_url
2
+ john,john@mymail.com,mypassword,Rd. Victoria,Atlanta,Georgia,1201,USA,
3
+ javier,javier@micorreo.com,pass,Av. Cervantes,C�rdoba,C�rdoba,14004,Espa�a,http://www.linuxhispano.net
4
+ elissa,eliss@mymail.com,elis2013,Verona,Ferrara,Ferrara,89891,Italia,
5
+ piere,mon@mon.fr,passwordfrance,Nation,Par�s,�le de la Cit�,28280,France,
6
+ peter,pet@me.com,passpass,National,Washington,Columbia,2001,USA,
7
+ luis,luisperez@correo.es,contrasenna,Sol,Madrid,Madrid,28005,Spain,
8
+ eleonora,eleonora@me.it,barele,Spagna,Roma,Roma,10101,Italia,