Show
Ignore:
Timestamp:
09/06/05 13:16:08 (3 years ago)
Author:
nk
Message:

overwites i18n.py

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.8.2/src/common/i18n.py

    r3286 r3439  
    1818## 
    1919 
    20 APP = 'gajim' 
    21 DIR = '../po' 
    22  
    2320import locale 
    2421import gettext 
     22import os 
     23 
     24APP = 'gajim' 
     25if os.path.isdir('../po'): 
     26        DIR = '../po' 
     27else: 
     28        DIR = '../../locale' 
    2529 
    2630locale.setlocale(locale.LC_ALL, '')