Browse Source

Show total number of entries in PO file

doc-issue-template
MrS0m30n3 7 years ago
parent
commit
7e55e4b9d7
1 changed files with 2 additions and 0 deletions
  1. 2
      devscripts/check-translation.py

2
devscripts/check-translation.py

@ -312,6 +312,8 @@ def main(args):
print("Verify translation\t: {}".format(len(verify_trans))) print("Verify translation\t: {}".format(len(verify_trans)))
print("Fuzzy translations\t: {}".format(len(fuzzy_trans))) print("Fuzzy translations\t: {}".format(len(fuzzy_trans)))
print("Total\t\t\t: {}".format(total)) print("Total\t\t\t: {}".format(total))
print("")
print("Total entries\t\t: {}".format(len(po_file)))
if __name__ == "__main__": if __name__ == "__main__":

Loading…
Cancel
Save