Humberto Diogenes wrote:
> * _ = gettext.gettext; print _("my string") isn't very nice
If you don't like _, you're free to use something
else, e.g.
from gettext import gettext as i
i("This is a an i18m string")
which is not very far from an i prefix.
--
Greg