[PHP] Re: can't get gettext() to work!

2001-08-03 Thread Colin Viebrock
"Richard Lynch" <[EMAIL PROTECTED]> wrote in message 050001c11be5$c93a81c0$6401a8c0@Lynchux100">news:050001c11be5$c93a81c0$6401a8c0@Lynchux100... > > setlocale(LC_ALL, ''); > > > putenv('LANG=fr');/* <<< changed here */ > > setlocale(LC_ALL, ''); > > WILD GUESS ALERT! > >

[PHP] Re: can't get gettext() to work!

2001-08-03 Thread Richard Lynch
> setlocale(LC_ALL, ''); > putenv('LANG=fr');/* <<< changed here */ > setlocale(LC_ALL, ''); WILD GUESS ALERT! My gut says you need setlocale(LC_ALL, 'fr') or similar in the French one... And maybe even 'en' for the English one. Even if the docs say you don't. There w