X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2Fabc2ly.py;h=553c400ea4d9e5bbf73947138ef10d1ffe49491c;hb=c6288e71d8197c28dab38f8f4d4f1799f6d94510;hp=2693817e92c0722d1ffe42a4a5cc5ee802826181;hpb=d38512d714ea37480a042dfd6ebbfb863dc4d4dc;p=lilypond.git diff --git a/scripts/abc2ly.py b/scripts/abc2ly.py index 2693817e92..553c400ea4 100644 --- a/scripts/abc2ly.py +++ b/scripts/abc2ly.py @@ -1340,17 +1340,25 @@ def print_version (): def get_option_parser (): p = ly.get_option_parser (usage=_ ("%s [OPTION]... FILE") % 'abc2ly', - version="abc2ly (LilyPond) @TOPLEVEL_VERSION@", description=_ ('''abc2ly converts ABC music files (see -%s) to LilyPond input.''') % 'http://www.gre.ac.uk/~c.walshaw/abc2mtex/abc.txt') +%s) to LilyPond input.''') % 'http://www.gre.ac.uk/~c.walshaw/abc2mtex/abc.txt', + add_help_option=False) + p.version = "abc2ly (LilyPond) @TOPLEVEL_VERSION@" + p.add_option("--version", + action="version", + help=_ ("show version number and exit")) + + p.add_option("-h", "--help", + action="help", + help=_ ("show this help and exit")) p.add_option ('-o', '--output', metavar='FILE', help=_ ("write output to FILE"), action='store') - p.add_option ('-s', '--strict', help=_ ("be strict about succes"), + p.add_option ('-s', '--strict', help=_ ("be strict about success"), action='store_true') p.add_option ('-b', '--beams', help=_ ("preserve ABC's notion of beams")) - p.add_option_group ('bugs', + p.add_option_group (ly.display_encode (_ ('Bugs')), description=(_ ('Report bugs via') + ''' http://post.gmane.org/post.php''' '''?group=gmane.comp.gnu.lilypond.bugs\n'''))