Roch
Roch

Reputation: 22041

Gettext, not displaying

I'm trying to load my .mo translations using the following code, but it doesn't work. I have the php gettext ext. enabled in my phpinfo() and all the required locales are installed. Did I miss anything?

$locale = "en_US";

putenv("LC_ALL=$locale");

setlocale(LC_ALL, $locale);

bindtextdomain("messages", "./locale");
textdomain("messages");

My .mo file is located in ./locale/en_US/messages.mo

Upvotes: 1

Views: 732

Answers (2)

Lars D
Lars D

Reputation: 8563

You probably need to change the path so that it is absolute, instead of relative.

Upvotes: 0

Lars D
Lars D

Reputation: 8563

When an apache thread loads an .mo file, it will not reload it until the apache thread is recycled. So if you update the .mo file, and want to be sure that your php is using that new .mo file, you actually need to either restart apache or use a different name for the mo file.

Anyway, I would set the LANG environment variable.

Upvotes: 2

Related Questions