Ben folling öğretici izledi: http://mel.melaxis.com/devblog/2005/08/06/localizing-php-web-sites-using-gettext/
Php gettext uzantısı hakkında (php.ini de yorum işaretlenmemiş)
Gettext aktive ama çeviri (Almanca) görünmüyor.
İşte dosyalar şunlardır:
C:\wamp\www\php-test\test.php:
<?php
require_once("localization.php");
echo _("Hello World!");
?>
C:\wamp\www\php-test\localization.php:
<?php
$locale = "de_DE";
if (isSet($_GET["locale"])) $locale = $_GET["locale"];
putenv("LC_ALL=$locale");
setlocale(LC_ALL, $locale);
bindtextdomain("messages", "./locale");
textdomain("messages");
?>
C:\wamp\www\php-test\locale\de_DE\LC_MESSAGES\messages.po:
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-14 00:35+0800\n"
"PO-Revision-Date: 2010-02-14 00:37+0800\n"
"Last-Translator: Jano Chen <weedcl@hotmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
"X-Poedit-Basepath: C:\\wamp\\www\\php-test\n"
"X-Poedit-Language: German\n"
"X-Poedit-Country: GERMANY\n"
"X-Poedit-SourceCharset: iso-8859-1\n"
"X-Poedit-SearchPath-0: .\n"
#: test.php:2
msgid "Hello World!"
msgstr "Hallo Welt!"
C:\wamp\www\php-test\locale\de_DE\LC_MESSAGES\messages.mo
(Üzgünüm bu dosyanın metni kopyalayıp olamaz nedense)
Ben açtığınızda "Hallo Welt" (Almanca Merhaba Dünya) göstermesi gerekir ama bunun yerine İngilizce (Merhaba Dünya) görüntüler.
Herhangi bir öneriniz?
PS: Ben Windows XP SP2 kullanıyorum