1<?php 2/** 3 * English language file 4 * 5 * @author Chris Smith <chris@jalakai.co.uk> 6 * @author Anna Dabrowska <dokuwiki@cosmocode.de> 7 */ 8 9$lang['menu'] = 'Extended User Import'; 10 11$lang['btn_import'] = 'Import users'; 12$lang['legend_defaults'] = 'Defaults'; 13$lang['legend_csv'] = 'CSV file'; 14$lang['form_email'] = 'Email'; 15$lang['form_name'] = 'Full name'; 16$lang['form_password'] = 'Password'; 17$lang['form_groups'] = 'Groups (optional)'; 18 19$lang['error_badauth'] = 'Supported authentication method authplain is not enabled'; 20$lang['error_required_defaults'] = 'Please fill in the required default values.'; 21 22// import & errors (the same as in usermanager) 23$lang['line'] = 'Line no.'; 24$lang['error'] = 'Error message'; 25 26$lang['user_id'] = 'User'; 27$lang['user_pass'] = 'Password'; 28$lang['user_name'] = 'Real Name'; 29$lang['user_mail'] = 'Email'; 30$lang['user_groups'] = 'Groups'; 31 32$lang['import_userlistcsv'] = 'User list file (CSV): '; 33$lang['import_header'] = 'Most Recent Import - Failures'; 34$lang['import_success_count'] = 'User Import: %d users found, %d imported successfully.'; 35$lang['import_failure_count'] = 'User Import: %d failed. Failures are listed below.'; 36$lang['import_error_fields'] = "Insufficient fields, found %d, require 5."; 37$lang['import_error_baduserid'] = "User-id missing"; 38$lang['import_error_badname'] = 'Bad name'; 39$lang['import_error_badmail'] = 'Bad email address'; 40$lang['import_error_upload'] = 'Import Failed. The csv file could not be uploaded or is empty.'; 41$lang['import_error_readfail'] = 'Import Failed. Unable to read uploaded file.'; 42$lang['import_error_create'] = 'Unable to create the user'; 43$lang['import_notify_fail'] = 'Notification message could not be sent for imported user, %s with email %s.'; 44$lang['import_downloadfailures'] = 'Download Failures as CSV for correction'; 45