en.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. return array(
  3. 'notifier:' => '',
  4. 'notifier:notification' => 'Notification',
  5. 'notifier:notifications' => 'Notifications',
  6. 'notifier:view:all' => 'View all notifications',
  7. 'notifier:all' => 'All notifications',
  8. 'notifier:none' => 'No notifications',
  9. 'notifier:unreadcount' => 'Unread notifications (%s)',
  10. 'notification:method:notifier' => 'Notifier',
  11. 'notifier:dismiss_all' => 'Dismiss all',
  12. 'notifier:clear_all' => 'Clear all',
  13. 'notifier:deleteconfirm' => 'This removes all notifications including the unread ones. Are you sure you want to continue?',
  14. 'item:object:notification' => 'Notifier items',
  15. // System messages
  16. 'notifier:message:dismissed_all' => 'All notifications dismissed successfully',
  17. 'notifier:message:deleted_all' => 'All notifications cleared successfully',
  18. 'notifier:message:deleted' => 'Notification deleted successfully',
  19. // Error messages
  20. 'notifier:error:not_found' => 'This notification was not found',
  21. 'notifier:error:target_not_found' => 'The content was not found, so it has propably been deleted.',
  22. 'notifier:error:cannot_delete' => 'Cannot delete notification',
  23. // River strings that are not available in Elgg core
  24. 'river:comment:object:groupforumtopic' => '%s replied on the discussion topic %s',
  25. 'river:mention:object:comment' => '%s mentioned you in %s',
  26. // This is used to create messages like "Lisa and George like your post"
  27. 'notifier:two_subjects' => '%s and %s',
  28. // This is used to create messages like "Lisa and 5 others like your post"
  29. 'notifier:multiple_subjects' => '%s and %s other users',
  30. // Likes plugin
  31. 'likes:notifications:summary' => '%s likes your post %s',
  32. 'likes:notifications:summary:2' => '%s and %s like your post %s',
  33. 'likes:notifications:summary:n' => '%s like your post %s',
  34. // Friends
  35. 'friend:notifications:summary' => '%s has made you a friend',
  36. 'friend:notifications:summary:2' => '%s and %s have made you a friend',
  37. 'friend:notifications:summary:n' => '%s have made you a friend',
  38. // Comments
  39. 'comment:notifications:summary' => '%s commented %s',
  40. 'comment:notifications:summary:2' => '%s and %s commented %s',
  41. 'comment:notifications:summary:n' => '%s commented %s',
  42. // Groups
  43. 'groups:notifications:invitation' => '%s has invited you to the group %s',
  44. 'groups:notifications:invitation:hidden' => 'You have a new %s from %s',
  45. 'groups:notifications:membership_request' => '%s has requested membership in group %s',
  46. 'groups:invitation' => 'group invitation',
  47. // Plugin settings
  48. 'notifier:settings:desc' => 'Default notification settings for new users',
  49. 'notifier:settings:enable_personal' => 'Personal notifications',
  50. 'notifier:settings:enable_personal:desc' => "A notification is added when an action (comment, like, etc.) is performed on user's content.",
  51. 'notifier:settings:enable_collections' => 'Friends',
  52. 'notifier:settings:enable_collections:desc' => "A notification is added when any of user's friends create new content.",
  53. 'notifier:settings:groups:desc' => 'Default notification setting for new group members',
  54. 'notifier:settings:enable_groups' => 'Group notifications',
  55. 'notifier:settings:enable_groups:desc' => 'A notification is added when new content is added to a group that the user is a member of.',
  56. );