comparison hgext/gpg.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 b12eae71382d
children 30847b8af7ca
comparison
equal deleted inserted replaced
4729:9881abfc0e44 4730:eadfaa9ec487
264 raise util.Abort(_("unknown signature version")) 264 raise util.Abort(_("unknown signature version"))
265 265
266 cmdtable = { 266 cmdtable = {
267 "sign": 267 "sign":
268 (sign, 268 (sign,
269 [('l', 'local', None, _("make the signature local")), 269 [('l', 'local', None, _('make the signature local')),
270 ('f', 'force', None, _("sign even if the sigfile is modified")), 270 ('f', 'force', None, _('sign even if the sigfile is modified')),
271 ('', 'no-commit', None, _("do not commit the sigfile after signing")), 271 ('', 'no-commit', None, _('do not commit the sigfile after signing')),
272 ('m', 'message', "", _("commit message")), 272 ('m', 'message', '', _('commit message')),
273 ('d', 'date', "", _("date code")), 273 ('d', 'date', '', _('date code')),
274 ('u', 'user', "", _("user")), 274 ('u', 'user', '', _('user')),
275 ('k', 'key', "", _("the key id to sign with"))], 275 ('k', 'key', '', _('the key id to sign with'))],
276 _("hg sign [OPTION]... [REVISION]...")), 276 _('hg sign [OPTION]... [REVISION]...')),
277 "sigcheck": (check, [], _('hg sigcheck REVISION')), 277 "sigcheck": (check, [], _('hg sigcheck REVISION')),
278 "sigs": (sigs, [], _('hg sigs')), 278 "sigs": (sigs, [], _('hg sigs')),
279 } 279 }
280 280