Skip to content

Commit 8574de2

Browse files
[po] auto sync
1 parent 2c1e57e commit 8574de2

6 files changed

Lines changed: 20 additions & 17 deletions

File tree

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "92.07%", "updated_at": "2024-05-19T07:57:45Z"}
1+
{"translation": "92.08%", "updated_at": "2024-05-20T01:18:35Z"}

faq/library.po

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.13\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2024-05-10 22:05-0300\n"
18+
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
1919
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
2020
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
2121
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -470,6 +470,9 @@ msgid ""
470470
" containing this work, although it may not be completely functional in this "
471471
"release."
472472
msgstr ""
473+
"在 :pep:`703` 通过后目前已着手从 Python 的 CPython 实现中移除 GIL。 "
474+
"最初它将它将作为构建解释器时的可选编译器旗标来实现,因此将会存在有 GIL 和没有 GIL 的构建版本。 从长远来看,目标是在移除 GIL "
475+
"对性能的影响被完全了解之后确定唯一的构建版本。 Python 3.13 大概是第一个包含此项工作的发布版,尽管在这个发布版中该功能可能尚不完整。"
473476

474477
#: ../../faq/library.rst:422
475478
msgid ""

library/bz2.po

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
# Dingyuan Wang <abcdoyle888@gmail.com>, 2021
88
# sgqy <sgqyzh@gmail.com>, 2021
99
# 1lin24 <1lin24@sina.com>, 2021
10-
# Freesand Leo <yuqinju@163.com>, 2023
10+
# Freesand Leo <yuqinju@163.com>, 2024
1111
#
1212
#, fuzzy
1313
msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-05-10 22:05-0300\n"
17+
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
19-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2023\n"
19+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
2020
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2121
"MIME-Version: 1.0\n"
2222
"Content-Type: text/plain; charset=UTF-8\n"
@@ -26,7 +26,7 @@ msgstr ""
2626

2727
#: ../../library/bz2.rst:2
2828
msgid ":mod:`!bz2` --- Support for :program:`bzip2` compression"
29-
msgstr ""
29+
msgstr ":mod:`!bz2` --- 对 :program:`bzip2` 压缩算法的支持"
3030

3131
#: ../../library/bz2.rst:12
3232
msgid "**Source code:** :source:`Lib/bz2.py`"
@@ -180,7 +180,7 @@ msgstr ""
180180

181181
#: ../../library/bz2.rst:94
182182
msgid ":class:`BZ2File` also provides the following methods and attributes:"
183-
msgstr ""
183+
msgstr ":class:`BZ2File` 还提供了以下方法和属性:"
184184

185185
#: ../../library/bz2.rst:98
186186
msgid ""
@@ -236,13 +236,13 @@ msgstr "返回读取的字节数(0 表示 EOF)。"
236236

237237
#: ../../library/bz2.rst:153
238238
msgid "``'rb'`` for reading and ``'wb'`` for writing."
239-
msgstr ""
239+
msgstr "``'rb'`` 表示可读而 ``'wb'`` 表示可写。"
240240

241241
#: ../../library/bz2.rst:159
242242
msgid ""
243243
"The bzip2 file name. Equivalent to the :attr:`~io.FileIO.name` attribute of"
244244
" the underlying :term:`file object`."
245-
msgstr ""
245+
msgstr "bzip2 文件名。 等价于下层 :term:`file object` 的 :attr:`~io.FileIO.name` 属性。"
246246

247247
#: ../../library/bz2.rst:165
248248
msgid "Support for the :keyword:`with` statement was added."

library/code.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-05-10 22:05-0300\n"
17+
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
1919
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
2020
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -26,7 +26,7 @@ msgstr ""
2626

2727
#: ../../library/code.rst:2
2828
msgid ":mod:`!code` --- Interpreter base classes"
29-
msgstr ""
29+
msgstr ":mod:`!code` --- 解释器基类"
3030

3131
#: ../../library/code.rst:7
3232
msgid "**Source code:** :source:`Lib/code.py`"

library/gzip.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.13\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2024-05-11 18:37+0000\n"
18+
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:07+0000\n"
2020
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
2121
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -263,7 +263,7 @@ msgstr ""
263263

264264
#: ../../library/gzip.rst:138
265265
msgid "``'rb'`` for reading and ``'wb'`` for writing."
266-
msgstr ""
266+
msgstr "``'rb'`` 表示可读而 ``'wb'`` 表示可写。"
267267

268268
#: ../../library/gzip.rst:140
269269
msgid "In previous versions it was an integer ``1`` or ``2``."

library/lzma.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
# nick <2330458484@qq.com>, 2021
1010
# ppcfish <ppcfish@gmail.com>, 2021
1111
# 1lin24 <1lin24@sina.com>, 2021
12-
# Freesand Leo <yuqinju@163.com>, 2023
12+
# Freesand Leo <yuqinju@163.com>, 2024
1313
#
1414
#, fuzzy
1515
msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-05-10 22:05-0300\n"
19+
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:09+0000\n"
21-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2023\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"
@@ -211,7 +211,7 @@ msgstr ""
211211

212212
#: ../../library/lzma.rst:122
213213
msgid "``'rb'`` for reading and ``'wb'`` for writing."
214-
msgstr ""
214+
msgstr "``'rb'`` 表示可读而 ``'wb'`` 表示可写。"
215215

216216
#: ../../library/lzma.rst:128
217217
msgid ""

0 commit comments

Comments
 (0)