##// END OF EJS Templates
i18n, churn: mark string for translation
Martin Geisler -
r7051:5f201f71 default
parent child Browse files
Show More
@@ -6,7 +6,7 b''
6 # of the GNU General Public License, incorporated herein by reference.
6 # of the GNU General Public License, incorporated herein by reference.
7 '''allow graphing the number of lines changed per contributor'''
7 '''allow graphing the number of lines changed per contributor'''
8
8
9 from mercurial.i18n import gettext as _
9 from mercurial.i18n import _
10 from mercurial import patch, cmdutil, util, node
10 from mercurial import patch, cmdutil, util, node
11 import os, sys
11 import os, sys
12
12
@@ -115,5 +115,5 b' cmdtable = {'
115 [('r', 'rev', [], _('limit statistics to the specified revisions')),
115 [('r', 'rev', [], _('limit statistics to the specified revisions')),
116 ('', 'aliases', '', _('file with email aliases')),
116 ('', 'aliases', '', _('file with email aliases')),
117 ('', 'progress', None, _('show progress'))],
117 ('', 'progress', None, _('show progress'))],
118 'hg churn [-r REVISIONS] [--aliases FILE] [--progress]'),
118 _('hg churn [-r REVISIONS] [--aliases FILE] [--progress]')),
119 }
119 }
General Comments 0
You need to be logged in to leave comments. Login now