Skip to content

Commit 314fa70

Browse files
[po] auto sync
1 parent 309d40a commit 314fa70

31 files changed

+391
-315
lines changed

.stat.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "92.85%", "updated_at": "2024-05-03T08:24:42Z"}
1+
{"translation": "92.85%", "updated_at": "2024-05-03T13:24:37Z"}

c-api/init.po

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111
# Jing Li <tes286.lijing@gmail.com>, 2022
1212
# 高乐喆 <gaolezhe@outlook.com>, 2023
1313
# Bryan不可思议, 2023
14-
# Freesand Leo <yuqinju@163.com>, 2024
1514
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
15+
# Freesand Leo <yuqinju@163.com>, 2024
1616
#
1717
#, fuzzy
1818
msgid ""
1919
msgstr ""
2020
"Project-Id-Version: Python 3.9\n"
2121
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2024-02-02 22:52+0000\n"
22+
"POT-Creation-Date: 2024-04-26 21:29+0000\n"
2323
"PO-Revision-Date: 2017-02-16 17:36+0000\n"
24-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
24+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
2525
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2626
"MIME-Version: 1.0\n"
2727
"Content-Type: text/plain; charset=UTF-8\n"
@@ -462,7 +462,7 @@ msgid ""
462462
"handlers, which might be useful when Python is embedded."
463463
msgstr ""
464464
"如果 *initsigs* 为 ``1`` 则该函数的工作方式与 :c:func:`Py_Initialize` 类似。 如果 *initsigs* 为"
465-
" ``0``,它将跳过信号处理句柄的初始化注册,这在嵌入 Python 时可能会很有用处。"
465+
" ``0``,它将跳过信号处理器的初始化注册,这在嵌入 Python 时可能会很有用处。"
466466

467467
#: ../../c-api/init.rst:269
468468
msgid ""
@@ -560,7 +560,7 @@ msgstr ""
560560
msgid ""
561561
"Note that :data:`sys.stderr` always uses the \"backslashreplace\" error "
562562
"handler, regardless of this (or any other) setting."
563-
msgstr "请注意无论是否有此设置(或任何其他设置),:data:`sys.stderr` 都会使用 \"backslashreplace\" 错误处理句柄。"
563+
msgstr "请注意无论是否有此设置(或任何其他设置),:data:`sys.stderr` 都会使用 \"backslashreplace\" 错误处理器。"
564564

565565
#: ../../c-api/init.rst:339
566566
msgid ""

c-api/sys.po

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
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
#
66
# Translators:
77
# ppcfish <ppcfish@gmail.com>, 2019
8-
# Freesand Leo <yuqinju@163.com>, 2022
98
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
9+
# Freesand Leo <yuqinju@163.com>, 2024
1010
#
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.9\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-12-01 21:24+0000\n"
16+
"POT-Creation-Date: 2024-04-26 21:29+0000\n"
1717
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
18-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
18+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
1919
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2020
"MIME-Version: 1.0\n"
2121
"Content-Type: text/plain; charset=UTF-8\n"
@@ -160,7 +160,7 @@ msgid ""
160160
"functions directly! :c:type:`PyOS_sighandler_t` is a typedef alias for "
161161
":c:type:`void (\\*)(int)`."
162162
msgstr ""
163-
"返回当前用于信号 *i* 的信号处理句柄。 这是一个对 :c:func:`sigaction` 或 :c:func:`signal` 简单包装器。 "
163+
"返回当前用于信号 *i* 的信号处理器。 这是一个对 :c:func:`sigaction` 或 :c:func:`signal` 简单包装器。 "
164164
"请不要直接调用那两个函数! :c:type:`PyOS_sighandler_t` 是对应于 :c:type:`void (\\*)(int)` 的 "
165165
"typedef 别名。"
166166

@@ -172,7 +172,7 @@ msgid ""
172172
":c:type:`PyOS_sighandler_t` is a typedef alias for :c:type:`void "
173173
"(\\*)(int)`."
174174
msgstr ""
175-
"将用于信号 *i* 的信号处理句柄设为 *h*;返回旧的信号处理句柄。 这是一个对 :c:func:`sigaction` 或 "
175+
"将用于信号 *i* 的信号处理器设为 *h*;返回旧的信号处理器。 这是一个对 :c:func:`sigaction` 或 "
176176
":c:func:`signal` 的简单包装器。 请不要直接调用那两个函数! :c:type:`PyOS_sighandler_t` 是对应于 "
177177
":c:type:`void (\\*)(int)` 的 typedef 别名。"
178178

c-api/type.po

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2022, 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
#
66
# Translators:
77
# stone jing <stonejing1817@gmail.com>, 2019
88
# ppcfish <ppcfish@gmail.com>, 2019
99
# Lu <lu2github@gmail.com>, 2022
10-
# Freesand Leo <yuqinju@163.com>, 2022
10+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
11+
# Freesand Leo <yuqinju@163.com>, 2024
1112
#
1213
#, fuzzy
1314
msgid ""
1415
msgstr ""
1516
"Project-Id-Version: Python 3.9\n"
1617
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2022-11-04 14:34+0000\n"
18+
"POT-Creation-Date: 2024-04-26 21:29+0000\n"
1819
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
19-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2022\n"
20-
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
20+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
21+
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2122
"MIME-Version: 1.0\n"
2223
"Content-Type: text/plain; charset=UTF-8\n"
2324
"Content-Transfer-Encoding: 8bit\n"
@@ -26,7 +27,7 @@ msgstr ""
2627

2728
#: ../../c-api/type.rst:6
2829
msgid "Type Objects"
29-
msgstr "Type 对象"
30+
msgstr "类型对象"
3031

3132
#: ../../c-api/type.rst:13
3233
msgid "The C structure of the objects used to describe built-in types."
@@ -110,7 +111,7 @@ msgid ""
110111
"object. Use Python's default memory allocation mechanism to allocate a new "
111112
"instance and initialize all its contents to ``NULL``."
112113
msgstr ""
113-
"类型对象的 :c:member:`~PyTypeObject.tp_alloc` 槽位的通用处理句柄。 请使用 Python "
114+
"类型对象的 :c:member:`~PyTypeObject.tp_alloc` 槽位的通用处理器。 请使用 Python "
114115
"的默认内存分配机制来分配一个新的实例并将其所有内容初始化为 ``NULL``。"
115116

116117
#: ../../c-api/type.rst:90
@@ -119,7 +120,7 @@ msgid ""
119120
"object. Create a new instance using the type's "
120121
":c:member:`~PyTypeObject.tp_alloc` slot."
121122
msgstr ""
122-
"类型对象的 :c:member:`~PyTypeObject.tp_new` 槽位的通用处理句柄。 请使用类型的 "
123+
"类型对象的 :c:member:`~PyTypeObject.tp_new` 槽位的通用处理器。 请使用类型的 "
123124
":c:member:`~PyTypeObject.tp_alloc` 槽位来创建一个新的实例。"
124125

125126
#: ../../c-api/type.rst:95

c-api/typeobj.po

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
# Bryan不可思议, 2023
1616
# Nyuan Zhang, 2023
1717
# Kevin Deng <kevindeng55+transifex@gmail.com>, 2024
18-
# Freesand Leo <yuqinju@163.com>, 2024
1918
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
19+
# Freesand Leo <yuqinju@163.com>, 2024
2020
#
2121
#, fuzzy
2222
msgid ""
2323
msgstr ""
2424
"Project-Id-Version: Python 3.9\n"
2525
"Report-Msgid-Bugs-To: \n"
26-
"POT-Creation-Date: 2024-04-15 06:01+0000\n"
26+
"POT-Creation-Date: 2024-04-26 21:29+0000\n"
2727
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
28-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
28+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
2929
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
3030
"MIME-Version: 1.0\n"
3131
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1821,7 +1821,7 @@ msgid ""
18211821
msgstr ""
18221822
"一个可选的实现内置 :func:`str` 操作的函数的指针。 (请注意 :class:`str` 现在是一个类型,:func:`str` "
18231823
"是调用该类型的构造器。 该构造器将调用 :c:func:`PyObject_Str` 执行实际操作,而 :c:func:`PyObject_Str` "
1824-
"将调用该处理句柄。)"
1824+
"将调用该处理器。)"
18251825

18261826
#: ../../c-api/typeobj.rst:913
18271827
msgid "The signature is the same as for :c:func:`PyObject_Str`::"
@@ -2896,7 +2896,7 @@ msgid ""
28962896
msgstr ""
28972897
":c:member:`~PyTypeObject.tp_new` 函数应当调用 ``subtype->tp_alloc(subtype, "
28982898
"nitems)`` 来为对象分配空间,然后只执行绝对有必要的进一步初始化操作。 可以安全地忽略或重复的初始化操作应当放在 "
2899-
":c:member:`~PyTypeObject.tp_init` 处理句柄中。 一个关键的规则是对于不可变类型来说,所有初始化操作都应当在 "
2899+
":c:member:`~PyTypeObject.tp_init` 处理器中。 一个关键的规则是对于不可变类型来说,所有初始化操作都应当在 "
29002900
":c:member:`~PyTypeObject.tp_new` 中发生,而对于可变类型,大部分初始化操作都应当推迟到 "
29012901
":c:member:`~PyTypeObject.tp_init` 再执行。"
29022902

c-api/unicode.po

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
# ppcfish <ppcfish@gmail.com>, 2019
99
# Jiuh.star <jiuh.star@gmail.com>, 2021
1010
# 高乐喆 <gaolezhe@outlook.com>, 2023
11-
# Freesand Leo <yuqinju@163.com>, 2023
1211
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
12+
# Freesand Leo <yuqinju@163.com>, 2024
1313
#
1414
#, fuzzy
1515
msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.9\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-04-19 21:47+0000\n"
19+
"POT-Creation-Date: 2024-04-26 21:29+0000\n"
2020
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
21-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
21+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
2222
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2323
"MIME-Version: 1.0\n"
2424
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1027,9 +1027,9 @@ msgid ""
10271027
"``\"strict\"`` error handler if *errors* is ``NULL``. *str* must end with a"
10281028
" null character but cannot contain embedded null characters."
10291029
msgstr ""
1030-
"解码字符串在 Android 和 VxWorks 上使用 UTF-8,在其他平台上则使用当前语言区域编码格式。 支持的错误处理句柄有 "
1030+
"解码字符串在 Android 和 VxWorks 上使用 UTF-8,在其他平台上则使用当前语言区域编码格式。 支持的错误处理器有 "
10311031
"``\"strict\"`` 和 ``\"surrogateescape\"`` (:pep:`383`)。 如果 *errors* 为 "
1032-
"``NULL`` 则解码器将使用 ``\"strict\"`` 错误处理句柄。 *str* 必须以一个空字符结束但不可包含嵌入的空字符。"
1032+
"``NULL`` 则解码器将使用 ``\"strict\"`` 错误处理器。 *str* 必须以一个空字符结束但不可包含嵌入的空字符。"
10331033

10341034
#: ../../c-api/unicode.rst:801
10351035
msgid ""
@@ -1053,7 +1053,7 @@ msgid ""
10531053
":c:func:`Py_DecodeLocale` was used for the ``surrogateescape``, and the "
10541054
"current locale encoding was used for ``strict``."
10551055
msgstr ""
1056-
"此函数现在也会为 ``surrogateescape`` 错误处理句柄使用当前语言区域编码格式,但在 Android 上例外。 "
1056+
"此函数现在也会为 ``surrogateescape`` 错误处理器使用当前语言区域编码格式,但在 Android 上例外。 "
10571057
"在之前版本中,:c:func:`Py_DecodeLocale` 将被用于 ``surrogateescape``,而当前语言区域编码格式将被用于 "
10581058
"``strict``。"
10591059

@@ -1071,9 +1071,9 @@ msgid ""
10711071
"``\"strict\"`` error handler if *errors* is ``NULL``. Return a "
10721072
":class:`bytes` object. *unicode* cannot contain embedded null characters."
10731073
msgstr ""
1074-
"编码 Unicode 对象在 Android 和 VxWorks 上使用 UTF-8,在其他平台上使用当前语言区域编码格式。 支持的错误处理句柄有 "
1074+
"编码 Unicode 对象在 Android 和 VxWorks 上使用 UTF-8,在其他平台上使用当前语言区域编码格式。 支持的错误处理器有 "
10751075
"``\"strict\"`` 和 ``\"surrogateescape\"`` (:pep:`383`)。 如果 *errors* 为 "
1076-
"``NULL`` 则编码器将使用 ``\"strict\"`` 错误处理句柄。 返回一个 :class:`bytes` 对象。 *unicode* "
1076+
"``NULL`` 则编码器将使用 ``\"strict\"`` 错误处理器。 返回一个 :class:`bytes` 对象。 *unicode* "
10771077
"不可包含嵌入的空字符。"
10781078

10791079
#: ../../c-api/unicode.rst:837
@@ -1094,7 +1094,7 @@ msgid ""
10941094
":c:func:`Py_EncodeLocale` was used for the ``surrogateescape``, and the "
10951095
"current locale encoding was used for ``strict``."
10961096
msgstr ""
1097-
"此函数现在也会为 ``surrogateescape`` 错误处理句柄使用当前语言区域编码格式,但在 Android 上例外。 "
1097+
"此函数现在也会为 ``surrogateescape`` 错误处理器使用当前语言区域编码格式,但在 Android 上例外。 "
10981098
"在之前版本中,:c:func:`Py_EncodeLocale` 将被用于 ``surrogateescape``,而当前语言区域编码格式将被用于 "
10991099
"``strict``。"
11001100

0 commit comments

Comments
 (0)