1
vote
0answers
23 views

International website (English and German) with GETTEXT and VIRTUAL subdirectories in the URL

I have a website which uses two languages: English and German. For now, we use a cookie that stores the user's preferred language (en/de) and sets the language of GETTEXT() accordingly: ...
0
votes
0answers
53 views

about php gettext

po file msgid "apple" msgstr "banana" XX/index.php <?php putenv(XX); setlocale(LC_ALL, XX); bindtextdomain(XX, XX); textdomain(XX); echo gettext("apple"); ?> The cli ...
4
votes
2answers
188 views

Gettext not working through php-cli, but works in php-apache

The code i run looks as the following: ... $this->locale = da_DK; ... putenv("LC_ALL=".$this->locale); putenv('LANG='.$this->locale); $res = setlocale(LC_ALL, $this->locale); if($res != ...
0
votes
2answers
380 views

Apache gettext windows does not work/translate

I am new to gettext. Here is my setup: /Apache 2.2 PHP 5.3.6 Windows 7/ I have following code in the Apache/htdocs/test/index.php <?php $language = 'de_DE'; $translatefile = ...
1
vote
1answer
52 views

How to manage the same code on two domains?

I have a multilingual project, the project is fully compatible with HE/EN languages. In one case it's going to be uploaded as a subfolder in a big israeli project, in another it's going to be used ...
1
vote
3answers
224 views

Translation to hebrew with PHP/Gettext fails

I've searched hours for a solution for this including in the documentation. trying to use gettext for hebrew translations, using PHP 5.3.1 and wamp, it prints out "hello world" and not the Hebrew ...
1
vote
1answer
356 views

Nginx with FastCGI - GETTEXT trouble, works on Apache

I've got problem witch Nginx and php-gettext module. All works without any trouble on apache, but on nginx not. I've got two servers started on my notebook. Apache works on 80 port, and Nginx on 81. ...
0
votes
2answers
161 views

Gettext not working on bluehost

I just installed a website on a bluehost hosting and the text does not get translated. Note that the exact same code works locally. I have installed the Gettext extension and it appears as enabled in ...
4
votes
2answers
1k views

PHP and Gettext don't work on my server

I have a website. I'm trying to get gettext to work so that my English, Sweden and Norway sites can come up. I can't get it to work. What have I done wrong? This is my config code: // define ...
4
votes
4answers
478 views

Who Knows AppWeb HTTP Server And Its Embedded PHP?

on my search for a fast but comfortable web server I dropped into the homepage of EmbedThis(TM) AppWeb(TM) HTTP server. This one has 2 licencse models, GPLv2 and a commercial one with support. On the ...
6
votes
3answers
2k views

PHP gettext function only returns orignal untranslated string

I'm trying to use gettext add localisation support to my website. I've followed various guides on how to setup gettext and have done the following: I've created the following files and directories in ...
0
votes
2answers
2k views

How do you use gettext on server (Apache) you can’t restart?

I asked this question on serverfault but I didn't get any response. I try here... I developped a site on my web server at home. When I modify the translation files, I have to restart the web server ...