Mercurial > public > mercurial-scm > hg
diff mercurial/manifest.py @ 29389:98e8313dcd9e
i18n: translate abort messages
I found a few places where message given to abort is
not translated, I don't find any reason to not translate
them.
author | liscju <piotr.listkiewicz@gmail.com> |
---|---|
date | Tue, 14 Jun 2016 11:53:55 +0200 |
parents | e2178f7d17c0 |
children | 55d341877316 |
line wrap: on
line diff
--- a/mercurial/manifest.py Tue Jun 07 12:10:01 2016 +0200 +++ b/mercurial/manifest.py Tue Jun 14 11:53:55 2016 +0200 @@ -968,7 +968,7 @@ return self.readdelta(node) if self._usemanifestv2: raise error.Abort( - "readshallowdelta() not implemented for manifestv2") + _("readshallowdelta() not implemented for manifestv2")) r = self.rev(node) d = mdiff.patchtext(self.revdiff(self.deltaparent(r), r)) return manifestdict(d)