# HG changeset patch # User Martin Geisler # Date 2009-08-10 21:02:58 # Node ID 9d68d9deda51e9dc1b760be47fb7ea50e0afd397 # Parent be2a13153372fca2dc1fcbc4f8412645f494e4aa patch: marked string for translation diff --git a/mercurial/patch.py b/mercurial/patch.py --- a/mercurial/patch.py +++ b/mercurial/patch.py @@ -1448,7 +1448,7 @@ def diffstat(lines, width=80): adds+removes, pluses, minuses)) if stats: - output.append(' %d files changed, %d insertions(+), %d deletions(-)\n' + output.append(_(' %d files changed, %d insertions(+), %d deletions(-)\n') % (len(stats), totaladds, totalremoves)) return ''.join(output)