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

Typo in description

This commit is contained in:
billz 2017-10-24 08:34:20 +00:00
parent d5e77d8207
commit 039c00b0e2

View File

@ -10,7 +10,7 @@
* Rudimentary language detection via the browser. * Rudimentary language detection via the browser.
* Accept-Language returns a list of weighted values with a quality (or 'q') parameter. * 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 * A better method would parse the list of preferred languages and match this with
* the languages supported by out platform. * the languages supported by our platform.
* *
* 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
*/ */
@ -37,7 +37,7 @@ if (!isset($_SESSION["locale"])) {
// Uncomment for testing // Uncomment for testing
// Note: the associated locale must be installed on the RPi // Note: the associated locale must be installed on the RPi
//$locale = "fr_FR.UTF-8"; // $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"]);