1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Added support for Indonesian, 한국어, 日本語 & Tiếng Việt

This commit is contained in:
Bill Zimmerman 2019-10-28 21:18:40 +01:00
parent 1a0a801a11
commit 253b3cddc4

View File

@ -75,20 +75,24 @@ function DisplaySystem()
// define locales // define locales
$arrLocales = array( $arrLocales = array(
'en_GB.UTF-8' => 'English', 'en_GB.UTF-8' => 'English',
'de_DE.UTF-8' => 'Deutsch', 'de_DE.UTF-8' => 'Deutsch',
'fr_FR.UTF-8' => 'Français', 'fr_FR.UTF-8' => 'Français',
'it_IT.UTF-8' => 'Italiano', 'it_IT.UTF-8' => 'Italiano',
'pt_BR.UTF-8' => 'Português', 'pt_BR.UTF-8' => 'Português',
'sv_SE.UTF-8' => 'Svenska', 'sv_SE.UTF-8' => 'Svenska',
'nl_NL.UTF-8' => 'Nederlands', 'nl_NL.UTF-8' => 'Nederlands',
'zh_CN.UTF-8' => '简体中文 (Chinese simplified)', 'zh_CN.UTF-8' => '简体中文 (Chinese simplified)',
'cs_CZ.UTF-8' => 'Čeština', 'id_ID.UTF-8' => 'Indonesian',
'ru_RU.UTF-8' => 'Русский', 'ko_KR.UTF-8' => '한국어 (Korean)',
'es_MX.UTF-8' => 'Español', 'ja_JP.UTF-8' => '日本語 (Japanese)',
'fi_FI.UTF-8' => 'Finnish', 'vi_VN.UTF-8' => 'Tiếng Việt',
'si_LK.UTF-8' => 'Sinhala', 'cs_CZ.UTF-8' => 'Čeština',
'tr_TR.UTF-8' => 'Türkçe' 'ru_RU.UTF-8' => 'Русский',
'es_MX.UTF-8' => 'Español',
'fi_FI.UTF-8' => 'Finnish',
'si_LK.UTF-8' => 'Sinhala',
'tr_TR.UTF-8' => 'Türkçe'
); );
if (isset($_POST['system_reboot'])) { if (isset($_POST['system_reboot'])) {