mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Added es_ES to list of supported languages
This commit is contained in:
parent
1212ef51f7
commit
ebe2d4d3a4
@ -5,6 +5,15 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rudimentary language detection via the browser.
|
||||||
|
* Accept-Language returns a list of weighted values with a quality (or 'q') parameter.
|
||||||
|
* A better method would parse the list of preferred languages and match this with
|
||||||
|
* the languages supported by out platform.
|
||||||
|
*
|
||||||
|
* Refer to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
|
||||||
|
*/
|
||||||
if (!isset($_SESSION["locale"])) {
|
if (!isset($_SESSION["locale"])) {
|
||||||
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
||||||
switch ($lang){
|
switch ($lang){
|
||||||
@ -17,14 +26,18 @@ if (!isset($_SESSION["locale"])) {
|
|||||||
case "it":
|
case "it":
|
||||||
$locale = "it_IT.UTF-8";
|
$locale = "it_IT.UTF-8";
|
||||||
break;
|
break;
|
||||||
|
case "es":
|
||||||
|
$locale = "es_ES.UTF-8";
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
$locale = "en_US.UTF-8";
|
$locale = "en_US.UTF-8";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// debug
|
// Uncomment for testing
|
||||||
$locale = "fr_FR.UTF-8";
|
// Note: the associated locale must be installed on the RPi
|
||||||
|
//$locale = "fr_FR.UTF-8";
|
||||||
$_SESSION["locale"] = $locale;
|
$_SESSION["locale"] = $locale;
|
||||||
// activate the locale setting
|
// activate the locale setting
|
||||||
putenv("LANG=" . $_SESSION["locale"]);
|
putenv("LANG=" . $_SESSION["locale"]);
|
||||||
|
Loading…
Reference in New Issue
Block a user