Simplify loading function for supported language list

This commit is contained in:
Kijin Sung 2016-01-31 14:47:01 +09:00
parent a39e0b0993
commit f45779c3f8
4 changed files with 39 additions and 15 deletions

View file

@ -0,0 +1,7 @@
<?php
/**
* Default configuration for Rhymix
*
* Copyright (c) Rhymix Developers and Contributors
*/

21
common/defaults/lang.php Normal file
View file

@ -0,0 +1,21 @@
<?php
/**
* List of languages supported by RhymiX
*
* Copyright (c) Rhymix Developers and Contributors
*/
return array(
'ko' => '한국어',
'en' => 'English',
'ja' => '日本語',
'zh-CN' => '中文(中国)',
'zh-TW' => '中文(臺灣)',
'de' => 'Deutsch',
'es' => 'Español',
'fr' => 'Français',
'mn' => 'Mongolian',
'ru' => 'Русский',
'tr' => 'Türkçe',
'vi' => 'Tiếng Việt',
);