en.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. /**
  3. * English translation for this plugin
  4. */
  5. $english = array(
  6. 'security_tools' => "Security Tools",
  7. // settings
  8. 'security_tools:settings:secure_upgrade' => "Secure upgrade.php",
  9. 'security_tools:settings:secure_upgrade:description' => "With a secured upgrade.php logged in site administrators can run upgrade.php or you'll need a special code (see link below).",
  10. 'security_tools:settings:mails' => "Security Mails",
  11. 'security_tools:settings:mails_admin_admins' => "Notify admins on (un)make admin",
  12. 'security_tools:settings:mails_admin_admins:description' => "Notify all other admins if there is a user that has been made an admin or has his admin rights removed.",
  13. 'security_tools:settings:mails_admin_user' => "Notify user on (un)make admin",
  14. 'security_tools:settings:mails_admin_user:description' => "Notify the user when his/her admin role is added or removed.",
  15. 'security_tools:settings:mails_password_change' => "Notify user on password change",
  16. 'security_tools:settings:mails_password_change:description' => "Notify the user if the password has been changed via the settings page",
  17. 'security_tools:settings:mails_banned' => "Notify user on (un)ban",
  18. 'security_tools:settings:mails_banned:description' => "Notify the user if he/she gets (un)banned by someone.",
  19. 'security_tools:settings:mails_verify_email_change' => "Verify email address change",
  20. 'security_tools:settings:mails_verify_email_change:description' => "If a users changes his/her emailaddress the new address should be verified first before the change is applied. A mail with a verification link will be sent to the new address. Also the user will receive a notice at the old emailaddress on a succesfull change.",
  21. 'security_tools:settings:other' => "Other",
  22. 'security_tools:settings:disable_autocomplete_on_password_fields' => "Disable autocomplete on password fields",
  23. 'security_tools:settings:disable_autocomplete_on_password_fields:description' => "Data entered in these fields will be cached by the browser. An attacker who can access the victim's browser could steal this information. This is especially important if the application is commonly used in shared computers such as cyber cafes or airport terminals. If you disable this, password management tools can no longer autofill these fields. The support for the autocomplete attribute can be browser specific.",
  24. // email change
  25. 'security_tools:usersettings:email:request' => "In order to complete your e-mail address change check the inbox of your %s account",
  26. 'security_tools:email_change_confirmation:error:user' => "You're not the user for whom this request was made",
  27. 'security_tools:email_change_confirmation:error:request' => "There is no pending e-mail address change",
  28. 'security_tools:email_change_confirmation:error:code' => "The supplied validation code is incorrect, please check your e-mail message",
  29. // admin notifications
  30. 'security_tools:notify_admins:make_admin:subject' => "A new site administrator was assigned for %s",
  31. 'security_tools:notify_admins:make_admin:message' => "Hi,
  32. The user %s was assigned as a new site administrator by %s.
  33. Check out the profile of the new site administrator here %s.
  34. If you believe this was done in error, please login here %s and undo this action.",
  35. 'security_tools:notify_admins:remove_admin:subject' => "A site administrator was removed from %s",
  36. 'security_tools:notify_admins:remove_admin:message' => "Hi,
  37. The user %s is no longer a site administrator. This action was taken by %s.
  38. Check out the profile of the old site administrator here %s.
  39. If you believe this was done in error, please login here %s and undo this action.",
  40. // user notifications
  41. 'security_tools:notify_user:make_admin:subject' => "You're granted site administrator right on %s",
  42. 'security_tools:notify_user:make_admin:message' => "Hi %s,
  43. You've been assigned as a new site administrator by %s.
  44. Enjoy your new found rights by logging in here %s.
  45. If you believe this was done in error, please contact one of the other site administrators.",
  46. 'security_tools:notify_user:remove_admin:subject' => "Your site administrator rights for %s were removed",
  47. 'security_tools:notify_user:remove_admin:message' => "Hi %s,
  48. Your site administrator role was removed by %s.
  49. If you believe this was done in error, please contact one of the other site administrators.",
  50. 'security_tools:notify_user:password:subject' => "Your password has been changed",
  51. 'security_tools:notify_user:password:message' => "Hi %s,
  52. Your password for %s has been changed.
  53. If you didn't do this or requested this. Please go to %s and request a new password or contact a site administrator.",
  54. 'security_tools:notify_user:email_change_request:subject' => "E-mail address change request for %s",
  55. 'security_tools:notify_user:email_change_request:message' => "Hi %s,
  56. You requested to change your e-mail address on %s to this e-mail address.
  57. In order to complete the request click on this link:
  58. %s",
  59. 'security_tools:notify_user:email_change:subject' => "E-mail address changed for %s",
  60. 'security_tools:notify_user:email_change:message' => "Hi %s,
  61. You e-mail address on %s has been changed.
  62. If you didn't do this or requested this. Please contact a site administrator.",
  63. 'security_tools:notify_user:ban:subject' => "You've been banned from %s",
  64. 'security_tools:notify_user:ban:message' => "Hi %s,
  65. Your account on %s has been banned, you can no longer use the site.
  66. If you believe this was done in error, please contact one of the site administrators.",
  67. 'security_tools:notify_user:unban:subject' => "You're no longer banned from %s",
  68. 'security_tools:notify_user:unban:message' => "Hi %s,
  69. Your account on %s is no longer banned, you can start using the site again.
  70. To login go to %s.
  71. If you believe this was done in error, please contact one of the site administrators.",
  72. );
  73. add_translation("en", $english);