Mercurial > public > mercurial-scm > hg
diff hgext/mq.py @ 8027:9c7ca86fc658
expand "repo" to "repository" in help texts
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Tue, 07 Apr 2009 22:58:05 +0200 |
parents | 683d8ebcf434 |
children | 3aaca5901ade |
line wrap: on
line diff
--- a/hgext/mq.py Tue Apr 07 22:47:56 2009 +0200 +++ b/hgext/mq.py Tue Apr 07 22:58:05 2009 +0200 @@ -1765,22 +1765,23 @@ qbase = sr.lookup('qbase') except error.RepoError: pass - ui.note(_('cloning main repo\n')) + ui.note(_('cloning main repository\n')) sr, dr = hg.clone(ui, sr.url(), dest, pull=opts['pull'], rev=destrev, update=False, stream=opts['uncompressed']) - ui.note(_('cloning patch repo\n')) + ui.note(_('cloning patch repository\n')) hg.clone(ui, opts['patches'] or patchdir(sr), patchdir(dr), pull=opts['pull'], update=not opts['noupdate'], stream=opts['uncompressed']) if dr.local(): if qbase: - ui.note(_('stripping applied patches from destination repo\n')) + ui.note(_('stripping applied patches from destination ' + 'repository\n')) dr.mq.strip(dr, qbase, update=False, backup=None) if not opts['noupdate']: - ui.note(_('updating destination repo\n')) + ui.note(_('updating destination repository\n')) hg.update(dr, dr.changelog.tip()) def commit(ui, repo, *pats, **opts): @@ -2480,7 +2481,7 @@ ('U', 'noupdate', None, _('do not update the new working directories')), ('', 'uncompressed', None, _('use uncompressed transfer (fast over LAN)')), - ('p', 'patches', '', _('location of source patch repo')), + ('p', 'patches', '', _('location of source patch repository')), ] + commands.remoteopts, _('hg qclone [OPTION]... SOURCE [DEST]')), "qcommit|qci":