1<?php
2/**
3 * English language file for groupmanager plugin
4 *
5 * @author Harald Ronge <harald@turtur.nl>
6 * base on groupmgr by Alex Forencich <alex@alexforencich.com>
7 */
8
9// menu entry for admin plugins
10$lang['menu'] = 'Group Manager';
11
12// custom language strings for the plugin
13$lang['notauthorized'] = 'Error: not authorized';
14$lang['updatesuccess'] = 'Updated successfully';
15$lang['updatefailed'] = 'Update failed';
16$lang['menu'] = 'User Manager';
17$lang['btn_update_group'] = 'Update group';
18
19//stolen from usermanager
20// custom language strings for the plugin
21$lang['noauth']      = '(user authentication not available)';
22$lang['nosupport']   = '(user management not supported)';
23
24$lang['badauth']     = 'invalid auth mechanism';     // should never be displayed!
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['field']       = 'Field';
33$lang['value']       = 'Value';
34$lang['add']         = 'Add User';
35$lang['delete']      = 'Delete';
36$lang['delete_selected'] = 'Delete selected user';
37$lang['edit']        = 'Edit user';
38$lang['edit_prompt'] = 'Edit this user';
39$lang['modify']      = 'Save changes to user';
40$lang['search']      = 'Search for user';
41$lang['search_prompt'] = 'Search with filter-values';
42$lang['search_default_group'] = 'Show only group members';
43$lang['clear']       = 'Show everybody';
44$lang['filter']      = 'Filter list with criteria';
45
46$lang['summary']     = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
47$lang['nonefound']   = 'No users found. %d users total.';
48$lang['delete_ok']   = '%d users deleted';
49$lang['delete_fail'] = '%d failed deleting.';
50$lang['update_ok']   = 'User updated successfully';
51$lang['update_fail'] = 'User update failed';
52$lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).';
53$lang['add_without_form'] = 'Trying to add user without form!';
54$lang['cant_delete_yourself'] = "You can't delete yourself!";
55$lang['cant_delete_if_more_groups'] = "User is part of other groups outside of this working group and can not be deleted";
56
57$lang['start']  = 'start';
58$lang['prev']   = 'previous';
59$lang['next']   = 'next';
60$lang['last']   = 'last';
61
62// added after 2006-03-09 release
63$lang['edit_usermissing'] = 'Selected user not found, the specified user name may have been deleted or changed elsewhere.';
64$lang['user_notify'] = 'Notify user';
65$lang['note_notify'] = 'Notification emails are only sent if the user is given a new password.';
66$lang['note_group'] = 'New users will be added to the default group (%s)';
67$lang['note_pass'] = 'The password will be autogenerated if the field is left empty and notification of the user is enabled.';
68$lang['add_ok'] = 'User added successfully';
69$lang['add_fail'] = 'User addition failed';
70$lang['notify_ok'] = 'Notification email sent';
71$lang['notify_fail'] = 'Notification email could not be sent';
72
73// required fields
74$lang['mail_required'] = "Mail is required field!";
75$lang['user_must_be_notified_with_generated_pwd'] = "When generating a password the user must be notified! Choose a password yourself or check '".$lang['user_notify']."'.";
76
77//Setup VIM: ex: et ts=4 enc=utf-8 :
78