en.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. $english = array(
  3. 'account_removal' => "Account Removal",
  4. 'account_removal:menu:title' => "Account Removal",
  5. // default disable reason
  6. 'account_removal:disable:default' => "This account has been disabled at the users request",
  7. // admin settings
  8. 'account_removal:admin:settings:user_options' => "Select the available account removal option(s)",
  9. 'account_removal:admin:settings:user_options:disable' => "Disable",
  10. 'account_removal:admin:settings:user_options:remove' => "Remove",
  11. 'account_removal:admin:settings:user_options:disable_and_remove' => "Disable and Remove",
  12. 'account_removal:admin:settings:groupadmins_allowed' => "Group Admins can disable/remove themselves",
  13. 'account_removal:admin:settings:reason_required' => "Account Removal reason required for user",
  14. // user removal
  15. 'account_removal:user:error:admin' => "Admins are not allowed to disable / remove themselves",
  16. 'account_removal:user:error:user' => "You can only disable / remove yourself",
  17. 'account_removal:user:error:no_user' => "Invalid input; User not found",
  18. 'account_removal:user:title' => "Account Removal",
  19. // user removal form
  20. 'account_removal:forms:user:user_options:description:disable' => "You can <b>disable</b> your account here. This will cause your profile to be disabled. This means your profile details are no longer visible and your account will not appear in any user listing.<br /><br />All your content, like blogs, files and pages will still be accessable by other users.",
  21. 'account_removal:forms:user:user_options:description:remove' => "You can <b>remove</b> your account here. This will cause your profile to be completely removed. This means your profile details are no longer visible and your account will not appear in any user listing.<br /><br />Also <b>all</b> your content, like blogs, files and pages will be removed. This action can not be undone!",
  22. 'account_removal:forms:user:user_options:description:disable_and_remove' => "You can <b>disable</b> or <b>remove</b> your account here. This will disable or remove your profile. This means your profile details are no longer visible and your account will not appear in any user listing.<br /><br />If you choose to <b>disable</b> your account, all your content, like blogs, files and pages will still be accessable by other users.<br />If you choose to <b>remove</b> your account, all your content, like blogs, files and pages will be removed. This action can not be undone!",
  23. 'account_removal:forms:user:user_options:description:general' => "<br />When you submit this Account Removal request you will receive a confirmation email in your email box. The Account Removal will be effectuated when you follow the instructions in this email.",
  24. 'account_removal:forms:user:user_options:disable' => "Disable this account",
  25. 'account_removal:forms:user:user_options:remove' => "Remove this account",
  26. 'account_removal:forms:user:reason' => "Please enter a reason for this Account Removal",
  27. 'account_removal:forms:user:required' => "This information is required",
  28. 'account_removal:forms:user:js:error:reason' => "You need to provide a reason",
  29. 'account_removal:forms:user:js:confirm:disable' => "Are you sure you wish to disable this account?",
  30. 'account_removal:forms:user:js:confirm:remove' => "Are you sure you wish to remove this account?",
  31. 'account_removal:forms:user:error:no_user' => "Invalid input; User not found",
  32. 'account_removal:forms:user:error:group_owner' => "You are currently not able to disable or remove yourself as you are still group admin of the following groups.",
  33. // confirmation message
  34. 'account_removal:message:disable:subject' => "You have requested to disable your account on %s",
  35. 'account_removal:message:disable:body' => "Dear %s,
  36. You have requested that your account be disabled.
  37. All the content you have made on the site will remain available to the other users. However you can no longer login also your account will not appear in any user listing and your profile will be inaccessable.
  38. To confirm that you realy want to disable your account please click the following link:
  39. %s
  40. We hope you've enjoyed our community and thank you for your contributions.",
  41. 'account_removal:message:remove:subject' => "You have requested to remove your account on %s",
  42. 'account_removal:message:remove:body' => "Dear %s,
  43. You have requested that your account be removed.
  44. All the content you have made on the site will also be removed
  45. To confirm that you realy want to remove your account please click the following link:
  46. %s
  47. We hope you've enjoyed our community and thank you for your contributions.",
  48. // thank you message
  49. 'account_removal:message:thank_you:remove:subject' => "Thank you for using %s",
  50. 'account_removal:message:thank_you:remove:body' => "Dear %s,
  51. We would like to thank you for using %s. We hope you enjoyed our community.
  52. If at any time you would like to return, you can always create a new account.
  53. Again thank you for your contributions.",
  54. 'account_removal:message:thank_you:disable:subject' => "Thank you for using %s",
  55. 'account_removal:message:thank_you:disable:body' => "Dear %s,
  56. We would like to thank you for using %s. We hope you enjoyed our community.
  57. If at any time you would like to return, you can always create a new account or ask the site administrator to reactivate your account.
  58. Again thank you for your contributions.",
  59. // user removal action
  60. 'account_removal:actions:remove:error:user_guid:admin' => "Admins are not allowed to disable / remove themselves",
  61. 'account_removal:actions:remove:error:user_guid:user' => "You can only disable / remove yourself",
  62. 'account_removal:actions:remove:error:user_guid:unknown' => "Invalid input; User not found",
  63. 'account_removal:actions:remove:error:group_owner' => "You are currently not able to disable or remove yourself as you are still group admin of the following groups",
  64. 'account_removal:actions:remove:error:reason' => "You need to provide a reason",
  65. 'account_removal:actions:remove:error:type_match' => "The requested account removal type is not allowed",
  66. 'account_removal:actions:remove:error:token_mismatch' => "The supplied confirmation token doesn't match. Please request a new e-mail confirmation.",
  67. 'account_removal:actions:remove:success:remove' => "Your account was successfully removed",
  68. 'account_removal:actions:remove:success:disable' => "Your account was successfully disabled",
  69. 'account_removal:actions:remove:success:request' => "You have successfully requested to disable / remove your account. Please check your e-mail for a confirmation link.",
  70. '' => "",
  71. );
  72. add_translation("en", $english);