Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit cfa49ce

Browse filesBrowse files
mattwang44josix
andcommitted
Apply suggestions from code review
Co-authored-by: Josix <wilson8507@gmail.com>
1 parent 7c43d80 commit cfa49ce
Copy full SHA for cfa49ce

File tree

Expand file treeCollapse file tree

1 file changed

+14
-14
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+14
-14
lines changed

‎library/collections.po

Copy file name to clipboardExpand all lines: library/collections.po
+14-14Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.10\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2021-10-28 17:11+0000\n"
14-
"PO-Revision-Date: 2021-11-16 06:08+0800\n"
14+
"PO-Revision-Date: 2022-01-05 12:35+0800\n"
1515
"Last-Translator: Matt Wang <mattwang44@gmail.com>\n"
1616
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
1717
"tw)\n"
@@ -46,7 +46,7 @@ msgstr ":func:`namedtuple`"
4646

4747
#: ../../library/collections.rst:25
4848
msgid "factory function for creating tuple subclasses with named fields"
49-
msgstr "用來建立具名欄位的 tuple 子類別的產生函式"
49+
msgstr "用來建立具名欄位的 tuple 子類別的工廠函式"
5050

5151
#: ../../library/collections.rst:26
5252
msgid ":class:`deque`"
@@ -63,7 +63,7 @@ msgstr ":class:`ChainMap`"
6363

6464
#: ../../library/collections.rst:27
6565
msgid "dict-like class for creating a single view of multiple mappings"
66-
msgstr "一個類似 dict 的類別,用來為多個映射 (mapping) 建立單一的視野 (view)"
66+
msgstr "一個類似 dict 的類別,用來為多個映射 (mapping) 建立單一的視圖 (view)"
6767

6868
#: ../../library/collections.rst:28
6969
msgid ":class:`Counter`"
@@ -87,31 +87,31 @@ msgstr ":class:`defaultdict`"
8787

8888
#: ../../library/collections.rst:30
8989
msgid "dict subclass that calls a factory function to supply missing values"
90-
msgstr "dict 的子類別,當值不存在 dict 中時會呼叫一個提供預設值的產生函式"
90+
msgstr "dict 的子類別,當值不存在 dict 中時會呼叫一個提供預設值的工廠函式"
9191

9292
#: ../../library/collections.rst:31
9393
msgid ":class:`UserDict`"
9494
msgstr ":class:`UserDict`"
9595

9696
#: ../../library/collections.rst:31
9797
msgid "wrapper around dictionary objects for easier dict subclassing"
98-
msgstr "dict 物件的包裝器 (wrapper),簡化了 dict 的子類別過程"
98+
msgstr "dict 物件的包裝器 (wrapper),簡化了 dict 的子類別化過程"
9999

100100
#: ../../library/collections.rst:32
101101
msgid ":class:`UserList`"
102102
msgstr ":class:`UserList`"
103103

104104
#: ../../library/collections.rst:32
105105
msgid "wrapper around list objects for easier list subclassing"
106-
msgstr "list 物件的包裝器,簡化了 list 的子類別過程"
106+
msgstr "list 物件的包裝器,簡化了 list 的子類別化過程"
107107

108108
#: ../../library/collections.rst:33
109109
msgid ":class:`UserString`"
110110
msgstr ":class:`UserString`"
111111

112112
#: ../../library/collections.rst:33
113113
msgid "wrapper around string objects for easier string subclassing"
114-
msgstr "字串物件的包裝器,簡化了字串的子類別過程"
114+
msgstr "字串物件的包裝器,簡化了字串的子類別化過程"
115115

116116
#: ../../library/collections.rst:38
117117
msgid ":class:`ChainMap` objects"
@@ -143,7 +143,7 @@ msgid ""
143143
"mapping."
144144
msgstr ""
145145
"一個 :class:`ChainMap` 將多個 dict 或其他映射組合在一起,建立一個獨立、可更新"
146-
"的視野。如果沒有指定 *maps*,預設會提供一個空字典讓每個新鏈結都至少有一個映"
146+
"的視圖。如果沒有指定 *maps*,預設會提供一個空字典讓每個新鏈結都至少有一個映"
147147
"射。"
148148

149149
#: ../../library/collections.rst:54
@@ -169,7 +169,7 @@ msgid ""
169169
"if one of the underlying mappings gets updated, those changes will be "
170170
"reflected in :class:`ChainMap`."
171171
msgstr ""
172-
":class:`ChainMap` 透過指標將底層映射合併,所以當一個底層映射被更新,這些改變"
172+
":class:`ChainMap` 透過參照將底層映射合併,所以當一個底層映射被更新,這些改變"
173173
"也會反映到 :class:`ChainMap`。"
174174

175175
#: ../../library/collections.rst:64
@@ -395,7 +395,7 @@ msgid ""
395395
"encountered in the left operand and then by the order encountered in the "
396396
"right operand."
397397
msgstr ""
398-
"作為 :class:`dict` 的子類別,\\ :class:`Counter` 繼承了記憶插入位置的功能。"
398+
"作為 :class:`dict` 的子類別,\\ :class:`Counter` 繼承了記憶插入順序的功能。"
399399
"對 *Counter* 做數學運算後同樣保留順序性,其結果是依照各個元素在運算元左邊出現"
400400
"的時間先後、再按照運算元右邊出現的時間先後來排列。"
401401

@@ -411,9 +411,9 @@ msgid ""
411411
"Elements are returned in the order first encountered. If an element's count "
412412
"is less than one, :meth:`elements` will ignore it."
413413
msgstr ""
414-
"回傳每個元素都重複出現計算次數的 iterator 物件,其中元素的回傳順序是依照各元"
415-
"素首次出現的時間先後。如果元素的出現次數小於 1,\\ :meth:`elements` 方法會忽"
416-
"略這些元素。"
414+
"回傳每個元素都重複出現計算次數的 iterator(疊代器)物件,其中元素的回傳順序是"
415+
"依照各元素首次出現的時間先後。如果元素的出現次數小於 1,\\ :meth:`elements` "
416+
"方法會忽略這些元素。"
417417

418418
#: ../../library/collections.rst:294
419419
msgid ""
@@ -1040,7 +1040,7 @@ msgstr ""
10401040

10411041
#: ../../library/collections.rst:832
10421042
msgid ":func:`namedtuple` Factory Function for Tuples with Named Fields"
1043-
msgstr ":func:`namedtuple` 擁有具名欄位之 tuple 的產生函式"
1043+
msgstr ":func:`namedtuple` 擁有具名欄位之 tuple 的工廠函式"
10441044

10451045
#: ../../library/collections.rst:834
10461046
msgid ""

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.