diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-07 09:28:30 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-07 09:28:30 +0000 |
commit | 2837296706a7846dc5214c48057a978660ab251f (patch) | |
tree | 0188c125171a570bfc4dd2ba444c463cda0cb07d /mod/diagnostics/languages | |
parent | beb244d4336c8ba2c718c66c1858021435f931bf (diff) | |
download | elgg-2837296706a7846dc5214c48057a978660ab251f.tar.gz elgg-2837296706a7846dc5214c48057a978660ab251f.tar.bz2 |
Thai language pack
git-svn-id: https://code.elgg.org/elgg/trunk@2199 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/diagnostics/languages')
-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); +?> |