mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
initial commit
This commit is contained in:
parent
81eee567e6
commit
c8ca228dad
1 changed files with 45 additions and 0 deletions
45
includes/locale.php
Executable file
45
includes/locale.php
Executable file
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Sets locale information for i18n support
|
||||
*
|
||||
*/
|
||||
|
||||
$lang = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
// activate the locale setting
|
||||
putenv("LANG=" . $locale);
|
||||
setlocale(LC_ALL, $locale);
|
||||
|
||||
$domain = "messages";
|
||||
$locale_root = "locale";
|
||||
bindtextdomain($domain, $locale_root);
|
||||
bind_textdomain_codeset($domain, 'UTF-8');
|
||||
|
||||
textdomain($domain);
|
||||
|
||||
// debug
|
||||
echo '<br>locale: ' . $locale . "<br>";
|
||||
echo 'locale root: ' .$locale_root . "<br>";
|
||||
|
||||
$results = bindtextdomain($domain, $locale_root);
|
||||
echo 'new text domain is set: ' . $results. "<br>";
|
||||
|
||||
$results = textdomain($domain);
|
||||
echo 'current message domain is set: ' . $results. "<br>";
|
||||
?>
|
Loading…
Reference in a new issue