changeset 5285:3ef190234b55

record: change wording of initial per-file prompt
author Bryan O'Sullivan <bos@serpentine.com>
date Thu, 06 Sep 2007 10:52:54 -0700
parents f8c36b215281
children cbec83d9b0b4
files hgext/record.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/record.py
+++ b/hgext/record.py
@@ -277,7 +277,7 @@ def filterpatch(ui, chunks):
             seen[hdr] = True
             if resp_all[0] is None:
                 chunk.pretty(ui)
-            r = prompt(_('record changes to %s?') %
+            r = prompt(_('examine changes to %s?') %
                        _(' and ').join(map(repr, chunk.files())))
             if r == 'y':
                 applied[chunk.filename()] = [chunk]