Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit54c3b7c

Browse files
committed
fix: resolve fuzzy entries
1 parentaf65fb1 commit54c3b7c

File tree

73 files changed

+531
-407
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+531
-407
lines changed

‎c-api/frame.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
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.
4-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
53
#
64
#,fuzzy
75
msgid ""
@@ -11,7 +9,8 @@ msgstr ""
119
"POT-Creation-Date:2024-09-23 07:52+0800\n"
1210
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1311
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team:LANGUAGE <LL@li.org>\n"
12+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
13+
"tw)\n"
1514
"Language:zh_TW\n"
1615
"MIME-Version:1.0\n"
1716
"Content-Type:text/plain; charset=UTF-8\n"

‎c-api/init.po

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
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
#
@@ -1652,7 +1651,7 @@ msgstr ""
16521651

16531652
#:../../c-api/init.rst:1335
16541653
msgid"The :c:member:`PyThreadState.on_delete` callback was removed."
1655-
msgstr""
1654+
msgstr":c:member:`PyThreadState.on_delete` 回呼已被移除。"
16561655

16571656
#:../../c-api/init.rst:1341
16581657
msgid""
@@ -2023,7 +2022,6 @@ msgid ""
20232022
msgstr""
20242023

20252024
#:../../c-api/init.rst:1682
2026-
#,fuzzy
20272025
msgid""
20282026
"PyInterpreterConfig config = {\n"
20292027
" .use_main_obmalloc = 0,\n"
@@ -2049,7 +2047,11 @@ msgstr ""
20492047
" .check_multi_interp_extensions = 1,\n"
20502048
" .gil = PyInterpreterConfig_OWN_GIL,\n"
20512049
"};\n"
2052-
"PyThreadState *tstate = Py_NewInterpreterFromConfig(&config);"
2050+
"PyThreadState *tstate = NULL;\n"
2051+
"PyStatus status = Py_NewInterpreterFromConfig(&tstate, &config);\n"
2052+
"if (PyStatus_Exception(status)) {\n"
2053+
" Py_ExitStatusException(status);\n"
2054+
"}"
20532055

20542056
#:../../c-api/init.rst:1697
20552057
msgid""

‎c-api/monitoring.po

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# SOME DESCRIPTIVE TITLE.
21
# Copyright (C) 2001-2024, Python Software Foundation
32
# This file is distributed under the same license as the Python package.
4-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
53
#
64
#,fuzzy
75
msgid ""
@@ -11,19 +9,20 @@ msgstr ""
119
"POT-Creation-Date:2024-10-22 00:13+0000\n"
1210
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1311
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team:LANGUAGE <LL@li.org>\n"
12+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
13+
"tw)\n"
1514
"Language:zh_TW\n"
1615
"MIME-Version:1.0\n"
1716
"Content-Type:text/plain; charset=UTF-8\n"
1817
"Content-Transfer-Encoding:8bit\n"
1918

2019
#:../../c-api/monitoring.rst:6
2120
msgid"Monitoring C API"
22-
msgstr""
21+
msgstr"監控 C API"
2322

2423
#:../../c-api/monitoring.rst:8
2524
msgid"Added in version 3.13."
26-
msgstr""
25+
msgstr"於 3.13 版本中新增。"
2726

2827
#:../../c-api/monitoring.rst:10
2928
msgid""
@@ -76,43 +75,43 @@ msgstr ""
7675

7776
#:../../c-api/monitoring.rst:41
7877
msgid"See :mod:`sys.monitoring` for descriptions of the events."
79-
msgstr""
78+
msgstr"關於事件的敘述請見 :mod:`sys.monitoring`。"
8079

8180
#:../../c-api/monitoring.rst:45
8281
msgid"Fire a ``PY_START`` event."
83-
msgstr""
82+
msgstr"發出一個 ``PY_START`` 事件。"
8483

8584
#:../../c-api/monitoring.rst:50
8685
msgid"Fire a ``PY_RESUME`` event."
87-
msgstr""
86+
msgstr"發出一個 ``PY_RESUME`` 事件。"
8887

8988
#:../../c-api/monitoring.rst:55
9089
msgid"Fire a ``PY_RETURN`` event."
91-
msgstr""
90+
msgstr"發出一個 ``PY_RETURN`` 事件。"
9291

9392
#:../../c-api/monitoring.rst:60
9493
msgid"Fire a ``PY_YIELD`` event."
95-
msgstr""
94+
msgstr"發出一個 ``PY_YIELD`` 事件。"
9695

9796
#:../../c-api/monitoring.rst:65
9897
msgid"Fire a ``CALL`` event."
99-
msgstr""
98+
msgstr"發出一個 ``CALL`` 事件。"
10099

101100
#:../../c-api/monitoring.rst:70
102101
msgid"Fire a ``LINE`` event."
103-
msgstr""
102+
msgstr"發出一個 ``LINE`` 事件。"
104103

105104
#:../../c-api/monitoring.rst:75
106105
msgid"Fire a ``JUMP`` event."
107-
msgstr""
106+
msgstr"發出一個 ``JUMP`` 事件。"
108107

109108
#:../../c-api/monitoring.rst:80
110109
msgid"Fire a ``BRANCH`` event."
111-
msgstr""
110+
msgstr"發出一個 ``BRANCH`` 事件。"
112111

113112
#:../../c-api/monitoring.rst:85
114113
msgid"Fire a ``C_RETURN`` event."
115-
msgstr""
114+
msgstr"發出一個 ``C_RETURN`` 事件。"
116115

117116
#:../../c-api/monitoring.rst:90
118117
msgid""
@@ -201,15 +200,15 @@ msgstr ""
201200

202201
#:../../c-api/monitoring.rst:161
203202
msgid"The macros for *event_types* are:"
204-
msgstr""
203+
msgstr"*event_types* 的巨集有:"
205204

206205
#:../../c-api/monitoring.rst:169
207206
msgid"Macro"
208207
msgstr"巨集"
209208

210209
#:../../c-api/monitoring.rst:169
211210
msgid"Event"
212-
msgstr""
211+
msgstr"事件"
213212

214213
#:../../c-api/monitoring.rst:171
215214
msgid":monitoring-event:`BRANCH`"

‎c-api/time.po

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# SOME DESCRIPTIVE TITLE.
21
# Copyright (C) 2001-2024, Python Software Foundation
32
# This file is distributed under the same license as the Python package.
4-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
53
#
64
#,fuzzy
75
msgid ""
@@ -11,15 +9,16 @@ msgstr ""
119
"POT-Creation-Date:2024-09-24 07:20+0000\n"
1210
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1311
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team:LANGUAGE <LL@li.org>\n"
12+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
13+
"tw)\n"
1514
"Language:zh_TW\n"
1615
"MIME-Version:1.0\n"
1716
"Content-Type:text/plain; charset=UTF-8\n"
1817
"Content-Transfer-Encoding:8bit\n"
1918

2019
#:../../c-api/time.rst:6
2120
msgid"PyTime C API"
22-
msgstr""
21+
msgstr"PyTime C API"
2322

2423
#:../../c-api/time.rst:10
2524
msgid""

‎deprecations/c-api-pending-removal-in-3.14.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Copyright (C) 2001-2024, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
43
#
54
msgid ""
65
msgstr ""
@@ -9,7 +8,8 @@ msgstr ""
98
"POT-Creation-Date:2024-09-24 07:20+0000\n"
109
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1110
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
12-
"Language-Team:LANGUAGE <LL@li.org>\n"
11+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
12+
"tw)\n"
1313
"Language:zh_TW\n"
1414
"MIME-Version:1.0\n"
1515
"Content-Type:text/plain; charset=UTF-8\n"

‎deprecations/c-api-pending-removal-in-3.15.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# SOME DESCRIPTIVE TITLE.
21
# Copyright (C) 2001-2024, Python Software Foundation
32
# This file is distributed under the same license as the Python package.
4-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
53
#
64
msgid ""
75
msgstr ""
@@ -10,7 +8,8 @@ msgstr ""
108
"POT-Creation-Date:2024-10-22 00:13+0000\n"
119
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1210
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
13-
"Language-Team:LANGUAGE <LL@li.org>\n"
11+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
12+
"tw)\n"
1413
"Language:zh_TW\n"
1514
"MIME-Version:1.0\n"
1615
"Content-Type:text/plain; charset=UTF-8\n"

‎deprecations/c-api-pending-removal-in-future.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# SOME DESCRIPTIVE TITLE.
21
# Copyright (C) 2001-2024, Python Software Foundation
32
# This file is distributed under the same license as the Python package.
4-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
53
#
64
msgid ""
75
msgstr ""
@@ -10,7 +8,8 @@ msgstr ""
108
"POT-Creation-Date:2024-09-24 07:20+0000\n"
119
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1210
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
13-
"Language-Team:LANGUAGE <LL@li.org>\n"
11+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
12+
"tw)\n"
1413
"Language:zh_TW\n"
1514
"MIME-Version:1.0\n"
1615
"Content-Type:text/plain; charset=UTF-8\n"

‎deprecations/index.po

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Copyright (C) 2001-2024, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
43
#
54
msgid ""
65
msgstr ""
@@ -9,7 +8,8 @@ msgstr ""
98
"POT-Creation-Date:2024-11-10 17:21+0000\n"
109
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1110
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
12-
"Language-Team:LANGUAGE <LL@li.org>\n"
11+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
12+
"tw)\n"
1313
"Language:zh_TW\n"
1414
"MIME-Version:1.0\n"
1515
"Content-Type:text/plain; charset=UTF-8\n"
@@ -467,6 +467,9 @@ msgid ""
467467
"Python 3.16, use :func:`inspect.iscoroutinefunction` instead. (Contributed "
468468
"by Jiahao Li and Kumar Aditya in :gh:`122875`.)"
469469
msgstr""
470+
":func:`!asyncio.iscoroutinefunction` 已被棄用並將在 Python 3.16 中移除,請改"
471+
"用 :func:`inspect.iscoroutinefunction`。(由 Jiahao Li 和 Kumar Aditya 於 :"
472+
"gh:`122875` 貢獻。)"
470473

471474
#:../../deprecations/pending-removal-in-3.16.rst:26
472475
#:../../deprecations/pending-removal-in-future.rst:12
@@ -1351,10 +1354,3 @@ msgstr ""
13511354
#:../../deprecations/c-api-pending-removal-in-future.rst:50
13521355
msgid":c:func:`PyThread_ReInitTLS`: Unneeded since Python 3.7."
13531356
msgstr":c:func:`PyThread_ReInitTLS`:自 Python 3.7 起不再需要。"
1354-
1355-
#~ msgid ""
1356-
#~ "date and datetime adapter, date and timestamp converter: see the :mod:"
1357-
#~ "`sqlite3` documentation for suggested replacement recipes."
1358-
#~ msgstr ""
1359-
#~ "date 和 datetime 的適配器 (adapter)、date 和 timestamp 轉換器 "
1360-
#~ "(converter):請參閱 :mod:`sqlite3` 文件以獲得建議的替代方案。"

‎deprecations/pending-removal-in-3.13.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Copyright (C) 2001-2024, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
43
#
54
msgid ""
65
msgstr ""
@@ -9,7 +8,8 @@ msgstr ""
98
"POT-Creation-Date:2024-09-23 07:52+0800\n"
109
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1110
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
12-
"Language-Team:LANGUAGE <LL@li.org>\n"
11+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
12+
"tw)\n"
1313
"Language:zh_TW\n"
1414
"MIME-Version:1.0\n"
1515
"Content-Type:text/plain; charset=UTF-8\n"

‎deprecations/pending-removal-in-3.14.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Copyright (C) 2001-2024, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
43
#
54
msgid ""
65
msgstr ""
@@ -9,7 +8,8 @@ msgstr ""
98
"POT-Creation-Date:2024-11-10 17:21+0000\n"
109
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1110
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
12-
"Language-Team:LANGUAGE <LL@li.org>\n"
11+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
12+
"tw)\n"
1313
"Language:zh_TW\n"
1414
"MIME-Version:1.0\n"
1515
"Content-Type:text/plain; charset=UTF-8\n"

‎deprecations/pending-removal-in-3.15.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Copyright (C) 2001-2024, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
43
#
54
msgid ""
65
msgstr ""
@@ -9,7 +8,8 @@ msgstr ""
98
"POT-Creation-Date:2024-11-05 00:13+0000\n"
109
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1110
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
12-
"Language-Team:LANGUAGE <LL@li.org>\n"
11+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
12+
"tw)\n"
1313
"Language:zh_TW\n"
1414
"MIME-Version:1.0\n"
1515
"Content-Type:text/plain; charset=UTF-8\n"

‎deprecations/pending-removal-in-3.16.po

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Copyright (C) 2001-2024, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
43
#
54
msgid ""
65
msgstr ""
@@ -9,7 +8,8 @@ msgstr ""
98
"POT-Creation-Date:2024-11-10 17:21+0000\n"
109
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1110
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
12-
"Language-Team:LANGUAGE <LL@li.org>\n"
11+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
12+
"tw)\n"
1313
"Language:zh_TW\n"
1414
"MIME-Version:1.0\n"
1515
"Content-Type:text/plain; charset=UTF-8\n"
@@ -58,6 +58,9 @@ msgid ""
5858
"Python 3.16, use :func:`inspect.iscoroutinefunction` instead. (Contributed "
5959
"by Jiahao Li and Kumar Aditya in :gh:`122875`.)"
6060
msgstr""
61+
":func:`!asyncio.iscoroutinefunction` 已被棄用並將在 Python 3.16 中移除,請改"
62+
"用 :func:`inspect.iscoroutinefunction`。(由 Jiahao Li 和 Kumar Aditya 於 :"
63+
"gh:`122875` 貢獻。)"
6164

6265
#:../../deprecations/pending-removal-in-3.16.rst:26
6366
msgid":mod:`builtins`:"

‎deprecations/pending-removal-in-future.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (C) 2001-2024, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
3+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
44
#
55
msgid ""
66
msgstr ""
@@ -9,7 +9,8 @@ msgstr ""
99
"POT-Creation-Date:2024-09-23 07:52+0800\n"
1010
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1111
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
12-
"Language-Team:LANGUAGE <LL@li.org>\n"
12+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
13+
"tw)\n"
1314
"Language:zh_TW\n"
1415
"MIME-Version:1.0\n"
1516
"Content-Type:text/plain; charset=UTF-8\n"

‎howto/argparse-optparse.po

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# SOME DESCRIPTIVE TITLE.
21
# Copyright (C) 2001-2024, Python Software Foundation
32
# This file is distributed under the same license as the Python package.
4-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
53
#
64
#,fuzzy
75
msgid ""
@@ -11,15 +9,16 @@ msgstr ""
119
"POT-Creation-Date:2024-10-09 00:13+0000\n"
1210
"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE\n"
1311
"Last-Translator:FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team:LANGUAGE <LL@li.org>\n"
12+
"Language-Team:Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
13+
"tw)\n"
1514
"Language:zh_TW\n"
1615
"MIME-Version:1.0\n"
1716
"Content-Type:text/plain; charset=UTF-8\n"
1817
"Content-Transfer-Encoding:8bit\n"
1918

2019
#:../../howto/argparse-optparse.rst:7
2120
msgid"Upgrading optparse code"
22-
msgstr""
21+
msgstr"升級 optparse 程式碼"
2322

2423
#:../../howto/argparse-optparse.rst:9
2524
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp