##// END OF EJS Templates
commands: search for translated version of "DEPRECATED"...
Martin Geisler -
r9636:926eba48 default
parent child Browse files
Show More
@@ -1604,7 +1604,7 b' def help_(ui, name=None, with_version=Fa'
1604 for title, options in option_lists:
1604 for title, options in option_lists:
1605 opt_output.append(("\n%s" % title, None))
1605 opt_output.append(("\n%s" % title, None))
1606 for shortopt, longopt, default, desc in options:
1606 for shortopt, longopt, default, desc in options:
1607 if "DEPRECATED" in desc and not ui.verbose: continue
1607 if _("DEPRECATED") in desc and not ui.verbose: continue
1608 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
1608 opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt,
1609 longopt and " --%s" % longopt),
1609 longopt and " --%s" % longopt),
1610 "%s%s" % (desc,
1610 "%s%s" % (desc,
General Comments 0
You need to be logged in to leave comments. Login now