en.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /**
  3. * Elgg videolist english language pack.
  4. *
  5. * @package ElggVideolist
  6. */
  7. $english = array(
  8. /**
  9. * Menu items and titles
  10. */
  11. 'videolist' => "Videos",
  12. 'videolist:owner' => "%s's videos",
  13. 'videolist:friends' => "Friends' videos",
  14. 'videolist:all' => "All site videos",
  15. 'videolist:add' => "Add a video",
  16. 'videolist:video_name' => 'Title',
  17. 'videolist:group' => "Group videos",
  18. 'groups:enablevideolist' => 'Enable group videos',
  19. 'videolist:edit' => "Edit this video",
  20. 'videolist:delete' => "Delete this video",
  21. 'videolist:new' => "Add a video",
  22. 'videolist:notification' =>
  23. '%s added a new video:
  24. %s
  25. %s
  26. View and comment on the new video:
  27. %s
  28. ',
  29. 'videolist:delete:confirm' => 'Are you sure you want to delete this video?',
  30. 'item:object:videolist_item' => 'Videos',
  31. 'videolist:nogroup' => 'This group does not have any video yet',
  32. 'videolist:more' => 'More videos',
  33. 'videolist:none' => 'No videos posted yet.',
  34. /**
  35. * River
  36. **/
  37. 'river:create:object:videolist_item' => '%s created the video %s',
  38. 'river:update:object:videolist_item' => '%s updated the video %s',
  39. 'river:comment:object:videolist_item' => '%s commented on the video titled %s',
  40. /**
  41. * Form fields
  42. */
  43. 'videolist:title' => 'Title',
  44. 'videolist:description' => 'Description',
  45. 'videolist:video_url' => 'Enter video URL (Vimeo or Youtube)',
  46. 'videolist:access_id' => 'Who can see you posted this video?',
  47. 'videolist:tags' => 'Add tags',
  48. /**
  49. * Status and error messages
  50. */
  51. 'videolist:error:no_save' => 'There was an error in saving the video, please try after sometime',
  52. 'videolist:saved' => 'Your video has been saved successfully!',
  53. 'videolist:deleted' => 'Your video was removed successfully!',
  54. 'videolist:deletefailed' => 'Unfortunately, this video could not be removed now. Please try again later',
  55. 'videolist:error:invalid_url' => 'This video source is not supported',
  56. /**
  57. * Widget
  58. **/
  59. 'videolist:num_videos' => 'Number of videos to display',
  60. 'videolist:widget:description' => 'Your personal video playlist.',
  61. );
  62. add_translation("en", $english);