# HG changeset patch # User Martin Geisler # Date 2008-08-31 14:12:03 # Node ID 057ced2b85439e47a9b372a8f7a6e9957a422f3b # Parent 98abbcf9fbdfc98c2b9c6f7f4159b8cd9409fecf i18n: mark strings for translation in transplant extension diff --git a/hgext/transplant.py b/hgext/transplant.py --- a/hgext/transplant.py +++ b/hgext/transplant.py @@ -169,7 +169,7 @@ class transplanter: 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-')