# HG changeset patch # User Jens Bäckman # Date 1327521964 21600 # Node ID 740b1b4c79586e9a9ab21a2a1d3c3f3bc2f6678c # Parent 894f83a356534652e76da4008987a3e570a23cc0 help: mark strings for translation diff -r 894f83a35653 -r 740b1b4c7958 mercurial/commands.py --- a/mercurial/commands.py Wed Jan 25 20:03:46 2012 +0100 +++ b/mercurial/commands.py Wed Jan 25 14:06:04 2012 -0600 @@ -3062,11 +3062,15 @@ # options if not ui.quiet and entry[1]: - rst += '\noptions:\n\n' + rst += '\n' + rst += _("options:") + rst += '\n\n' rst += optrst(entry[1]) if ui.verbose: - rst += '\nglobal options:\n\n' + rst += '\n' + rst += _("global options:") + rst += '\n\n' rst += optrst(globalopts) keep = ui.verbose and ['verbose'] or []