comparison mercurial/cmdutil.py @ 8535:5b6a6ed4f185

cmdutil: mark string for translation
author Martin Geisler <mg@lazybytes.net>
date Wed, 20 May 2009 12:20:27 +0200
parents ff22d4c3ac04
children 4fa1618bf495
comparison
equal deleted inserted replaced
8534:22ec9cf4d0ce 8535:5b6a6ed4f185
1229 edittext.append(ctx.description()) 1229 edittext.append(ctx.description())
1230 edittext.append("") 1230 edittext.append("")
1231 edittext.append("") # Empty line between message and comments. 1231 edittext.append("") # Empty line between message and comments.
1232 edittext.append(_("HG: Enter commit message." 1232 edittext.append(_("HG: Enter commit message."
1233 " Lines beginning with 'HG:' are removed.")) 1233 " Lines beginning with 'HG:' are removed."))
1234 edittext.append("HG: Leave message empty to abort commit.") 1234 edittext.append(_("HG: Leave message empty to abort commit."))
1235 edittext.append("HG: --") 1235 edittext.append("HG: --")
1236 edittext.append(_("HG: user: %s") % ctx.user()) 1236 edittext.append(_("HG: user: %s") % ctx.user())
1237 if ctx.p2(): 1237 if ctx.p2():
1238 edittext.append(_("HG: branch merge")) 1238 edittext.append(_("HG: branch merge"))
1239 if ctx.branch(): 1239 if ctx.branch():