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:
...
1
vote
4answers
915 views
poedit and xml files
How to configure poedit to extract strings from xml file?
I have Zend Framework navigation items in .xml like this:
<entry-i>
<label>Text to translate</label>
...
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 ...
0
votes
1answer
40 views
Let xgettext find keywords in comments
As default, xgettext ignores any keyword found within a comment block.
<?php // file.php
echo _('This text will be found');
//_('This text will be ignored');
Is it possible to override this ...