##// END OF EJS Templates
scripts/i18n: tweak messages
Mads Kiilerich -
r8204:80ffe0f2 default
parent child Browse files
Show More
@@ -96,7 +96,7 b' def normalized_merge(local, base, other,'
96 ui as uimod,
96 ui as uimod,
97 )
97 )
98
98
99 print('i18n normalized-merge: merging file %s' % output)
99 print('i18n normalized-merge: normalizing and merging %s' % output)
100
100
101 i18n_utils._normalize_po_file(local, merge_pot_file=merge_pot_file, strip=strip)
101 i18n_utils._normalize_po_file(local, merge_pot_file=merge_pot_file, strip=strip)
102 i18n_utils._normalize_po_file(base, merge_pot_file=merge_pot_file, strip=strip)
102 i18n_utils._normalize_po_file(base, merge_pot_file=merge_pot_file, strip=strip)
@@ -121,7 +121,7 b' def normalized_merge(local, base, other,'
121 otherkeep = other + '.keep'
121 otherkeep = other + '.keep'
122 shutil.copyfile(base, basekeep)
122 shutil.copyfile(base, basekeep)
123 shutil.copyfile(other, otherkeep)
123 shutil.copyfile(other, otherkeep)
124 sys.stderr.write("Error: simple merge failed and %s is left with conflict markers. Resolve the conflics , then use 'hg resolve -m'.\n" % output)
124 sys.stderr.write("Error: simple merge failed and %s is left with conflict markers. Resolve the conflicts, then use 'hg resolve -m'.\n" % output)
125 sys.stderr.write('Resolve with e.g.: kdiff3 %s %s %s -o %s\n' % (basekeep, localkeep, otherkeep, output))
125 sys.stderr.write('Resolve with e.g.: kdiff3 %s %s %s -o %s\n' % (basekeep, localkeep, otherkeep, output))
126 sys.exit(ret)
126 sys.exit(ret)
127
127
General Comments 0
You need to be logged in to leave comments. Login now