Skip to content

Commit 3f489a5

Browse files
committed
resolve fuzzy entries
1 parent 3157e00 commit 3f489a5

File tree

7 files changed

+65
-52
lines changed

7 files changed

+65
-52
lines changed

c-api/init.po

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@ msgid "Initialization, Finalization, and Threads"
2525
msgstr ""
2626

2727
#: ../../c-api/init.rst:10
28-
#, fuzzy
2928
msgid ""
3029
"See :ref:`Python Initialization Configuration <init-config>` for details on "
3130
"how to configure the interpreter prior to initialization."
32-
msgstr "也請參見 :ref:`Python 初始化設定 <init-config>`。"
31+
msgstr ""
32+
"關於如何在初始化之前設定直譯器的細節,請參見 :ref:`Python 初始化設定 <init-"
33+
"config>`。"
3334

3435
#: ../../c-api/init.rst:16
3536
msgid "Before Python Initialization"
@@ -53,29 +54,24 @@ msgid "Functions that initialize the interpreter:"
5354
msgstr ""
5455

5556
#: ../../c-api/init.rst:27
56-
#, fuzzy
5757
msgid ":c:func:`Py_Initialize`"
58-
msgstr ":c:func:`Py_IsInitialized`"
58+
msgstr ":c:func:`Py_Initialize`"
5959

6060
#: ../../c-api/init.rst:28
61-
#, fuzzy
6261
msgid ":c:func:`Py_InitializeEx`"
63-
msgstr ":c:func:`Py_IsInitialized`"
62+
msgstr ":c:func:`Py_InitializeEx`"
6463

6564
#: ../../c-api/init.rst:29
66-
#, fuzzy
6765
msgid ":c:func:`Py_InitializeFromConfig`"
68-
msgstr ":c:func:`Py_IsInitialized`"
66+
msgstr ":c:func:`Py_InitializeFromConfig`"
6967

7068
#: ../../c-api/init.rst:30
71-
#, fuzzy
7269
msgid ":c:func:`Py_BytesMain`"
73-
msgstr ":c:func:`Py_GetVersion`"
70+
msgstr ":c:func:`Py_BytesMain`"
7471

7572
#: ../../c-api/init.rst:31
76-
#, fuzzy
7773
msgid ":c:func:`Py_Main`"
78-
msgstr ":c:func:`Py_SetPath`"
74+
msgstr ":c:func:`Py_Main`"
7975

8076
#: ../../c-api/init.rst:32
8177
msgid "the runtime pre-initialization functions covered in :ref:`init-config`"
@@ -579,11 +575,10 @@ msgid ""
579575
msgstr ""
580576

581577
#: ../../c-api/init.rst:372 ../../c-api/init.rst:386
582-
#, fuzzy
583578
msgid ""
584579
"Use :c:func:`Py_InitializeFromConfig` to customize the :ref:`Python "
585580
"Initialization Configuration <init-config>`."
586-
msgstr "也請參見 :ref:`Python 初始化設定 <init-config>`。"
581+
msgstr ""
587582

588583
#: ../../c-api/init.rst:376
589584
msgid ""

c-api/module.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ msgid "Return ``NULL`` with an exception set on error."
5555
msgstr "在失敗時回傳 ``NULL`` 並設定例外。"
5656

5757
#: ../../c-api/module.rst:50
58-
#, fuzzy
5958
msgid ""
6059
":attr:`~module.__package__` and :attr:`~module.__loader__` are now set to "
6160
"``None``."
62-
msgstr ":attr:`__package__` 和 :attr:`__loader__` 被設為 ``None``。"
61+
msgstr ""
62+
":attr:`~module.__package__` 和 :attr:`~module.__loader__` 現在被設為 "
63+
"``None``。"
6364

6465
#: ../../c-api/module.rst:57
6566
msgid ""

deprecations/index.po

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ msgstr "Python 3.14 中待移除的項目"
2727
#: ../../deprecations/pending-removal-in-3.14.rst:4
2828
#: ../../deprecations/pending-removal-in-3.15.rst:4
2929
msgid "The import system:"
30-
msgstr ""
30+
msgstr "引入系統 (import system):"
3131

3232
#: ../../deprecations/pending-removal-in-3.14.rst:6
3333
msgid ""
@@ -36,6 +36,9 @@ msgid ""
3636
"Python 3.14, :attr:`!__loader__` will cease to be set or taken into "
3737
"consideration by the import system or the standard library."
3838
msgstr ""
39+
"在模組上設定 :attr:`~module.__loader__` 而沒有設定 :attr:`__spec__.loader "
40+
"<importlib.machinery.ModuleSpec.loader>` 的做法已被棄用。在 Python 3.14 中,"
41+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__loader__` 。"
3942

4043
#: ../../deprecations/pending-removal-in-3.14.rst:11
4144
msgid ""
@@ -299,6 +302,9 @@ msgid ""
299302
"Python 3.15, :attr:`!__cached__` will cease to be set or take into "
300303
"consideration by the import system or standard library. (:gh:`97879`)"
301304
msgstr ""
305+
"在模組上設定 :attr:`~module.__cached__` 而沒有設定 :attr:`__spec__.cached "
306+
"<importlib.machinery.ModuleSpec.cached>` 的做法已被棄用。在 Python 3.15 中,"
307+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__cached__`。(:gh:`97879`)"
302308

303309
#: ../../deprecations/pending-removal-in-3.15.rst:11
304310
msgid ""
@@ -307,6 +313,9 @@ msgid ""
307313
"Python 3.15, :attr:`!__package__` will cease to be set or take into "
308314
"consideration by the import system or standard library. (:gh:`97879`)"
309315
msgstr ""
316+
"在模組上設定 :attr:`~module.__package__` 而沒有設定 :attr:`__spec__.parent "
317+
"<importlib.machinery.ModuleSpec.parent>` 的做法已被棄用。在 Python 3.15 中,"
318+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__package__`。(:gh:`97879`)"
310319

311320
#: ../../deprecations/pending-removal-in-3.15.rst:16
312321
msgid ":mod:`ctypes`:"
@@ -690,6 +699,8 @@ msgid ""
690699
":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, "
691700
"use :meth:`~logging.warning` instead."
692701
msgstr ""
702+
":mod:`logging`:自 Python 3.3 起,``warn()`` 方法已被棄用,請改用 :meth:"
703+
"`~logging.warning`。"
693704

694705
#: ../../deprecations/pending-removal-in-future.rst:72
695706
msgid ""
@@ -1328,10 +1339,3 @@ msgstr ""
13281339
#: ../../deprecations/c-api-pending-removal-in-future.rst:50
13291340
msgid ":c:func:`PyThread_ReInitTLS`: Unneeded since Python 3.7."
13301341
msgstr ":c:func:`PyThread_ReInitTLS`:自 Python 3.7 起不再需要。"
1331-
1332-
#~ msgid ""
1333-
#~ ":mod:`importlib`: ``__package__`` and ``__cached__`` will cease to be set "
1334-
#~ "or taken into consideration by the import system (:gh:`97879`)."
1335-
#~ msgstr ""
1336-
#~ ":mod:`importlib`:``__package__`` 和 ``__cached__`` 將不再被設定或被 "
1337-
#~ "import 系統考慮。 (:gh:`97879`)"

deprecations/pending-removal-in-3.15.po

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
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.
43
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
@@ -17,12 +16,14 @@ msgstr ""
1716
"Content-Transfer-Encoding: 8bit\n"
1817

1918
#: ../../deprecations/pending-removal-in-3.15.rst:2
19+
#: ../../deprecations/c-api-pending-removal-in-3.15.rst:2
2020
msgid "Pending Removal in Python 3.15"
2121
msgstr "Python 3.15 中待移除的項目"
2222

2323
#: ../../deprecations/pending-removal-in-3.15.rst:4
24+
#: ../../deprecations/pending-removal-in-3.14.rst:4
2425
msgid "The import system:"
25-
msgstr ""
26+
msgstr "引入系統 (import system):"
2627

2728
#: ../../deprecations/pending-removal-in-3.15.rst:6
2829
msgid ""
@@ -31,6 +32,9 @@ msgid ""
3132
"Python 3.15, :attr:`!__cached__` will cease to be set or take into "
3233
"consideration by the import system or standard library. (:gh:`97879`)"
3334
msgstr ""
35+
"在模組上設定 :attr:`~module.__cached__` 而沒有設定 :attr:`__spec__.cached "
36+
"<importlib.machinery.ModuleSpec.cached>` 的做法已被棄用。在 Python 3.15 中,"
37+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__cached__`。(:gh:`97879`)"
3438

3539
#: ../../deprecations/pending-removal-in-3.15.rst:11
3640
msgid ""
@@ -39,6 +43,9 @@ msgid ""
3943
"Python 3.15, :attr:`!__package__` will cease to be set or take into "
4044
"consideration by the import system or standard library. (:gh:`97879`)"
4145
msgstr ""
46+
"在模組上設定 :attr:`~module.__package__` 而沒有設定 :attr:`__spec__.parent "
47+
"<importlib.machinery.ModuleSpec.parent>` 的做法已被棄用。在 Python 3.15 中,"
48+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__package__`。(:gh:`97879`)"
4249

4350
#: ../../deprecations/pending-removal-in-3.15.rst:16
4451
msgid ":mod:`ctypes`:"
@@ -168,10 +175,3 @@ msgstr ""
168175
"已棄用 :class:`~wave.Wave_read` 和 :class:`~wave.Wave_write` 類別的 :meth:"
169176
"`~wave.Wave_read.getmark`、:meth:`!setmark` 和 :meth:`~wave.Wave_read."
170177
"getmarkers` 方法自 Python 3.13 被棄用。"
171-
172-
#~ msgid ""
173-
#~ ":mod:`importlib`: ``__package__`` and ``__cached__`` will cease to be set "
174-
#~ "or taken into consideration by the import system (:gh:`97879`)."
175-
#~ msgstr ""
176-
#~ ":mod:`importlib`:引入系統將不再設定或考慮 ``__package__`` 和 "
177-
#~ "``__cached__`` (:gh:`97879`)。"

deprecations/pending-removal-in-future.po

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,8 @@ msgid ""
185185
":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, "
186186
"use :meth:`~logging.warning` instead."
187187
msgstr ""
188+
":mod:`logging`:自 Python 3.3 起,``warn()`` 方法已被棄用,請改用 :meth:"
189+
"`~logging.warning`。"
188190

189191
#: ../../deprecations/pending-removal-in-future.rst:72
190192
msgid ""

whatsnew/3.12.po

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2038,15 +2038,12 @@ msgid ""
20382038
msgstr ""
20392039

20402040
#: ../../whatsnew/3.12.rst:1318
2041-
#, fuzzy
20422041
msgid ""
20432042
"Setting :attr:`~module.__package__` or :attr:`~module.__cached__` on a "
20442043
"module is deprecated, and will cease to be set or taken into consideration "
20452044
"by the import system in Python 3.14. (Contributed by Brett Cannon in :gh:"
20462045
"`65961`.)"
20472046
msgstr ""
2048-
":mod:`importlib`:``__package__`` 和 ``__cached__`` 將不再被設定或被 import "
2049-
"系統考慮。 (:gh:`97879`)"
20502047

20512048
#: ../../whatsnew/3.12.rst:1322
20522049
msgid ""
@@ -2247,7 +2244,7 @@ msgstr "Python 3.14 中待移除的項目"
22472244
#: ../../deprecations/pending-removal-in-3.14.rst:4
22482245
#: ../../deprecations/pending-removal-in-3.15.rst:4
22492246
msgid "The import system:"
2250-
msgstr ""
2247+
msgstr "引入系統 (import system):"
22512248

22522249
#: ../../deprecations/pending-removal-in-3.14.rst:6
22532250
msgid ""
@@ -2256,6 +2253,9 @@ msgid ""
22562253
"Python 3.14, :attr:`!__loader__` will cease to be set or taken into "
22572254
"consideration by the import system or the standard library."
22582255
msgstr ""
2256+
"在模組上設定 :attr:`~module.__loader__` 而沒有設定 :attr:`__spec__.loader "
2257+
"<importlib.machinery.ModuleSpec.loader>` 的做法已被棄用。在 Python 3.14 中,"
2258+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__loader__` 。"
22592259

22602260
#: ../../deprecations/pending-removal-in-3.14.rst:16
22612261
msgid ""
@@ -2423,6 +2423,9 @@ msgid ""
24232423
"Python 3.15, :attr:`!__cached__` will cease to be set or take into "
24242424
"consideration by the import system or standard library. (:gh:`97879`)"
24252425
msgstr ""
2426+
"在模組上設定 :attr:`~module.__cached__` 而沒有設定 :attr:`__spec__.cached "
2427+
"<importlib.machinery.ModuleSpec.cached>` 的做法已被棄用。在 Python 3.15 中,"
2428+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__cached__`。(:gh:`97879`)"
24262429

24272430
#: ../../deprecations/pending-removal-in-3.15.rst:11
24282431
msgid ""
@@ -2431,6 +2434,9 @@ msgid ""
24312434
"Python 3.15, :attr:`!__package__` will cease to be set or take into "
24322435
"consideration by the import system or standard library. (:gh:`97879`)"
24332436
msgstr ""
2437+
"在模組上設定 :attr:`~module.__package__` 而沒有設定 :attr:`__spec__.parent "
2438+
"<importlib.machinery.ModuleSpec.parent>` 的做法已被棄用。在 Python 3.15 中,"
2439+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__package__`。(:gh:`97879`)"
24342440

24352441
#: ../../deprecations/pending-removal-in-3.15.rst:16
24362442
msgid ":mod:`ctypes`:"
@@ -2800,6 +2806,8 @@ msgid ""
28002806
":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, "
28012807
"use :meth:`~logging.warning` instead."
28022808
msgstr ""
2809+
":mod:`logging`:自 Python 3.3 起,``warn()`` 方法已被棄用,請改用 :meth:"
2810+
"`~logging.warning`。"
28032811

28042812
#: ../../deprecations/pending-removal-in-future.rst:72
28052813
msgid ""

whatsnew/3.13.po

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,12 @@ msgstr "重要的移除:"
287287

288288
#: ../../whatsnew/3.13.rst:182
289289
msgid ""
290-
":ref:`PEP 594 <whatsnew313-pep594>`: The remaining 19 \"dead "
291-
"batteries\" (legacy stdlib modules) have been removed from the standard "
292-
"library: :mod:`!aifc`, :mod:`!audioop`, :mod:`!cgi`, :mod:`!cgitb`, :mod:`!"
293-
"chunk`, :mod:`!crypt`, :mod:`!imghdr`, :mod:`!mailcap`, :mod:`!msilib`, :mod:"
294-
"`!nis`, :mod:`!nntplib`, :mod:`!ossaudiodev`, :mod:`!pipes`, :mod:`!"
295-
"sndhdr`, :mod:`!spwd`, :mod:`!sunau`, :mod:`!telnetlib`, :mod:`!uu` and :mod:"
296-
"`!xdrlib`."
290+
":ref:`PEP 594 <whatsnew313-pep594>`: The remaining 19 \"dead batteries\" "
291+
"(legacy stdlib modules) have been removed from the standard library: :mod:`!"
292+
"aifc`, :mod:`!audioop`, :mod:`!cgi`, :mod:`!cgitb`, :mod:`!chunk`, :mod:`!"
293+
"crypt`, :mod:`!imghdr`, :mod:`!mailcap`, :mod:`!msilib`, :mod:`!nis`, :mod:`!"
294+
"nntplib`, :mod:`!ossaudiodev`, :mod:`!pipes`, :mod:`!sndhdr`, :mod:`!spwd`, :"
295+
"mod:`!sunau`, :mod:`!telnetlib`, :mod:`!uu` and :mod:`!xdrlib`."
297296
msgstr ""
298297
":ref:`PEP 594 <whatsnew313-pep594>`: 剩下的 19 個 \"dead batteries\" (遺留標"
299298
"準函式庫模組)以字標準函式庫中移除::mod:`!aifc`、:mod:`!audioop`、:mod:`!"
@@ -2888,7 +2887,7 @@ msgstr "Python 3.14 中待移除的項目"
28882887
#: ../../deprecations/pending-removal-in-3.14.rst:4
28892888
#: ../../deprecations/pending-removal-in-3.15.rst:4
28902889
msgid "The import system:"
2891-
msgstr ""
2890+
msgstr "引入系統 (import system):"
28922891

28932892
#: ../../deprecations/pending-removal-in-3.14.rst:6
28942893
msgid ""
@@ -2897,6 +2896,9 @@ msgid ""
28972896
"Python 3.14, :attr:`!__loader__` will cease to be set or taken into "
28982897
"consideration by the import system or the standard library."
28992898
msgstr ""
2899+
"在模組上設定 :attr:`~module.__loader__` 而沒有設定 :attr:`__spec__.loader "
2900+
"<importlib.machinery.ModuleSpec.loader>` 的做法已被棄用。在 Python 3.14 中,"
2901+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__loader__` 。"
29002902

29012903
#: ../../deprecations/pending-removal-in-3.14.rst:11
29022904
msgid ""
@@ -3156,6 +3158,9 @@ msgid ""
31563158
"Python 3.15, :attr:`!__cached__` will cease to be set or take into "
31573159
"consideration by the import system or standard library. (:gh:`97879`)"
31583160
msgstr ""
3161+
"在模組上設定 :attr:`~module.__cached__` 而沒有設定 :attr:`__spec__.cached "
3162+
"<importlib.machinery.ModuleSpec.cached>` 的做法已被棄用。在 Python 3.15 中,"
3163+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__cached__`。(:gh:`97879`)"
31593164

31603165
#: ../../deprecations/pending-removal-in-3.15.rst:11
31613166
msgid ""
@@ -3164,6 +3169,9 @@ msgid ""
31643169
"Python 3.15, :attr:`!__package__` will cease to be set or take into "
31653170
"consideration by the import system or standard library. (:gh:`97879`)"
31663171
msgstr ""
3172+
"在模組上設定 :attr:`~module.__package__` 而沒有設定 :attr:`__spec__.parent "
3173+
"<importlib.machinery.ModuleSpec.parent>` 的做法已被棄用。在 Python 3.15 中,"
3174+
"引入系統或標準函式庫將不再設定或考慮 :attr:`!__package__`。(:gh:`97879`)"
31673175

31683176
#: ../../deprecations/pending-removal-in-3.15.rst:18
31693177
msgid ""
@@ -3511,6 +3519,8 @@ msgid ""
35113519
":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, "
35123520
"use :meth:`~logging.warning` instead."
35133521
msgstr ""
3522+
":mod:`logging`:自 Python 3.3 起,``warn()`` 方法已被棄用,請改用 :meth:"
3523+
"`~logging.warning`。"
35143524

35153525
#: ../../deprecations/pending-removal-in-future.rst:72
35163526
msgid ""
@@ -5338,10 +5348,3 @@ msgid ""
53385348
"interpreter, before ``site.py`` is executed. (Contributed by Łukasz Langa "
53395349
"in :gh:`110769`.)"
53405350
msgstr ""
5341-
5342-
#~ msgid ""
5343-
#~ ":mod:`importlib`: ``__package__`` and ``__cached__`` will cease to be set "
5344-
#~ "or taken into consideration by the import system (:gh:`97879`)."
5345-
#~ msgstr ""
5346-
#~ ":mod:`importlib`:``__package__`` 和 ``__cached__`` 將不再被設定或被 "
5347-
#~ "import 系統考慮。 (:gh:`97879`)"

0 commit comments

Comments
 (0)