help: mark strings for translation stable
authorJens Bäckman <jens.backman@gmail.com>
Wed, 25 Jan 2012 14:06:04 -0600
branchstable
changeset 15985 740b1b4c7958
parent 15984 894f83a35653
child 15986 ba959f6e10f8
help: mark strings for translation
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 []