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

Cleaned up locale detection

This commit is contained in:
billz 2018-05-27 15:50:16 +00:00
parent 628a60893d
commit 244148cbee

View File

@ -17,28 +17,24 @@
if (!isset($_SESSION["locale"])) {
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
switch ($lang){
case "de":
$locale = "de_DE.UTF-8";
break;
case "fr":
$locale = "fr_FR.UTF-8";
break;
case "it":
$locale = "it_IT.UTF-8";
break;
case "es":
$locale = "es_ES.UTF-8";
break;
default:
$locale = "en_US.UTF-8";
default:
$locale = "en_GB.UTF-8";
break;
}
}
// Uncomment for testing
// Note: the associated locale must be installed on the RPi
// Use: 'sudo raspi-configure' and select 'Localisation Options'
// Uncomment for testing
// $locale = "fr_FR.UTF-8";
$_SESSION["locale"] = $locale;
$_SESSION["locale"] = $locale;
// activate the locale setting
putenv("LANG=" . $_SESSION["locale"]);
setlocale(LC_ALL, $_SESSION["locale"]);