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

Skip to content

Commit 8782ee8

Browse files
[po] auto sync
1 parent f926a4f commit 8782ee8

20 files changed

Lines changed: 2491 additions & 2568 deletions

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "94.64%", "updated_at": "2024-03-08T06:56:43Z"}
1+
{"translation": "94.55%", "updated_at": "2024-03-08T14:56:25Z"}

c-api/structures.po

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-02-16 14:13+0000\n"
16+
"POT-Creation-Date: 2024-03-08 14:14+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1818
"Last-Translator: Freesand Leo <[email protected]>, 2024\n"
1919
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -934,14 +934,14 @@ msgstr "可选的文档字符串"
934934

935935
#: ../../c-api/structures.rst:705
936936
msgid ""
937-
"Optional function pointer, providing additional data for getter and setter."
938-
msgstr "可选的函数指针,为 getter 和 setter 提供附加数据。"
937+
"Optional user data pointer, providing additional data for getter and setter."
938+
msgstr ""
939939

940940
#: ../../c-api/structures.rst:709
941941
msgid ""
942942
"The ``get`` function takes one :c:expr:`PyObject*` parameter (the instance) "
943-
"and a function pointer (the associated ``closure``):"
944-
msgstr "``get`` 函数接受一个 :c:expr:`PyObject*` 形参 (实例) 和一个函数指针 (关联的 ``closure``):"
943+
"and a user data pointer (the associated ``closure``):"
944+
msgstr ""
945945

946946
#: ../../c-api/structures.rst:712
947947
msgid ""
@@ -952,9 +952,8 @@ msgstr "它应当在成功时返回一个新的引用或在失败时返回 ``NUL
952952
#: ../../c-api/structures.rst:717
953953
msgid ""
954954
"``set`` functions take two :c:expr:`PyObject*` parameters (the instance and "
955-
"the value to be set) and a function pointer (the associated ``closure``):"
955+
"the value to be set) and a user data pointer (the associated ``closure``):"
956956
msgstr ""
957-
"``set`` 函数接受两个 :c:expr:`PyObject*` 形参 (实例和要设置的值) 和一个函数指针 (关联的 ``closure``):"
958957

959958
#: ../../c-api/structures.rst:720
960959
msgid ""

faq/general.po

Lines changed: 74 additions & 77 deletions
Large diffs are not rendered by default.

library/asyncio-eventloop.po

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.12\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2024-02-09 14:13+0000\n"
23+
"POT-Creation-Date: 2024-03-08 14:14+0000\n"
2424
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
2525
"Last-Translator: Freesand Leo <[email protected]>, 2024\n"
2626
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -945,6 +945,10 @@ msgstr ""
945945
"*allow_broadcast* 和 *sock* 等形参。"
946946

947947
#: ../../library/asyncio-eventloop.rst:608
948+
msgid "Added support for Windows."
949+
msgstr "添加WIndows的支持。"
950+
951+
#: ../../library/asyncio-eventloop.rst:611
948952
msgid ""
949953
"The *reuse_address* parameter is no longer supported, as using "
950954
":ref:`socket.SO_REUSEADDR <socket-unix-constants>` poses a significant "
@@ -954,15 +958,15 @@ msgstr ""
954958
"*reuse_address* 形参已不再受支持,因为使用 :ref:`socket.SO_REUSEADDR <socket-unix-"
955959
"constants>` 对于 UDP 会造成显著的安全问题。 显式地传入 ``reuse_address=True`` 将引发异常。"
956960

957-
#: ../../library/asyncio-eventloop.rst:614
961+
#: ../../library/asyncio-eventloop.rst:617
958962
msgid ""
959963
"When multiple processes with differing UIDs assign sockets to an identical "
960964
"UDP socket address with ``SO_REUSEADDR``, incoming packets can become "
961965
"randomly distributed among the sockets."
962966
msgstr ""
963967
"当具有不同 UID 的多个进程将套接字赋给具有 ``SO_REUSEADDR`` 的相同 UDP 套接字地址时,传入的数据包可能会在套接字间随机分配。"
964968

965-
#: ../../library/asyncio-eventloop.rst:618
969+
#: ../../library/asyncio-eventloop.rst:621
966970
msgid ""
967971
"For supported platforms, *reuse_port* can be used as a replacement for "
968972
"similar functionality. With *reuse_port*, :ref:`socket.SO_REUSEPORT <socket-"
@@ -973,16 +977,11 @@ msgstr ""
973977
":ref:`socket.SO_REUSEPORT <socket-unix-constants>`,它能防止具有不同 UID "
974978
"的进程将套接字赋给相同的套接字地址。"
975979

976-
#: ../../library/asyncio-eventloop.rst:625
977-
msgid "Added support for Windows."
978-
msgstr "添加WIndows的支持。"
979-
980980
#: ../../library/asyncio-eventloop.rst:628
981981
msgid ""
982-
"The *reuse_address* parameter, disabled since Python 3.9.0, 3.8.1, 3.7.6 and"
983-
" 3.6.10, has been entirely removed."
982+
"The *reuse_address* parameter, disabled since Python 3.8.1, 3.7.6 and "
983+
"3.6.10, has been entirely removed."
984984
msgstr ""
985-
"自 Python 3.9.0, 3.8.1, 3.7.6 和 3.6.10 起被禁用的 *reuse_address* 形参现已被完全移除。"
986985

987986
#: ../../library/asyncio-eventloop.rst:637
988987
msgid "Create a Unix connection."

library/audit_events.po

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2023, Python Software Foundation
2+
# Copyright (C) 2001-2024, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.12\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
17+
"POT-Creation-Date: 2024-03-08 14:14+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
1919
"Last-Translator: Freesand Leo <[email protected]>, 2023\n"
2020
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -32,10 +32,8 @@ msgstr "审计事件表"
3232
msgid ""
3333
"This table contains all events raised by :func:`sys.audit` or "
3434
":c:func:`PySys_Audit` calls throughout the CPython runtime and the standard "
35-
"library. These calls were added in 3.8.0 or later (see :pep:`578`)."
35+
"library. These calls were added in 3.8 or later (see :pep:`578`)."
3636
msgstr ""
37-
"下表包含了在整个 CPython 运行时和标准库中由 :func:`sys.audit` 或 :c:func:`PySys_Audit` "
38-
"调用所引发的全部事件。 这些调用是在 3.8.0 或更高版本中添加了 (参见 :pep:`578`)。"
3937

4038
#: ../../library/audit_events.rst:12
4139
msgid ""

0 commit comments

Comments
 (0)