Tagged Questions
-1
votes
3answers
63 views
Checking cookie and session value
I am working on a multilingual website, and I have a problem now. When the $_GET['setlang'] is empty, language is set to en_US, even if I had ?setlang=pl opened before (which is working fine - ...
2
votes
3answers
136 views
Whats the best & fastest method to support multi language in PHP Application
Though there are lot of similar questions already asked here, I didn't find the answer i was looking for..
What's the best way to develop multi-language application, It should be very fast.. and i ...
4
votes
2answers
220 views
Python, flask and creating a dual language app
I need to create a web app that can support dual languages namely English and Japanese. I don't need a translator, just a workflow for displaying text based on a user preference.
Is there such a ...
2
votes
1answer
82 views
Linguistic cases / declination and gettext
Has anybody ever thought about gettext and different cases in some languages. We are currently having the problem that in Croatian even names are declined.
example
English: About Foobar
German: ...
0
votes
2answers
130 views
Make a translation for PO files
We are working on web application in PHP and use gettext to handle strings for translation. Here is my question what we are struggling right now.
If we use kind of words/id for a string for example ...
1
vote
1answer
101 views
gettext usage for 2 strings that are the same
Is there a more compact way if I want 2 keys have the same value? This works:
msgid "Next"
msgstr "Pág. seguinte"
msgid "Next page"
msgstr "Pág. seguinte"
I could imagine writing it like this ...
3
votes
1answer
826 views
converting CodeIgniter language files to .po (for gettext)
I'd like to maintain my native language translation for a CodeIgniter-based application.
However, translation files are in app_lang.php file as content of the array, and I'd like to use 'standard' ...
3
votes
2answers
384 views
What are the reasons to use or to not use PHP's native gettext versus a self-build?
To make my application multilingual I'm wondering if there are big advantages to GNU's gettext or if there are big disadvantages of building your own 'library'.
Also if 'build your own' is more ...
0
votes
2answers
730 views
gettext problem in codeigniter
I added one library for gettext translation. Added corresponding po and mo files.
And the translation is working fine.
Now when I update my po file, change some translation.. after that when I ...
1
vote
2answers
313 views
How do you use gettext when you have link into the translated text?
I use gettext to translate my web site.
It would be nice to have link in text translated but I don't want to write html tags in gettext files because these translations may be used elsewhere.
I ...
0
votes
1answer
109 views
Multi wording site as opposed to multi language, can gettext solve that too?
I have a site which targets several industries.
So in one industry the manager would be called "department head" and in the other "inspector".
Can I solve this issue with gettext, as it is in a way a ...
14
votes
3answers
4k views
Most efficient approach for multilingual PHP website
I am working on a large multilingual website and I am considering different approaches for making it multilingual. The possible alternatives I can think of are:
The Gettext functions with generation ...
3
votes
2answers
1k views
Multilingual support using gettext with codeigniter, best practice?
I know how to create .po files and how to generate .mo files and then use them for translation on my Codeigniter powered site. However, I'm not quite sure on how to change language from the site GUI. ...
7
votes
4answers
4k views
Using PHP Gettext Extension vs PHP Arrays in Multilingual Websites?
So far the only 2 good things that I've seen about using gettext instead of arrays is that I don't have to create the "greeting" "sub-array" (or whatever its called). And I don't have to create a ...
2
votes
3answers
855 views
Making a wxPython application multilingual
I have a application written in wxPython which I want to make multilingual.
Our options are
using gettext http://docs.python.org/library/gettext.html
seprating out all UI text to
a messages.py file, ...

