xref: /dokuwiki/lib/plugins/usermanager/lang/en/lang.php (revision 51d94d49a96d3c3d2a1c98e75b7a02030b5915e4)
10440ff15Schris<?php
20440ff15Schris/**
30440ff15Schris * english language file
40440ff15Schris */
50440ff15Schris
60440ff15Schris// settings must be present and set appropriately for the language
70440ff15Schris$lang['encoding']   = 'utf-8';
80440ff15Schris$lang['direction']  = 'ltr';
90440ff15Schris
100440ff15Schris// for admin plugins, the menu prompt to be displayed in the admin menu
110440ff15Schris// if set here, the plugin doesn't need to override the getMenuText() method
120440ff15Schris$lang['menu'] = 'User Manager';
130440ff15Schris
140440ff15Schris// custom language strings for the plugin
15*51d94d49Schris$lang['noauth']      = '(user authentication not available)';
16*51d94d49Schris$lang['nosupport']   = '(user management not supported)';
17*51d94d49Schris
18*51d94d49Schris$lang['badauth']     = 'invalid auth mechanism';     // should never be displayed!
190440ff15Schris
200440ff15Schris$lang['user_id']     = 'User';
210440ff15Schris$lang['user_pass']   = 'Password';
220440ff15Schris$lang['user_name']   = 'Real Name';
230440ff15Schris$lang['user_mail']   = 'Email';
240440ff15Schris$lang['user_groups'] = 'Groups';
250440ff15Schris
260440ff15Schris$lang['field']       = 'Field';
270440ff15Schris$lang['value']       = 'Value';
280440ff15Schris$lang['add']         = 'Add';
290440ff15Schris$lang['delete']      = 'Delete';
300440ff15Schris$lang['delete_selected'] = 'Delete Selected';
310440ff15Schris$lang['edit']        = 'Edit';
320440ff15Schris$lang['edit_prompt'] = 'Edit this user';
330440ff15Schris$lang['modify']      = 'Save Changes';
340440ff15Schris$lang['search']      = 'Search';
350440ff15Schris$lang['search_prompt'] = 'Perform search';
360440ff15Schris$lang['clear']       = 'Reset Search Filter';
370440ff15Schris$lang['filter']      = 'Filter';
380440ff15Schris
390440ff15Schris$lang['summary']     = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
400440ff15Schris$lang['nonefound']   = 'No users found. %d users total.';
410440ff15Schris$lang['delete_ok']   = '%d users deleted';
420440ff15Schris$lang['delete_fail'] = '%d failed deleting.';
430440ff15Schris$lang['update_ok']   = 'user updated sucessfully';
440440ff15Schris$lang['update_fail'] = 'user update failed';
450440ff15Schris$lang['update_exists'] = 'user name change failed, the specified user name (%s) already exists (any other changes will be applied).';
460440ff15Schris
470440ff15Schris$lang['start']  = 'start';
480440ff15Schris$lang['prev']   = 'previous';
490440ff15Schris$lang['next']   = 'next';
500440ff15Schris$lang['last']   = 'last';
510440ff15Schris
520440ff15Schris?>
53