4
4
#
5
5
# Translators:
6
6
# Adrian Liaw <adrianliaw2000@gmail.com>, 2016
7
+ # Ching-Hao Liu <chinghao.liu@gmail.com>, 2018
7
8
# KentHsu <luffy1610@gmail.com>, 2016
8
9
# Liang-Bo Wang <me@liang2.tw>, 2015-2016
9
10
# Liang-Bo Wang <me@liang2.tw>, 2016
@@ -13,8 +14,8 @@ msgstr ""
13
14
"Project-Id-Version : Python 3.6 TW\n "
14
15
"Report-Msgid-Bugs-To : \n "
15
16
"POT-Creation-Date : 2018-05-23 22:00+0800\n "
16
- "PO-Revision-Date : 2018-05-23 16:18 +0000\n "
17
- "Last-Translator : Adrian Liaw <adrianliaw2000 @gmail.com>\n "
17
+ "PO-Revision-Date : 2018-06-03 07:57 +0000\n "
18
+ "Last-Translator : Ching-Hao Liu <chinghao.liu @gmail.com>\n "
18
19
"Language-Team : Chinese Traditional (http://www.transifex.com/python-tw-doc/python-36-tw/language/zh-Hant/)\n "
19
20
"MIME-Version : 1.0\n "
20
21
"Content-Type : text/plain; charset=UTF-8\n "
@@ -51,7 +52,7 @@ msgstr "將一個新的項目加到 list 的尾端。等同於 ``a[len(a):] = [x
51
52
msgid ""
52
53
"Extend the list by appending all the items from the iterable. Equivalent to"
53
54
" ``a[len(a):] = iterable``."
54
- msgstr ""
55
+ msgstr "將串列接上此 iterable(可列舉物件)中所有項目。等同於 ``a[len(a):] = iterable`` 。 "
55
56
56
57
#: ../../tutorial/datastructures.rst:35
57
58
msgid ""
@@ -84,15 +85,15 @@ msgstr "刪除 list 中所有項目。這等同於 ``del a[:]`` 。"
84
85
msgid ""
85
86
"Return zero-based index in the list of the first item whose value is *x*. "
86
87
"Raises a :exc:`ValueError` if there is no such item."
87
- msgstr ""
88
+ msgstr "回傳 list 中第一個其值為 *x* 的項目的索引值(從零開始)。如果沒有這樣一個項目,就丟出 :exc:`ValueError`。 "
88
89
89
90
#: ../../tutorial/datastructures.rst:69
90
91
msgid ""
91
92
"The optional arguments *start* and *end* are interpreted as in the slice "
92
93
"notation and are used to limit the search to a particular subsequence of the"
93
94
" list. The returned index is computed relative to the beginning of the full"
94
95
" sequence rather than the *start* argument."
95
- msgstr ""
96
+ msgstr "可選的引數 *start* 和 *end* 的直譯都跟在切片 (slice) 表示法中一樣,在此用於限定搜尋範圍在 list 中一個特定子序列。回傳的索引值,對應完整序列的開頭,而非對應 *start* 引數(子序列的開頭)。 "
96
97
97
98
#: ../../tutorial/datastructures.rst:78
98
99
msgid "Return the number of times *x* appears in the list."
0 commit comments