Changeset 3439 for branches/gajim_0.8.2
- Timestamp:
- 09/06/05 13:16:08 (3 years ago)
- Files:
-
- 1 modified
-
branches/gajim_0.8.2/src/common/i18n.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.8.2/src/common/i18n.py
r3286 r3439 18 18 ## 19 19 20 APP = 'gajim'21 DIR = '../po'22 23 20 import locale 24 21 import gettext 22 import os 23 24 APP = 'gajim' 25 if os.path.isdir('../po'): 26 DIR = '../po' 27 else: 28 DIR = '../../locale' 25 29 26 30 locale.setlocale(locale.LC_ALL, '')
