3
3
# This file is distributed under the same license as the Python package.
4
4
#
5
5
# Translators:
6
+ # Liang-Bo Wang <me@liang2.tw>, 2016
7
+ # Matt Wang <mattwang44@gmail.com>, 2021
6
8
msgid ""
7
9
msgstr ""
8
10
"Project-Id-Version :Python 3.10\n "
9
11
"Report-Msgid-Bugs-To :\n "
10
12
"POT-Creation-Date :2018-06-26 18:54+0800\n "
11
- "PO-Revision-Date :2016-11-19 00:35+0000 \n "
12
- "Last-Translator :Liang-Bo Wang <me@liang2.tw >\n "
13
+ "PO-Revision-Date :2021-12-17 17:00+0800 \n "
14
+ "Last-Translator :Matt Wang <mattwang44@gmail.com >\n "
13
15
"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
14
16
"tw)\n "
15
17
"Language :zh_TW\n "
16
18
"MIME-Version :1.0\n "
17
19
"Content-Type :text/plain; charset=UTF-8\n "
18
20
"Content-Transfer-Encoding :8bit\n "
19
21
"Plural-Forms :nplurals=1; plural=0;\n "
22
+ "X-Generator :Poedit 3.0.1\n "
20
23
21
24
#: ../../library/tty.rst:2
22
25
msgid ":mod:`tty` --- Terminal control functions"
23
- msgstr ""
26
+ msgstr ":mod:`tty` --- 終端機控制函式 "
24
27
25
28
#: ../../library/tty.rst:11
26
29
msgid "**Source code:** :source:`Lib/tty.py`"
@@ -30,35 +33,39 @@ msgstr "**原始碼:**\\ :source:`Lib/tty.py`"
30
33
msgid ""
31
34
"The :mod:`tty` module defines functions for putting the tty into cbreak and "
32
35
"raw modes."
33
- msgstr ""
36
+ msgstr ":mod:`tty` 模組定義了將 tty 放入 cbreak 和 raw 模式的函式。 "
34
37
35
38
#: ../../library/tty.rst:18
36
39
msgid ""
37
40
"Because it requires the :mod:`termios` module, it will work only on Unix."
38
- msgstr ""
41
+ msgstr "因為它需要 :mod:`termios` 模組,所以只能在 Unix 上執行。 "
39
42
40
43
#: ../../library/tty.rst:20
41
44
msgid "The :mod:`tty` module defines the following functions:"
42
- msgstr ""
45
+ msgstr ":mod:`tty` 模組定義了以下函式: "
43
46
44
47
#: ../../library/tty.rst:25
45
48
msgid ""
46
49
"Change the mode of the file descriptor *fd* to raw. If *when* is omitted, it "
47
50
"defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios."
48
51
"tcsetattr`."
49
52
msgstr ""
53
+ "將檔案描述器 *fd* 的模式更改為 raw。如果 *when* 被省略,則預設為 :const:"
54
+ "`termios.TCSAFLUSH`,並傳遞給 :func:`termios.tcsetattr`。"
50
55
51
56
#: ../../library/tty.rst:32
52
57
msgid ""
53
58
"Change the mode of file descriptor *fd* to cbreak. If *when* is omitted, it "
54
59
"defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios."
55
60
"tcsetattr`."
56
61
msgstr ""
62
+ "將檔案描述器 *fd* 的模式更改為 cbreak。如果 *when* 被省略,則預設為 :const:"
63
+ "`termios.TCSAFLUSH`,並傳遞給 :func:`termios.tcsetattr`。"
57
64
58
65
#: ../../library/tty.rst:39
59
66
msgid "Module :mod:`termios`"
60
67
msgstr ":mod:`termios` 模組"
61
68
62
69
#: ../../library/tty.rst:40
63
70
msgid "Low-level terminal control interface."
64
- msgstr ""
71
+ msgstr "低階終端機控制介面。 "