Changeset 1898
- Timestamp:
- 11/01/04 17:21:17 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/tool.py
r1872 r1898 22 22 # 23 23 # $Log$ 24 # Revision 1.137 2004/11/01 16:21:17 jalet 25 # Little change for locale+gettext 26 # 24 27 # Revision 1.136 2004/10/24 09:06:46 jalet 25 28 # Added debug messages for LPRng support possible problem ??? … … 544 547 try : 545 548 locale.setlocale(locale.LC_ALL, lang) 546 gettext.install("pykota")547 549 except (locale.Error, IOError) : 548 550 locale.setlocale(locale.LC_ALL, "C") 549 551 defaultToCLocale = 1 552 try : 553 gettext.install("pykota") 554 except : 550 555 gettext.NullTranslations().install() 551 556