[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/lib/plugins/usermanager/lang/en/ -> lang.php (source)

   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  $lang['export_all']  = 'Export All Users (CSV)';
  35  $lang['export_filtered'] = 'Export Filtered User list (CSV)';
  36  $lang['import']      = 'Import New Users';
  37  $lang['line']        = 'Line no.';
  38  $lang['error']       = 'Error message';
  39  
  40  $lang['summary']     = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
  41  $lang['nonefound']   = 'No users found. %d users total.';
  42  $lang['delete_ok']   = '%d users deleted';
  43  $lang['delete_fail'] = '%d failed deleting.';
  44  $lang['delete_fail_self'] = 'You can\'t delete yourself';
  45  $lang['update_ok']   = 'User updated successfully';
  46  $lang['update_fail'] = 'User update failed';
  47  $lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).';
  48  
  49  $lang['start']  = 'start';
  50  $lang['prev']   = 'previous';
  51  $lang['next']   = 'next';
  52  $lang['last']   = 'last';
  53  
  54  // added after 2006-03-09 release
  55  $lang['edit_usermissing'] = 'Selected user not found, the specified user name may have been deleted or changed elsewhere.';
  56  $lang['user_notify'] = 'Notify user';
  57  $lang['note_notify'] = 'Notification emails are only sent if the user is given a new password.';
  58  $lang['note_group'] = 'New users will be added to the default group (%s) if no group is specified.';
  59  $lang['note_pass'] = 'The password will be autogenerated if the field is left empty and notification of the user is enabled.';
  60  $lang['add_ok'] = 'User added successfully';
  61  $lang['add_fail'] = 'User addition failed';
  62  $lang['notify_ok'] = 'Notification email sent';
  63  $lang['notify_fail'] = 'Notification email could not be sent';
  64  
  65  // import & errors
  66  $lang['import_userlistcsv'] = 'User list file (CSV):  ';
  67  $lang['import_header'] = 'Most Recent Import - Failures';
  68  $lang['import_success_count'] = 'User Import: %d users found, %d imported successfully.';
  69  $lang['import_failure_count'] = 'User Import: %d failed. Failures are listed below.';
  70  $lang['import_error_fields']  = "Insufficient fields, found %d, require 4.";
  71  $lang['import_error_baduserid'] = "User-id missing";
  72  $lang['import_error_badname'] = 'Bad name';
  73  $lang['import_error_badmail'] = 'Bad email address';
  74  $lang['import_error_upload']  = 'Import Failed. The csv file could not be uploaded or is empty.';
  75  $lang['import_error_readfail'] = 'Import Failed. Unable to read uploaded file.';
  76  $lang['import_error_create']  = 'Unable to create the user';
  77  $lang['import_notify_fail']   = 'Notification message could not be sent for imported user, %s with email %s.';
  78  $lang['import_downloadfailures'] = 'Download Failures as CSV for correction';
  79  
  80  $lang['addUser_error_missing_pass'] = 'Please either set a password or activate user notification to enable password generation.';
  81  $lang['addUser_error_pass_not_identical'] = 'The entered passwords were not identical.';
  82  $lang['addUser_error_modPass_disabled'] = 'Modifying passwords is currently disabled';
  83  $lang['addUser_error_name_missing'] = 'Please enter a name for the new user.';
  84  $lang['addUser_error_modName_disabled'] = 'Modifying names is currently disabled.';
  85  $lang['addUser_error_mail_missing'] = 'Please enter an email address for the new user.';
  86  $lang['addUser_error_modMail_disabled'] = 'Modifying email adresses is currently disabled.';
  87  $lang['addUser_error_create_event_failed'] = 'A plugin prevented the new user being added. Review possible other messages for more information.';