diff options
Diffstat (limited to 'mod/file/languages')
| -rw-r--r-- | mod/file/languages/en.php | 118 | 
1 files changed, 118 insertions, 0 deletions
| diff --git a/mod/file/languages/en.php b/mod/file/languages/en.php new file mode 100644 index 000000000..b3344cb43 --- /dev/null +++ b/mod/file/languages/en.php @@ -0,0 +1,118 @@ +<?php +/** + * Elgg file plugin language pack + * + * @package ElggFile + */ + +$english = array( + +	/** +	 * Menu items and titles +	 */ +	'file' => "Files", +	'file:user' => "%s's files", +	'file:friends' => "Friends' files", +	'file:all' => "All site files", +	'file:edit' => "Edit file", +	'file:more' => "More files", +	'file:list' => "list view", +	'file:group' => "Group files", +	'file:gallery' => "gallery view", +	'file:gallery_list' => "Gallery or list view", +	'file:num_files' => "Number of files to display", +	'file:user:gallery'=>'View %s gallery', +	'file:upload' => "Upload a file", +	'file:replace' => 'Replace file content (leave blank to not change file)', +	'file:list:title' => "%s's %s %s", +	'file:title:friends' => "Friends'", + +	'file:add' => 'Upload a file', + +	'file:file' => "File", +	'file:title' => "Title", +	'file:desc' => "Description", +	'file:tags' => "Tags", + +	'file:list:list' => 'Switch to the list view', +	'file:list:gallery' => 'Switch to the gallery view', + +	'file:types' => "Uploaded file types", + +	'file:type:' => 'Files', +	'file:type:all' => "All files", +	'file:type:video' => "Videos", +	'file:type:document' => "Documents", +	'file:type:audio' => "Audio", +	'file:type:image' => "Pictures", +	'file:type:general' => "General", + +	'file:user:type:video' => "%s's videos", +	'file:user:type:document' => "%s's documents", +	'file:user:type:audio' => "%s's audio", +	'file:user:type:image' => "%s's pictures", +	'file:user:type:general' => "%s's general files", + +	'file:friends:type:video' => "Your friends' videos", +	'file:friends:type:document' => "Your friends' documents", +	'file:friends:type:audio' => "Your friends' audio", +	'file:friends:type:image' => "Your friends' pictures", +	'file:friends:type:general' => "Your friends' general files", + +	'file:widget' => "File widget", +	'file:widget:description' => "Showcase your latest files", + +	'groups:enablefiles' => 'Enable group files', + +	'file:download' => "Download this", + +	'file:delete:confirm' => "Are you sure you want to delete this file?", + +	'file:tagcloud' => "Tag cloud", + +	'file:display:number' => "Number of files to display", + +	'river:create:object:file' => '%s uploaded the file %s', +	'river:comment:object:file' => '%s commented on the file %s', + +	'item:object:file' => 'Files', + +	'file:newupload' => 'A new file has been uploaded', +	'file:notification' => +'%s uploaded a new file: + +%s +%s + +View and comment on the new file: +%s +', + +	/** +	 * Embed media +	 **/ + +		'file:embed' => "Embed media", +		'file:embedall' => "All", + +	/** +	 * Status messages +	 */ + +		'file:saved' => "Your file was successfully saved.", +		'file:deleted' => "Your file was successfully deleted.", + +	/** +	 * Error messages +	 */ + +		'file:none' => "No files.", +		'file:uploadfailed' => "Sorry; we could not save your file.", +		'file:downloadfailed' => "Sorry; this file is not available at this time.", +		'file:deletefailed' => "Your file could not be deleted at this time.", +		'file:noaccess' => "You do not have permissions to change this file", +		'file:cannotload' => "There was an error uploading the file", +		'file:nofile' => "You must select a file", +); + +add_translation("en", $english);
\ No newline at end of file | 
