⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 i18n.py

📁 用python实现的邮件过滤器
💻 PY
字号:
"""InternationalisationClasses:    LanguageManager - Interface class for languages.Abstract:Manages the internationalisation (i18n) aspects of SpamBayes."""# This module is part of the spambayes project, which is Copyright 2002-4# The Python Software Foundation and is covered by the Python Software# Foundation license.__author__ = "Hernan Martinez Foffani <hfoffani@yahoo.com>"__credits__ = "Tony Meyer, All the SpamBayes folk."try:    True, Falseexcept NameError:    # Maintain compatibility with Python 2.2    True, False = 1, 0import osimport sysfrom locale import getdefaultlocalefrom gettext import translation, NullTranslations# Note, we must not import spambayes.Options, or Outlook will not be happy.## Set language environment for gettext and for dynamic load of dialogs.#### Our directory layout with source is:##   spambayes##       spambayes (or spambayes.modules with the binary)##           i18n.py                 <-- this file##           languages               <-- the directory for lang packs##               es                  <-- generic language data##                   DIALOGS##                   LC_MESSAGES     <-- gettext message files##                   __init__.py     <-- resourcepackage __init__.py##                  ui.html          <-- web interface translation##               es_ES               <-- specific language/country data.##                   DIALOGS         <-- resource dialogs##                   LC_MESSAGES     <-- gettext message files##                   __init__.py     <-- resourcepackage __init__.py##                  ui.html          <-- web interface translation##               zn##               zn_TW##       Outlook2000##       utilities##       ..etc..#### Our directory layout with the binaries is:##   lib##       spambayes.modules##           i18n.py                 <-- this file##           languages               <-- the directory for lang packs##               es                  <-- generic language data##                   DIALOGS##                   __init__.py     <-- resourcepackage __init__.py##                  ui.html          <-- web interface translation##               es_ES               <-- specific language/country data.##                   DIALOGS         <-- resource dialogs##                   __init__.py     <-- resourcepackage __init__.py##                  ui.html          <-- web interface translation##               zn##               zn_TW##       languages##           es                  <-- generic language data##               LC_MESSAGES     <-- gettext message files##           es_ES               <-- specific language/country data.##               LC_MESSAGES     <-- gettext message files##           zn##           zn_TW##       ..etc..#### A distutils installation will not currently work.  I don't know## where to put the .mo files, so setup.py ignores them.if hasattr(sys, "frozen"):    # LC_MESSAGES are harder to find.    if sys.frozen == "dll":        # Outlook        import win32api        this_filename = win32api.GetModuleFileName(sys.frozendllhandle)    else:        # Not Outlook        this_filename = __file__    LC_DIR = os.path.dirname(os.path.dirname(this_filename))    DIALOGS_DIR = os.path.join(os.path.dirname(__file__), "languages")else:    try:        this_filename = os.path.abspath(__file__)    except NameError: # no __file__ - means Py2.2 and __name__=='__main__'        this_filename = os.path.abspath(sys.argv[0])    LC_DIR = os.path.dirname(this_filename)    DIALOGS_DIR = os.path.join(LC_DIR, "languages")    class LanguageManager:    def __init__(self):        self.current_langs_codes = []        self._sys_path_modifications = []    def set_language(self, lang_code=None):        """Set a language as the current one."""        if not lang_code:            return        self.current_langs_codes = [ lang_code ]        self._rebuild_syspath_for_dialogs()        self._install_gettext()            def locale_default_lang(self):        """Get the default language for the locale."""        # Note that this may return None.        return getdefaultlocale()[0]                 def add_language(self, lang_code=None):        """Add a language to the current languages list.        The list acts as a fallback mechanism, where the first language of        the list is used if possible, and if not the second one, and so on.        """        if not lang_code:            return        self.current_langs_codes.insert(0, lang_code)        self._rebuild_syspath_for_dialogs()        self._install_gettext()    def clear_language(self):        """Clear the current language(s) and set SpamBayes to use        the default."""        self.current_langs_codes = []        self._clear_syspath()        lang = NullTranslations()        lang.install()    def import_ui_html(self):        """Load and return the appropriate ui_html.py module for the        current language."""        for language in self.current_langs_codes:            moduleName = 'spambayes.languages.%s.i18n_ui_html' % (language, )            try:                module = __import__(moduleName, {}, {}, ('spambayes.languages',                                                         language))            except ImportError:                # That language isn't available - fall back to the                # next one.                pass            else:                return module        # Nothing available - use the default.        from spambayes.resources import ui_html        return ui_html    def _install_gettext(self):        """Set the gettext specific environment."""        lang = translation("messages", LC_DIR,                            self.current_langs_codes, fallback=True)        lang.install()    def _rebuild_syspath_for_dialogs(self):        """Add to sys.path the directories of the translated dialogs.        For each language of the current list, we add two directories,        one for language code and country and the other for the language        code only, so we can simulate the fallback procedures."""        self._clear_syspath()        for lcode in self.current_langs_codes:            code_and_country = os.path.join(DIALOGS_DIR, lcode, 'DIALOGS')            code_only = os.path.join(DIALOGS_DIR, lcode.split("_")[0], 'DIALOGS')            if code_and_country not in sys.path:                sys.path.append(code_and_country)                self._sys_path_modifications.append(code_and_country)            if code_only not in sys.path:                sys.path.append(code_only)                self._sys_path_modifications.append(code_only)    def _clear_syspath(self):        """Clean sys.path of the stuff that we put in it."""        for path in self._sys_path_modifications:            sys.path.remove(path)        self._sys_path_modifications = []def test():    lm = LanguageManager()    print "INIT: len(sys.path): ", len(sys.path)    print "TEST default lang"    lm.set_language(lm.locale_default_lang())    print "\tCurrent Languages: ", lm.current_langs_codes    print "\tlen(sys.path): ", len(sys.path)    print "\t", _("Help")    print "TEST clear_language"    lm.clear_language()    print "\tCurrent Languages: ", lm.current_langs_codes    print "\tlen(sys.path): ", len(sys.path)    print "\t", _("Help")    print "TEST set_language"    for langcode in ["kk_KK", "z", "", "es", None, "es_AR"]:        print "lang: ", langcode        lm.set_language(langcode)        print "\tCurrent Languages: ", lm.current_langs_codes        print "\tlen(sys.path): ", len(sys.path)        print "\t", _("Help")    lm.clear_language()    print "TEST add_language"    for langcode in ["kk_KK", "z", "", "es", None, "es_AR"]:        print "lang: ", langcode        lm.add_language(langcode)        print "\tCurrent Languages: ", lm.current_langs_codes        print "\tlen(sys.path): ", len(sys.path)        print "\t", _("Help")if __name__ == '__main__':    test()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -