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

📄 i18n.py

📁 Ubuntu packages of security software。 相当不错的源码
💻 PY
字号:
#!/usr/bin/env python# -*- coding: utf-8 -*-# Copyright (C) 2005 Insecure.Com LLC.## Author: Adriano Monteiro Marques <py.adriano@gmail.com>## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USAimport localefrom zenmapCore.Name import APP_NAME, APP_DISPLAY_NAME, APP_WEB_SITE, NMAP_DISPLAY_NAMELC_ALL = locale.setlocale(locale.LC_ALL, '')LANG, ENC = locale.getdefaultlocale()ERRORS = "ignore"# If not correct locale could be retrieved, set en_US.utf8 as defaultif ENC == None:    ENC = "utf8"if LANG == None:    LANG = "en_US"try:    import gettext    from gettext import gettext as _    gettext.install(APP_NAME, unicode=True)except ImportError:    # define _() so program will not fail    import __builtin__    __builtin__.__dict__["_"] = strdef enc(string):    """Encoding conversion. This function is entended to receive a locale    created string with locale encoding and return an utf8 string.    """    # FIXME: Urgent! Find a way to make the encodings work here, decoding    # from the correct codec and encoding to utf8, which should be the    # pattern here. Currently, this only removes the chars that it can't encode,    # and thus, the text may be very hard to understand, but yet, no error will    # occour    string = string.decode("utf8", ERRORS).encode("utf8", ERRORS)    return stringif __name__ == '__main__':    print _('%s - The %s frontend' % (APP_DISPLAY_NAME, NMAP_DISPLAY_NAME))

⌨️ 快捷键说明

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