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

Bugfix: set locale SESSION var

This commit is contained in:
billz 2018-05-29 18:55:08 +00:00
parent c1fab759e4
commit 2b8e37880e

View File

@ -14,7 +14,7 @@
* *
* Refer to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4 * Refer to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
*/ */
if (!isset($_SESSION["locale"])) { if (empty($_SESSION['locale'])) {
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
switch ($lang){ switch ($lang){
case "fr": case "fr":
@ -30,17 +30,17 @@ if (!isset($_SESSION["locale"])) {
$locale = "en_GB.UTF-8"; $locale = "en_GB.UTF-8";
break; break;
} }
$_SESSION['locale'] = $locale;
} }
// Note: the associated locale must be installed on the RPi // Note: the associated locale must be installed on the RPi
// Use: 'sudo raspi-configure' and select 'Localisation Options' // Use: 'sudo raspi-configure' and select 'Localisation Options'
// Uncomment for testing // Uncomment for testing
// $locale = "pt_BR.UTF-8"; // $locale = "pt_BR.UTF-8";
$_SESSION["locale"] = $locale;
// activate the locale setting // activate the locale setting
putenv("LANG=" . $_SESSION["locale"]); putenv("LANG=" . $_SESSION['locale']);
setlocale(LC_ALL, $_SESSION["locale"]); setlocale(LC_ALL, $_SESSION['locale']);
bindtextdomain(LOCALE_DOMAIN, LOCALE_ROOT); bindtextdomain(LOCALE_DOMAIN, LOCALE_ROOT);
bind_textdomain_codeset(LOCALE_DOMAIN, 'UTF-8'); bind_textdomain_codeset(LOCALE_DOMAIN, 'UTF-8');