xref: /dokuwiki/lib/plugins/usermanager/lang/en/lang.php (revision 328143f8a20933744be51a2693c99f35234ce5b3)
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.';
44d613051aSAndreas Gohr$lang['update_ok']   = 'User updated successfully';
45262065efSAndreas Gohr$lang['update_fail'] = 'User update failed';
46262065efSAndreas Gohr$lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).';
470440ff15Schris
480440ff15Schris$lang['start']  = 'start';
490440ff15Schris$lang['prev']   = 'previous';
500440ff15Schris$lang['next']   = 'next';
510440ff15Schris$lang['last']   = 'last';
520440ff15Schris
5378c7c8c9Schris// added after 2006-03-09 release
5478c7c8c9Schris$lang['edit_usermissing'] = 'Selected user not found, the specified user name may have been deleted or changed elsewhere.';
55a6858c6aSchris$lang['user_notify'] = 'Notify user';
56a6858c6aSchris$lang['note_notify'] = 'Notification emails are only sent if the user is given a new password.';
57a6858c6aSchris$lang['note_group'] = 'New users will be added to the default group (%s) if no group is specified.';
58c3f4fb63SGina Haeussge$lang['note_pass'] = 'The password will be autogenerated if the field is left empty and notification of the user is enabled.';
59a6858c6aSchris$lang['add_ok'] = 'User added successfully';
60a6858c6aSchris$lang['add_fail'] = 'User addition failed';
61a6858c6aSchris$lang['notify_ok'] = 'Notification email sent';
62a6858c6aSchris$lang['notify_fail'] = 'Notification email could not be sent';
6378c7c8c9Schris
64ae1afd2fSChristopher Smith// import errors
65ae1afd2fSChristopher Smith$lang['import_success_count'] = 'User Import: %d users found, %d imported successfully.';
66ae1afd2fSChristopher Smith$lang['import_failure_count'] = 'User Import: %d failed. Failures are listed below.';
67ae1afd2fSChristopher Smith$lang['import_error_fields']  = "Insufficient fields, found %d, require 4.";
68ae1afd2fSChristopher Smith$lang['import_error_baduserid'] = "User-id missing";
69ae1afd2fSChristopher Smith$lang['import_error_badname'] = 'Bad name';
70*328143f8SChristopher Smith$lang['import_error_badmail'] = 'Bad email address';
71ae1afd2fSChristopher Smith$lang['import_error_upload']  = 'Import Failed. The csv file could not be uploaded or is empty.';
72ae1afd2fSChristopher Smith$lang['import_error_readfail'] = 'Import Failed. Unable to read uploaded file.';
73ae1afd2fSChristopher Smith$lang['import_error_create']  = 'Unable to create the user';
74*328143f8SChristopher Smith$lang['import_notify_fail']   = 'Notification message could not be sent for imported user, %s with email %s.';
75ae1afd2fSChristopher Smith
76ae1afd2fSChristopher Smith
77