@@ -849,37 +849,41 @@ msgstr "title 是分组的标题"
849
849
850
850
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/library/optparse.rst:573
851
851
msgid "description, optional, is a long description of the group"
852
- msgstr ""
852
+ msgstr "description,可选项,是分组的长描述文本 "
853
853
854
854
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/library/optparse.rst:575
855
855
msgid ""
856
856
":class:`OptionGroup` inherits from :class:`OptionContainer` (like "
857
857
":class:`OptionParser`) and so the :meth:`add_option` method can be used to "
858
858
"add an option to the group."
859
859
msgstr ""
860
+ ":class:`OptionGroup` 继承自 :class:`OptionContainer` (类似 :class:`OptionParser`)"
861
+ " 因此 :meth:`add_option` 方法可被用来向分组添加选项。"
860
862
861
863
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/library/optparse.rst:579
862
864
msgid ""
863
865
"Once all the options are declared, using the :class:`OptionParser` method "
864
866
":meth:`add_option_group` the group is added to the previously defined "
865
867
"parser."
866
868
msgstr ""
869
+ "一旦声明了所有选项,使用 :class:`OptionParser` 方法 :meth:`add_option_group` "
870
+ "即可将分组添加到之前定义的解析器。"
867
871
868
872
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/library/optparse.rst:582
869
873
msgid ""
870
874
"Continuing with the parser defined in the previous section, adding an "
871
875
":class:`OptionGroup` to a parser is easy::"
872
- msgstr ""
876
+ msgstr "继续使用前一节定义的解析器,很容易将 :class:`OptionGroup` 添加到解析器中:: "
873
877
874
878
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/library/optparse.rst:591
875
879
msgid "This would result in the following help output:"
876
- msgstr ""
880
+ msgstr "这将产生以下帮助输出: "
877
881
878
882
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/library/optparse.rst:612
879
883
msgid ""
880
884
"A bit more complete example might involve using more than one group: still "
881
885
"extending the previous example::"
882
- msgstr ""
886
+ msgstr "更完整一些的示例可能涉及使用多个分组:继续扩展之前的例子:: "
883
887
884
888
#: /home/runner/work/docspush-transifex/docspush-transifex/cpython/Doc/library/optparse.rst:629
885
889
msgid "that results in the following output:"