You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LabyrinthAP/includes/locale.php

40 lines
2.6 KiB
PHTML

8 years ago
<?php
/**
* Sets locale information for i18n support
*
*/
if (!isset($_SESSION["locale"])) {
$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;
}
8 years ago
}
// debug
$locale = "fr_FR.UTF-8";
$_SESSION["locale"] = $locale;
8 years ago
// activate the locale setting
putenv("LANG=" . $_SESSION["locale"]);
setlocale(LC_ALL, $_SESSION["locale"]);
8 years ago
$domain = "messages";
$locale_root = "locale";
bindtextdomain($domain, $locale_root);
bind_textdomain_codeset($domain, 'UTF-8');
textdomain($domain);
?>