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

Skip to content

Commit 268aa33

Browse files
[po] auto sync
1 parent 51f67d1 commit 268aa33

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

glossary.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Fred <[email protected]>, 2020
88
# Shengjing Zhu <[email protected]>, 2020
99
# df2dc1c92e792f7ae8417c51df43db8f_594d92a <0f49be28017426edb1db1a2ab6e67088_717605>, 2020
10-
# Freesand Leo <[email protected]>, 2020
10+
# Freesand Leo <[email protected]>, 2022
1111
#
1212
#, fuzzy
1313
msgid ""
@@ -16,7 +16,7 @@ msgstr ""
1616
"Report-Msgid-Bugs-To: \n"
1717
"POT-Creation-Date: 2021-01-01 16:06+0000\n"
1818
"PO-Revision-Date: 2020-05-30 11:46+0000\n"
19-
"Last-Translator: Freesand Leo <[email protected]>, 2020\n"
19+
"Last-Translator: Freesand Leo <[email protected]>, 2022\n"
2020
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2121
"MIME-Version: 1.0\n"
2222
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1071,7 +1071,7 @@ msgstr "Python 的 IDE,“集成开发与学习环境”的英文缩写。是
10711071

10721072
#: ../../glossary.rst:537
10731073
msgid "immutable"
1074-
msgstr "immutable -- 不可变"
1074+
msgstr "immutable -- 不可变对象"
10751075

10761076
#: ../../glossary.rst:539
10771077
msgid ""
@@ -1511,7 +1511,7 @@ msgstr "参见 :term:`method resolution order`。"
15111511

15121512
#: ../../glossary.rst:746
15131513
msgid "mutable"
1514-
msgstr "mutable -- 可变"
1514+
msgstr "mutable -- 可变对象"
15151515

15161516
#: ../../glossary.rst:748
15171517
msgid ""

reference/datamodel.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# ppcfish <[email protected]>, 2020
1515
# WH-2099 <[email protected]>, 2020
1616
# Woko <[email protected]>, 2020
17-
# Freesand Leo <[email protected]>, 2021
1817
# Jing Li <[email protected]>, 2021
18+
# Freesand Leo <[email protected]>, 2022
1919
#
2020
#, fuzzy
2121
msgid ""
@@ -24,7 +24,7 @@ msgstr ""
2424
"Report-Msgid-Bugs-To: \n"
2525
"POT-Creation-Date: 2021-05-03 17:16+0000\n"
2626
"PO-Revision-Date: 2020-05-30 12:15+0000\n"
27-
"Last-Translator: Jing Li <tes286.lijing@gmail.com>, 2021\n"
27+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2022\n"
2828
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2929
"MIME-Version: 1.0\n"
3030
"Content-Type: text/plain; charset=UTF-8\n"
@@ -58,8 +58,8 @@ msgid ""
5858
"two objects; the :func:`id` function returns an integer representing its "
5959
"identity."
6060
msgstr ""
61-
"每个对象都有各自的编号、类型和值。一个对象被创建后,它的 *编号* 就绝不会改变;你可以将其理解为该对象在内存中的地址。 ':keyword:`is`'"
62-
" 运算符可以比较两个对象的编号是否相同;:func:`id` 函数能返回一个代表其编号的整型数。"
61+
"每个对象都有各自的标识号、类型和值。一个对象被创建后,它的 *标识号* 就绝不会改变;你可以将其理解为该对象在内存中的地址。 "
62+
"':keyword:`is`' 运算符可以比较两个对象的标识号是否相同;:func:`id` 函数能返回一个代表其标识号的整数。"
6363

6464
#: ../../reference/datamodel.rst:42
6565
msgid "For CPython, ``id(x)`` is the memory address where ``x`` is stored."
@@ -89,8 +89,8 @@ msgid ""
8989
"instance, numbers, strings and tuples are immutable, while dictionaries and "
9090
"lists are mutable."
9191
msgstr ""
92-
"有些对象的 *值* 可以改变。值可以改变的对象被称为 *可变的*;值不可以改变的对象就被称为 "
93-
"*不可变的*。(一个不可变容器对象如果包含对可变对象的引用,当后者的值改变时,前者的值也会改变;但是该容器仍属于不可变对象,因为它所包含的对象集是不会改变的。因此,不可变并不严格等同于值不能改变,实际含义要更微妙。)"
92+
"有些对象的 *值* 可以改变。值可以改变的对象被称为 *可变对象*;值不可以改变的对象就被称为 "
93+
"*不可变对象*。(一个不可变容器对象如果包含对可变对象的引用,当后者的值改变时,前者的值也会改变;但是该容器仍属于不可变对象,因为它所包含的对象集是不会改变的。因此,不可变并不严格等同于值不能改变,实际含义要更微妙。)"
9494
" 一个对象的可变性是由其类型决定的;例如,数字、字符串和元组是不可变的,而字典和列表是可变的。"
9595

9696
#: ../../reference/datamodel.rst:65

0 commit comments

Comments
 (0)