Tagged Questions
8
votes
2answers
255 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:
...
8
votes
2answers
616 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 ...
2
votes
2answers
137 views
Can xgettext be used to extract specific domain strings only?
(Really surprised this isn't answered anywhere online; couple posts over the past few years with a similar question, but never answered. Let's hope the Stackoverflow crew can come to the rescue)
...
1
vote
1answer
850 views
Poedit regex based parser?
In our JS files we use the following format for Gettext translation:
var str1 = '!t[The text that should be translated]';
var str2 = '!t[Some more text]';
This JS files will be parsed using PHP and ...