diff --git a/pyfpdb/SplitHandHistory.py b/pyfpdb/SplitHandHistory.py index 8be80e66..52c1d340 100644 --- a/pyfpdb/SplitHandHistory.py +++ b/pyfpdb/SplitHandHistory.py @@ -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() diff --git a/pyfpdb/WinTables.py b/pyfpdb/WinTables.py index 391f70c7..f6ddd93b 100644 --- a/pyfpdb/WinTables.py +++ b/pyfpdb/WinTables.py @@ -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?"))