diff options
Diffstat (limited to 'mod/videolist/languages/en.php')
-rw-r--r-- | mod/videolist/languages/en.php | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/mod/videolist/languages/en.php b/mod/videolist/languages/en.php new file mode 100644 index 000000000..d357725a7 --- /dev/null +++ b/mod/videolist/languages/en.php @@ -0,0 +1,78 @@ +<?php +/** + * Elgg videolist english language pack. + * + * @package ElggVideolist + */ + +$english = array( + + /** + * Menu items and titles + */ + + 'videolist' => "Videos", + 'videolist:owner' => "%s's videos", + 'videolist:friends' => "Friends' videos", + 'videolist:all' => "All site videos", + 'videolist:add' => "Add a video", + + 'videolist:group' => "Group videos", + 'groups:enablevideolist' => 'Enable group videos', + + 'videolist:edit' => "Edit this video", + 'videolist:delete' => "Delete this video", + + 'videolist:new' => "Add a video", + 'videolist:notification' => +'%s added a new video: + +%s +%s + +View and comment on the new video: +%s +', + 'videolist:delete:confirm' => 'Are you sure you want to delete this video?', + 'item:object:videolist_item' => 'Video', + 'videolist:nogroup' => 'This group does not have any video yet', + 'videolist:more' => 'More videos', + 'videolist:none' => 'No videos posted yet.', + + /** + * River + **/ + + 'river:create:object:videolist_item' => '%s created the video %s', + 'river:update:object:videolist_item' => '%s updated the video %s', + 'river:comment:object:videolist_item' => '%s commented on the video titled %s', + + /** + * Form fields + */ + + 'videolist:title' => 'Title', + 'videolist:description' => 'Description', + 'videolist:video_url' => 'Enter video URL', + 'videolist:access_id' => 'Who can see you posted this video?', + 'videolist:tags' => 'Add tags', + + /** + * Status and error messages + */ + 'videolist:error:no_save' => 'There was an error in saving the video, please try after sometime', + 'videolist:saved' => 'Your video has been saved successfully!', + 'videolist:deleted' => 'Your video was removed successfully!', + 'videolist:deletefailed' => 'Unfortunately, this video could not be removed now. Please try again later', + + + /** + * Widget + **/ + + 'videolist:num_videos' => 'Number of videos to display', + 'videolist:widget:description' => 'Your personal video playlist.', + +); + +add_translation("en", $english); |