diff options
| author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 00:56:55 +0000 | 
|---|---|---|
| committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 00:56:55 +0000 | 
| commit | 855b008013aad0426ab0332b040bddb033bb6af9 (patch) | |
| tree | 70c137e5c9a9c916bb9f8172daf3bd0483895bf6 /mod/reportedcontent/languages | |
| parent | 71dc8cbf9eecb4de149bc96bb5758b866116b1c8 (diff) | |
| download | elgg-855b008013aad0426ab0332b040bddb033bb6af9.tar.gz elgg-855b008013aad0426ab0332b040bddb033bb6af9.tar.bz2 | |
cleaned up the reported content plugin
git-svn-id: http://code.elgg.org/elgg/trunk@7466 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/reportedcontent/languages')
| -rw-r--r-- | mod/reportedcontent/languages/en.php | 79 | 
1 files changed, 38 insertions, 41 deletions
| diff --git a/mod/reportedcontent/languages/en.php b/mod/reportedcontent/languages/en.php index afcb3af63..8c0755b92 100644 --- a/mod/reportedcontent/languages/en.php +++ b/mod/reportedcontent/languages/en.php @@ -1,43 +1,40 @@  <?php -	/** -	 * Elgg reported content plugin language pack -	 *  -	 * @package ElggReportedContent -	 */ +/** + * Elgg reported content plugin language pack + * + * @package ElggReportedContent + */ -	$english = array( -	 -		/** -		 * Menu items and titles -		 */ -	 -			'item:object:reported_content' => 'Reported items', -			'reportedcontent' => 'Reported content', -			'reportedcontent:this' => 'Report this', -			'reportedcontent:none' => 'There is no reported content', -			'reportedcontent:report' => 'Report to admin', -			'reportedcontent:title' => 'Page title', -			'reportedcontent:deleted' => 'The reported content has been deleted', -			'reportedcontent:notdeleted' => 'We were not able to delete that report', -			'reportedcontent:delete' => 'Delete report', -			'reportedcontent:areyousure' => 'Are you sure you want to delete?', -			'reportedcontent:archive' => 'Archive report', -			'reportedcontent:archived' => 'The report has been archived', -			'reportedcontent:visit' => 'Visit reported item', -			'reportedcontent:by' => 'Report by', -			'reportedcontent:objecttitle' => 'Object title', -			'reportedcontent:objecturl' => 'Object url', -			'reportedcontent:reason' => 'Reason for report', -			'reportedcontent:description' => 'Why are you reporting this?', -			'reportedcontent:address' => 'Location of the item', -			'reportedcontent:success' => 'Your report has been sent to the site admin', -			'reportedcontent:failing' => 'Your report could not be sent', -			'reportedcontent:report' => 'Report this',  -			'reportedcontent:moreinfo' => 'More info', -	 -			'reportedcontent:failed' => 'Sorry, the attempt to report this content has failed.', -			'reportedcontent:notarchived' => 'We were not able to archive that report', -	); -					 -	add_translation("en",$english); -?>
\ No newline at end of file +$english = array( + +	'item:object:reported_content' => 'Reported items', +	'reportedcontent' => 'Reported content', +	'reportedcontent:this' => 'Report this', +	'reportedcontent:this:tooltip' => 'Report this page to an administrator', +	'reportedcontent:none' => 'There is no reported content', +	'reportedcontent:report' => 'Report to admin', +	'reportedcontent:title' => 'Page title', +	'reportedcontent:deleted' => 'The reported content has been deleted', +	'reportedcontent:notdeleted' => 'We were not able to delete that report', +	'reportedcontent:delete' => 'Delete report', +	'reportedcontent:areyousure' => 'Are you sure you want to delete?', +	'reportedcontent:archive' => 'Archive report', +	'reportedcontent:archived' => 'The report has been archived', +	'reportedcontent:visit' => 'Visit reported item', +	'reportedcontent:by' => 'Report by', +	'reportedcontent:objecttitle' => 'Object title', +	'reportedcontent:objecturl' => 'Object url', +	'reportedcontent:reason' => 'Reason for report', +	'reportedcontent:description' => 'Why are you reporting this?', +	'reportedcontent:address' => 'Location of the item', +	'reportedcontent:success' => 'Your report has been sent to the site admin', +	'reportedcontent:failing' => 'Your report could not be sent', +	'reportedcontent:report' => 'Report this', +	'reportedcontent:moreinfo' => 'More info', +	'reportedcontent:instructions' => 'This report will be sent to the administrators of this site for review.', + +	'reportedcontent:failed' => 'Sorry, the attempt to report this content has failed.', +	'reportedcontent:notarchived' => 'We were not able to archive that report', +); + +add_translation("en", $english); | 
