##// END OF EJS Templates
help: mark strings for translation
Jens Bäckman -
r15985:740b1b4c stable
parent child Browse files
Show More
@@ -3062,11 +3062,15 b' def help_(ui, name=None, unknowncmd=Fals'
3062
3062
3063 # options
3063 # options
3064 if not ui.quiet and entry[1]:
3064 if not ui.quiet and entry[1]:
3065 rst += '\noptions:\n\n'
3065 rst += '\n'
3066 rst += _("options:")
3067 rst += '\n\n'
3066 rst += optrst(entry[1])
3068 rst += optrst(entry[1])
3067
3069
3068 if ui.verbose:
3070 if ui.verbose:
3069 rst += '\nglobal options:\n\n'
3071 rst += '\n'
3072 rst += _("global options:")
3073 rst += '\n\n'
3070 rst += optrst(globalopts)
3074 rst += optrst(globalopts)
3071
3075
3072 keep = ui.verbose and ['verbose'] or []
3076 keep = ui.verbose and ['verbose'] or []
General Comments 0
You need to be logged in to leave comments. Login now