diff hgext/strip.py @ 24364:135b23868f45

commands: replace "working copy" with "working directory" in help/messages "working directory" is the standard term, we should use it consistently. But I didn't touch the hint, "run 'hg update' to get a working copy", because "get a working directory" sounds a bit odd.
author Yuya Nishihara <yuya@tcha.org>
date Tue, 17 Mar 2015 22:47:08 +0900
parents e53f6b72a0e4
children 1ff35d76421c
line wrap: on
line diff
--- a/hgext/strip.py	Tue Mar 17 22:21:09 2015 -0400
+++ b/hgext/strip.py	Tue Mar 17 22:47:08 2015 +0900
@@ -81,7 +81,8 @@
           ('', 'no-backup', None, _('no backups')),
           ('', 'nobackup', None, _('no backups (DEPRECATED)')),
           ('n', '', None, _('ignored  (DEPRECATED)')),
-          ('k', 'keep', None, _("do not modify working copy during strip")),
+          ('k', 'keep', None, _("do not modify working directory during "
+                                "strip")),
           ('B', 'bookmark', '', _("remove revs only reachable from given"
                                   " bookmark"))],
           _('hg strip [-k] [-f] [-n] [-B bookmark] [-r] REV...'))