Skip to content

Commit e685c99

Browse files
[po] auto sync
1 parent 39159ef commit e685c99

File tree

7 files changed

+287
-51
lines changed

7 files changed

+287
-51
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "93.47%", "updated_at": "2024-05-31T16:30:53Z"}
1+
{"translation": "93.70%", "updated_at": "2024-06-07T20:27:19Z"}

howto/descriptor.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
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:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-07-29 03:05+0000\n"
14+
"POT-Creation-Date: 2024-06-07 15:58+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
@@ -82,7 +82,7 @@ msgid ""
8282
":func:`classmethod`, :func:`staticmethod`, :func:`property`, and "
8383
":term:`__slots__`."
8484
msgstr ""
85-
"最后一部分有对内置描述器(用 C 编写)的纯 Python 等价实现。如果您想了解函数如何变成绑定方法或对 :func:`classmethod`, "
85+
"最后一部分有对用 C 编写的内置描述器的纯 Python 等价实现。如果您想了解函数如何变成绑定方法或对 :func:`classmethod`, "
8686
":func:`staticmethod`,:func:`property` 和 :term:`__slots__` "
8787
"这类常见工具的实现感兴趣,请阅读此部分。"
8888

@@ -521,7 +521,7 @@ msgstr "描述器调用概述"
521521
msgid ""
522522
"A descriptor can be called directly with ``desc.__get__(obj)`` or "
523523
"``desc.__get__(None, cls)``."
524-
msgstr "描述器可以通过 ``d.__get__(obj)`` 或 ``desc.__get__(None, cls)`` 直接调用。"
524+
msgstr "描述器可以通过 ``desc.__get__(obj)`` 或 ``desc.__get__(None, cls)`` 直接调用。"
525525

526526
#: ../../howto/descriptor.rst:557
527527
msgid ""

howto/sorting.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-05-11 20:02+0000\n"
14+
"POT-Creation-Date: 2024-06-07 15:58+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -214,7 +214,7 @@ msgstr "首先,用控制排序顺序的新值装饰初始列表。"
214214

215215
#: ../../howto/sorting.rst:196
216216
msgid "Second, the decorated list is sorted."
217-
msgstr "其次,对经过装饰的列表排序。"
217+
msgstr "其次,排序装饰后的列表。"
218218

219219
#: ../../howto/sorting.rst:198
220220
msgid ""

library/copy.po

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-01-12 19:15+0000\n"
14+
"POT-Creation-Date: 2024-06-07 15:58+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -46,11 +46,11 @@ msgstr "接口摘要:"
4646

4747
#: ../../library/copy.rst:22
4848
msgid "Return a shallow copy of *x*."
49-
msgstr "返回 *x* 的浅层复制。"
49+
msgstr "返回 *x* 的浅复制。"
5050

5151
#: ../../library/copy.rst:27
5252
msgid "Return a deep copy of *x*."
53-
msgstr "返回 *x* 的深层复制。"
53+
msgstr "返回 *x* 的深复制。"
5454

5555
#: ../../library/copy.rst:32
5656
msgid "Raised for module specific errors."
@@ -151,10 +151,10 @@ msgid ""
151151
"dictionary as second argument. The memo dictionary should be treated as an "
152152
"opaque object."
153153
msgstr ""
154-
"想要为一个类定义它自己的拷贝操作实现,可以通过定义特殊方法 :meth:`__copy__` 和 :meth:`__deepcopy__`。 "
155-
"调用前者以实现浅层拷贝操作;该方法不必传入额外参数。 调用后者以实现深层拷贝操作;它应转入一个参数,即 ``memo`` 字典。 如果 "
156-
":meth:`__deepcopy__` 实现需要创建一个组件的深层拷贝,它应当调用 :func:`deepcopy` "
157-
"函数并以该组件作为第一个参数而以该 memo 字典作为第二个参数。。 memo 字典应当被当作不透明对象来处理。"
154+
"为了让一个类定义其自己的复制实现,它可以定义特殊方法 :meth:`__copy__` 和 :meth:`__deepcopy__`。 "
155+
"前者用于实现浅复制操作,后者用于实现深复制操作,它接受一个参数,即 ``memo`` 字典。 如果 :meth:`__deepcopy__` "
156+
"实现需要对某个组件进行深复制,它应该调用 :func:`deepcopy` 函数,组件作为第一个参数,memo 字典作为第二个参数。 memo "
157+
"字典应被视为不透明对象。"
158158

159159
#: ../../library/copy.rst:95
160160
msgid "Module :mod:`pickle`"

library/functools.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-01-12 19:15+0000\n"
14+
"POT-Creation-Date: 2024-06-07 15:58+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:22+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -155,8 +155,7 @@ msgid ""
155155
"positive number for greater-than. A key function is a callable that accepts"
156156
" one argument and returns another value to be used as the sort key."
157157
msgstr ""
158-
"比较函数是任何接受两个参数,对它们进行比较,并在结果为小于时返回一个负数,相等时返回零,大于时返回一个正数的可调用对象。 "
159-
"键函数是接受一个参数并返回另一个用作排序键的值的可调用对象。"
158+
"比较函数是任何接受两个参数,比较它们,并在结果为小于时返回负数,等于时返回零,大于时返回正数的可调用对象。键函数是接受一个参数并返回另一值的可调用对象,返回值在排序时被用作键。"
160159

161160
#: ../../library/functools.rst:131
162161
msgid ""

0 commit comments

Comments
 (0)