mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
21 lines
413 B
PHP
21 lines
413 B
PHP
<?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',
|
|
);
|