xref: /dokuwiki/lib/plugins/usermanager/lang/en/lang.php (revision 0440ff150cefe9088c8aa126e646f901c69a7793)
1*0440ff15Schris<?php
2*0440ff15Schris/**
3*0440ff15Schris * english language file
4*0440ff15Schris */
5*0440ff15Schris
6*0440ff15Schris// settings must be present and set appropriately for the language
7*0440ff15Schris$lang['encoding']   = 'utf-8';
8*0440ff15Schris$lang['direction']  = 'ltr';
9*0440ff15Schris
10*0440ff15Schris// for admin plugins, the menu prompt to be displayed in the admin menu
11*0440ff15Schris// if set here, the plugin doesn't need to override the getMenuText() method
12*0440ff15Schris$lang['menu'] = 'User Manager';
13*0440ff15Schris
14*0440ff15Schris// custom language strings for the plugin
15*0440ff15Schris$lang['badauth']     = 'invalid auth mechanism';
16*0440ff15Schris
17*0440ff15Schris$lang['user_id']     = 'User';
18*0440ff15Schris$lang['user_pass']   = 'Password';
19*0440ff15Schris$lang['user_name']   = 'Real Name';
20*0440ff15Schris$lang['user_mail']   = 'Email';
21*0440ff15Schris$lang['user_groups'] = 'Groups';
22*0440ff15Schris
23*0440ff15Schris$lang['field']       = 'Field';
24*0440ff15Schris$lang['value']       = 'Value';
25*0440ff15Schris$lang['add']         = 'Add';
26*0440ff15Schris$lang['delete']      = 'Delete';
27*0440ff15Schris$lang['delete_selected'] = 'Delete Selected';
28*0440ff15Schris$lang['edit']        = 'Edit';
29*0440ff15Schris$lang['edit_prompt'] = 'Edit this user';
30*0440ff15Schris$lang['modify']      = 'Save Changes';
31*0440ff15Schris$lang['search']      = 'Search';
32*0440ff15Schris$lang['search_prompt'] = 'Perform search';
33*0440ff15Schris$lang['clear']       = 'Reset Search Filter';
34*0440ff15Schris$lang['filter']      = 'Filter';
35*0440ff15Schris
36*0440ff15Schris$lang['summary']     = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
37*0440ff15Schris$lang['nonefound']   = 'No users found. %d users total.';
38*0440ff15Schris$lang['delete_ok']   = '%d users deleted';
39*0440ff15Schris$lang['delete_fail'] = '%d failed deleting.';
40*0440ff15Schris$lang['update_ok']   = 'user updated sucessfully';
41*0440ff15Schris$lang['update_fail'] = 'user update failed';
42*0440ff15Schris$lang['update_exists'] = 'user name change failed, the specified user name (%s) already exists (any other changes will be applied).';
43*0440ff15Schris
44*0440ff15Schris$lang['start']  = 'start';
45*0440ff15Schris$lang['prev']   = 'previous';
46*0440ff15Schris$lang['next']   = 'next';
47*0440ff15Schris$lang['last']   = 'last';
48*0440ff15Schris
49*0440ff15Schris?>
50