diff options
author | Dave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-23 17:30:14 +0000 |
---|---|---|
committer | Dave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-23 17:30:14 +0000 |
commit | a161b38e65fa698133402f4fb23548242f494018 (patch) | |
tree | e75300111195f40f14c2389abddac65db9068da8 /languages | |
download | elgg-a161b38e65fa698133402f4fb23548242f494018.tar.gz elgg-a161b38e65fa698133402f4fb23548242f494018.tar.bz2 |
This videolist plugin shows real promise so we shall work on it for v1.8 then release it back to the community.
Diffstat (limited to 'languages')
-rw-r--r-- | languages/en.php | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/languages/en.php b/languages/en.php new file mode 100644 index 000000000..d0c5555b0 --- /dev/null +++ b/languages/en.php @@ -0,0 +1,56 @@ +<?php
+ /**
+ * Elgg Video Plugin
+ * This plugin allows users to create a library of youtube/vimeo/metacafe videos
+ * @file - language file 'en'
+ * @package Elgg
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Prateek Choudhary <synapticfield@gmail.com>
+ * @copyright Prateek Choudhary
+ */
+ $english = array(
+ "videolist" => "My Videos", + + "videolist:home" => '%s \'s Videos', + "videolist:new" => 'Add a Video', + "videolist:find" => 'All Site videos', + "videolist:search" => "All Site videos", + "videolist:title_videourl" => 'Enter Video Url', + "videolist:submit" => 'Submit', + "videolist:videoTitle" => "Title", + "videolist:error" => 'There was an error in saving the video, please try after sometime', + "videolist:posted" => 'Your video has been saved successfully!', + "video:more" => "View all videos", + "video:none" => "sorry, no videos were found", + "candidateprofile:candidatevideo" => "My videos", + "videos:deleted" => "Your Video was removed successfully!", + "videos:notdeleted" => "Unfortunately, this video could not be removed now. Please try again later", + "videolist:widget" => "Videos", + "videolist:widget:description" => "Your personal video playlist", + "videolist:num_videos" => "Number of videos to display", + 'videolist:widget' => "My Videos", + "videolist:widget:description" => "Showcase your personal video gallery from youtube", + "profile:videoheader" => "My Video Gallery", + "videolist:title_access" => "Access", + "item:object:videolist" => "Videos", + "videolist:tags" => "Add Tags", + "videolist:browse" => "Find Videos - %s", + "videolist:browsemenu" => "Find Videos", + "videolist:title_search_tube" => "Search Videos From", + "videolist:searchTubeVideos" => "Search youtube.com", + "videolist:comments" => "Comments", + "videolist:commentspost" => "Post", + "videolist:river:annotate" => "%s commented on", + "videolist:river:item" => "a video", + "videolist:river:created" => "%s added", + "videolist:searchTubeVideos:metacafe" => "Search metacafe.com", + "videolist:searchTubeVideos:vimeo" => "Search vimeo.com", + "videolist:searchTubeVideos:googlevideos" => "Search video.google.com", + "videolist:group" => "Group Videos", + "videolist:groupall" => "All Group Videos", + "videolist:none" => "This group does not have any videos yet",
+ );
+
+ add_translation("en",$english);
+
+?> |