# HG changeset patch # User timeless@mozdev.org # Date 1258720656 -7200 # Node ID adf9505e8888ffa145b61eb34ca5cc330bfcdb16 # Parent 3aa35db5e38c17353595699d1c492971ff52629b commands: Try to improve help options text for basic commands Mostly rewrite -r text diff -r 3aa35db5e38c -r adf9505e8888 contrib/zsh_completion --- a/contrib/zsh_completion Sun Feb 07 10:58:51 2010 +0100 +++ b/contrib/zsh_completion Fri Nov 20 14:37:36 2009 +0200 @@ -358,7 +358,7 @@ _hg_diff_opts=( '(--text -a)'{-a,--text}'[treat all files as text]' '(--git -g)'{-g,--git}'[use git extended diff format]' - "--nodates[don't include dates in diff headers]") + "--nodates[omit dates from diff headers]") _hg_dryrun_opts=( '(--dry-run -n)'{-n,--dry-run}'[do not perform actions, just print output]') diff -r 3aa35db5e38c -r adf9505e8888 mercurial/commands.py --- a/mercurial/commands.py Sun Feb 07 10:58:51 2010 +0100 +++ b/mercurial/commands.py Fri Nov 20 14:37:36 2009 +0200 @@ -3330,7 +3330,7 @@ diffopts = [ ('a', 'text', None, _('treat all files as text')), ('g', 'git', None, _('use git extended diff format')), - ('', 'nodates', None, _("don't include dates in diff headers")) + ('', 'nodates', None, _('omit dates from diff headers')) ] diffopts2 = [ @@ -3412,11 +3412,11 @@ "bundle": (bundle, [('f', 'force', None, - _('run even when remote repository is unrelated')), + _('run even when the destination is unrelated')), ('r', 'rev', [], - _('a changeset up to which you would like to bundle')), + _('a changeset intended to be added to the destination')), ('', 'base', [], - _('a base changeset to specify instead of a destination')), + _('a base changeset assumed to be available at the destination')), ('a', 'all', None, _('bundle all changesets in the repository')), ('t', 'type', 'bzip2', _('bundle compression type to use')), ] + remoteopts, @@ -3431,11 +3431,11 @@ "^clone": (clone, [('U', 'noupdate', None, - _('the clone will only contain a repository (no working copy)')), + _('the clone will include an empty working copy (only a repository)')), ('u', 'updaterev', '', _('revision, tag or branch to check out')), ('r', 'rev', [], - _('clone only the specified revisions and ancestors')), + _('include the specified changeset')), ('', 'pull', None, _('use pull protocol to copy metadata')), ('', 'uncompressed', None, _('use uncompressed transfer (fast over LAN)')), @@ -3562,11 +3562,11 @@ "incoming|in": (incoming, [('f', 'force', None, - _('run even when remote repository is unrelated')), + _('run even if remote repository is unrelated')), ('n', 'newest-first', None, _('show newest record first')), ('', 'bundle', '', _('file to store the bundles into')), ('r', 'rev', [], - _('a specific remote revision up to which you would like to pull')), + _('a remote changeset intended to be added')), ] + logopts + remoteopts, _('[-p] [-n] [-M] [-f] [-r REV]...' ' [--bundle FILENAME] [SOURCE]')), @@ -3576,7 +3576,7 @@ _('[-e CMD] [--remotecmd CMD] [DEST]')), "locate": (locate, - [('r', 'rev', '', _('search the repository as it stood at REV')), + [('r', 'rev', '', _('search the repository as it is in REV')), ('0', 'print0', None, _('end filenames with NUL, for use with xargs')), ('f', 'fullpath', None, @@ -3617,15 +3617,15 @@ "outgoing|out": (outgoing, [('f', 'force', None, - _('run even when remote repository is unrelated')), + _('run even when the destination is unrelated')), ('r', 'rev', [], - _('a specific revision up to which you would like to push')), + _('a changeset intended to be included in the destination')), ('n', 'newest-first', None, _('show newest record first')), ] + logopts + remoteopts, _('[-M] [-p] [-n] [-f] [-r REV]... [DEST]')), "parents": (parents, - [('r', 'rev', '', _('show parents from the specified revision')), + [('r', 'rev', '', _('show parents of the specified revision')), ] + templateopts, _('[-r REV] [FILE]')), "paths": (paths, [], _('[NAME]')), @@ -3636,14 +3636,14 @@ ('f', 'force', None, _('run even when remote repository is unrelated')), ('r', 'rev', [], - _('a specific remote revision up to which you would like to pull')), + _('a remote changeset intended to be added')), ] + remoteopts, _('[-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]')), "^push": (push, [('f', 'force', None, _('force push')), ('r', 'rev', [], - _('a specific revision up to which you would like to push')), + _('a changeset intended to be included in the destination')), ] + remoteopts, _('[-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')), "recover": (recover, []), @@ -3674,7 +3674,7 @@ (revert, [('a', 'all', None, _('revert all changes when no arguments given')), ('d', 'date', '', _('tipmost revision matching date')), - ('r', 'rev', '', _('revision to revert to')), + ('r', 'rev', '', _('revert to the specified revision')), ('', 'no-backup', None, _('do not save backup copies of files')), ] + walkopts + dryrunopts, _('[OPTION]... [-r REV] [NAME]...')), diff -r 3aa35db5e38c -r adf9505e8888 tests/test-help.out --- a/tests/test-help.out Sun Feb 07 10:58:51 2010 +0100 +++ b/tests/test-help.out Fri Nov 20 14:37:36 2009 +0200 @@ -344,7 +344,7 @@ -c --change change made by revision -a --text treat all files as text -g --git use git extended diff format - --nodates don't include dates in diff headers + --nodates omit dates from diff headers -p --show-function show which function each change is in --reverse produce a diff that undoes the changes -w --ignore-all-space ignore white space when comparing lines