Mercurial > public > mercurial-scm > hg
diff 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 |
line wrap: on
line diff
--- a/hgext/gpg.py Tue Jun 26 20:37:15 2007 +0200 +++ b/hgext/gpg.py Tue Jun 26 22:38:57 2007 +0200 @@ -266,14 +266,14 @@ cmdtable = { "sign": (sign, - [('l', 'local', None, _("make the signature local")), - ('f', 'force', None, _("sign even if the sigfile is modified")), - ('', 'no-commit', None, _("do not commit the sigfile after signing")), - ('m', 'message', "", _("commit message")), - ('d', 'date', "", _("date code")), - ('u', 'user', "", _("user")), - ('k', 'key', "", _("the key id to sign with"))], - _("hg sign [OPTION]... [REVISION]...")), + [('l', 'local', None, _('make the signature local')), + ('f', 'force', None, _('sign even if the sigfile is modified')), + ('', 'no-commit', None, _('do not commit the sigfile after signing')), + ('m', 'message', '', _('commit message')), + ('d', 'date', '', _('date code')), + ('u', 'user', '', _('user')), + ('k', 'key', '', _('the key id to sign with'))], + _('hg sign [OPTION]... [REVISION]...')), "sigcheck": (check, [], _('hg sigcheck REVISION')), "sigs": (sigs, [], _('hg sigs')), }