let @rejon do the homework http://ur1.ca/17c

darcs-hash:20080731020433-84dde-641127c2de488087c1525fc773d544ba5b136550.gz
This commit is contained in:
Evan Prodromou 2008-07-30 22:04:33 -04:00
parent 93d25bec33
commit f2ae665e13
1 changed files with 9 additions and 1 deletions

View File

@ -137,8 +137,16 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=
global $config, $xw;
$language = common_language();
setlocale(LC_ALL, $language);
# So we don't have to make people install the gettext locales
putenv('LANGUAGE='.$language);
putenv('LANG='.$language);
$locale_set = setlocale(LC_ALL, $language . ".utf8",
$language . ".UTF8",
$language . ".utf-8",
$language . ".UTF-8",
$language);
bindtextdomain("laconica", $config['site']['locale_path']);
bind_textdomain_codeset("laconica", "UTF-8");
textdomain("laconica");
$httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : NULL;