Hi all,
Wx::gettext() seems only to work in its simple form:
Wx::gettext('My message')
As it (at least I think so) should roughly correspond to
wxGetTranslation - see
http://docs.wxwidgets.org/stable/wx_stringfunctions.html#wxgettranslation
for reference - it should also support the correct handling of plural
forms:
Wx::gettext('%d thing', '%d things', n)
where n is the current number of things. This allows gettext to choose
the right string for output, no matter how your language handles
numbers.
This does not seem to be the case.
A pointer to where I can fix this would be appreciated, I don't mind
fixing it myself ;-)
Best regards,
Zeno