@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.8\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2020-02-09 12:40 +0000\n "
14
+ "POT-Creation-Date :2020-10-16 15:23 +0000\n "
15
15
"PO-Revision-Date :2020-05-30 12:04+0000\n "
16
16
"Last-Translator :tomo, 2020\n "
17
17
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -22,7 +22,7 @@ msgstr ""
22
22
"Plural-Forms :nplurals=1; plural=0;\n "
23
23
24
24
#: ../../library/importlib.metadata.rst:5
25
- msgid "Using importlib.metadata"
25
+ msgid "Using:mod:`! importlib.metadata` "
26
26
msgstr ""
27
27
28
28
#: ../../library/importlib.metadata.rst:8
@@ -36,8 +36,8 @@ msgid ""
36
36
"``importlib.metadata`` is a library that provides for access to installed "
37
37
"package metadata. Built in part on Python's import system, this library "
38
38
"intends to replace similar functionality in the `entry point API`_ and "
39
- "`metadata API`_ of ``pkg_resources``. Along with`` importlib.resources`` in "
40
- "` Python 3.7 and newer`_ (backported as `importlib_resources`_ for older "
39
+ "`metadata API`_ of ``pkg_resources``. Along with:mod:` importlib.resources`"
40
+ "in Python 3.7 and newer (backported as `importlib_resources`_ for older "
41
41
"versions of Python), this can eliminate the need to use the older and less "
42
42
"efficient ``pkg_resources`` package."
43
43
msgstr ""
@@ -48,9 +48,9 @@ msgid ""
48
48
"into Python's ``site-packages`` directory via tools such as `pip "
49
49
"<https://pypi.org/project/pip/>`_. Specifically, it means a package with "
50
50
"either a discoverable ``dist-info`` or ``egg-info`` directory, and metadata "
51
- "defined by`PEP 566`_ or its older specifications. By default, package "
52
- "metadata can live on the file system or in zip archives on`` sys.path``. "
53
- "Through an extension mechanism, the metadata can live almost anywhere."
51
+ "defined by:pep:` 566` or its older specifications. By default, package "
52
+ "metadata can live on the file system or in zip archives on:data:` sys.path`. "
53
+ " Through an extension mechanism, the metadata can live almost anywhere."
54
54
msgstr ""
55
55
56
56
#: ../../library/importlib.metadata.rst:31
@@ -151,9 +151,9 @@ msgid ""
151
151
"You can also get the full set of files contained within a distribution. The"
152
152
" ``files()`` function takes a distribution package name and returns all of "
153
153
"the files installed by this distribution. Each file object returned is a "
154
- "``PackagePath``, a `pathlib.Path`_ derived object with additional ``dist``, "
155
- "``size``, and ``hash`` properties as indicated by the metadata. For "
156
- "example::"
154
+ "``PackagePath``, a:class: `pathlib.Path` derived object with additional "
155
+ "``dist``, `` size``, and ``hash`` properties as indicated by the metadata. "
156
+ "For example::"
157
157
msgstr ""
158
158
159
159
#: ../../library/importlib.metadata.rst:150
@@ -206,8 +206,8 @@ msgstr ""
206
206
207
207
#: ../../library/importlib.metadata.rst:206
208
208
msgid ""
209
- "The full set of available metadata is not described here. See`PEP 566 "
210
- "<https://www.python.org/dev/peps/pep-0566/>`_ for additional details."
209
+ "The full set of available metadata is not described here. See:pep:` 566` "
210
+ "for additional details."
211
211
msgstr ""
212
212
213
213
#: ../../library/importlib.metadata.rst:211
@@ -216,11 +216,11 @@ msgstr ""
216
216
217
217
#: ../../library/importlib.metadata.rst:213
218
218
msgid ""
219
- "Because package metadata is not available through`` sys.path`` searches, or "
220
- "package loaders directly, the metadata for a package is found throughimport "
221
- " system `finders`_ . To find a distribution package's metadata, "
222
- "``importlib.metadata`` queries the list of `meta path finders`_ on "
223
- "` sys.meta_path`_ ."
219
+ "Because package metadata is not available through:data:` sys.path` searches,"
220
+ " or package loaders directly, the metadata for a package is found through "
221
+ "import system:ref: `finders <finders-and-loaders>` . To find a distribution "
222
+ "package's metadata, ``importlib.metadata`` queries the list of:term: `meta "
223
+ "path finders <meta path finder>` on :data:` sys.meta_path`."
224
224
msgstr ""
225
225
226
226
#: ../../library/importlib.metadata.rst:219
@@ -235,9 +235,9 @@ msgid ""
235
235
"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
236
236
"interface expected of finders by Python's import system. "
237
237
"``importlib.metadata`` extends this protocol by looking for an optional "
238
- "``find_distributions`` callable on the finders from`` sys.meta_path`` and "
239
- "presents this extended interface as the ``DistributionFinder`` abstractbase "
240
- " class, which defines this abstract method::"
238
+ "``find_distributions`` callable on the finders from:data:` sys.meta_path` "
239
+ "and presents this extended interface as the ``DistributionFinder`` abstract "
240
+ "base class, which defines this abstract method::"
241
241
msgstr ""
242
242
243
243
#: ../../library/importlib.metadata.rst:237
@@ -256,16 +256,14 @@ msgid ""
256
256
"method."
257
257
msgstr ""
258
258
259
- #: ../../library/importlib.metadata.rst:260
259
+ #: ../../library/importlib.metadata.rst:254
260
260
msgid "Footnotes"
261
261
msgstr "脚注"
262
262
263
- #: ../../library/importlib.metadata.rst:261
263
+ #: ../../library/importlib.metadata.rst:255
264
264
msgid ""
265
265
"Technically, the returned distribution metadata object is an "
266
- "`email.message.Message "
267
- "<https://docs.python.org/3/library/email.message.html#email.message.EmailMessage>`_"
268
- " instance, but this is an implementation detail, and not part of the stable "
269
- "API. You should only use dictionary-like methods and syntax to access the "
270
- "metadata contents."
266
+ ":class:`email.message.EmailMessage` instance, but this is an implementation "
267
+ "detail, and not part of the stable API. You should only use dictionary-like"
268
+ " methods and syntax to access the metadata contents."
271
269
msgstr ""