python gettext怎么使用
答案:2 悬赏:70 手机版
解决时间 2021-03-16 18:53
- 提问者网友:练爱
- 2021-03-16 13:56
python gettext怎么使用
最佳答案
- 五星知识达人网友:风格不统一
- 2021-03-16 14:32
编辑源代码, 保存为gettextdemo.py
[python] view plain copy
import gettext
catalogs = gettext.find("example", localedir="locale", all=True)
print 'catalogs:',catalogs
t = gettext.translation('example', "locale", fallback=True)
_=t.ugettext
print(_("this message"))
[python] view plain copy
import gettext
catalogs = gettext.find("example", localedir="locale", all=True)
print 'catalogs:',catalogs
t = gettext.translation('example', "locale", fallback=True)
_=t.ugettext
print(_("this message"))
全部回答
- 1楼网友:神的生死簿
- 2021-03-16 15:03
搜一下:python gettext怎么使用
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯