1<?php 2/** 3 * English language file 4 * 5 * @author Chris Smith <chris@jalakai.co.uk> 6 */ 7 8$lang['menu'] = 'User Manager'; 9 10// custom language strings for the plugin 11$lang['noauth'] = '(user authentication not available)'; 12$lang['nosupport'] = '(user management not supported)'; 13 14$lang['badauth'] = 'invalid auth mechanism'; // should never be displayed! 15 16$lang['user_id'] = 'User'; 17$lang['user_pass'] = 'Password'; 18$lang['user_name'] = 'Real Name'; 19$lang['user_mail'] = 'Email'; 20$lang['user_groups'] = 'Groups'; 21 22$lang['field'] = 'Field'; 23$lang['value'] = 'Value'; 24$lang['add'] = 'Add'; 25$lang['delete'] = 'Delete'; 26$lang['delete_selected'] = 'Delete Selected'; 27$lang['edit'] = 'Edit'; 28$lang['edit_prompt'] = 'Edit this user'; 29$lang['modify'] = 'Save Changes'; 30$lang['search'] = 'Search'; 31$lang['search_prompt'] = 'Perform search'; 32$lang['clear'] = 'Reset Search Filter'; 33$lang['filter'] = 'Filter'; 34$lang['export_all'] = 'Export All Users (CSV)'; 35$lang['export_filtered'] = 'Export Filtered User list (CSV)'; 36$lang['import'] = 'Import New Users'; 37$lang['line'] = 'Line no.'; 38$lang['error'] = 'Error message'; 39 40$lang['summary'] = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.'; 41$lang['nonefound'] = 'No users found. %d users total.'; 42$lang['delete_ok'] = '%d users deleted'; 43$lang['delete_fail'] = '%d failed deleting.'; 44$lang['update_ok'] = 'User updated successfully'; 45$lang['update_fail'] = 'User update failed'; 46$lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).'; 47 48$lang['start'] = 'start'; 49$lang['prev'] = 'previous'; 50$lang['next'] = 'next'; 51$lang['last'] = 'last'; 52 53// added after 2006-03-09 release 54$lang['edit_usermissing'] = 'Selected user not found, the specified user name may have been deleted or changed elsewhere.'; 55$lang['user_notify'] = 'Notify user'; 56$lang['note_notify'] = 'Notification emails are only sent if the user is given a new password.'; 57$lang['note_group'] = 'New users will be added to the default group (%s) if no group is specified.'; 58$lang['note_pass'] = 'The password will be autogenerated if the field is left empty and notification of the user is enabled.'; 59$lang['add_ok'] = 'User added successfully'; 60$lang['add_fail'] = 'User addition failed'; 61$lang['notify_ok'] = 'Notification email sent'; 62$lang['notify_fail'] = 'Notification email could not be sent'; 63 64// import & errors 65$lang['import_userlistcsv'] = 'User list file (CSV): '; 66$lang['import_header'] = 'Most Recent Import - Failures'; 67$lang['import_success_count'] = 'User Import: %d users found, %d imported successfully.'; 68$lang['import_failure_count'] = 'User Import: %d failed. Failures are listed below.'; 69$lang['import_error_fields'] = "Insufficient fields, found %d, require 4."; 70$lang['import_error_baduserid'] = "User-id missing"; 71$lang['import_error_badname'] = 'Bad name'; 72$lang['import_error_badmail'] = 'Bad email address'; 73$lang['import_error_upload'] = 'Import Failed. The csv file could not be uploaded or is empty.'; 74$lang['import_error_readfail'] = 'Import Failed. Unable to read uploaded file.'; 75$lang['import_error_create'] = 'Unable to create the user'; 76$lang['import_notify_fail'] = 'Notification message could not be sent for imported user, %s with email %s.'; 77$lang['import_downloadfailures'] = 'Download Failures as CSV for correction'; 78 79$lang['addUser_error_missing_pass'] = 'Please either set a password or activate user notification to enable password generation.'; 80$lang['addUser_error_pass_not_identical'] = 'The entered passwords were not identical.'; 81$lang['addUser_error_modPass_disabled'] = 'Modifing passwords is currently disabled'; 82$lang['addUser_error_name_missing'] = 'Please enter a name for the new user.'; 83$lang['addUser_error_modName_disabled'] = 'Modifing names is currently disabled.'; 84$lang['addUser_error_mail_missing'] = 'Please enter an Email-Adress for the new user.'; 85$lang['addUser_error_modMail_disabled'] = 'Modifing Email-Adresses is currently disabled.'; 86$lang['addUser_error_create_event_failed'] = 'A plugin prevented the new user being added. Review possible other messages for more information.'; 87