Gettext is an internationalization and localization (i18n) library which is commonly used for writing multilingual programs. Its most popular implementation is that of the GNU project.

learn more… | top users | synonyms

25
votes
8answers
915 views

Why do people use plain english as translation placeholders?

This may be a stupid question, but here goes. I've seen several projects using some translation library (e.g. gettext) working with plain english placeholders. So for example: _("Please enter your ...
24
votes
3answers
1k views

PHP translation frontend similar to Rosetta?

I'm currently migrating a web application from a database-based internationalization approach (each word having an entry in the translation table, and the actual translation) to one based on ...
22
votes
8answers
2k views

Gettext: Is it a good idea for the message ID to be the english text?

We're getting ready to translate our PHP website into various languages, and the gettext support in PHP looks like the way to go. All the tutorials I see recommend using the english text as the ...
20
votes
1answer
6k views

Is there any git hook for pull?

I need to perform some actions (prepare gettext *.mo message files) on my project everytime I run git pull. Is there any suitable git hook, which I could use for this purpose please?
19
votes
7answers
8k views

What good alternatives to poEdit are there?

I'm looking for a .po/.mo editor. I am using gettext for the translation files but don't really like poEdit. It has to run on Windows Vista and it would be even better if it was built into Visual ...
17
votes
4answers
1k views

Gettext .po files under version control

Currently using Gettext on a project and the .po files are nicely kept under version control. PO files of course contain translations, but in addition to that they also contain some metadata - ...
16
votes
7answers
1k views

How do you handle translation of text with markup?

I'm developing multi-language support for our web app. We're using Django's helpers around the gettext library. Everything has been surprisingly easy, except for the question of how to handle ...
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 ...
14
votes
5answers
2k views

Online editing gettext files?

Online editing gettext files, is it possible? I use gettext for all my PHP projects, but sides with a minor problem, want to mine user may translate my language from as Danish to Norwegian, but in ...
12
votes
8answers
8k views

Translation in JavaScript like gettext in PHP?

I am using gettext in my PHP code, but I have a big problem. All my JavaScript files are not affected by the translation, can somebody tell me an easy way to get the translations in the chosen ...
11
votes
2answers
2k views

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 Django settings module settings processing language nl Error: errors happened while running ...
11
votes
3answers
4k views

How to create an internationalized Google App Engine application

I would like to provide my Python GAE website in the user's own language, using only the tools available directly in App Engine. For that, I would like to use GNU gettext files (.po and .mo files). ...
10
votes
2answers
4k views

complete example of gettext in php

i've been googling for the last hour or so trying to find a complete working example of gettext in php - all source files, po files, with proper paths, etc. Just a "hello world" with all the required ...
10
votes
2answers
1k views

How can I debug php gettext?

Some gettext keys aren't working for me - they show the key instead of the translation, though there is one. I'm making .mo file with PHP File_Gettext Pear library, and it seems to be working ok, so ...
9
votes
5answers
8k views

Compiler error - msgfmt command not found when compiling git on a shared hosting

I'm trying to update Git from my shared hosting. For that I'm following these steps: Download latest Git version Unpack and place it on the server Configure and create the Makefile -> ./configure ...
9
votes
6answers
2k views

Is there a Java library for parsing gettext PO files?

Does anyone know of a Java library that will let me parse .PO files? I simply want to create a Map of IDs and Values so I can load them into a database.
9
votes
3answers
3k views

Django templates: Best practice for translating text block with HTML in it

In Django templates, how would I translate a block that contains HTML? For example: {% trans "Please" %} <a href="{% url login %}?next={{ currentUrlPath }}"> {% trans "log in" %} ...
9
votes
3answers
3k views

Merge 2 GetText files

I have two medium-sized web applications that I'm merging into one. They are both localized with GetText and have large amout of common strings, so merging them manually would be extremely annoying. ...
9
votes
3answers
2k views

Localization of ASP.NET MVC websites with GNU Gettext?

This might be an unusual question, but is there any framework or at least some helper classes that would help me use GNU Gettext for localizing a C# ASP.NET MVC website? I've been using Gettext in a ...
9
votes
1answer
3k views

Django internationalization for admin pages - translate model name and attributes

Django's internationalization is very nice (gettext based, LocaleMiddleware), but what is the proper way to translate the model name and the attributes for admin pages? I did not find anything about ...
9
votes
3answers
1k views

CMake module for gettext support?

Is there a good, open-source, documented CMake module for gettext support? I mean: Extracting messages from sources Merging messages to existing translations Compilation of mo-files Installation of ...
9
votes
3answers
281 views

PHP: make translations in multiple languages

I have my php gettext default language in English let's say I would like in one of my controller, to translate some words in 2 other languages and put them all in an array. ideally I could do ...
9
votes
2answers
638 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, call dgettext('one', ...
8
votes
3answers
4k views

Alternatives to gettext?

Are there any general localization/translation alternatives to gettext? Open source or proprietary doesn't matter. When I say alternative to gettext, I mean a library for internationalization, with ...
8
votes
2answers
7k views

PHP Localization Best Practices? gettext?

We are in the process of making our website international, allowing multiple languages. I've looked into php's "gettext" however, if I understand it right, I see a big flaw: If my webpage has let's ...
8
votes
2answers
1k 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, I'm also hearing ...
8
votes
3answers
9k 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 Linux and G++. ...
8
votes
2answers
3k views

PHP/Gettext Problems

I remember running some tests a some months ago with gettext and the following code worked perfectly: putenv('LANG=l33t'); putenv('LANGUAGE=l33t'); putenv('LC_MESSAGES=l33t'); if ...
8
votes
2answers
980 views

PoEdit keywords - plurals

I incorporated a gettext-like localization system in my app, but my translation function looks like this: t($category, $string, [$plural_string, $number, $vprintf_arguments]) My PoEdit keywords: ...
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 ...
7
votes
1answer
114 views

Any way to alias a function name to '_'?

In Go, is there any circumstance where the gettext short-form of: _("String to be translated.") can be used? One of those times where I'm fairly certain the answer is 'no', but asking just in case ...
7
votes
1answer
346 views

What are the different gettext file formats used for?

I started trying to translate a few of the most used text entries in a C program using gettext, but when digging into this I got a little bit confused about all the different file formats since there ...
7
votes
3answers
873 views

Why doesn't gettext have a db storage option?

I'm doing some i18n on a web-based app using Django, which uses gettext as its i18n foundation. It seems like an obvious idea that translations should be stored in the database, and not difficult to ...
6
votes
2answers
709 views

How can using gettext help me here?

I am trying to set up a way to allow members to translate strings into other languages. You can see an example here: TRANSLATIONS TEST Someone recommended that I use php's native gettext() function ...
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 ...
6
votes
4answers
152 views

What should I know to make my I18N application work in Japanese?

I'm working on a I18N application which will be located in Japanese, I don't know any word in Japanese, and I'm first wondering if utf8 is enough for that language. Usually, for European language, ...
6
votes
4answers
10k views

How to generate a .po file?

On Windows using WAMPserver (Apache, MySql, Php) I have the following: //test.php if (!defined('LC_MESSAGES')) define('LC_MESSAGES', 6); $lang = "sv"; putenv("LANG=$lang"); setlocale(LC_ALL, $lang); ...
6
votes
3answers
1k views

Localization in Perl using gettext and Locale::TextDomain, with fallback if Locale::TextDomain is not available

The "On the state of i18n in Perl" blog post from 26 April 2009 recommends using Locale::TextDomain module from libintl-perl distribution for l10n / i18n in Perl. Besides I have to use gettext ...
6
votes
3answers
674 views

gettext() equivalent in Intl library?

I'm looking for a way to to do i18n and l10n. I've used gettext before and it was good: I would simply create .mo files in different languages and everything that needed to be translated would be in ...
6
votes
2answers
868 views

Python: gettext doesn't load translations on Windows

This particular piece of code works very well on Linux, but not on Windows: locale.setlocale(locale.LC_ALL, '') gettext.bindtextdomain('exposong', LOCALE_PATH) gettext.textdomain('exposong') Code ...
6
votes
2answers
810 views

Internationalizing a Python 2.6 application via Babel

We're evaluating Babel 0.9.5 [1] under Windows for use with Python 2.6 and have the following questions that we we've been unable to answer through reading the documentation or googling. 1) I would ...
6
votes
2answers
3k views

Java and GNU gettext for internationalization

Has anyone had any experiences developing large Java applications using GNU gettext for internationalization? I find that I really like having the English text in my source code, but I want to make ...
6
votes
1answer
477 views

How to bind a text domain to a local folder for gettext under GTK3

With gettext you can either use the default system-wide locale directory, or specify one yourself using bindtextdomain. This is useful when running a program directly from source when the compiled .mo ...
6
votes
4answers
4k views

PHP gettext on Windows

There's some tutorials out there for gettext (w/ Poedit)... unfortunately, it's mostly for a UNIX environment. And even more unfortunate is that I am running my WAMP server on Windows XP (but I am ...
6
votes
2answers
467 views

PoEdit and PHP annotations

I'm looking for a way to make PoEdit understand PHP annotations. Here's a sample of code I want PoEdit to pick up and put into catalog: class MyController extends Controller { /** * @Title ...
6
votes
1answer
482 views

PHP gettext: not all strings becomes translated

I have these two adjacent lines of code: <td><?php echo __('Product', 'wpsc'); ?>:</td> <td><?php echo __('Quantity', 'wpsc'); ?>:</td> And these translations in ...
5
votes
3answers
700 views

What does '_' do in Django code?

Why does this Django code use _ in front of 'has favicon' has_favicon = models.BooleanField(_('has favicon'))
5
votes
3answers
3k 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 <?=$user2?>. ...
5
votes
2answers
1k views

How can I merge 2 .POT files (translation files)

I have the following situation: One product which I want to translate, that has two separate websites, one for admins, one for customers. The codebase is CakePHP. Both sites are completely separate ...
5
votes
3answers
3k views

Recusive xgettext?

How can I compile a .po file using xgettext with PHP files with a single command recursively? My PHP files exist in a hierarchy, and the straight xgettext command doesn't seem to dig down ...

1 2 3 4 5 14