mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Simplify loading function for supported language list
This commit is contained in:
parent
a39e0b0993
commit
f45779c3f8
4 changed files with 39 additions and 15 deletions
7
common/defaults/config.php
Normal file
7
common/defaults/config.php
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Default configuration for Rhymix
|
||||
*
|
||||
* Copyright (c) Rhymix Developers and Contributors
|
||||
*/
|
||||
21
common/defaults/lang.php
Normal file
21
common/defaults/lang.php
Normal 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',
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue