xref: /dokuwiki/lib/plugins/usermanager/lang/en/lang.php (revision 93ef269a77bf337b15dda44b6e094d2b6782ebde)
10440ff15Schris<?php
20440ff15Schris/**
3262065efSAndreas Gohr * English language file
4262065efSAndreas Gohr *
5262065efSAndreas Gohr * @author Chris Smith <chris@jalakai.co.uk>
60440ff15Schris */
70440ff15Schris
80440ff15Schris$lang['menu'] = 'User Manager';
90440ff15Schris
100440ff15Schris// custom language strings for the plugin
1151d94d49Schris$lang['noauth']      = '(user authentication not available)';
1251d94d49Schris$lang['nosupport']   = '(user management not supported)';
1351d94d49Schris
1451d94d49Schris$lang['badauth']     = 'invalid auth mechanism';     // should never be displayed!
150440ff15Schris
160440ff15Schris$lang['user_id']     = 'User';
170440ff15Schris$lang['user_pass']   = 'Password';
180440ff15Schris$lang['user_name']   = 'Real Name';
190440ff15Schris$lang['user_mail']   = 'Email';
200440ff15Schris$lang['user_groups'] = 'Groups';
210440ff15Schris
220440ff15Schris$lang['field']       = 'Field';
230440ff15Schris$lang['value']       = 'Value';
240440ff15Schris$lang['add']         = 'Add';
250440ff15Schris$lang['delete']      = 'Delete';
260440ff15Schris$lang['delete_selected'] = 'Delete Selected';
270440ff15Schris$lang['edit']        = 'Edit';
280440ff15Schris$lang['edit_prompt'] = 'Edit this user';
290440ff15Schris$lang['modify']      = 'Save Changes';
300440ff15Schris$lang['search']      = 'Search';
310440ff15Schris$lang['search_prompt'] = 'Perform search';
320440ff15Schris$lang['clear']       = 'Reset Search Filter';
330440ff15Schris$lang['filter']      = 'Filter';
345c967d3dSChristopher Smith$lang['export_all']  = 'Export All Users (CSV)';
355c967d3dSChristopher Smith$lang['export_filtered'] = 'Export Filtered User list (CSV)';
36ae1afd2fSChristopher Smith$lang['import']      = 'Import New Users';
37ae1afd2fSChristopher Smith$lang['line']        = 'Line no.';
38ae1afd2fSChristopher Smith$lang['error']       = 'Error message';
390440ff15Schris
400440ff15Schris$lang['summary']     = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
410440ff15Schris$lang['nonefound']   = 'No users found. %d users total.';
420440ff15Schris$lang['delete_ok']   = '%d users deleted';
430440ff15Schris$lang['delete_fail'] = '%d failed deleting.';
44c8f55459SDamien Regad$lang['delete_fail_self'] = 'You can\'t delete yourself';
45d613051aSAndreas Gohr$lang['update_ok']   = 'User updated successfully';
46262065efSAndreas Gohr$lang['update_fail'] = 'User update failed';
47262065efSAndreas Gohr$lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).';
480440ff15Schris
490440ff15Schris$lang['start']  = 'start';
500440ff15Schris$lang['prev']   = 'previous';
510440ff15Schris$lang['next']   = 'next';
520440ff15Schris$lang['last']   = 'last';
530440ff15Schris
5478c7c8c9Schris// added after 2006-03-09 release
5578c7c8c9Schris$lang['edit_usermissing'] = 'Selected user not found, the specified user name may have been deleted or changed elsewhere.';
56a6858c6aSchris$lang['user_notify'] = 'Notify user';
57a6858c6aSchris$lang['note_notify'] = 'Notification emails are only sent if the user is given a new password.';
58a6858c6aSchris$lang['note_group'] = 'New users will be added to the default group (%s) if no group is specified.';
59c3f4fb63SGina Haeussge$lang['note_pass'] = 'The password will be autogenerated if the field is left empty and notification of the user is enabled.';
60a6858c6aSchris$lang['add_ok'] = 'User added successfully';
61a6858c6aSchris$lang['add_fail'] = 'User addition failed';
62a6858c6aSchris$lang['notify_ok'] = 'Notification email sent';
63a6858c6aSchris$lang['notify_fail'] = 'Notification email could not be sent';
6478c7c8c9Schris
65b59cff8bSGerrit Uitslag// import & errors
66b59cff8bSGerrit Uitslag$lang['import_userlistcsv'] = 'User list file (CSV):  ';
67b59cff8bSGerrit Uitslag$lang['import_header'] = 'Most Recent Import - Failures';
68ae1afd2fSChristopher Smith$lang['import_success_count'] = 'User Import: %d users found, %d imported successfully.';
69ae1afd2fSChristopher Smith$lang['import_failure_count'] = 'User Import: %d failed. Failures are listed below.';
70ae1afd2fSChristopher Smith$lang['import_error_fields']  = "Insufficient fields, found %d, require 4.";
71ae1afd2fSChristopher Smith$lang['import_error_baduserid'] = "User-id missing";
72ae1afd2fSChristopher Smith$lang['import_error_badname'] = 'Bad name';
73328143f8SChristopher Smith$lang['import_error_badmail'] = 'Bad email address';
74ae1afd2fSChristopher Smith$lang['import_error_upload']  = 'Import Failed. The csv file could not be uploaded or is empty.';
75ae1afd2fSChristopher Smith$lang['import_error_readfail'] = 'Import Failed. Unable to read uploaded file.';
76ae1afd2fSChristopher Smith$lang['import_error_create']  = 'Unable to create the user';
77328143f8SChristopher Smith$lang['import_notify_fail']   = 'Notification message could not be sent for imported user, %s with email %s.';
78b59cff8bSGerrit Uitslag$lang['import_downloadfailures'] = 'Download Failures as CSV for correction';
79ae1afd2fSChristopher Smith
8009a5dcd6SMichael Große$lang['addUser_error_missing_pass'] = 'Please either set a password or activate user notification to enable password generation.';
8109a5dcd6SMichael Große$lang['addUser_error_pass_not_identical'] = 'The entered passwords were not identical.';
82*93ef269aSDamien Regad$lang['addUser_error_modPass_disabled'] = 'Modifying passwords is currently disabled';
8309a5dcd6SMichael Große$lang['addUser_error_name_missing'] = 'Please enter a name for the new user.';
84*93ef269aSDamien Regad$lang['addUser_error_modName_disabled'] = 'Modifying names is currently disabled.';
85*93ef269aSDamien Regad$lang['addUser_error_mail_missing'] = 'Please enter an email address for the new user.';
86*93ef269aSDamien Regad$lang['addUser_error_modMail_disabled'] = 'Modifying email adresses is currently disabled.';
875e204053SMichael Große$lang['addUser_error_create_event_failed'] = 'A plugin prevented the new user being added. Review possible other messages for more information.';
88