##// END OF EJS Templates
record: fix display of non-ASCII names in chunk selection...
Nikolaj Sjujskij -
r17566:cd73bbc9 default
parent child Browse files
Show More
@@ -393,10 +393,10 b' the hunk is left unchanged.'
393 if skipfile is None and skipall is None:
393 if skipfile is None and skipall is None:
394 chunk.pretty(ui)
394 chunk.pretty(ui)
395 if total == 1:
395 if total == 1:
396 msg = _('record this change to %r?') % chunk.filename()
396 msg = _("record this change to '%s'?") % chunk.filename()
397 else:
397 else:
398 idx = pos - len(h.hunks) + i
398 idx = pos - len(h.hunks) + i
399 msg = _('record change %d/%d to %r?') % (idx, total,
399 msg = _("record change %d/%d to '%s'?") % (idx, total,
400 chunk.filename())
400 chunk.filename())
401 r, skipfile, skipall, newpatches = prompt(skipfile,
401 r, skipfile, skipall, newpatches = prompt(skipfile,
402 skipall, msg, chunk)
402 skipall, msg, chunk)
General Comments 0
You need to be logged in to leave comments. Login now