Hi everybody!
In my own theme, I want to internationalise number format like this:
if (0 < $numtags) $numtags = number_format($numtags)
For French (see: http://fr2.php.net/number_format), I write:
if (0 < $numtags) $numtags = number_format($numtags , 0, ',', ' ');
But how to internationalize this string for other languages and translate with PoEdit?
Thanks.
V.