# HG changeset patch # User Martin Geisler # Date 2008-09-23 20:01:40 # Node ID 5f201f711932f74f8241a00d6d1dda8593f59a2d # Parent 6788608627c49043f1d81066e05334e9004a1f1d i18n, churn: mark string for translation diff --git a/hgext/churn.py b/hgext/churn.py --- a/hgext/churn.py +++ b/hgext/churn.py @@ -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 @@ cmdtable = { [('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]')), }