Mercurial > libervia-backend
comparison frontends/src/wix/chat.py @ 771:bfabeedbf32e
core: i18n refactoring:
- _() is no more installed in __builtin__
- instead, there is a new sat.core.i18n module
- added D_() method for deferred translation
- languageSwitch method allow to dynamically change translation language
- import gettext is tested against ImportError, and dummy methods are used when not available (mainly useful for Libervia)
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 29 Dec 2013 17:06:01 +0100 |
parents | f7878ad3c846 |
children | 1fe00f0c9a91 |
comparison
equal
deleted
inserted
replaced
770:64dd7c0f4feb | 771:bfabeedbf32e |
---|---|
17 # You should have received a copy of the GNU Affero General Public License | 17 # You should have received a copy of the GNU Affero General Public License |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | 19 |
20 | 20 |
21 | 21 |
22 from sat.core.i18n import _ | |
22 import wx | 23 import wx |
23 import os.path | 24 import os.path |
24 import time | 25 import time |
25 import pdb | 26 import pdb |
26 from logging import debug, info, error, warning | 27 from logging import debug, info, error, warning |