xref: /dokuwiki/lib/plugins/usermanager/lang/en/lang.php (revision 137ce95a340b36e962f90c44c9f6414dc2e0d1e4)
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
35$lang['summary']     = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
36$lang['nonefound']   = 'No users found. %d users total.';
37$lang['delete_ok']   = '%d users deleted';
38$lang['delete_fail'] = '%d failed deleting.';
39$lang['update_ok']   = 'User updated successfully';
40$lang['update_fail'] = 'User update failed';
41$lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).';
42
43$lang['start']  = 'start';
44$lang['prev']   = 'previous';
45$lang['next']   = 'next';
46$lang['last']   = 'last';
47
48// added after 2006-03-09 release
49$lang['edit_usermissing'] = 'Selected user not found, the specified user name may have been deleted or changed elsewhere.';
50$lang['user_notify'] = 'Notify user';
51$lang['note_notify'] = 'Notification emails are only sent if the user is given a new password.';
52$lang['note_group'] = 'New users will be added to the default group (%s) if no group is specified.';
53$lang['note_pass'] = 'The password will be autogenerated if the field is left empty and notification of the user is enabled.';
54$lang['add_ok'] = 'User added successfully';
55$lang['add_fail'] = 'User addition failed';
56$lang['notify_ok'] = 'Notification email sent';
57$lang['notify_fail'] = 'Notification email could not be sent';
58
59