Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5b6dd63

Browse files
authored
Merge pull request #212 from mattwang44/capi/apiabiversion
Translate `c-api/apiabiversion.po`
2 parents f7bd190 + 631b9d9 commit 5b6dd63

File tree

1 file changed

+24
-16
lines changed

1 file changed

+24
-16
lines changed

c-api/apiabiversion.po

Lines changed: 24 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,92 @@
1-
# SOME DESCRIPTIVE TITLE.
21
# Copyright (C) 2001-2022, Python Software Foundation
32
# This file is distributed under the same license as the Python package.
43
#
54
# Translators:
5+
# Liang-Bo Wang <[email protected]>, 2015
6+
# Matt Wang <[email protected]>, 2022
67
msgid ""
78
msgstr ""
89
"Project-Id-Version: Python 3.10\n"
910
"Report-Msgid-Bugs-To: \n"
1011
"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 <[email protected]>\n"
12+
"PO-Revision-Date: 2022-01-24 22:34+0800\n"
13+
"Last-Translator: Matt Wang <[email protected]>\n"
1314
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
1415
"tw)\n"
1516
"Language: zh_TW\n"
1617
"MIME-Version: 1.0\n"
1718
"Content-Type: text/plain; charset=UTF-8\n"
1819
"Content-Transfer-Encoding: 8bit\n"
1920
"Plural-Forms: nplurals=1; plural=0;\n"
21+
"X-Generator: Poedit 3.0.1\n"
2022

2123
#: ../../c-api/apiabiversion.rst:7
2224
msgid "API and ABI Versioning"
23-
msgstr ""
25+
msgstr "API 和 ABI 版本管理"
2426

2527
#: ../../c-api/apiabiversion.rst:9
2628
msgid ""
2729
"CPython exposes its version number in the following macros. Note that these "
2830
"correspond to the version code is **built** with, not necessarily the "
2931
"version used at **run time**."
3032
msgstr ""
33+
"CPython 透過以下巨集 (macro) 公開其版本號。請注意,對應到的是\\ **建置 "
34+
"(built)** 所用到的版本,並不一定是\\ **運行時期 (run time)** 所使用的版本。"
3135

3236
#: ../../c-api/apiabiversion.rst:13
3337
msgid ""
3438
"See :ref:`stable` for a discussion of API and ABI stability across versions."
35-
msgstr ""
39+
msgstr "關於跨版本 API 和 ABI 穩定性的討論,請見 :ref:`stable`\\"
3640

3741
#: ../../c-api/apiabiversion.rst:17
3842
msgid "The ``3`` in ``3.4.1a2``."
39-
msgstr ""
43+
msgstr "在 ``3.4.1a2`` 中的 ``3``\\"
4044

4145
#: ../../c-api/apiabiversion.rst:21
4246
msgid "The ``4`` in ``3.4.1a2``."
43-
msgstr ""
47+
msgstr "在 ``3.4.1a2`` 中的 ``4``\\"
4448

4549
#: ../../c-api/apiabiversion.rst:25
4650
msgid "The ``1`` in ``3.4.1a2``."
47-
msgstr ""
51+
msgstr "在 ``3.4.1a2`` 中的 ``1``\\"
4852

4953
#: ../../c-api/apiabiversion.rst:29
5054
msgid ""
5155
"The ``a`` in ``3.4.1a2``. This can be ``0xA`` for alpha, ``0xB`` for beta, "
5256
"``0xC`` for release candidate or ``0xF`` for final."
5357
msgstr ""
58+
"在 ``3.4.1a2`` 中的 ``a``\\\\ ``0xA`` 代表 alpha 版本、\\ ``0xB`` 代表 "
59+
"beta 版本、\\ ``0xC`` 為發布候選版本、\\ ``0xF`` 則為最終版。"
5460

5561
#: ../../c-api/apiabiversion.rst:35
5662
msgid "The ``2`` in ``3.4.1a2``. Zero for final releases."
57-
msgstr ""
63+
msgstr "在 ``3.4.1a2`` 中的 ``2``\\ 。零則為最終發布版本。"
5864

5965
#: ../../c-api/apiabiversion.rst:39
6066
msgid "The Python version number encoded in a single integer."
61-
msgstr ""
67+
msgstr "被編碼為單一整數的 Python 版本號。"
6268

6369
#: ../../c-api/apiabiversion.rst:41
6470
msgid ""
6571
"The underlying version information can be found by treating it as a 32 bit "
6672
"number in the following manner:"
67-
msgstr ""
73+
msgstr "所代表的版本資訊可以用以下規則將其看做是一個 32 位元數字來獲得:"
6874

6975
#: ../../c-api/apiabiversion.rst:45
7076
msgid "Bytes"
71-
msgstr ""
77+
msgstr "位元組串"
7278

7379
#: ../../c-api/apiabiversion.rst:45
7480
msgid "Bits (big endian order)"
75-
msgstr ""
81+
msgstr "位元(大端位元組序 (big endian order))"
7682

7783
#: ../../c-api/apiabiversion.rst:45
7884
msgid "Meaning"
79-
msgstr ""
85+
msgstr "意義"
8086

8187
#: ../../c-api/apiabiversion.rst:45
8288
msgid "Value for ``3.4.1a2``"
83-
msgstr ""
89+
msgstr "``3.4.1a2`` 中的值"
8490

8591
#: ../../c-api/apiabiversion.rst:47
8692
msgid "1"
@@ -163,7 +169,9 @@ msgid ""
163169
"Thus ``3.4.1a2`` is hexversion ``0x030401a2`` and ``3.10.0`` is hexversion "
164170
"``0x030a00f0``."
165171
msgstr ""
172+
"因此 ``3.4.1a2`` 代表 hexversion ``0x030401a2``\\\\ ``3.10.0`` 代表 "
173+
"hexversion ``0x030a00f0``\\ 。"
166174

167175
#: ../../c-api/apiabiversion.rst:62
168176
msgid "All the given macros are defined in :source:`Include/patchlevel.h`."
169-
msgstr ""
177+
msgstr "所有提到的巨集都定義在 :source:`Include/patchlevel.h`\\"

0 commit comments

Comments
 (0)