Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 74 additions & 70 deletions library/asyncio-stream.po

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions library/importlib.metadata.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.10\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-08 14:58+0000\n"
"POT-Creation-Date: 2022-03-14 00:14+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
Expand Down Expand Up @@ -263,41 +263,41 @@ msgid ""
"case of a namespace package) for top-level Python packages or modules::"
msgstr ""

#: ../../library/importlib.metadata.rst:269
#: ../../library/importlib.metadata.rst:270
msgid "Distributions"
msgstr ""

#: ../../library/importlib.metadata.rst:271
#: ../../library/importlib.metadata.rst:272
msgid ""
"While the above API is the most common and convenient usage, you can get all "
"of that information from the ``Distribution`` class. A ``Distribution`` is "
"an abstract object that represents the metadata for a Python package. You "
"can get the ``Distribution`` instance::"
msgstr ""

#: ../../library/importlib.metadata.rst:279
#: ../../library/importlib.metadata.rst:280
msgid ""
"Thus, an alternative way to get the version number is through the "
"``Distribution`` instance::"
msgstr ""

#: ../../library/importlib.metadata.rst:285
#: ../../library/importlib.metadata.rst:286
msgid ""
"There are all kinds of additional metadata available on the ``Distribution`` "
"instance::"
msgstr ""

#: ../../library/importlib.metadata.rst:293
#: ../../library/importlib.metadata.rst:294
msgid ""
"The full set of available metadata is not described here. See :pep:`566` "
"for additional details."
msgstr ""

#: ../../library/importlib.metadata.rst:298
#: ../../library/importlib.metadata.rst:299
msgid "Extending the search algorithm"
msgstr ""

#: ../../library/importlib.metadata.rst:300
#: ../../library/importlib.metadata.rst:301
msgid ""
"Because package metadata is not available through :data:`sys.path` searches, "
"or package loaders directly, the metadata for a package is found through "
Expand All @@ -306,14 +306,14 @@ msgid ""
"path finders <meta path finder>` on :data:`sys.meta_path`."
msgstr ""

#: ../../library/importlib.metadata.rst:306
#: ../../library/importlib.metadata.rst:307
msgid ""
"The default ``PathFinder`` for Python includes a hook that calls into "
"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded "
"from typical file-system-based paths."
msgstr ""

#: ../../library/importlib.metadata.rst:310
#: ../../library/importlib.metadata.rst:311
msgid ""
"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
"interface expected of finders by Python's import system. ``importlib."
Expand All @@ -323,14 +323,14 @@ msgid ""
"base class, which defines this abstract method::"
msgstr ""

#: ../../library/importlib.metadata.rst:324
#: ../../library/importlib.metadata.rst:325
msgid ""
"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` "
"properties indicating the path to search and name to match and may supply "
"other relevant context."
msgstr ""

#: ../../library/importlib.metadata.rst:328
#: ../../library/importlib.metadata.rst:329
msgid ""
"What this means in practice is that to support finding distribution package "
"metadata in locations other than the file system, subclass ``Distribution`` "
Expand Down
Loading