Mercurial > public > mercurial-scm > hg-stable
diff hgext/fetch.py @ 4730:eadfaa9ec487
Updated command tables in commands.py and hgext extensions.
- Marked for translation where extensions already had _()
- Corrected indentation
- fixed a few synopsises
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Tue, 26 Jun 2007 22:38:57 +0200 |
parents | 0c61124ad877 |
children | 97b734fb9c6f |
line wrap: on
line diff
--- a/hgext/fetch.py Tue Jun 26 20:37:15 2007 +0200 +++ b/hgext/fetch.py Tue Jun 26 22:38:57 2007 +0200 @@ -85,14 +85,14 @@ cmdtable = { 'fetch': - (fetch, - [('e', 'ssh', '', _('specify ssh command to use')), - ('m', 'message', '', _('use <text> as commit message')), - ('l', 'logfile', '', _('read the commit message from <file>')), - ('d', 'date', '', _('record datecode as commit date')), - ('u', 'user', '', _('record user as commiter')), - ('r', 'rev', [], _('a specific revision you would like to pull')), - ('f', 'force-editor', None, _('edit commit message')), - ('', 'remotecmd', '', _('hg command to run on the remote side'))], - 'hg fetch [SOURCE]'), - } + (fetch, + [('e', 'ssh', '', _('specify ssh command to use')), + ('m', 'message', '', _('use <text> as commit message')), + ('l', 'logfile', '', _('read the commit message from <file>')), + ('d', 'date', '', _('record datecode as commit date')), + ('u', 'user', '', _('record user as commiter')), + ('r', 'rev', [], _('a specific revision you would like to pull')), + ('f', 'force-editor', None, _('edit commit message')), + ('', 'remotecmd', '', _('hg command to run on the remote side'))], + _('hg fetch [SOURCE]')), +}