Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b4e3e37

Browse files
[po] auto sync
1 parent cedfcc5 commit b4e3e37

2 files changed

Lines changed: 18 additions & 11 deletions

File tree

library/cgi.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#
66
# Translators:
77
# ww song <[email protected]>, 2021
8-
# eric R <[email protected]>, 2021
98
# Meng Du <[email protected]>, 2021
109
# nick <[email protected]>, 2021
1110
# Freesand Leo <[email protected]>, 2021
@@ -734,11 +733,11 @@ msgstr ""
734733
msgid ""
735734
"Don't try to give a CGI script a set-uid mode. This doesn't work on most "
736735
"systems, and is a security liability as well."
737-
msgstr ""
736+
msgstr "不要试图给 CGI 脚本赋予 set-uid 模式。这在大多数系统上都行不通,出于安全考虑也不应如此。"
738737

739738
#: ../../library/cgi.rst:518
740739
msgid "Footnotes"
741-
msgstr "备注"
740+
msgstr "附注"
742741

743742
#: ../../library/cgi.rst:519
744743
msgid ""
@@ -747,3 +746,4 @@ msgid ""
747746
"received from a conforming browser, or even from a browser at all, is "
748747
"tedious and error-prone."
749748
msgstr ""
749+
"请注意,新版的 HTML 规范确实注明了请求字段的顺序,但判断请求是否合法非常繁琐和容易出错,可能来自不符合要求的浏览器,甚至不是来自浏览器。"

using/cmdline.po

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# ppcfish <[email protected]>, 2021
1010
# jaystone776 <[email protected]>, 2021
1111
# Freesand Leo <[email protected]>, 2021
12+
# Dai Xu <[email protected]>, 2021
1213
#
1314
#, fuzzy
1415
msgid ""
@@ -17,7 +18,7 @@ msgstr ""
1718
"Report-Msgid-Bugs-To: \n"
1819
"POT-Creation-Date: 2021-08-06 13:13+0000\n"
1920
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
20-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2021\n"
21+
"Last-Translator: Dai Xu <daixu61@hotmail.com>, 2021\n"
2122
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2223
"MIME-Version: 1.0\n"
2324
"Content-Type: text/plain; charset=UTF-8\n"
@@ -542,22 +543,24 @@ msgid ""
542543
"searching for a module. Also provides information on module cleanup at "
543544
"exit."
544545
msgstr ""
546+
"每次在初始化模块时会打印一条信息,显示被加载的地方(文件名或内置模块名)。当给出两个v( :option:`!-vv` "
547+
")时,搜索模块时会为每个文件打印一条信息。退出时模块清理的信息也会给出来。"
545548

546549
#: ../../using/cmdline.rst:373
547550
msgid ""
548551
"The :mod:`site` module reports the site-specific paths and :file:`.pth` "
549552
"files being processed."
550-
msgstr ""
553+
msgstr "由 :mod:`site` 模块可以得到将要处理的站点路径和 :file:`.pth` 文件。"
551554

552555
#: ../../using/cmdline.rst:377
553556
msgid "See also :envvar:`PYTHONVERBOSE`."
554-
msgstr ""
557+
msgstr "参阅 :envvar:`PYTHONVERBOSE` 。"
555558

556559
#: ../../using/cmdline.rst:383
557560
msgid ""
558561
"Warning control. Python's warning machinery by default prints warning "
559562
"messages to :data:`sys.stderr`."
560-
msgstr ""
563+
msgstr "警告信息的控制。Python 的警告机制默认将警告信息打印到 :data:`sys.stderr`。"
561564

562565
#: ../../using/cmdline.rst:386 ../../using/cmdline.rst:733
563566
msgid ""
@@ -571,30 +574,32 @@ msgid ""
571574
"The action names can be abbreviated as desired and the interpreter will "
572575
"resolve them to the appropriate action name. For example, ``-Wi`` is the "
573576
"same as ``-Wignore``."
574-
msgstr ""
577+
msgstr "action 名可以根据需要进行缩写,解释器将会解析为合适的名称。例如,``-Wi`` 与 ``-Wignore`` 相同。"
575578

576579
#: ../../using/cmdline.rst:401
577580
msgid "The full form of argument is::"
578-
msgstr ""
581+
msgstr "完整的参数如下:"
579582

580583
#: ../../using/cmdline.rst:405
581584
msgid ""
582585
"Empty fields match all values; trailing empty fields may be omitted. For "
583586
"example ``-W ignore::DeprecationWarning`` ignores all DeprecationWarning "
584587
"warnings."
585588
msgstr ""
589+
"空字段匹配所有值;尾部的空字段可以省略。例如,``-W ignore::DeprecationWarning`` 将忽略所有的 "
590+
"DeprecationWarning 警告。"
586591

587592
#: ../../using/cmdline.rst:409
588593
msgid ""
589594
"The *action* field is as explained above but only applies to warnings that "
590595
"match the remaining fields."
591-
msgstr ""
596+
msgstr "*action* 字段如上所述,但只适用于匹配其余字段的警告。"
592597

593598
#: ../../using/cmdline.rst:412
594599
msgid ""
595600
"The *message* field must match the whole warning message; this match is "
596601
"case-insensitive."
597-
msgstr ""
602+
msgstr "*message* 字段必须与整个警告信息相匹配;不区分大小写。"
598603

599604
#: ../../using/cmdline.rst:415
600605
msgid ""
@@ -603,6 +608,8 @@ msgid ""
603608
"the actual warning category of the message is a subclass of the specified "
604609
"warning category."
605610
msgstr ""
611+
"*category* 字段与警告类别相匹配(``DeprecationWarning`` "
612+
"等)。必须是个类名;检测消息的实际警告类别是否为指定类别的子类。"
606613

607614
#: ../../using/cmdline.rst:420
608615
msgid ""

0 commit comments

Comments
 (0)