The Fedora Localization Project - Tips for Translators
Controlling parameters order
When translating, sometime the result of particular translated string contains different parameters order. But it usually is not allowed. There is the workaround to change the order in translation, and it can be found at 'info gettext'.
For example in German, This won't work:
msgid "String
%s' has %d characters\n"
%s'"
msgstr "%d Zeichen lang ist die Zeichenkette
so that the number with $ mark can be given as below:
msgstr "%2$d Zeichen lang ist die Zeichenkette
%1$s'"
Alternatives
In some cases, you may see a string that looks like "
%(var)s
". This variable can be moved within a string in any order.
msgid "String
%(str)s' has %(char)s characters"
Translated:
msgstr "%(char)s Zeichen lang ist die Zeichenkette `%(str)s'"
No other changes are required.