Skip to content

Commit 8812102

Browse files
author
github-actions
committed
Merge 3.14 into 3.11
1 parent 4863259 commit 8812102

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

library/argparse.po

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ msgid ""
3333
":mod:`!argparse` --- Parser for command-line options, arguments and "
3434
"subcommands"
3535
msgstr ""
36+
":mod:`!argparse` --- コマンドラインオプションや引数、サブコマンド向けのパー"
37+
"サー"
3638

3739
#: ../../library/argparse.rst:12
3840
msgid "**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')"
9294
msgstr ""
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
95101
msgid ""
@@ -108,6 +114,10 @@ msgid ""
108114
"parser.add_argument('-v', '--verbose',\n"
109115
" action='store_true') # on/off flag"
110116
msgstr ""
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
113123
msgid ""

0 commit comments

Comments
 (0)