Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.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 | f6e961c0155b |
children | c41a404ac387 |
comparison
equal
deleted
inserted
replaced
4729:9881abfc0e44 | 4730:eadfaa9ec487 |
---|---|
2766 ('', 'parent', '', _('parent to choose when backing out merge')), | 2766 ('', 'parent', '', _('parent to choose when backing out merge')), |
2767 ('u', 'user', '', _('record user as committer')), | 2767 ('u', 'user', '', _('record user as committer')), |
2768 ('r', 'rev', '', _('revision to backout')), | 2768 ('r', 'rev', '', _('revision to backout')), |
2769 ] + walkopts + commitopts, | 2769 ] + walkopts + commitopts, |
2770 _('hg backout [OPTION]... [-r] REV')), | 2770 _('hg backout [OPTION]... [-r] REV')), |
2771 "branch": (branch, | 2771 "branch": |
2772 [('f', 'force', None, | 2772 (branch, |
2773 _('set branch name even if it shadows an existing branch'))], | 2773 [('f', 'force', None, |
2774 _('hg branch [NAME]')), | 2774 _('set branch name even if it shadows an existing branch'))], |
2775 "branches": (branches, | 2775 _('hg branch [NAME]')), |
2776 [('a', 'active', False, | 2776 "branches": |
2777 _("show only branches that have unmerged heads"))], | 2777 (branches, |
2778 _('hg branches [-a]')), | 2778 [('a', 'active', False, |
2779 _('show only branches that have unmerged heads'))], | |
2780 _('hg branches [-a]')), | |
2779 "bundle": | 2781 "bundle": |
2780 (bundle, | 2782 (bundle, |
2781 [('f', 'force', None, | 2783 [('f', 'force', None, |
2782 _('run even when remote repository is unrelated')), | 2784 _('run even when remote repository is unrelated')), |
2783 ('r', 'rev', [], | 2785 ('r', 'rev', [], |
2835 [('e', 'extended', None, _('try extended date formats'))], | 2837 [('e', 'extended', None, _('try extended date formats'))], |
2836 _('debugdate [-e] DATE [RANGE]')), | 2838 _('debugdate [-e] DATE [RANGE]')), |
2837 "debugdata": (debugdata, [], _('debugdata FILE REV')), | 2839 "debugdata": (debugdata, [], _('debugdata FILE REV')), |
2838 "debugindex": (debugindex, [], _('debugindex FILE')), | 2840 "debugindex": (debugindex, [], _('debugindex FILE')), |
2839 "debugindexdot": (debugindexdot, [], _('debugindexdot FILE')), | 2841 "debugindexdot": (debugindexdot, [], _('debugindexdot FILE')), |
2840 "debugrename": (debugrename, | 2842 "debugrename": |
2841 [('r', 'rev', '', _('revision to debug'))], | 2843 (debugrename, |
2842 _('debugrename [-r REV] FILE')), | 2844 [('r', 'rev', '', _('revision to debug'))], |
2845 _('debugrename [-r REV] FILE')), | |
2843 "debugwalk": (debugwalk, walkopts, _('debugwalk [OPTION]... [FILE]...')), | 2846 "debugwalk": (debugwalk, walkopts, _('debugwalk [OPTION]... [FILE]...')), |
2844 "^diff": | 2847 "^diff": |
2845 (diff, | 2848 (diff, |
2846 [('r', 'rev', [], _('revision')), | 2849 [('r', 'rev', [], _('revision')), |
2847 ('a', 'text', None, _('treat all files as text')), | 2850 ('a', 'text', None, _('treat all files as text')), |