4
4
#
5
5
# Translators:
6
6
# Leon H., 2017
7
+ # Allen Wu <allen91.wu@gmail.com>, 2021
7
8
msgid ""
8
9
msgstr ""
9
10
"Project-Id-Version :Python 3.10\n "
10
11
"Report-Msgid-Bugs-To :\n "
11
12
"POT-Creation-Date :2020-06-20 18:08+0800\n "
12
- "PO-Revision-Date :2017-09 -2218:26+0000 \n "
13
- "Last-Translator :Leon H. \n "
13
+ "PO-Revision-Date :2021-11 -2220:13+0800 \n "
14
+ "Last-Translator :Allen Wu <allen91.wu@gmail.com> \n "
14
15
"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
15
16
"tw)\n "
16
17
"Language :zh_TW\n "
17
18
"MIME-Version :1.0\n "
18
19
"Content-Type :text/plain; charset=UTF-8\n "
19
20
"Content-Transfer-Encoding :8bit\n "
20
21
"Plural-Forms :nplurals=1; plural=0;\n "
22
+ "X-Generator :Poedit 3.0\n "
21
23
22
24
#: ../../library/filesys.rst:5
23
25
msgid "File and Directory Access"
@@ -30,31 +32,34 @@ msgid ""
30
32
"manipulating paths in a portable way, and creating temporary files. The "
31
33
"full list of modules in this chapter is:"
32
34
msgstr ""
35
+ "本章中描述的 module(模組)用於處理硬碟檔案和目錄。例如,有一些 module 用於讀取檔案的屬性、以可攜"
36
+ " (portable) 方式操作路徑以及建立暫存檔。本章中的完整 module 清單是:"
33
37
34
38
#: ../../library/filesys.rst:31
35
39
msgid "Module :mod:`os`"
36
- msgstr ""
40
+ msgstr "Module :mod:`os` "
37
41
38
42
#: ../../library/filesys.rst:30
39
43
msgid ""
40
44
"Operating system interfaces, including functions to work with files at a "
41
45
"lower level than Python :term:`file objects <file object>`."
42
46
msgstr ""
47
+ "作業系統介面,包括處理比 Python :term:`檔案物件 <file object>`\\ 更低階檔案的函式。"
43
48
44
49
#: ../../library/filesys.rst:35
45
50
msgid "Module :mod:`io`"
46
- msgstr ""
51
+ msgstr "Module :mod:`io` "
47
52
48
53
#: ../../library/filesys.rst:34
49
54
msgid ""
50
55
"Python's built-in I/O library, including both abstract classes and some "
51
56
"concrete classes such as file I/O."
52
- msgstr ""
57
+ msgstr "Python 的內建 I/O 函式庫,包含抽象類別和一些具體類別 (concrete class),如檔案 I/O。 "
53
58
54
59
#: ../../library/filesys.rst:37
55
60
msgid "Built-in function :func:`open`"
56
- msgstr ""
61
+ msgstr "內建函式 :func:`open` "
57
62
58
63
#: ../../library/filesys.rst:38
59
64
msgid "The standard way to open files for reading and writing with Python."
60
- msgstr ""
65
+ msgstr "使用 Python 打開檔案以進行讀寫檔案的標準方法。 "