# HG changeset patch # User Martin Geisler # Date 2009-05-20 10:20:27 # Node ID 5b6a6ed4f1853b011388de6028ab8179b6a41562 # Parent 22ec9cf4d0ceade8b1d511d8ff57307861a6bbf4 cmdutil: mark string for translation diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py --- a/mercurial/cmdutil.py +++ b/mercurial/cmdutil.py @@ -1231,7 +1231,7 @@ def commitforceeditor(repo, ctx, added, edittext.append("") # Empty line between message and comments. edittext.append(_("HG: Enter commit message." " Lines beginning with 'HG:' are removed.")) - edittext.append("HG: Leave message empty to abort commit.") + edittext.append(_("HG: Leave message empty to abort commit.")) edittext.append("HG: --") edittext.append(_("HG: user: %s") % ctx.user()) if ctx.p2():