changeset 6966:057ced2b8543

i18n: mark strings for translation in transplant extension
author Martin Geisler <mg@daimi.au.dk>
date Sun, 31 Aug 2008 16:12:03 +0200
parents 98abbcf9fbdf
children a04d8cadb6af
files hgext/transplant.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/transplant.py	Sun Aug 31 16:12:03 2008 +0200
+++ b/hgext/transplant.py	Sun Aug 31 16:12:03 2008 +0200
@@ -169,7 +169,7 @@
     def filter(self, filter, changelog, patchfile):
         '''arbitrarily rewrite changeset before applying it'''
 
-        self.ui.status('filtering %s\n' % patchfile)
+        self.ui.status(_('filtering %s\n') % patchfile)
         user, date, msg = (changelog[1], changelog[2], changelog[4])
 
         fd, headerfile = tempfile.mkstemp(prefix='hg-transplant-')