hello,
I am using gettext fo localization
local_path=os.path.join(module_path(), lang_folder)
gettext.bindtextdomain(lang_name, local_path)
gettext.textdomain(lang_name)
# Get the language to use
lang = gettext.translation(lang_name, local_path, languages=['sk'],
fallback = True)
lang.install()Now I would like to switch all texts in my app when I click on item in menu. Unfortunatelly this not switch texts immediately. How can I do this?
-- http://mail.python.org/mailman/listinfo/python-list
