1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
#!/usr/bin/env python3
# Apache License, Version 2.0
# Copyright 2015 Anton Felix Lorenzen <anfelor@web.de>
'''
Translation Tracker: report the number of complete translations.
Example:
report_translation_progress.py locale/fr
Summary only - for all languages:
report_translation_progress.py --quiet locale/*
'''
import os
from file_translation_progress import parse_file
def po_files(path):
for dirpath, dirnames, filenames in os.walk(path):
if dirpath.startswith("."):
continue
for filename in filenames:
ext = os.path.splitext(filename)[1]
if ext.lower() == ".po":
yield os.path.join(dirpath, filename)
def report_fuzzy_filepaths(report, filepaths, limited=False, number=10):
if limited and len(filepaths) > number:
filepaths = sorted(filepaths)[:number]
filepaths.append("-- and more --")
else:
filepaths = sorted(filepaths)
for po_filepath in filepaths:
report(' ' * 9 + "%s" % po_filepath)
def report_progress(path, report, quiet=False):
report('Translation progress: %s' % path)
msgstrs_all_complete = 0
msgstrs_all_empty = 0
msgstrs_all_fuzzy = 0
msgstrs_all_fuzzy_files = set()
last_line_was_empty_msg_str = False
for po_filepath in po_files(path):
(msgstrs_file_complete, msgstrs_file_empty, msgstrs_file_fuzzy) = parse_file(po_filepath)
if msgstrs_file_fuzzy > 0:
msgstrs_all_fuzzy_files.add(po_filepath)
if not quiet:
report('%3d empty, %3d fuzzy of %3d; or [%5.1f %%] in %s' %
(msgstrs_file_empty,
msgstrs_file_fuzzy,
msgstrs_file_complete,
0.0 if not msgstrs_file_complete else
((1.0 - (msgstrs_file_empty + msgstrs_file_fuzzy) /
msgstrs_file_complete) * 100.0),
po_filepath[len(path):]))
msgstrs_all_complete += msgstrs_file_complete
msgstrs_all_empty += msgstrs_file_empty
msgstrs_all_fuzzy += msgstrs_file_fuzzy
report(
'Fuzzy: %d fuzzy strings in:' %
(msgstrs_all_fuzzy))
report_fuzzy_filepaths(report, msgstrs_all_fuzzy_files, quiet)
report('Summary: %d empty of %d; or [%5.1f %%] complete' %
(msgstrs_all_empty,
msgstrs_all_complete,
0.0 if not msgstrs_all_complete else
((1.0 - ((msgstrs_all_empty + msgstrs_all_fuzzy) /
msgstrs_all_complete)) * 100.0)))
def main():
import argparse
parser = argparse.ArgumentParser(
usage=__doc__
)
parser.add_argument(
"-q", "--quiet",
dest="quiet",
default=False,
action='store_true',
help="only print the final summary",
required=False,
)
parser.add_argument(
"paths",
nargs="+",
help="directories containing PO files",
metavar="DIRS"
)
args = parser.parse_args()
for path in args.paths:
if os.path.isdir(path):
report_progress(path, report=print, quiet=args.quiet)
else:
print('%s isn\'t a directory' % (path))
print()
if __name__ == "__main__":
main()
|