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
|
<?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/
*/
$thai = 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("th",$thai);
?>
|