diff options
author | Sem <sembrestels@riseup.net> | 2013-11-09 16:11:25 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2013-11-09 16:11:25 +0100 |
commit | 59448d8a9864573c05477a63a6dda404c455fdb6 (patch) | |
tree | 8222848ea99b84a33b07a3113ff63bb07ab46692 /mod/videolist/languages/en.php | |
parent | 4cf4e4d3969ab43978c95f88238547530b01422d (diff) | |
parent | 17d7adcb317d25e37d3091e94b66e3f16de54196 (diff) | |
download | elgg-59448d8a9864573c05477a63a6dda404c455fdb6.tar.gz elgg-59448d8a9864573c05477a63a6dda404c455fdb6.tar.bz2 |
Add 'mod/videolist/' from commit '17d7adcb317d25e37d3091e94b66e3f16de54196'
git-subtree-dir: mod/videolist
git-subtree-mainline: 4cf4e4d3969ab43978c95f88238547530b01422d
git-subtree-split: 17d7adcb317d25e37d3091e94b66e3f16de54196
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); |