11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2024 , Python Software Foundation
2+ # Copyright (C) 2001-2025 , Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
778- # Rafael Fontenelle <[email protected] >, 2024 8+ # Rafael Fontenelle <[email protected] >, 2025 99#
1010#, fuzzy
1111msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.12\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2024-11-12 09:11 +0000\n "
15+ "POT-Creation-Date : 2025-02-14 14:53 +0000\n "
1616"PO-Revision-Date : 2024-07-26 14:50+0000\n "
17- "
Last-Translator :
Rafael Fontenelle <[email protected] >, 2024 \n "
17+ "
Last-Translator :
Rafael Fontenelle <[email protected] >, 2025 \n "
1818"Language-Team : Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n "
1919"MIME-Version : 1.0\n "
2020"Content-Type : text/plain; charset=UTF-8\n "
@@ -38,6 +38,14 @@ msgstr ""
3838"服务器与请求处理器的接口的任务来说 *任何东西* 都比 CGI 要好。"
3939
4040#: ../../deprecations/pending-removal-in-3.15.rst:9
41+ msgid ":mod:`importlib`:"
42+ msgstr ":mod:`importlib`:"
43+
44+ #: ../../deprecations/pending-removal-in-3.15.rst:11
45+ msgid "``load_module()`` method: use ``exec_module()`` instead."
46+ msgstr "``load_module()`` 方法:改用 ``exec_module()``。"
47+
48+ #: ../../deprecations/pending-removal-in-3.15.rst:13
4149msgid ""
4250":class:`locale`: :func:`locale.getdefaultlocale` was deprecated in Python "
4351"3.11 and originally planned for removal in Python 3.13 (:gh:`90817`), but "
@@ -50,7 +58,7 @@ msgstr ""
5058":func:`locale.setlocale`, :func:`locale.getencoding` 和 "
5159":func:`locale.getlocale`。 (由 Hugo van Kemenade 在 :gh:`111187` 中贡献。)"
5260
53- #: ../../deprecations/pending-removal-in-3.15.rst:16
61+ #: ../../deprecations/pending-removal-in-3.15.rst:20
5462msgid ""
5563":mod:`pathlib`: :meth:`pathlib.PurePath.is_reserved` is deprecated and "
5664"scheduled for removal in Python 3.15. From Python 3.13 onwards, use "
@@ -59,7 +67,7 @@ msgstr ""
5967":mod:`pathlib`::meth:`pathlib.PurePath.is_reserved` 已被弃用,并计划在 Python 3.15 "
6068"中移除。从 Python 3.13 起,请在 Windows 上使用``os.path.isreserved`` 检测保留路径。"
6169
62- #: ../../deprecations/pending-removal-in-3.15.rst:21
70+ #: ../../deprecations/pending-removal-in-3.15.rst:25
6371msgid ""
6472":mod:`platform`: :func:`~platform.java_ver` is deprecated and will be "
6573"removed in 3.15. It was largely untested, had a confusing API, and was only "
@@ -68,7 +76,7 @@ msgstr ""
6876":mod:`platform`: :func:`~platform.java_ver` 已被弃用并将在 3.15 中移除。 "
6977"它几乎未经测试,具有令人困惑的 API,并且仅适用于 Jython 支持。 (由 Nikita Sobolev 在 :gh:`116349` 中贡献。)"
7078
71- #: ../../deprecations/pending-removal-in-3.15.rst:27
79+ #: ../../deprecations/pending-removal-in-3.15.rst:31
7280msgid ""
7381":mod:`threading`: Passing any arguments to :func:`threading.RLock` is now "
7482"deprecated. C version allows any numbers of args and kwargs, but they are "
@@ -80,11 +88,11 @@ msgstr ""
8088" 和 kwargs,但它们都会被忽略。 Python 版本不允许任何参数。 在 Python 3.15 中将从 "
8189":func:`threading.RLock` 移除所有参数。 (由 Nikita Sobolev 在 :gh:`102029` 中贡献。)"
8290
83- #: ../../deprecations/pending-removal-in-3.15.rst:34
91+ #: ../../deprecations/pending-removal-in-3.15.rst:38
8492msgid ":class:`typing.NamedTuple`:"
8593msgstr ":class:`typing.NamedTuple`:"
8694
87- #: ../../deprecations/pending-removal-in-3.15.rst:36
95+ #: ../../deprecations/pending-removal-in-3.15.rst:40
8896msgid ""
8997"The undocumented keyword argument syntax for creating :class:`!NamedTuple` "
9098"classes (``NT = NamedTuple(\" NT\" , x=int)``) is deprecated, and will be "
@@ -94,11 +102,11 @@ msgstr ""
94102"创建 :class:`!NamedTuple` 类 (``NT = NamedTuple(\" NT\" , x=int)``) "
95103"的关键字参数语法从未写入文档且已被弃用,并将在 3.15 中被禁止。 请改用基于类的语法或函数语法。"
96104
97- #: ../../deprecations/pending-removal-in-3.15.rst:40
105+ #: ../../deprecations/pending-removal-in-3.15.rst:44
98106msgid ":mod:`types`:"
99107msgstr ":mod:`types`:"
100108
101- #: ../../deprecations/pending-removal-in-3.15.rst:42
109+ #: ../../deprecations/pending-removal-in-3.15.rst:46
102110msgid ""
103111":class:`types.CodeType`: Accessing :attr:`~codeobject.co_lnotab` was "
104112"deprecated in :pep:`626` since 3.10 and was planned to be removed in 3.12, "
@@ -109,11 +117,11 @@ msgstr ""
109117":pep:`626` 被弃用并曾计划在 3.12 中移除,但在 3.12 中实际仅设置了 :exc:`DeprecationWarning`。 可能会在"
110118" 3.15 中移除。 (由 Nikita Sobolev 在 :gh:`101866` 中贡献。)"
111119
112- #: ../../deprecations/pending-removal-in-3.15.rst:49
120+ #: ../../deprecations/pending-removal-in-3.15.rst:53
113121msgid ":mod:`typing`:"
114122msgstr ":mod:`typing`:"
115123
116- #: ../../deprecations/pending-removal-in-3.15.rst:51
124+ #: ../../deprecations/pending-removal-in-3.15.rst:55
117125msgid ""
118126"When using the functional syntax to create a :class:`!NamedTuple` class, "
119127"failing to pass a value to the *fields* parameter (``NT = "
@@ -129,7 +137,7 @@ msgstr ""
129137":class:`!NamedTuple` 类,请使用 ``class NT(NamedTuple): pass`` 或 ``NT = "
130138"NamedTuple(\" NT\" , [])``。"
131139
132- #: ../../deprecations/pending-removal-in-3.15.rst:58
140+ #: ../../deprecations/pending-removal-in-3.15.rst:62
133141msgid ""
134142":class:`typing.TypedDict`: When using the functional syntax to create a "
135143":class:`!TypedDict` class, failing to pass a value to the *fields* parameter"
@@ -145,7 +153,7 @@ msgstr ""
145153":class:`!TypedDict` 类,请使用 ``class TD(TypedDict): pass`` 或 ``TD = "
146154"TypedDict(\" TD\" , {})``。"
147155
148- #: ../../deprecations/pending-removal-in-3.15.rst:65
156+ #: ../../deprecations/pending-removal-in-3.15.rst:69
149157msgid ""
150158":mod:`wave`: Deprecate the ``getmark()``, ``setmark()`` and ``getmarkers()``"
151159" methods of the :class:`wave.Wave_read` and :class:`wave.Wave_write` "
0 commit comments