# HG changeset patch # User Martin Geisler # Date 2010-01-01 17:46:24 # Node ID 572dd10fa3088729beb35cdb434b5fd0661e74e1 # Parent eb0665db0c5c3ec2b6f678c6e1d11ee05ac7823a subrepo: mark string for translation and fix case diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -309,8 +309,8 @@ class svnsubrepo(object): def remove(self): if self.dirty(): - self._repo.ui.warn('Not removing repo %s because' - 'it has changes.\n' % self._path) + self._repo.ui.warn(_('not removing repo %s because' + 'it has changes.\n' % self._path)) return self._repo.ui.note('removing subrepo %s\n' % self._path) shutil.rmtree(self._ctx.repo.join(self._path))