diff -r 5414b56cfad6 -r 646759147717 mercurial/discovery.py --- a/mercurial/discovery.py Mon Nov 14 18:16:01 2011 +0100 +++ b/mercurial/discovery.py Thu Nov 17 16:53:17 2011 -0600 @@ -178,9 +178,9 @@ hint = _("did you forget to merge? " "use push -f to force") if branch is not None: - repo.ui.note("new remote heads on branch '%s'\n" % branch) + repo.ui.note(_("new remote heads on branch '%s'\n") % branch) for h in dhs: - repo.ui.note("new remote head %s\n" % short(h)) + repo.ui.note(_("new remote head %s\n") % short(h)) if error: raise util.Abort(error, hint=hint)