aboutsummaryrefslogtreecommitdiff
path: root/mod/file/languages/en.php
blob: eeae1de02b2ee053944f542cb4106da66dbe1943 (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
<?php
	/**
	 * Elgg file plugin language pack
	 * 
	 * @package ElggFile
	 * @author Marcus Povey
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.com/
	 */

	$english = array(
	
		/**
		 * Menu items and titles
		 */
	
			'file' => "Files",
			'file:yours' => "%s's files",
			'file:friends' => "%s's friend's files",
			'file:all' => "All files",
	
			'file:upload' => "Upload a file",
			
			'file:file' => "File",
			'file:title' => "Title",
			'file:desc' => "Description",
			'file:tags' => "Tags",

		/**
		 * Status messages
		 */
	
			'file:saved' => "Your file was successfully saved.",
	
		/**
		 * Error messages
		 */
	
			'file:uploadfailed' => "Sorry; we could not save your file.",
			'file:downloadfailed' => "Sorry; this file is not available at this time.",
	
	);
					
	add_translation("en",$english);
?>