Mercurial > hg-stable
changeset 7051:5f201f711932
i18n, churn: mark string for translation
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Tue, 23 Sep 2008 22:01:40 +0200 |
parents | 6788608627c4 |
children | 0ca4f42daed7 |
files | hgext/churn.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/churn.py Wed Sep 24 13:50:29 2008 +0200 +++ b/hgext/churn.py Tue Sep 23 22:01:40 2008 +0200 @@ -6,7 +6,7 @@ # of the GNU General Public License, incorporated herein by reference. '''allow graphing the number of lines changed per contributor''' -from mercurial.i18n import gettext as _ +from mercurial.i18n import _ from mercurial import patch, cmdutil, util, node import os, sys @@ -115,5 +115,5 @@ [('r', 'rev', [], _('limit statistics to the specified revisions')), ('', 'aliases', '', _('file with email aliases')), ('', 'progress', None, _('show progress'))], - 'hg churn [-r REVISIONS] [--aliases FILE] [--progress]'), + _('hg churn [-r REVISIONS] [--aliases FILE] [--progress]')), }