Top "Gettext" questions

Gettext is an internationalization and localization (i18n) library which is commonly used for writing multilingual programs.

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 …

php mysql performance multilingual gettext
How to install gnu gettext (>0.15) on windows? So I can produce .po/.mo files in Django

When runing django make messages: ./manage.py makemessages -l pt I get: CommandError: Can't find msguniq. Make sure you have …

python django windows gnu gettext
Internationalisation Django (on OSX)

I'm trying to get gettext to work in Django on my OSX Leopard django_manage.py makemessages -l nl Importing …

python django unix internationalization gettext
Variables in PHP gettext

Possible Duplicate: How does gettext handle dynamic content? I'm using PHP's gettext. I want to translate a sentence which has …

php localization internationalization gettext po
Customize the text "Total" in WooCommerce checkout page

I would like to change the the "Total" text in my checkout page to "Total inkl. vat". I have tried …

php wordpress woocommerce checkout gettext
How to avoid flake8's "F821 undefined name '_'" when _ has been installed by gettext?

Problem overview: In my project's main script, gettext installs the function _() that is used in other modules for translations (like …

python python-3.x gettext pyflakes flake8
How to create .po files using xgettext on Windows?

I'm following this tutorial about building a multilingual web sites using PHP gettext http://onlamp.com/pub/a/php/2002/06/13/php.…

php gettext
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 …

php internationalization gettext
Translating WP with __() and sprintf()

I'm trying to translate WP theme. I have this code: $translation = __( get_color(), 'textdomain' ); It works, I get color dynamically …

php wordpress internationalization gettext translate
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 …

php arrays multilingual gettext