Fix (unreported) missing cleanup of commented messages in ui translate tool.

For some reason never noticed that mistake until now.
This commit is contained in:
Bastien Montagne 2020-10-19 09:56:24 +02:00
parent a1f2292023
commit ae6710aab8
1 changed files with 2 additions and 1 deletions

View File

@ -124,9 +124,10 @@ def i18n_cleanuptranslation_svn_branches_callback(lng, settings):
return
po = utils_i18n.I18nMessages(uid=lng['uid'], kind='PO', src=lng['po_path'], settings=settings)
errs = po.check(fix=True)
cleanedup_commented = po.clean_commented()
po.write(kind="PO", dest=lng['po_path'])
print("Processing {} language ({}).\n"
"Cleaned up {} commented messages.\n".format(lng['name'], lng['uid'], po.clean_commented()) +
"Cleaned up {} commented messages.\n".format(lng['name'], lng['uid'], cleanedup_commented) +
("Errors in this po, solved as best as possible!\n\t" + "\n\t".join(errs) if errs else "") + "\n")