@@ -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-04-24 06:08 +0000\n "
14+ "POT-Creation-Date : 2021-05-20 06:27 +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 "
@@ -25,13 +25,13 @@ msgstr ""
2525msgid "Using :mod:`!importlib.metadata`"
2626msgstr ""
2727
28- #: ../../library/importlib.metadata.rst:10
28+ #: ../../library/importlib.metadata.rst:13
2929msgid ""
3030"This functionality is provisional and may deviate from the usual version "
3131"semantics of the standard library."
3232msgstr ""
3333
34- #: ../../library/importlib.metadata.rst:13
34+ #: ../../library/importlib.metadata.rst:16
3535msgid ""
3636"``importlib.metadata`` is a library that provides for access to installed "
3737"package metadata. Built in part on Python's import system, this library "
@@ -42,7 +42,7 @@ msgid ""
4242"efficient ``pkg_resources`` package."
4343msgstr ""
4444
45- #: ../../library/importlib.metadata.rst:22
45+ #: ../../library/importlib.metadata.rst:25
4646msgid ""
4747"By \" installed package\" we generally mean a third-party package installed "
4848"into Python's ``site-packages`` directory via tools such as `pip "
@@ -53,52 +53,52 @@ msgid ""
5353" Through an extension mechanism, the metadata can live almost anywhere."
5454msgstr ""
5555
56- #: ../../library/importlib.metadata.rst:33
56+ #: ../../library/importlib.metadata.rst:36
5757msgid "Overview"
5858msgstr "概要"
5959
60- #: ../../library/importlib.metadata.rst:35
60+ #: ../../library/importlib.metadata.rst:38
6161msgid ""
6262"Let's say you wanted to get the version string for a package you've "
6363"installed using ``pip``. We start by creating a virtual environment and "
6464"installing something into it:"
6565msgstr ""
6666
67- #: ../../library/importlib.metadata.rst:45
67+ #: ../../library/importlib.metadata.rst:48
6868msgid "You can get the version string for ``wheel`` by running the following:"
6969msgstr ""
7070
71- #: ../../library/importlib.metadata.rst:54
71+ #: ../../library/importlib.metadata.rst:57
7272msgid ""
7373"You can also get the set of entry points keyed by group, such as "
7474"``console_scripts``, ``distutils.commands`` and others. Each group contains"
7575" a sequence of :ref:`EntryPoint <entry-points>` objects."
7676msgstr ""
7777
78- #: ../../library/importlib.metadata.rst:58
78+ #: ../../library/importlib.metadata.rst:61
7979msgid "You can get the :ref:`metadata for a distribution <metadata>`::"
8080msgstr ""
8181
82- #: ../../library/importlib.metadata.rst:63
82+ #: ../../library/importlib.metadata.rst:66
8383msgid ""
8484"You can also get a :ref:`distribution's version number <version>`, list its "
8585":ref:`constituent files <files>`, and get a list of the distribution's "
8686":ref:`requirements`."
8787msgstr ""
8888
89- #: ../../library/importlib.metadata.rst:69
89+ #: ../../library/importlib.metadata.rst:72
9090msgid "Functional API"
9191msgstr "機能 API"
9292
93- #: ../../library/importlib.metadata.rst:71
93+ #: ../../library/importlib.metadata.rst:74
9494msgid "This package provides the following functionality via its public API."
9595msgstr ""
9696
97- #: ../../library/importlib.metadata.rst:77
97+ #: ../../library/importlib.metadata.rst:80
9898msgid "Entry points"
9999msgstr ""
100100
101- #: ../../library/importlib.metadata.rst:79
101+ #: ../../library/importlib.metadata.rst:82
102102msgid ""
103103"The ``entry_points()`` function returns a dictionary of all entry points, "
104104"keyed by group. Entry points are represented by ``EntryPoint`` instances; "
@@ -108,7 +108,7 @@ msgid ""
108108"``.value`` attribute::"
109109msgstr ""
110110
111- #: ../../library/importlib.metadata.rst:103
111+ #: ../../library/importlib.metadata.rst:106
112112msgid ""
113113"The ``group`` and ``name`` are arbitrary values defined by the package "
114114"author and usually a client will wish to resolve all entry points for a "
@@ -118,37 +118,37 @@ msgid ""
118118"their definition, and usage."
119119msgstr ""
120120
121- #: ../../library/importlib.metadata.rst:113
121+ #: ../../library/importlib.metadata.rst:116
122122msgid "Distribution metadata"
123123msgstr ""
124124
125- #: ../../library/importlib.metadata.rst:115
125+ #: ../../library/importlib.metadata.rst:118
126126msgid ""
127127"Every distribution includes some metadata, which you can extract using the "
128128"``metadata()`` function::"
129129msgstr ""
130130
131- #: ../../library/importlib.metadata.rst:120
131+ #: ../../library/importlib.metadata.rst:123
132132msgid ""
133133"The keys of the returned data structure [#f1]_ name the metadata keywords, "
134134"and their values are returned unparsed from the distribution metadata::"
135135msgstr ""
136136
137- #: ../../library/importlib.metadata.rst:130
137+ #: ../../library/importlib.metadata.rst:133
138138msgid "Distribution versions"
139139msgstr ""
140140
141- #: ../../library/importlib.metadata.rst:132
141+ #: ../../library/importlib.metadata.rst:135
142142msgid ""
143143"The ``version()`` function is the quickest way to get a distribution's "
144144"version number, as a string::"
145145msgstr ""
146146
147- #: ../../library/importlib.metadata.rst:142
147+ #: ../../library/importlib.metadata.rst:145
148148msgid "Distribution files"
149149msgstr ""
150150
151- #: ../../library/importlib.metadata.rst:144
151+ #: ../../library/importlib.metadata.rst:147
152152msgid ""
153153"You can also get the full set of files contained within a distribution. The"
154154" ``files()`` function takes a distribution package name and returns all of "
@@ -158,11 +158,11 @@ msgid ""
158158"For example::"
159159msgstr ""
160160
161- #: ../../library/importlib.metadata.rst:160
161+ #: ../../library/importlib.metadata.rst:163
162162msgid "Once you have the file, you can also read its contents::"
163163msgstr ""
164164
165- #: ../../library/importlib.metadata.rst:171
165+ #: ../../library/importlib.metadata.rst:174
166166msgid ""
167167"In the case where the metadata file listing files (RECORD or SOURCES.txt) is"
168168" missing, ``files()`` will return ``None``. The caller may wish to wrap "
@@ -172,51 +172,51 @@ msgid ""
172172" known to have the metadata present."
173173msgstr ""
174174
175- #: ../../library/importlib.metadata.rst:182
175+ #: ../../library/importlib.metadata.rst:185
176176msgid "Distribution requirements"
177177msgstr ""
178178
179- #: ../../library/importlib.metadata.rst:184
179+ #: ../../library/importlib.metadata.rst:187
180180msgid ""
181181"To get the full set of requirements for a distribution, use the "
182182"``requires()`` function::"
183183msgstr ""
184184
185- #: ../../library/importlib.metadata.rst:192
185+ #: ../../library/importlib.metadata.rst:195
186186msgid "Distributions"
187187msgstr ""
188188
189- #: ../../library/importlib.metadata.rst:194
189+ #: ../../library/importlib.metadata.rst:197
190190msgid ""
191191"While the above API is the most common and convenient usage, you can get all"
192192" of that information from the ``Distribution`` class. A ``Distribution`` is"
193193" an abstract object that represents the metadata for a Python package. You "
194194"can get the ``Distribution`` instance::"
195195msgstr ""
196196
197- #: ../../library/importlib.metadata.rst:202
197+ #: ../../library/importlib.metadata.rst:205
198198msgid ""
199199"Thus, an alternative way to get the version number is through the "
200200"``Distribution`` instance::"
201201msgstr ""
202202
203- #: ../../library/importlib.metadata.rst:208
203+ #: ../../library/importlib.metadata.rst:211
204204msgid ""
205205"There are all kinds of additional metadata available on the ``Distribution``"
206206" instance::"
207207msgstr ""
208208
209- #: ../../library/importlib.metadata.rst:216
209+ #: ../../library/importlib.metadata.rst:219
210210msgid ""
211211"The full set of available metadata is not described here. See :pep:`566` "
212212"for additional details."
213213msgstr ""
214214
215- #: ../../library/importlib.metadata.rst:221
215+ #: ../../library/importlib.metadata.rst:224
216216msgid "Extending the search algorithm"
217217msgstr ""
218218
219- #: ../../library/importlib.metadata.rst:223
219+ #: ../../library/importlib.metadata.rst:226
220220msgid ""
221221"Because package metadata is not available through :data:`sys.path` searches,"
222222" or package loaders directly, the metadata for a package is found through "
@@ -225,14 +225,14 @@ msgid ""
225225"path finders <meta path finder>` on :data:`sys.meta_path`."
226226msgstr ""
227227
228- #: ../../library/importlib.metadata.rst:229
228+ #: ../../library/importlib.metadata.rst:232
229229msgid ""
230230"The default ``PathFinder`` for Python includes a hook that calls into "
231231"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded "
232232"from typical file-system-based paths."
233233msgstr ""
234234
235- #: ../../library/importlib.metadata.rst:233
235+ #: ../../library/importlib.metadata.rst:236
236236msgid ""
237237"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
238238"interface expected of finders by Python's import system. "
@@ -242,14 +242,14 @@ msgid ""
242242"base class, which defines this abstract method::"
243243msgstr ""
244244
245- #: ../../library/importlib.metadata.rst:247
245+ #: ../../library/importlib.metadata.rst:250
246246msgid ""
247247"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` "
248248"properties indicating the path to search and name to match and may supply "
249249"other relevant context."
250250msgstr ""
251251
252- #: ../../library/importlib.metadata.rst:251
252+ #: ../../library/importlib.metadata.rst:254
253253msgid ""
254254"What this means in practice is that to support finding distribution package "
255255"metadata in locations other than the file system, subclass ``Distribution`` "
@@ -258,11 +258,11 @@ msgid ""
258258"method."
259259msgstr ""
260260
261- #: ../../library/importlib.metadata.rst:264
261+ #: ../../library/importlib.metadata.rst:267
262262msgid "Footnotes"
263263msgstr "脚注"
264264
265- #: ../../library/importlib.metadata.rst:265
265+ #: ../../library/importlib.metadata.rst:268
266266msgid ""
267267"Technically, the returned distribution metadata object is an "
268268":class:`email.message.EmailMessage` instance, but this is an implementation "
0 commit comments