From fb5a2fc9ae273a6f0473891780e7a812abc0e89f Mon Sep 17 00:00:00 2001 From: Kees Bakker Date: Sat, 11 Nov 2006 08:24:47 +0000 Subject: [PATCH] In the reported messages show if they are fuzzy or not. svn: r7612 --- gramps2/po/check_po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps2/po/check_po b/gramps2/po/check_po index ec3dd35a5..2d9e958d5 100755 --- a/gramps2/po/check_po +++ b/gramps2/po/check_po @@ -60,7 +60,7 @@ class Msgid: def diag( self ): if 1: print - print "msg nr: %d, lineno: %d" % ( self.nr, self.lineno ) + print "msg nr: %d, lineno: %d%s" % ( self.nr, self.lineno, self.is_fuzzy and " (fuzzy)" or "" ) sys.stdout.write( ''.join( self._msgid ) ) sys.stdout.write( ''.join( self._msgstr ) ) else: