1
vote
1answer
18 views

Can gcc check printf formats when using gettext?

Gcc can check that printf arguments match the format given. But that only works when the argument to printf is liternal. And obviously so, gcc needs to know the format. Now when the code is ...
1
vote
1answer
40 views

How to translate GTK+ program?

I want to translate my GTK+ program in C++. I haven't got any ideas. I heard about gettext(), but I don't know, how can i use it. I'm waiting for responses. /edit: I see it: 1 but i don't know how ...
3
votes
1answer
127 views

Gettext without a filesystem

For an embedded system with GUI, we are using our custom translation system. The strings are stored in the code ROM of a microcontroller. Currently we have up to 10 languages and about 400 translated ...
1
vote
1answer
63 views

Gettext clone or alternative under permissive license (non-copyleft)?

At the moment I am trying to find a gettext alternative with comparable tool support. However, the library itself needs to be under a permissive license, so that the binaries can be linked statically ...
1
vote
1answer
150 views

Efficiency of gettext : in-memory translation

I have an embedded system with Flash and a very low end CPU and less RAM. I wanted to know how efficient is the gettext language translation using .MO file. For doing the locale language string ...
1
vote
2answers
179 views

How does gettext figure out what languages are available

I recently spent some time translating a PHP application, running on Linux with Apache2. To get gettext to work I needed to touch system directories for every language I wanted to support, so I wonder ...
1
vote
0answers
99 views

GNU Gettext custom file paths?

Currently when I use GNU Gettext, I have to place localizations I use in bin/en_AU.utf8/LC_MESSAGES/messages.mo But I'd rather have it in a simple format of bin/lang/en_AU.utf8.mo Is there a way ...
0
votes
0answers
188 views

C/C++ to Gettext Translation regular expression script

Does anyone happen to know of/have a regexp for converting plain C/C++ to gettext C/C++? The result need only be approximate. I just don't fancy running through ~35k lines of code adding _() around ...
4
votes
1answer
331 views

Alternative gettext lib in C?

I have an Android NDK project entirely in C. I have a bunch of .po files, and libintl configured currently. Unfortunately, according to a Google dev, it looks like I am SOL expecting to use gettext ...
2
votes
2answers
270 views

gettext on embedded systems?

Does there exist a minimal gettext implementation for small embedded systems? I need to translate my application to a few different languages. The application runs on a 50MHz ARM7 cpu with FreeRTOS ...
2
votes
1answer
590 views

xgettext - extract translatable strings and update .pot

I have inherited a sample.pot file. Now, I have added new messages in a1.c and a2.cpp. Is it possible for me to use xgettext and output the contents to same sample.pot instead of creating a new one? ...
1
vote
3answers
246 views

Is there a way to access the locale used by gettext under windows?

I have a program where i18n is handled by gettext. The program works fine, however for some reason I need to know the name of the locale used by gettext at runtime (something like 'fr_FR') under ...
1
vote
2answers
632 views

Gettext and locales

I heard from a relatively trustworty source that gettext doesn't require system locales for it to work. But I have tried a few tutorials, and unless I have locale-gen'd (in arch) fi_FI.utf8, I can't ...