Skip to content

Commit db4737a

Browse files
[po] auto sync
1 parent 91f6278 commit db4737a

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

.stat.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "93.46%", "updated_at": "2024-07-29T09:20:59Z"}
1+
{"translation": "93.46%", "updated_at": "2024-08-04T03:20:28Z"}

library/dis.po

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.9\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2024-07-29 06:10+0000\n"
17+
"POT-Creation-Date: 2024-08-03 21:31+0000\n"
1818
"PO-Revision-Date: 2017-02-16 23:06+0000\n"
1919
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
2020
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -115,7 +115,7 @@ msgid ""
115115
"the disassembled code. Setting this means :meth:`.dis` will display a "
116116
"\"current instruction\" marker against the specified opcode."
117117
msgstr ""
118-
"如果 *current_offset* 不是 ``None`` ,则它指的是反汇编代码中的指令偏移量。设置它意味着 :meth:`.dis` "
118+
"如果 *current_offset* 不是 ``None`` ,它指的就是汇编代码中的指令偏移量。设置它意味着 :meth:`.dis` "
119119
"将针对指定的操作码显示“当前指令”标记。"
120120

121121
#: ../../library/dis.rst:75
@@ -372,7 +372,7 @@ msgstr "人类可读的操作参数描述"
372372

373373
#: ../../library/dis.rst:306
374374
msgid "start index of operation within bytecode sequence"
375-
msgstr "在字节码序列中启动操作索引"
375+
msgstr "在字节码序列中的起始操作索引"
376376

377377
#: ../../library/dis.rst:311
378378
msgid "line started by this opcode (if any), otherwise ``None``"

reference/datamodel.po

+5-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ msgid ""
2222
msgstr ""
2323
"Project-Id-Version: Python 3.9\n"
2424
"Report-Msgid-Bugs-To: \n"
25-
"POT-Creation-Date: 2024-01-12 22:01+0000\n"
25+
"POT-Creation-Date: 2024-08-03 21:31+0000\n"
2626
"PO-Revision-Date: 2017-02-16 23:38+0000\n"
2727
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
2828
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -173,11 +173,10 @@ msgid ""
173173
"different, unique, newly created empty lists. (Note that ``c = d = []`` "
174174
"assigns the same object to both ``c`` and ``d``.)"
175175
msgstr ""
176-
"类型会影响对象行为的几乎所有方面。甚至对象编号的重要性也在某种程度上受到影响: "
177-
"对于不可变类型,会得出新值的运算实际上会返回对相同类型和取值的任一现有对象的引用,而对于可变类型来说这是不允许的。例如在 ``a = 1; b = "
178-
"1`` 之后,``a`` 和 ``b`` 可能会也可能不会指向同一个值为一的对象,这取决于具体实现,但是在 ``c = []; d = []`` "
179-
"之后,``c`` 和 ``d`` 保证会指向两个不同、单独的新建空列表。(请注意 ``c = d = []`` 则是将同一个对象赋值给 ``c`` 和 "
180-
"``d``。)"
176+
"类型会影响对象行为的几乎所有方面。甚至对象标识号的重要性也在某种程度上受到影响:对于不可变类型,会得出新值的运算实际上可能返回类型和值相同的现有对象的引用,而对于可变类型来说这是不允许的。例如在"
177+
" ``a = 1; b = 1`` 之后,``a`` 和 ``b`` 可能会指向同一个值为一的对象,也可能不会,这取决于具体实现,但是在 ``c = "
178+
"[]; d = []`` 之后,``c`` 和 ``d`` 保证会指向两个不同、单独的新建空列表。(请注意 ``c = d = []`` "
179+
"则是将同一个对象赋值给 ``c`` 和 ``d``。)"
181180

182181
#: ../../reference/datamodel.rst:120
183182
msgid "The standard type hierarchy"

whatsnew/2.3.po

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
# Fei Yin <icebirds@163.com>, 2018
88
# ppcfish <ppcfish@gmail.com>, 2019
99
# Naisen Xu <723648649@qq.com>, 2020
10-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
1110
# Freesand Leo <yuqinju@163.com>, 2024
11+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
1212
#
1313
#, fuzzy
1414
msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.9\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2024-07-20 02:59+0000\n"
18+
"POT-Creation-Date: 2024-08-03 21:31+0000\n"
1919
"PO-Revision-Date: 2017-02-16 23:42+0000\n"
20-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
20+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
2121
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2222
"MIME-Version: 1.0\n"
2323
"Content-Type: text/plain; charset=UTF-8\n"
@@ -714,7 +714,7 @@ msgstr "PEP 301: Distutils的软件包索引和元数据"
714714
msgid ""
715715
"Support for the long-requested Python catalog makes its first appearance in "
716716
"2.3."
717-
msgstr "广受期待的对 Python 类目的支持在 2.3 版中首次出现。"
717+
msgstr "广受期待的对 Python 编目的支持在 2.3 版中首次出现。"
718718

719719
#: ../../whatsnew/2.3.rst:658
720720
msgid ""

0 commit comments

Comments
 (0)