0
votes
1answer
26 views
PHP: Gettext problems
I can't seem to get gettext working, here.
I'm using MAMP Pro and phpinfo(); says that gettext is enabled.
I followed this tutorial: http://zez.org/article/articleview/42/1/
I …
0
votes
2answers
21 views
How to create macros/shortcuts in Dreamweaver or Notepad++
I've never made "macros" or anything like that with any program.
I'm moving my php code to use "gettext", so I have to look for all my static text and change it up.
For example, …
1
vote
1answer
20 views
How does gettext handle dynamic content?
In php (or maybe gettext in general), what does gettext do when it sees a variable to dynamic content?
I have 2 cases in mind.
1) Let's say I have <?=$user1?> poked John &l …
1
vote
3answers
39 views
Java .getText vs. Hard Coded String not returning the same results
I am completely stumped with this one . . .
If I call the function below with the following:
Search(SearchTextField.getText()); // (Fiberglass was entered)
Search("Fiberglass"); …
0
votes
2answers
41 views
How to get Dreamweaver to display php gettext text?
Is there an extension or setting that would allow Dreamweaver to actually display "Hello World" when I type <?php echo _("Hello World"); ?> ?
Instead it just shows a "php" i …
0
votes
2answers
36 views
How can I use PHP’s gettext in conjunction with python’s gettext?
I have an app that I'm migrating portions of to Django, but python and php have a different string format. E.g.
"Hello %1s" in php vs. "Hello {0}" or "Hello {name}" in python.
…
4
votes
3answers
785 views
Complete C++ i18n gettext() “hello world” example.
I am looking for a complete i18n gettext() hello world example. I have started a script based upon A tutorial on Native Language Support using GNU gettext by G. Mohanty. I am using …
0
votes
1answer
97 views
gettext for HTML or LaTeX?
Hello.
Is there something like gettext for HTML or LaTeX? It would be great for generating simple bilingual webpages or LaTeX documents that should be kept in sync.
Is there somet …
0
votes
1answer
44 views
Rails: gettext pot generation task generates empty files
Hello, my problem is that in my app I want to generate the gettext .pot file with rake but I'm getting a file with no keys, only the header text ("Some descriptive title. Copyright …
0
votes
1answer
26 views
PHP Gettext problems (like non-thread-safe?)
I want to start using gettext to handle my translations on web projects (PHP 5). Since it is a widely used standard with a good reputation it seems to be the best choice.
However, …
1
vote
2answers
35 views
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 …
2
votes
2answers
60 views
i18n with gettext but without the locale hassle?
I am looking for a standards-compliant way to store multi-language content for a Web Application. Until now, I have employed my own "translate()" functions that read data from a fi …
2
votes
3answers
83 views
Better to use multiple language files or 1?
From your experience, is it better to use 1 language file or multiple smaller langauge files for each language in a PHP project using the gettext extension? I am not even sure if …
0
votes
0answers
38 views
how does http://imo.im do their translation?
Hello,
I'm a http://imo.im user and recently noticed that they implemented a translate system so that their users could help them translate their website to all other languages. I …
0
votes
0answers
10 views
gettext: extract dgettext() strings to domain.po files
I have program with multiple domains, some source files contain dgettext() calls with different text domains.
How to extract gettext-strings to multiple .po files? For example, c …
