Skip to content

Commit b54c5b2

Browse files
authored
Update CSV Translation #188 (#553)
* Update CSV Translation * Update with Reviewer's comment
1 parent 3e38b1a commit b54c5b2

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

library/csv.po

+11-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgstr ""
2020

2121
#: ../../library/csv.rst:2
2222
msgid ":mod:`csv` --- CSV File Reading and Writing"
23-
msgstr ""
23+
msgstr ":mod:`csv` --- CSV 檔案讀取及寫入"
2424

2525
#: ../../library/csv.rst:9
2626
msgid "**Source code:** :source:`Lib/csv.py`"
@@ -39,6 +39,13 @@ msgid ""
3939
"single module which can efficiently manipulate such data, hiding the details "
4040
"of reading and writing the data from the programmer."
4141
msgstr ""
42+
"所謂的 CSV (Comma Separated Values) 檔案格式是試算表及資料庫中最常見的"
43+
"匯入、匯出檔案格式。在嘗試以 :rfc:`4180` 中的標準化方式來描述格式之前,"
44+
"CSV 格式已經使用了許多年。由於缺少一個完善定義的標準,意味著各個不同的"
45+
"應用程式會在資料產生及銷毀時有微妙的差別。這些不同之處使得從不同資料來源"
46+
"處理 CSV 檔案時會非常擾人。儘管如此,雖然分隔符號和引號字元有所不同,整體的"
47+
"格式非常相似,可以寫個單一模組來高效率的操作這樣的資料,讓程式設計師可以隱藏"
48+
"讀取及寫入資料的細節。"
4249

4350
#: ../../library/csv.rst:28
4451
msgid ""
@@ -56,6 +63,9 @@ msgid ""
5663
"write sequences. Programmers can also read and write data in dictionary "
5764
"form using the :class:`DictReader` and :class:`DictWriter` classes."
5865
msgstr ""
66+
":mod:`csv` 模組的 :class:`reader` 及 :class:`writer` 物件可以讀取"
67+
"及寫入序列。程式設計師也可以透過 :class:`DictReader` 及 :class:`DictWriter`"
68+
" class(類別)使用 dictionary (字典)讀取及寫入資料。"
5969

6070
#: ../../library/csv.rst:41
6171
msgid ":pep:`305` - CSV File API"

0 commit comments

Comments
 (0)