Othernet-Project / bottle-utils

Miscellaneous utiltiies for Bottle, Python web framework
http://bottle-utils.readthedocs.org/en/latest/
Other
26 stars 5 forks source link

Add easy way to disable translation #4

Open foxbunny opened 10 years ago

foxbunny commented 10 years ago

There should be a switch or function that swaps lazy versions of gettext functions with dummy version.

zrudzionis commented 7 years ago

I was using bottle_utils.form that used translations. My workaround was:

import bottle_utils.i18n
delattr(bottle_utils.i18n, 'lazy_gettext')