@@ -33,6 +33,8 @@ msgid ""
3333":mod:`!argparse` --- Parser for command-line options, arguments and "
3434"subcommands"
3535msgstr ""
36+ ":mod:`!argparse` --- コマンドラインオプションや引数、サブコマンド向けのパー"
37+ "サー"
3638
3739#: ../../library/argparse.rst:12
3840msgid "**Source code:** :source:`Lib/argparse.py`"
@@ -90,6 +92,10 @@ msgid ""
9092" description='What the program does',\n"
9193" epilog='Text at the bottom of help')"
9294msgstr ""
95+ "parser = argparse.ArgumentParser(\n"
96+ " prog='ProgramName',\n"
97+ " description='What the program does',\n"
98+ " epilog='Text at the bottom of help')"
9399
94100#: ../../library/argparse.rst:49
95101msgid ""
@@ -108,6 +114,10 @@ msgid ""
108114"parser.add_argument('-v', '--verbose',\n"
109115" action='store_true') # on/off flag"
110116msgstr ""
117+ "parser.add_argument('filename') # 位置引数\n"
118+ "parser.add_argument('-c', '--count') # 値を取るオプション\n"
119+ "parser.add_argument('-v', '--verbose',\n"
120+ " action='store_true') # オン/オフフラグ"
111121
112122#: ../../library/argparse.rst:58
113123msgid ""