8000 Modify the three translations edited last time · python/python-docs-zh-tw@86c85fb · GitHub
[go: up one dir, main page]

Skip to content

Commit 86c85fb

Browse files
committed
Modify the three translations edited last time
1 parent c4ba590 commit 86c85fb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tutorial/datastructures.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgstr ""
1414
"Project-Id-Version: Python 3.6 TW\n"
1515
"Report-Msgid-Bugs-To: \n"
1616
"POT-Creation-Date: 2018-05-23 22:00+0800\n"
17-
"PO-Revision-Date: 2018-06-03 07:57+0000\n"
17+
"PO-Revision-Date: 2018-06-05 04:37+0000\n"
1818
"Last-Translator: Ching-Hao Liu <chinghao.liu@gmail.com>\n"
1919
"Language-Team: Chinese Traditional (http://www.transifex.com/python-tw-doc/python-36-tw/language/zh-Hant/)\n"
2020
"MIME-Version: 1.0\n"
@@ -46,13 +46,13 @@ msgstr "List(串列)這個資料型態,具有更多操作的方法。下
4646
#: ../../tutorial/datastructures.rst:22
4747
msgid ""
4848
"Add an item to the end of the list. Equivalent to ``a[len(a):] = [x]``."
49-
msgstr "將一個新的項目加到 list 的尾端。等同於 ``a[len(a):] = [x]`` 。"
49+
msgstr "將一個新的項目加到 list 的尾端。等同於 ``a[len(a):] = [x]``。"
5050

5151
#: ../../tutorial/datastructures.rst:28
5252
msgid ""
5353
"Extend the list by appending all the items from the iterable. Equivalent to"
5454
" ``a[len(a):] = iterable``."
55-
msgstr "將串列接上此 iterable(可列舉物件)中所有項目。等同於 ``a[len(a):] = iterable``。"
55+
msgstr " iterable(可列舉物件)接到 list 的尾端。等同於 ``a[len(a):] = iterable``。"
5656

5757
#: ../../tutorial/datastructures.rst:35
5858
msgid ""
@@ -85,15 +85,15 @@ msgstr "刪除 list 中所有項目。這等同於 ``del a[:]`` 。"
8585
msgid ""
8686
"Return zero-based index in the list of the first item whose value is *x*. "
8787
"Raises a :exc:`ValueError` if there is no such item."
88-
msgstr "回傳 list 中第一個其值為 *x* 的項目的索引值(從零開始)。如果沒有這樣一個項目,就丟出 :exc:`ValueError`。"
88+
msgstr "回傳 list 中第一個是 *x* 的項目之從零開始的索引值。若 list 中無此項目,就丟出 :exc:`ValueError`。"
8989

9090
#: ../../tutorial/datastructures.rst:69
9191
msgid ""
9292
"The optional arguments *start* and *end* are interpreted as in the slice "
9393
"notation and are used to limit the search to a particular subsequence of the"
9494
" list. The returned index is computed relative to the beginning of the full"
9595
" sequence rather than the *start* argument."
96-
msgstr "可選的引數 *start* 和 *end* 的直譯都跟在切片 (slice) 表示法中一樣,在此用於限定搜尋範圍在 list 中一個特定子序列。回傳的索引值,對應完整序列的開頭,而非對應 *start* 引數(子序列的開頭)。"
96+
msgstr "引數 *start* 和 *end* 的定義跟在 slice 表示法中相同,搜尋的動作被這兩個引數限定在 list 中特定的子序列。但要注意的是,回傳的索引值是從 list 的開頭開始算,而不是從 *start* 開始算。"
9797

9898
#: ../../tutorial/datastructures.rst:78
9999
msgid "Return the number of times *x* appears in the list."

0 commit comments

Comments
 (0)
0