comparison 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
comparison
equal deleted inserted replaced
4729:9881abfc0e44 4730:eadfaa9ec487
83 lock.release() 83 lock.release()
84 wlock.release() 84 wlock.release()
85 85
86 cmdtable = { 86 cmdtable = {
87 'fetch': 87 'fetch':
88 (fetch, 88 (fetch,
89 [('e', 'ssh', '', _('specify ssh command to use')), 89 [('e', 'ssh', '', _('specify ssh command to use')),
90 ('m', 'message', '', _('use <text> as commit message')), 90 ('m', 'message', '', _('use <text> as commit message')),
91 ('l', 'logfile', '', _('read the commit message from <file>')), 91 ('l', 'logfile', '', _('read the commit message from <file>')),
92 ('d', 'date', '', _('record datecode as commit date')), 92 ('d', 'date', '', _('record datecode as commit date')),
93 ('u', 'user', '', _('record user as commiter')), 93 ('u', 'user', '', _('record user as commiter')),
94 ('r', 'rev', [], _('a specific revision you would like to pull')), 94 ('r', 'rev', [], _('a specific revision you would like to pull')),
95 ('f', 'force-editor', None, _('edit commit message')), 95 ('f', 'force-editor', None, _('edit commit message')),
96 ('', 'remotecmd', '', _('hg command to run on the remote side'))], 96 ('', 'remotecmd', '', _('hg command to run on the remote side'))],
97 'hg fetch [SOURCE]'), 97 _('hg fetch [SOURCE]')),
98 } 98 }