raspap-webgui/includes/locale.php

38 lines
2.2 KiB
PHP
Raw Normal View History

2017-10-23 19:26:07 +02:00
<?php
/**
* Sets locale information for i18n support
*
*/
if (!isset($_SESSION["locale"])) {
2017-10-23 22:02:39 +02:00
$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;
default:
$locale = "en_US.UTF-8";
break;
}
2017-10-23 19:26:07 +02:00
}
// debug
$locale = "fr_FR.UTF-8";
$_SESSION["locale"] = $locale;
2017-10-23 19:26:07 +02:00
// activate the locale setting
putenv("LANG=" . $_SESSION["locale"]);
setlocale(LC_ALL, $_SESSION["locale"]);
2017-10-23 19:26:07 +02:00
2017-10-23 22:02:39 +02:00
bindtextdomain(LOCALE_DOMAIN, LOCALE_ROOT);
bind_textdomain_codeset(LOCALE_DOMAIN, 'UTF-8');
2017-10-23 19:26:07 +02:00
2017-10-23 22:02:39 +02:00
textdomain(LOCALE_DOMAIN);
2017-10-23 19:26:07 +02:00
?>