@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.9\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2021-06-28 06:43 +0000\n "
14+ "POT-Creation-Date : 2021-07-18 06:55 +0000\n "
1515"PO-Revision-Date : 2019-09-01 14:41+0000\n "
1616"Last-Translator : tomo, 2019\n "
1717"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -157,7 +157,7 @@ msgid ""
157157"You can also get the full set of files contained within a distribution. The"
158158" ``files()`` function takes a distribution package name and returns all of "
159159"the files installed by this distribution. Each file object returned is a "
160- "``PackagePath``, a :class:`pathlib.Path ` derived object with additional "
160+ "``PackagePath``, a :class:`pathlib.PurePath ` derived object with additional "
161161"``dist``, ``size``, and ``hash`` properties as indicated by the metadata. "
162162"For example::"
163163msgstr ""
@@ -168,6 +168,12 @@ msgstr ""
168168
169169#: ../../library/importlib.metadata.rst:176
170170msgid ""
171+ "You can also use the ``locate`` method to get a the absolute path to the "
172+ "file::"
173+ msgstr ""
174+
175+ #: ../../library/importlib.metadata.rst:182
176+ msgid ""
171177"In the case where the metadata file listing files (RECORD or SOURCES.txt) is"
172178" missing, ``files()`` will return ``None``. The caller may wish to wrap "
173179"calls to ``files()`` in `always_iterable <https://more-"
@@ -176,51 +182,51 @@ msgid ""
176182" known to have the metadata present."
177183msgstr ""
178184
179- #: ../../library/importlib.metadata.rst:187
185+ #: ../../library/importlib.metadata.rst:193
180186msgid "Distribution requirements"
181187msgstr ""
182188
183- #: ../../library/importlib.metadata.rst:189
189+ #: ../../library/importlib.metadata.rst:195
184190msgid ""
185191"To get the full set of requirements for a distribution, use the "
186192"``requires()`` function::"
187193msgstr ""
188194
189- #: ../../library/importlib.metadata.rst:197
195+ #: ../../library/importlib.metadata.rst:203
190196msgid "Distributions"
191197msgstr ""
192198
193- #: ../../library/importlib.metadata.rst:199
199+ #: ../../library/importlib.metadata.rst:205
194200msgid ""
195201"While the above API is the most common and convenient usage, you can get all"
196202" of that information from the ``Distribution`` class. A ``Distribution`` is"
197203" an abstract object that represents the metadata for a Python package. You "
198204"can get the ``Distribution`` instance::"
199205msgstr ""
200206
201- #: ../../library/importlib.metadata.rst:207
207+ #: ../../library/importlib.metadata.rst:213
202208msgid ""
203209"Thus, an alternative way to get the version number is through the "
204210"``Distribution`` instance::"
205211msgstr ""
206212
207- #: ../../library/importlib.metadata.rst:213
213+ #: ../../library/importlib.metadata.rst:219
208214msgid ""
209215"There are all kinds of additional metadata available on the ``Distribution``"
210216" instance::"
211217msgstr ""
212218
213- #: ../../library/importlib.metadata.rst:221
219+ #: ../../library/importlib.metadata.rst:227
214220msgid ""
215221"The full set of available metadata is not described here. See :pep:`566` "
216222"for additional details."
217223msgstr ""
218224
219- #: ../../library/importlib.metadata.rst:226
225+ #: ../../library/importlib.metadata.rst:232
220226msgid "Extending the search algorithm"
221227msgstr ""
222228
223- #: ../../library/importlib.metadata.rst:228
229+ #: ../../library/importlib.metadata.rst:234
224230msgid ""
225231"Because package metadata is not available through :data:`sys.path` searches,"
226232" or package loaders directly, the metadata for a package is found through "
@@ -229,14 +235,14 @@ msgid ""
229235"path finders <meta path finder>` on :data:`sys.meta_path`."
230236msgstr ""
231237
232- #: ../../library/importlib.metadata.rst:234
238+ #: ../../library/importlib.metadata.rst:240
233239msgid ""
234240"The default ``PathFinder`` for Python includes a hook that calls into "
235241"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded "
236242"from typical file-system-based paths."
237243msgstr ""
238244
239- #: ../../library/importlib.metadata.rst:238
245+ #: ../../library/importlib.metadata.rst:244
240246msgid ""
241247"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
242248"interface expected of finders by Python's import system. "
@@ -246,14 +252,14 @@ msgid ""
246252"base class, which defines this abstract method::"
247253msgstr ""
248254
249- #: ../../library/importlib.metadata.rst:252
255+ #: ../../library/importlib.metadata.rst:258
250256msgid ""
251257"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` "
252258"properties indicating the path to search and name to match and may supply "
253259"other relevant context."
254260msgstr ""
255261
256- #: ../../library/importlib.metadata.rst:256
262+ #: ../../library/importlib.metadata.rst:262
257263msgid ""
258264"What this means in practice is that to support finding distribution package "
259265"metadata in locations other than the file system, subclass ``Distribution`` "
@@ -262,11 +268,11 @@ msgid ""
262268"method."
263269msgstr ""
264270
265- #: ../../library/importlib.metadata.rst:269
271+ #: ../../library/importlib.metadata.rst:275
266272msgid "Footnotes"
267273msgstr "脚注"
268274
269- #: ../../library/importlib.metadata.rst:270
275+ #: ../../library/importlib.metadata.rst:276
270276msgid ""
271277"Technically, the returned distribution metadata object is an "
272278":class:`email.message.EmailMessage` instance, but this is an implementation "
0 commit comments