fix issue 1 : permet de faire fonctionner gettext avec le serveur de dev de PHP5.4 + enlève code commenté depuis des années
This commit is contained in:
parent
f7efca4308
commit
db05126f01
2
i18n.php
2
i18n.php
@ -1,5 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
//$locale = Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
|
||||||
|
|
||||||
if (isset($_GET['lang']) && is_string($_GET['lang']) && in_array($_GET['lang'], array_keys($ALLOWED_LANGUAGES)) ) {
|
if (isset($_GET['lang']) && is_string($_GET['lang']) && in_array($_GET['lang'], array_keys($ALLOWED_LANGUAGES)) ) {
|
||||||
$mlocale = $_GET['lang'] ;
|
$mlocale = $_GET['lang'] ;
|
||||||
@ -11,6 +10,7 @@ if (isset($_GET['lang']) && is_string($_GET['lang']) && in_array($_GET['lang'],
|
|||||||
}
|
}
|
||||||
|
|
||||||
$locale = $mlocale . '.utf8';
|
$locale = $mlocale . '.utf8';
|
||||||
|
putenv('LANGUAGE=');
|
||||||
setlocale(LC_ALL, $locale);
|
setlocale(LC_ALL, $locale);
|
||||||
setlocale(LC_TIME, $locale);
|
setlocale(LC_TIME, $locale);
|
||||||
setlocale(LC_MESSAGES, $locale);
|
setlocale(LC_MESSAGES, $locale);
|
||||||
|
Loading…
Reference in New Issue
Block a user