1
- # SOME DESCRIPTIVE TITLE.
2
1
# Copyright (C) 2001-2022, Python Software Foundation
3
2
# This file is distributed under the same license as the Python package.
4
3
#
5
4
# Translators:
5
+ # Liang-Bo Wang <me@liang2.tw>, 2015
6
+ # Matt Wang <mattwang44@gmail.com>, 2022
6
7
msgid ""
7
8
msgstr ""
8
9
"Project-Id-Version : Python 3.10\n "
9
10
"Report-Msgid-Bugs-To : \n "
10
11
"POT-Creation-Date : 2021-10-26 16:47+0000\n "
11
- "PO-Revision-Date : 2015-12-09 17:51+0000 \n "
12
- "Last-Translator : Liang-Bo Wang <me@liang2.tw >\n "
12
+ "PO-Revision-Date : 2022-01-24 22:34+0800 \n "
13
+ "Last-Translator : Matt Wang <mattwang44@gmail.com >\n "
13
14
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
14
15
"tw)\n "
15
16
"Language : zh_TW\n "
16
17
"MIME-Version : 1.0\n "
17
18
"Content-Type : text/plain; charset=UTF-8\n "
18
19
"Content-Transfer-Encoding : 8bit\n "
19
20
"Plural-Forms : nplurals=1; plural=0;\n "
21
+ "X-Generator : Poedit 3.0.1\n "
20
22
21
23
#: ../../c-api/apiabiversion.rst:7
22
24
msgid "API and ABI Versioning"
23
- msgstr ""
25
+ msgstr "API 和 ABI 版本管理 "
24
26
25
27
#: ../../c-api/apiabiversion.rst:9
26
28
msgid ""
27
29
"CPython exposes its version number in the following macros. Note that these "
28
30
"correspond to the version code is **built** with, not necessarily the "
29
31
"version used at **run time**."
30
32
msgstr ""
33
+ "CPython 透過以下巨集 (macro) 公開其版本號。請注意,對應到的是\\ **建置 "
34
+ "(built)** 所用到的版本,並不一定是\\ **運行時期 (run time)** 所使用的版本。"
31
35
32
36
#: ../../c-api/apiabiversion.rst:13
33
37
msgid ""
34
38
"See :ref:`stable` for a discussion of API and ABI stability across versions."
35
- msgstr ""
39
+ msgstr "關於跨版本 API 和 ABI 穩定性的討論,請見 :ref:`stable` \\ 。 "
36
40
37
41
#: ../../c-api/apiabiversion.rst:17
38
42
msgid "The ``3`` in ``3.4.1a2``."
39
- msgstr ""
43
+ msgstr "在 ``3.4.1a2`` 中的 ``3`` \\ 。 "
40
44
41
45
#: ../../c-api/apiabiversion.rst:21
42
46
msgid "The ``4`` in ``3.4.1a2``."
43
- msgstr ""
47
+ msgstr "在 ``3.4.1a2`` 中的 ``4`` \\ 。 "
44
48
45
49
#: ../../c-api/apiabiversion.rst:25
46
50
msgid "The ``1`` in ``3.4.1a2``."
47
- msgstr ""
51
+ msgstr "在 ``3.4.1a2`` 中的 ``1`` \\ 。 "
48
52
49
53
#: ../../c-api/apiabiversion.rst:29
50
54
msgid ""
51
55
"The ``a`` in ``3.4.1a2``. This can be ``0xA`` for alpha, ``0xB`` for beta, "
52
56
"``0xC`` for release candidate or ``0xF`` for final."
53
57
msgstr ""
58
+ "在 ``3.4.1a2`` 中的 ``a``\\ 。\\ ``0xA`` 代表 alpha 版本、\\ ``0xB`` 代表 "
59
+ "beta 版本、\\ ``0xC`` 為發布候選版本、\\ ``0xF`` 則為最終版。"
54
60
55
61
#: ../../c-api/apiabiversion.rst:35
56
62
msgid "The ``2`` in ``3.4.1a2``. Zero for final releases."
57
- msgstr ""
63
+ msgstr "在 ``3.4.1a2`` 中的 ``2`` \\ 。零則為最終發布版本。 "
58
64
59
65
#: ../../c-api/apiabiversion.rst:39
60
66
msgid "The Python version number encoded in a single integer."
61
- msgstr ""
67
+ msgstr "被編碼為單一整數的 Python 版本號。 "
62
68
63
69
#: ../../c-api/apiabiversion.rst:41
64
70
msgid ""
65
71
"The underlying version information can be found by treating it as a 32 bit "
66
72
"number in the following manner:"
67
- msgstr ""
73
+ msgstr "所代表的版本資訊可以用以下規則將其看做是一個 32 位元數字來獲得: "
68
74
69
75
#: ../../c-api/apiabiversion.rst:45
70
76
msgid "Bytes"
71
- msgstr ""
77
+ msgstr "位元組串 "
72
78
73
79
#: ../../c-api/apiabiversion.rst:45
74
80
msgid "Bits (big endian order)"
75
- msgstr ""
81
+ msgstr "位元(大端位元組序 (big endian order)) "
76
82
77
83
#: ../../c-api/apiabiversion.rst:45
78
84
msgid "Meaning"
79
- msgstr ""
85
+ msgstr "意義 "
80
86
81
87
#: ../../c-api/apiabiversion.rst:45
82
88
msgid "Value for ``3.4.1a2``"
83
- msgstr ""
89
+ msgstr "``3.4.1a2`` 中的值 "
84
90
85
91
#: ../../c-api/apiabiversion.rst:47
86
92
msgid "1"
@@ -163,7 +169,9 @@ msgid ""
163
169
"Thus ``3.4.1a2`` is hexversion ``0x030401a2`` and ``3.10.0`` is hexversion "
164
170
"``0x030a00f0``."
165
171
msgstr ""
172
+ "因此 ``3.4.1a2`` 代表 hexversion ``0x030401a2``\\ 、\\ ``3.10.0`` 代表 "
173
+ "hexversion ``0x030a00f0``\\ 。"
166
174
167
175
#: ../../c-api/apiabiversion.rst:62
168
176
msgid "All the given macros are defined in :source:`Include/patchlevel.h`."
169
- msgstr ""
177
+ msgstr "所有提到的巨集都定義在 :source:`Include/patchlevel.h` \\ 。 "
0 commit comments