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'; 340440ff15Schris 350440ff15Schris$lang['summary'] = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.'; 360440ff15Schris$lang['nonefound'] = 'No users found. %d users total.'; 370440ff15Schris$lang['delete_ok'] = '%d users deleted'; 380440ff15Schris$lang['delete_fail'] = '%d failed deleting.'; 39d613051aSAndreas Gohr$lang['update_ok'] = 'User updated successfully'; 40262065efSAndreas Gohr$lang['update_fail'] = 'User update failed'; 41262065efSAndreas Gohr$lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).'; 420440ff15Schris 430440ff15Schris$lang['start'] = 'start'; 440440ff15Schris$lang['prev'] = 'previous'; 450440ff15Schris$lang['next'] = 'next'; 460440ff15Schris$lang['last'] = 'last'; 470440ff15Schris 4878c7c8c9Schris// added after 2006-03-09 release 4978c7c8c9Schris$lang['edit_usermissing'] = 'Selected user not found, the specified user name may have been deleted or changed elsewhere.'; 50a6858c6aSchris$lang['user_notify'] = 'Notify user'; 51a6858c6aSchris$lang['note_notify'] = 'Notification emails are only sent if the user is given a new password.'; 52a6858c6aSchris$lang['note_group'] = 'New users will be added to the default group (%s) if no group is specified.'; 53*c3f4fb63SGina Haeussge$lang['note_pass'] = 'The password will be autogenerated if the field is left empty and notification of the user is enabled.'; 54a6858c6aSchris$lang['add_ok'] = 'User added successfully'; 55a6858c6aSchris$lang['add_fail'] = 'User addition failed'; 56a6858c6aSchris$lang['notify_ok'] = 'Notification email sent'; 57a6858c6aSchris$lang['notify_fail'] = 'Notification email could not be sent'; 5878c7c8c9Schris 59