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
|
<?php
/**
* Elgg reported content plugin language pack
*
* @package ElggReportedContent
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*/
/**
* Chinese Language Package
*
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @translator Cosmo Mao
* @copyright cOSmoCommerce.com 2008
* @link http://www.elggsns.cn/
* @version 0.1
*/
$chinese = array(
/**
* Menu items and titles
*/
'item:object:reported_content' => '报告项目',
'reportedcontent' => '已经报告',
'reportedcontent:this' => '报告这个',
'reportedcontent:none' => '没有报告内容',
'reportedcontent:report' => '报告给管理员',
'reportedcontent:title' => '页面标题',
'reportedcontent:deleted' => '报告内容已经删除',
'reportedcontent:notdeleted' => '我们无法删除报告内容',
'reportedcontent:delete' => '删除',
'reportedcontent:areyousure' => '您确认删除吗?',
'reportedcontent:archive' => '归档',
'reportedcontent:archived' => '报告已经归档',
'reportedcontent:visit' => '访问已经报告的项目',
'reportedcontent:by' => '报告于',
'reportedcontent:objecttitle' => '对象标题',
'reportedcontent:objecturl' => '目标URL地址',
'reportedcontent:reason' => '报告原因',
'reportedcontent:description' => '您问什么报告这个',
'reportedcontent:address' => '项目地址',
'reportedcontent:success' => '您的报告已经发送给了网站管理员',
'reportedcontent:failing' => '您的报告还没有发送',
);
add_translation("zh",$chinese);
?>
|