diff options
Diffstat (limited to 'languages/en.php')
| -rw-r--r-- | languages/en.php | 113 | 
1 files changed, 66 insertions, 47 deletions
| diff --git a/languages/en.php b/languages/en.php index ce8a24a3d..04a9355bf 100644 --- a/languages/en.php +++ b/languages/en.php @@ -7,53 +7,72 @@  $english = array( -	"videolist" => "Videos", - -	"videolist:home" => '%s \'s Videos', -	"videolist:user" => '%s \'s Videos', -	"videolist:new" => 'Add a Video', -	"videolist:find" => 'All Site videos', -	"videolist:all" => 'All Site videos', -	"videolist:add" => 'Add a Video', -	"videolist:play:video" => 'Play', -	"videolist:add:video" => 'Add', -	"videolist:search" => "All Site videos", +	/** +	 * Menu items and titles +	 */ + +	'videolist' => "Videos", +	'videolist:owner' => "%s's videos",  	'videolist:friends' => "Friends' videos", -	'videolist:edit' => "Edit video", -	'videolist:ingroup' => "in the group", -	"videolist:submit" => 'Submit', -	"videolist:title" => "Title", -	"videolist:description" => "Description", -	"videolist:video_url" => "Enter video URL", -	"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_item:more" => "View all videos", -	"videolist_item:none" => "sorry, no videos were found", -	"videolist:deleted" => "Your video was removed successfully!", -	"videolist:deletefailed" => "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:access_id" => "Who can see you posted this video?", -	"item:object:videolist_item" => "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", -	"river:create:object:videolist_item" => "%s added the video %s", -	"river:comment:object:videolist_item" => "%s commented on %s", -	"videolist:river:item" => "a video", -	"videolist:river:created" => "%s added", -	"videolist:group" => "Group Videos", -	"videolist:groupall" => "All Group Videos", -	"videolist:delete:confirm" => "Are you sure you want to delete this video?", -	"videolist:none" => "No videos were found.", +	'videolist:all' => "All site videos", +	'videolist:add' => "Add video", + +	'videolist:group' => "Group videos", +	'groups:enablevideolist' => 'Enable group videos', + +	'videolist:edit' => "Edit this video", +	'videolist:delete' => "Delete this video", + +	'videolist:new' => "A new 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); +add_translation("en", $english); | 
