mark strings for transl

This commit is contained in:
Nikos Kouremenos 2005-08-05 12:33:50 +00:00
parent eb8f585fe8
commit e0f766de1c
1 changed files with 6 additions and 6 deletions

View File

@ -38,20 +38,20 @@ class Logger:
def __init__(self): def __init__(self):
dot_gajim = os.path.dirname(LOGPATH) dot_gajim = os.path.dirname(LOGPATH)
if os.path.isfile(dot_gajim): if os.path.isfile(dot_gajim):
print dot_gajim, 'is file but it should be a directory' print dot_gajim, _('is file but it should be a directory')
print 'Gajim will now exit' print _('Gajim will now exit')
sys.exit() sys.exit()
if os.path.isdir(dot_gajim): if os.path.isdir(dot_gajim):
if os.path.isfile(LOGPATH): if os.path.isfile(LOGPATH):
print LOGPATH, 'is file but it should be a directory' print LOGPATH, _('is file but it should be a directory')
print 'Gajim will now exit' print _('Gajim will now exit')
sys.exit() sys.exit()
else: # dot_gajim doesn't exist else: # dot_gajim doesn't exist
if dot_gajim: # is '' on win9x so avoid that if dot_gajim: # is '' on win9x so avoid that
print 'creating', dot_gajim , 'directory' print _('creating'), dot_gajim , _('directory')
os.mkdir(dot_gajim) os.mkdir(dot_gajim)
if not os.path.isdir(LOGPATH): if not os.path.isdir(LOGPATH):
print 'creating', LOGPATH, 'directory' print _('creating'), LOGPATH, _('directory')
os.mkdir(LOGPATH) os.mkdir(LOGPATH)
def write(self, kind, msg, jid, show = None, tim = None): def write(self, kind, msg, jid, show = None, tim = None):