Kiln » TortoiseHg » TortoiseHg
Clone URL:  
i18n.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# i18n.py - internationalization support for TortoiseHg # # Copyright 2010 Yuki KODAMA <endflow.net@gmail.com> # # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. from tortoisehg.util.i18n import _ as _gettext from tortoisehg.util.i18n import agettext, keepgettext def _(message): return unicode(_gettext(message), 'utf-8') class localgettext(object): def _(self, message): return agettext(message)