diff options
Diffstat (limited to 'scripts/update_localization.py')
| -rw-r--r-- | scripts/update_localization.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/update_localization.py b/scripts/update_localization.py index d3c948aa..a1e19b8b 100644 --- a/scripts/update_localization.py +++ b/scripts/update_localization.py @@ -79,7 +79,6 @@ def generate_languagefile(outputfilename, srctable, loctable): num_items += 1 old_items += 1 - print "%-40s %8s %8s %8s" % ("filename", "total", "new", "old") print "%-40s %8d %8d %8d" % (outputfilename, num_items, new_items, old_items) f.close() @@ -87,6 +86,8 @@ def generate_languagefile(outputfilename, srctable, loctable): srctable = parse_source() +print "%-40s %8s %8s %8s" % ("filename", "total", "new", "old") + for filename in os.listdir("data/languages"): if not ".txt" in filename: continue |