en.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. return [
  3. 'friend_request' => "Friend Request",
  4. 'friend_request:menu' => "Friend Requests",
  5. 'friend_request:title' => "Friend Requests for: %s",
  6. 'friend_request:new' => "New friend request",
  7. 'friend_request:friend:add:pending' => "Friend request pending",
  8. // plugins settings
  9. 'friend_request:settings:add_river' => "Create river entries when a friend request is accepted",
  10. // notifications
  11. 'friend_request:newfriend:subject' => "%s wants to be your friend!",
  12. 'friend_request:newfriend:body' => "%s wants to be your friend! But they are waiting for you to approve the request...so login now so you can approve the request!
  13. You can view your pending friend requests at:
  14. %s
  15. Make sure you are logged into the website before clicking on the following link otherwise you will be redirected to the login page.
  16. (You cannot reply to this email.)",
  17. // Actions
  18. // Add request
  19. 'friend_request:add:failure' => "Sorry, because of a system error we were unable to complete your request. Please try again.",
  20. 'friend_request:add:successful' => "You have requested to be friends with %s. They must approve your request before they will show on your friends list.",
  21. 'friend_request:add:exists' => "You've already requested to be friends with %s.",
  22. // Approve request
  23. 'friend_request:approve' => "Approve",
  24. 'friend_request:approve:subject' => "%s has accepted your friend request",
  25. 'friend_request:approve:message' => "Dear %s,
  26. %s has accepted your request to become a friend.",
  27. 'friend_request:approve:successful' => "%s is now a friend",
  28. 'friend_request:approve:fail' => "Error while creating friend relation with %s",
  29. // Decline request
  30. 'friend_request:decline' => "Decline",
  31. 'friend_request:decline:subject' => "%s has declined your friend request",
  32. 'friend_request:decline:message' => "Dear %s,
  33. %s has declined your request to become a friend.",
  34. 'friend_request:decline:success' => "Friend request successfully declined",
  35. 'friend_request:decline:fail' => "Error while declining Friend request, please try again",
  36. // Revoke request
  37. 'friend_request:revoke' => "Revoke",
  38. 'friend_request:revoke:success' => "Friend request successfully revoked",
  39. 'friend_request:revoke:fail' => "Error while revoking Friend request, please try again",
  40. // Views
  41. // Received
  42. 'friend_request:received:title' => "Received Friend requests",
  43. 'friend_request:received:none' => "No requests pending your approval",
  44. // Sent
  45. 'friend_request:sent:title' => "Sent Friend requests",
  46. 'friend_request:sent:none' => "No sent requests pending approval",
  47. ];