# HG changeset patch # User Martin Geisler # Date 1249938178 -7200 # Node ID 9d68d9deda51e9dc1b760be47fb7ea50e0afd397 # Parent be2a13153372fca2dc1fcbc4f8412645f494e4aa patch: marked string for translation diff -r be2a13153372 -r 9d68d9deda51 mercurial/patch.py --- a/mercurial/patch.py Mon Aug 10 22:59:29 2009 +0200 +++ b/mercurial/patch.py Mon Aug 10 23:02:58 2009 +0200 @@ -1448,7 +1448,7 @@ 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)