aboutsummaryrefslogtreecommitdiff
path: root/mod/videolist/languages/en.php
blob: d357725a77d2b7522279715a5397212810871d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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);