lang.php 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. /**
  3. * English language file
  4. *
  5. * @author Chris Smith <chris@jalakai.co.uk>
  6. */
  7. $lang['menu'] = 'User Manager';
  8. // custom language strings for the plugin
  9. $lang['noauth'] = '(user authentication not available)';
  10. $lang['nosupport'] = '(user management not supported)';
  11. $lang['badauth'] = 'invalid auth mechanism'; // should never be displayed!
  12. $lang['user_id'] = 'User';
  13. $lang['user_pass'] = 'Password';
  14. $lang['user_name'] = 'Real Name';
  15. $lang['user_mail'] = 'Email';
  16. $lang['user_groups'] = 'Groups';
  17. $lang['field'] = 'Field';
  18. $lang['value'] = 'Value';
  19. $lang['add'] = 'Add';
  20. $lang['delete'] = 'Delete';
  21. $lang['delete_selected'] = 'Delete Selected';
  22. $lang['edit'] = 'Edit';
  23. $lang['edit_prompt'] = 'Edit this user';
  24. $lang['modify'] = 'Save Changes';
  25. $lang['search'] = 'Search';
  26. $lang['search_prompt'] = 'Perform search';
  27. $lang['clear'] = 'Reset Search Filter';
  28. $lang['filter'] = 'Filter';
  29. $lang['export_all'] = 'Export All Users (CSV)';
  30. $lang['export_filtered'] = 'Export Filtered User list (CSV)';
  31. $lang['import'] = 'Import New Users';
  32. $lang['line'] = 'Line no.';
  33. $lang['error'] = 'Error message';
  34. $lang['summary'] = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
  35. $lang['nonefound'] = 'No users found. %d users total.';
  36. $lang['delete_ok'] = '%d users deleted';
  37. $lang['delete_fail'] = '%d failed deleting.';
  38. $lang['update_ok'] = 'User updated successfully';
  39. $lang['update_fail'] = 'User update failed';
  40. $lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).';
  41. $lang['start'] = 'start';
  42. $lang['prev'] = 'previous';
  43. $lang['next'] = 'next';
  44. $lang['last'] = 'last';
  45. // added after 2006-03-09 release
  46. $lang['edit_usermissing'] = 'Selected user not found, the specified user name may have been deleted or changed elsewhere.';
  47. $lang['user_notify'] = 'Notify user';
  48. $lang['note_notify'] = 'Notification emails are only sent if the user is given a new password.';
  49. $lang['note_group'] = 'New users will be added to the default group (%s) if no group is specified.';
  50. $lang['note_pass'] = 'The password will be autogenerated if the field is left empty and notification of the user is enabled.';
  51. $lang['add_ok'] = 'User added successfully';
  52. $lang['add_fail'] = 'User addition failed';
  53. $lang['notify_ok'] = 'Notification email sent';
  54. $lang['notify_fail'] = 'Notification email could not be sent';
  55. // import & errors
  56. $lang['import_userlistcsv'] = 'User list file (CSV): ';
  57. $lang['import_header'] = 'Most Recent Import - Failures';
  58. $lang['import_success_count'] = 'User Import: %d users found, %d imported successfully.';
  59. $lang['import_failure_count'] = 'User Import: %d failed. Failures are listed below.';
  60. $lang['import_error_fields'] = "Insufficient fields, found %d, require 4.";
  61. $lang['import_error_baduserid'] = "User-id missing";
  62. $lang['import_error_badname'] = 'Bad name';
  63. $lang['import_error_badmail'] = 'Bad email address';
  64. $lang['import_error_upload'] = 'Import Failed. The csv file could not be uploaded or is empty.';
  65. $lang['import_error_readfail'] = 'Import Failed. Unable to read uploaded file.';
  66. $lang['import_error_create'] = 'Unable to create the user';
  67. $lang['import_notify_fail'] = 'Notification message could not be sent for imported user, %s with email %s.';
  68. $lang['import_downloadfailures'] = 'Download Failures as CSV for correction';
  69. $lang['addUser_error_missing_pass'] = 'Please either set a password or activate user notification to enable password generation.';
  70. $lang['addUser_error_pass_not_identical'] = 'The entered passwords were not identical.';
  71. $lang['addUser_error_modPass_disabled'] = 'Modifing passwords is currently disabled';
  72. $lang['addUser_error_name_missing'] = 'Please enter a name for the new user.';
  73. $lang['addUser_error_modName_disabled'] = 'Modifing names is currently disabled.';
  74. $lang['addUser_error_mail_missing'] = 'Please enter an Email-Adress for the new user.';
  75. $lang['addUser_error_modMail_disabled'] = 'Modifing Email-Adresses is currently disabled.';
  76. $lang['addUser_error_create_event_failed'] = 'A plugin prevented the new user being added. Review possible other messages for more information.';