mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
Add dutch translations.
Signed-off-by: D9ping <D9ping@users.noreply.github.com>
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
*
|
||||
* Refer to: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4
|
||||
*/
|
||||
if (empty($_SESSION['locale'])) {
|
||||
if (empty($_SESSION['locale']) && strlen($_SESSION['locale']) >= 2) {
|
||||
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
||||
switch ($lang){
|
||||
case "de":
|
||||
@@ -32,22 +32,26 @@ if (empty($_SESSION['locale'])) {
|
||||
case "sv":
|
||||
$locale = "sv_SE.UTF-8";
|
||||
break;
|
||||
case "nl":
|
||||
$locale = "nl_NL.UTF-8";
|
||||
break;
|
||||
default:
|
||||
$locale = "en_GB.UTF-8";
|
||||
break;
|
||||
}
|
||||
|
||||
$_SESSION['locale'] = $locale;
|
||||
}
|
||||
|
||||
// Note: the associated locale must be installed on the RPi
|
||||
// Use: 'sudo raspi-configure' and select 'Localisation Options'
|
||||
|
||||
// activate the locale setting
|
||||
putenv("LANG=" . $_SESSION['locale']);
|
||||
setlocale(LC_ALL, $_SESSION['locale']);
|
||||
|
||||
bindtextdomain(LOCALE_DOMAIN, LOCALE_ROOT);
|
||||
bind_textdomain_codeset(LOCALE_DOMAIN, 'UTF-8');
|
||||
|
||||
textdomain(LOCALE_DOMAIN);
|
||||
?>
|
||||
// activate the locale setting
|
||||
putenv("LANG=" . $_SESSION['locale']);
|
||||
setlocale(LC_ALL, $_SESSION['locale']);
|
||||
|
||||
bindtextdomain(LOCALE_DOMAIN, LOCALE_ROOT);
|
||||
bind_textdomain_codeset(LOCALE_DOMAIN, 'UTF-8');
|
||||
|
||||
textdomain(LOCALE_DOMAIN);
|
||||
|
||||
|
@@ -72,7 +72,8 @@ function DisplaySystem(){
|
||||
'fr_FR.UTF-8' => 'Français',
|
||||
'it_IT.UTF-8' => 'Italiano',
|
||||
'pt_BR.UTF-8' => 'Português',
|
||||
'sv_SE.UTF-8' => 'Svenska'
|
||||
'sv_SE.UTF-8' => 'Svenska',
|
||||
'nl_NL.UTF-8' => 'Nederlands'
|
||||
);
|
||||
|
||||
// hostname
|
||||
|
Reference in New Issue
Block a user