Added commandline options, use -h to see help text.
Option --skip-fuzzies, skips fuzzies in the detailed reports. Option --only-summary, skips detailed reports. svn: r7629
This commit is contained in:
parent
8ea10bb08a
commit
a0a53bc7eb
@ -18,8 +18,18 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
#
|
||||||
|
# TODO
|
||||||
|
#
|
||||||
|
# * commandline options (for example, "suppress fuzzies in report")
|
||||||
|
# * Check for HTML text in msgstr when there is none in msgid
|
||||||
|
# * Check for matching HTML tag/endtag in msgstr
|
||||||
|
# * Check for shortcut key (_) presence in both msgid and msgstr
|
||||||
|
#
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import re
|
import re
|
||||||
|
from optparse import OptionParser
|
||||||
|
|
||||||
all_total = {}
|
all_total = {}
|
||||||
all_fuzzy = {}
|
all_fuzzy = {}
|
||||||
@ -381,7 +391,7 @@ def read_msgs( fname ):
|
|||||||
msgs = msgs1
|
msgs = msgs1
|
||||||
return msgs
|
return msgs
|
||||||
|
|
||||||
def analyze_msgs( fname, msgs, nr_templates = None, nth = 0 ):
|
def analyze_msgs( options, fname, msgs, nr_templates = None, nth = 0 ):
|
||||||
nr_fuzzy = 0
|
nr_fuzzy = 0
|
||||||
nr_untranslated = 0
|
nr_untranslated = 0
|
||||||
|
|
||||||
@ -407,8 +417,8 @@ def analyze_msgs( fname, msgs, nr_templates = None, nth = 0 ):
|
|||||||
|
|
||||||
if msg.is_fuzzy:
|
if msg.is_fuzzy:
|
||||||
nr_fuzzy += 1
|
nr_fuzzy += 1
|
||||||
# Skip fuzzies or not?
|
if options.skip_fuzzy:
|
||||||
# continue
|
continue
|
||||||
|
|
||||||
for c in checks:
|
for c in checks:
|
||||||
c.process( msg )
|
c.process( msg )
|
||||||
@ -432,18 +442,30 @@ def analyze_msgs( fname, msgs, nr_templates = None, nth = 0 ):
|
|||||||
template_coverage = po_coverage * float(nr_msgs) / float(nr_templates)
|
template_coverage = po_coverage * float(nr_msgs) / float(nr_templates)
|
||||||
print "%-20s%5.2f%%" % ( "Template Coverage:", template_coverage )
|
print "%-20s%5.2f%%" % ( "Template Coverage:", template_coverage )
|
||||||
|
|
||||||
for c in checks:
|
if not options.only_summary:
|
||||||
c.diag()
|
for c in checks:
|
||||||
|
c.diag()
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
parser = OptionParser( description='This program validates a PO file for GRAMPS.', usage='%prog [options] po-file...' )
|
||||||
|
|
||||||
|
parser.add_option("", "--skip-fuzzy",
|
||||||
|
action="store_true", dest="skip_fuzzy", default=True,
|
||||||
|
help="skip fuzzies")
|
||||||
|
|
||||||
|
parser.add_option("-s", "--only-summary",
|
||||||
|
action="store_true", dest="only_summary", default=True,
|
||||||
|
help="only give the summary")
|
||||||
|
|
||||||
|
(options, args) = parser.parse_args()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
pot_msgs = read_msgs( 'gramps.pot' )
|
pot_msgs = read_msgs( 'gramps.pot' )
|
||||||
nr_templates = len( pot_msgs )
|
nr_templates = len( pot_msgs )
|
||||||
#analyze_msgs( 'gramps.pot', pot_msgs )
|
|
||||||
nth = 0
|
nth = 0
|
||||||
for fname in sys.argv[1:]:
|
for fname in args:
|
||||||
msgs = read_msgs( fname )
|
msgs = read_msgs( fname )
|
||||||
analyze_msgs( fname, msgs, nr_templates, nth )
|
analyze_msgs( options, fname, msgs, nr_templates, nth )
|
||||||
nth += 1
|
nth += 1
|
||||||
|
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
|
Loading…
Reference in New Issue
Block a user