I am currently trying to use gettext with PHP and poedit. I wrote the following test.php file:
<?php
error_reporting(E_ALL | E_DEPRECATED | E_USER_DEPRECATED | -1);
bindtextdomain('messages', './i18n/');
textdomain('messages');
setlocale(LC_ALL, $_GET['l']);
putenv("LANG=".$_GET['l']);
echo _('test :-(');
?>
and this is my messages.po:
msgid ""
msgstr ""
"Project-Id-Version: Community Chess\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-10-07 18:34+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Martin Thom <[email protected]>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-Poedit-Basepath: /var/www/community-chess\n"
"X-Poedit-SearchPath-0: .\n"
#: test.php:8
msgid "test :-("
msgstr "Juhu :-)"
#~ msgid "test"
#~ msgstr "Juhu!"
My directory structure is
community-chess
test.php
i18n
de_DE
LC_MESSAGES
messages.po
messages.mo
As soon as I look at http://localhost/community-chess/test.php?l=de_DE I get "test :-("
I have generated the locale with
sudo locale-gen de_DE
and checked with
locale -a
Why doesn't it work? How can I get some feedback from gettext?
This is what work for me on CE ZendServer on linux and Apache server on NetBsd
File "message.po" is generated from the root of application:
This is the new tree-directory:
I must add the "eo" symlink because the only three esperanto locales on my system supported are:
compiled whit:
and at the moment my locale.php code is:
because whitout it gettext doesn't work. I think that the locale directory must have the same name of the language setted whit setlocale. Another things is to test every function called what return. Them must never return NULL or FALSE. You can do that in simple way:
The last but not the list, remember to set the right apache permission to all .mo file, to restart your apache server and verify by phpinfo() that "GetText Support" is "enabled".