From 69c3781da45feeab0f96a974ff2bfe282f903af4 Mon Sep 17 00:00:00 2001 From: Ridho Muhammad Date: Wed, 16 Mar 2016 23:57:19 +0700 Subject: [PATCH] Updated Indonesia translation Updated Indonesia translation and language configuration files --- htdocs/application/config/languange.php | 135 ++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 htdocs/application/config/languange.php diff --git a/htdocs/application/config/languange.php b/htdocs/application/config/languange.php new file mode 100644 index 0000000..c07e4f0 --- /dev/null +++ b/htdocs/application/config/languange.php @@ -0,0 +1,135 @@ + array( + 'name' => 'English', + 'folder' => 'english', + 'direction' => 'ltr', + 'codes' => array('en', 'english', 'en-US'), + 'ckeditor' => NULL + ), + 'de' => array( + 'name' => 'Deutsch', + 'folder' => 'german', + 'direction' => 'ltr', + 'codes' => array('de', 'german', 'de'), + 'ckeditor' => NULL + ), + 'sw' => array( + 'name' => 'Schweizerdeutsch', + 'folder' => 'swissgerman', + 'direction' => 'ltr', + 'codes' => array('sw', 'swissgerman', 'de-CH'), + 'ckeditor' => NULL + ), + 'es' => array( + 'name' => 'Español', + 'folder' => 'spanish', + 'direction' => 'ltr', + 'codes' => array('esp', 'spanish', 'es-ES'), + 'ckeditor' => NULL + ), + 'no' => array( + 'name' => 'norsk', + 'folder' => 'norwegian', + 'direction' => 'ltr', + 'codes' => array('no', 'norwegian', 'no-NO'), + 'ckeditor' => NULL + ), + 'da' => array( + 'name' => 'dansk', + 'folder' => 'danish', + 'direction' => 'ltr', + 'codes' => array('da', 'danish', 'da-DA'), + 'ckeditor' => NULL + ), + 'pt' => array( + 'name' => 'Português de Portugal', + 'folder' => 'portuguese', + 'direction' => 'ltr', + 'codes' => array('ptb', 'portuguese-portugal', 'pt-PT'), + 'ckeditor' => 'pt-pt' + ), + 'tr' => array( + 'name' => 'Türkçe', + 'folder' => 'turkish', + 'direction' => 'ltr', + 'codes' => array('tr', 'turkish', 'tr-TR'), + 'ckeditor' => NULL + ), + 'fr' => array( + 'name' => 'Français', + 'folder' => 'french', + 'direction' => 'ltr', + 'codes' => array('fra', 'french', 'fr-FR'), + 'ckeditor' => NULL + ), + 'jp' => array( + 'name' => '日本語', + 'folder' => 'japanese', + 'direction' => 'ltr', + 'codes' => array('jp', 'japanese', 'jp-JP'), + 'ckeditor' => NULL + ), + 'pl' => array( + 'name' => 'Polski', + 'folder' => 'polish', + 'direction' => 'ltr', + 'codes' => array('plk', 'polish', 'pl-PL'), + 'ckeditor' => NULL + ), + 'ru' => array( + 'name' => 'Русский', + 'folder' => 'russian', + 'direction' => 'ltr', + 'codes' => array('rus', 'russian', 'ru-RU'), + 'ckeditor' => NULL + ), + 'cn' => array( + 'name' => '繁體中文', + 'folder' => 'chinese-simplified', + 'direction' => 'ltr', + 'codes' => array('cht', 'chinese-simplified', 'zh-CN'), + 'ckeditor' => NULL + ), + 'zh' => array( + 'name' => '繁體中文', + 'folder' => 'chinese-traditional', + 'direction' => 'ltr', + 'codes' => array('cht', 'chinese-traditional', 'zh-TW'), + 'ckeditor' => NULL + ), + 'lt' => array( + 'name' => 'Lietuvių', + 'folder' => 'lithuanian', + 'direction' => 'ltr', + 'codes' => array('lt', 'lithuanian', 'lt-LT'), + 'ckeditor' => NULL + ), + 'id' => array( + 'name' => 'Bahasa Indonesia', + 'folder' => 'indonesia', + 'direction' => 'ltr', + 'codes' => array('id', 'indonesia', 'id-ID'), + 'ckeditor' => NULL + ), +); +/* + * Default Language + * + * If no language is specified, which one to use? + * Currently: english (en) | german (de) | swissgerman (sw) + * spanish (es) | norwegian (no) | portuguese (pt) + * turkish (tr) | french (fr) | japanese (jp) + * polish (pl) | russian (ru) | bahasa indonesia (id) + * chinese-simplified (cn) | chinese-traditional (zh) | lithuanian (lt) + * +*/ +$config['language'] = 'en';