# HG changeset patch # User Mads Kiilerich # Date 1586524725 -7200 # Node ID 80ffe0f29857aadc708f49651796ca6def535f9d # Parent 19735bc604550095ea4430a50be67e5df6e2e2df scripts/i18n: tweak messages diff -r 19735bc60455 -r 80ffe0f29857 scripts/i18n --- a/scripts/i18n Wed Nov 13 12:28:19 2019 +0100 +++ b/scripts/i18n Fri Apr 10 15:18:45 2020 +0200 @@ -96,7 +96,7 @@ ui as uimod, ) - print('i18n normalized-merge: merging file %s' % output) + print('i18n normalized-merge: normalizing and merging %s' % output) i18n_utils._normalize_po_file(local, merge_pot_file=merge_pot_file, strip=strip) i18n_utils._normalize_po_file(base, merge_pot_file=merge_pot_file, strip=strip) @@ -121,7 +121,7 @@ otherkeep = other + '.keep' shutil.copyfile(base, basekeep) shutil.copyfile(other, otherkeep) - sys.stderr.write("Error: simple merge failed and %s is left with conflict markers. Resolve the conflics , then use 'hg resolve -m'.\n" % output) + sys.stderr.write("Error: simple merge failed and %s is left with conflict markers. Resolve the conflicts, then use 'hg resolve -m'.\n" % output) sys.stderr.write('Resolve with e.g.: kdiff3 %s %s %s -o %s\n' % (basekeep, localkeep, otherkeep, output)) sys.exit(ret)