# HG changeset patch # User Martin Geisler # Date 1308661037 -7200 # Node ID b24d596fcd252f28a55e9dc58311e1de84f80796 # Parent 1ec8bd909ac3b570d5ffd196bd46d60b838c7148 Backed out changeset 1ec8bd909ac3 Debug messages should not be translated. diff -r 1ec8bd909ac3 -r b24d596fcd25 mercurial/dispatch.py --- a/mercurial/dispatch.py Tue Jun 21 13:24:19 2011 +0200 +++ b/mercurial/dispatch.py Tue Jun 21 14:57:17 2011 +0200 @@ -333,7 +333,7 @@ def __call__(self, ui, *args, **opts): if self.shadows: - ui.debug(_("alias '%s' shadows command '%s'\n") % + ui.debug("alias '%s' shadows command '%s'\n" % (self.name, self.cmdname)) if hasattr(self, 'shell'): @@ -343,7 +343,7 @@ util.checksignature(self.fn)(ui, *args, **opts) except error.SignatureError: args = ' '.join([self.cmdname] + self.args) - ui.debug(_("alias '%s' expands to '%s'\n") % (self.name, args)) + ui.debug("alias '%s' expands to '%s'\n" % (self.name, args)) raise def addaliases(ui, cmdtable):