add missed _()

This commit is contained in:
steffen123 2010-10-24 22:01:40 +02:00
parent 83b1a41c6e
commit 4cb59175f7
2 changed files with 6 additions and 6 deletions

View File

@ -73,7 +73,7 @@ class SplitHandHistory:
try:
infile = codecs.open(self.in_path, 'r', kodec)
except IOError:
print 'File not found'
print _('File not found')
sys.exit(2)
#Split with do_hands_per_file if archive and paragraphs if a regular hh
@ -83,7 +83,7 @@ class SplitHandHistory:
nn += 1
check = self.do_hands_per_file(infile, nn)
if check is None:
print '%s processed' % self.in_path
print _('%s processed' % self.in_path)
break
else:
filenum = 0
@ -102,7 +102,7 @@ class SplitHandHistory:
def new_file(self, fileno=-1):
if fileno < 1:
print 'Nope, will not work (fileno=%d)' % fileno
print _('Nope, will not work (fileno=%d)' % fileno)
sys.exit(2)
basename = os.path.splitext(os.path.basename(self.in_path))[0]
name = os.path.join(self.out_path, basename+'-%06d.txt' % fileno)
@ -123,7 +123,7 @@ class SplitHandHistory:
done = True
break
except:
print "Unexpected error processing file"
print _("Unexpected error processing file")
sys.exit(2)
n += 1
outfile.close()
@ -162,7 +162,7 @@ class SplitHandHistory:
#print l, len(l)
# Catch EOF
if len(l) == 0:
raise FpdbEndOfFile("End of file reached")
raise FpdbEndOfFile(_("End of file reached"))
m = re_SplitArchive.search(l)
# There is an empty line after pre-hand header and actual HH entry
l = infile.readline()

View File

@ -67,7 +67,7 @@ class Table(Table_Window):
try:
if self.window == None:
log.error("Window %s not found. Skipping." % self.search_string)
log.error(_("Window %s not found. Skipping." % self.search_string))
return None
except AttributeError:
log.error(_("self.window doesn't exist? why?"))