diff options
Diffstat (limited to 'mod/diagnostics/languages/th.php')
-rw-r--r-- | mod/diagnostics/languages/th.php | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/mod/diagnostics/languages/th.php b/mod/diagnostics/languages/th.php new file mode 100644 index 000000000..4da3dd718 --- /dev/null +++ b/mod/diagnostics/languages/th.php @@ -0,0 +1,54 @@ +<?php + /** + * Elgg diagnostics language pack. + * + * @package ElggDiagnostics + * @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( + + 'diagnostics' => 'ระบบรายงานปัญหา', + + 'diagnostics:description' => 'ระบบนี้จะรายงานปัญหาการใช้งานและตรวจสอบไฟล์ของElgg', + + 'diagnostics:download' => 'Download .txt', + + + 'diagnostics:header' => '======================================================================== +Elgg Diagnostic Report +Generated %s by %s +======================================================================== + +', + 'diagnostics:report:basic' => ' +Elgg Release %s, version %s + +------------------------------------------------------------------------', + 'diagnostics:report:php' => ' +PHP info: +%s +------------------------------------------------------------------------', + 'diagnostics:report:plugins' => ' +Installed plugins and details: + +%s +------------------------------------------------------------------------', + 'diagnostics:report:md5' => ' +Installed files and checksums: + +%s +------------------------------------------------------------------------', + 'diagnostics:report:globals' => ' +Global variables: + +%s +------------------------------------------------------------------------', + + ); + + add_translation("th",$thai); +?> |