Tagged Questions
8
votes
2answers
256 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:
...
4
votes
4answers
2k views
xgettext vs gettext
I have a few questions:
I know what gettext is. I've read a few posts where they mentioned xgettext and was curious as to what is the difference between the two.
How can I install xgettext on ...
2
votes
3answers
122 views
How to generate a new .pot template from a translated .po file
Having started off with an incomplete gettext .pot file, the resulting .po translations file now includes a large number of translation strings that were not originally in the .pot file.
How can I ...
2
votes
3answers
1k 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
vote
2answers
107 views
Need just the strings for translation to be generated by xgettext, not all the strings in the source files
really struggling with this one.
I've recently setup a bash shell script to extract, concat and deduplicate the strings to translate out of a whole webite's view pages (MVC framework in use), it ...
1
vote
0answers
172 views
xgettext > search through smarty templates for {php}{/php} tags
How could I use xgettext with poedit to replace tags like these:
{php}printf(_("You have to pay € %01.2f for this car."), $this->get_template_vars('amount')){/php}
I've renamed my tpl ...
0
votes
2answers
96 views
xgettext in OSX to create .po file from PHP code
I'm on Mac OSX, and I'm unable to find a good solution to parse PHP Code and extract the translatable strings.
I've tried PoEdit, but it fail with an anti-verbose trunkated error:
I've also tried ...
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 ...
0
votes
2answers
230 views
Translate variables with POEdit/xgettext
I am using PHP, Zend Framework and Zend_Translate (gettext adapter). To edit translations I use POEdit which utilizes xgettext to fetch strings to be translated.
POEdit (xgettext) will search for ...
0
votes
0answers
32 views
Small issue with xgettext in PHP source code
it seems that xgettext does not find strings with inlined variables in PHP source code:
_("Search has found $a occurence(s).") // not extracted
I must use sprintf.
sprintf(_('Search has found %d ...