python 国际化支持
python 通过 gettext 模块支持国际化(i18n),可以实现程序的多语言界面支持。两种方式:代码中实时切换语言;
根据系统的语言环境
一、代码中实时切换语言
1. 示例 test.py
ice@local:~$ cat test.py
# -*- coding: utf-8 -*-
#!/usr/bin/env python
import gettext
locale_path = '/usr/share/locale/'
#gettext.install('kylin-system-info', locale_path)
#上一句会将_()函数自动放到 python 的内置命名空间。未确认
zh_trans = gettext.translation('kylin-system-info', locale_path, languages=['zh_CN'])
en_trans = gettext.translation('kylin-system-info', locale_path, languages=['en_US'])
#kylin-system-info 可以为工程名,要和最终的 mo 格式翻译文件同名
zh_trans.install()
print _("hello world!")
en_trans.install()
print _("hello world!")
# 所有需要国际化的字符串带上 _()
2.生成 pot 模板文件,修改 charset 为 utf-8,并将 pot 拷贝一个 po 文件
ice@local:~$ xgettext -k_ -o kylin-system-info.pot test.py
ice@local:~$ diff kylin-system-info.pot kylin-system-info.pot.save
17c17
< "Content-Type: text/plain; charset=utf-8"
---
> "Content-Type: text/plain; charset=CHARSET"
ice@local:~$ cp kylin-system-info.pot kylin-system-info.po_zh
ice@local:~$ cp kylin-system-info.pot kylin-system-info.po_en
3.翻译
ice@local:~$ cat kylin-system-info.po_en
msgid "hello world!"
msgstr ""
---翻译后---
ice@local:~$ cat kylin-system-info.po_en
msgid "hello world!"
msgstr "translate:hello world!"
ice@local:~$ cat kylin-system-info.po_zh
msgid "hello world!"
msgstr ""
---翻译后---
ice@local:~$ cat kylin-system-info.po_zh
msgid "hello world!"
msgstr "世界你好!"
4.翻译文件路径,默认已经存在,不存在就自己创建。:
简体中文 /usr/share/locale/zh_CN/LC_MESSAGES/