en.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. return array(
  3. /**
  4. * Menu items and titles
  5. */
  6. 'messages' => "Messages",
  7. 'messages:unreadcount' => "%s unread",
  8. 'messages:back' => "back to messages",
  9. 'messages:user' => "%s's inbox",
  10. 'messages:posttitle' => "%s's messages: %s",
  11. 'messages:inbox' => "Inbox",
  12. 'messages:sent' => "Sent",
  13. 'messages:message' => "Message",
  14. 'messages:title' => "Subject",
  15. 'messages:to:help' => "Write recipient's username here.",
  16. 'messages:replying' => "Message replying to",
  17. 'messages:sendmessage' => "Send a message",
  18. 'messages:add' => "Compose a message",
  19. 'messages:sentmessages' => "Sent messages",
  20. 'messages:recent' => "Recent messages",
  21. 'messages:original' => "Original message",
  22. 'messages:yours' => "Your message",
  23. 'messages:toggle' => 'Toggle all',
  24. 'messages:markread' => 'Mark read',
  25. 'messages:recipient' => 'Choose a recipient&hellip;',
  26. 'messages:to_user' => 'To: %s',
  27. 'messages:new' => 'New message',
  28. 'notification:method:site' => 'Site',
  29. 'messages:error' => 'There was a problem saving your message. Please try again.',
  30. 'item:object:messages' => 'Messages',
  31. /**
  32. * Status messages
  33. */
  34. 'messages:posted' => "Your message was successfully sent.",
  35. 'messages:success:delete:single' => 'Message was deleted',
  36. 'messages:success:delete' => 'Messages deleted',
  37. 'messages:success:read' => 'Messages marked as read',
  38. 'messages:error:messages_not_selected' => 'No messages selected',
  39. 'messages:error:delete:single' => 'Unable to delete the message',
  40. /**
  41. * Email messages
  42. */
  43. 'messages:email:subject' => 'You have a new message!',
  44. 'messages:email:body' => "You have a new message from %s. It reads:
  45. %s
  46. To view your messages, click here:
  47. %s
  48. To send %s a message, click here:
  49. %s
  50. Please do not reply to this email.",
  51. /**
  52. * Error messages
  53. */
  54. 'messages:blank' => "Sorry; you need to actually put something in the message body before we can save it.",
  55. 'messages:notfound' => "Sorry; we could not find the specified message.",
  56. 'messages:notdeleted' => "Sorry; we could not delete this message.",
  57. 'messages:nopermission' => "You do not have permission to alter that message.",
  58. 'messages:nomessages' => "There are no messages.",
  59. 'messages:user:nonexist' => "We could not find the recipient in the user database.",
  60. 'messages:user:blank' => "You did not select someone to send this to.",
  61. 'messages:user:self' => "You cannot send a message to yourself.",
  62. 'messages:deleted_sender' => 'Deleted user',
  63. );