Skip to content

Commit f2857d0

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 6b9ef95 commit f2857d0

File tree

3 files changed

+6946
-6939
lines changed

3 files changed

+6946
-6939
lines changed

library/importlib.metadata.po

+43-39
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.9\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2021-05-20 06:27+0000\n"
14+
"POT-Creation-Date: 2021-06-28 06:43+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,17 @@ msgstr ""
2525
msgid "Using :mod:`!importlib.metadata`"
2626
msgstr ""
2727

28-
#: ../../library/importlib.metadata.rst:13
28+
#: ../../library/importlib.metadata.rst:10
29+
msgid "**Source code:** :source:`Lib/importlib/metadata.py`"
30+
msgstr ""
31+
32+
#: ../../library/importlib.metadata.rst:15
2933
msgid ""
3034
"This functionality is provisional and may deviate from the usual version "
3135
"semantics of the standard library."
3236
msgstr ""
3337

34-
#: ../../library/importlib.metadata.rst:16
38+
#: ../../library/importlib.metadata.rst:18
3539
msgid ""
3640
"``importlib.metadata`` is a library that provides for access to installed "
3741
"package metadata. Built in part on Python's import system, this library "
@@ -42,7 +46,7 @@ msgid ""
4246
"efficient ``pkg_resources`` package."
4347
msgstr ""
4448

45-
#: ../../library/importlib.metadata.rst:25
49+
#: ../../library/importlib.metadata.rst:27
4650
msgid ""
4751
"By \"installed package\" we generally mean a third-party package installed "
4852
"into Python's ``site-packages`` directory via tools such as `pip "
@@ -53,52 +57,52 @@ msgid ""
5357
" Through an extension mechanism, the metadata can live almost anywhere."
5458
msgstr ""
5559

56-
#: ../../library/importlib.metadata.rst:36
60+
#: ../../library/importlib.metadata.rst:38
5761
msgid "Overview"
5862
msgstr "概要"
5963

60-
#: ../../library/importlib.metadata.rst:38
64+
#: ../../library/importlib.metadata.rst:40
6165
msgid ""
6266
"Let's say you wanted to get the version string for a package you've "
6367
"installed using ``pip``. We start by creating a virtual environment and "
6468
"installing something into it:"
6569
msgstr ""
6670

67-
#: ../../library/importlib.metadata.rst:48
71+
#: ../../library/importlib.metadata.rst:50
6872
msgid "You can get the version string for ``wheel`` by running the following:"
6973
msgstr ""
7074

71-
#: ../../library/importlib.metadata.rst:57
75+
#: ../../library/importlib.metadata.rst:59
7276
msgid ""
7377
"You can also get the set of entry points keyed by group, such as "
7478
"``console_scripts``, ``distutils.commands`` and others. Each group contains"
7579
" a sequence of :ref:`EntryPoint <entry-points>` objects."
7680
msgstr ""
7781

78-
#: ../../library/importlib.metadata.rst:61
82+
#: ../../library/importlib.metadata.rst:63
7983
msgid "You can get the :ref:`metadata for a distribution <metadata>`::"
8084
msgstr ""
8185

82-
#: ../../library/importlib.metadata.rst:66
86+
#: ../../library/importlib.metadata.rst:68
8387
msgid ""
8488
"You can also get a :ref:`distribution's version number <version>`, list its "
8589
":ref:`constituent files <files>`, and get a list of the distribution's "
8690
":ref:`requirements`."
8791
msgstr ""
8892

89-
#: ../../library/importlib.metadata.rst:72
93+
#: ../../library/importlib.metadata.rst:74
9094
msgid "Functional API"
9195
msgstr "機能 API"
9296

93-
#: ../../library/importlib.metadata.rst:74
97+
#: ../../library/importlib.metadata.rst:76
9498
msgid "This package provides the following functionality via its public API."
9599
msgstr ""
96100

97-
#: ../../library/importlib.metadata.rst:80
101+
#: ../../library/importlib.metadata.rst:82
98102
msgid "Entry points"
99103
msgstr ""
100104

101-
#: ../../library/importlib.metadata.rst:82
105+
#: ../../library/importlib.metadata.rst:84
102106
msgid ""
103107
"The ``entry_points()`` function returns a dictionary of all entry points, "
104108
"keyed by group. Entry points are represented by ``EntryPoint`` instances; "
@@ -108,7 +112,7 @@ msgid ""
108112
"``.value`` attribute::"
109113
msgstr ""
110114

111-
#: ../../library/importlib.metadata.rst:106
115+
#: ../../library/importlib.metadata.rst:108
112116
msgid ""
113117
"The ``group`` and ``name`` are arbitrary values defined by the package "
114118
"author and usually a client will wish to resolve all entry points for a "
@@ -118,37 +122,37 @@ msgid ""
118122
"their definition, and usage."
119123
msgstr ""
120124

121-
#: ../../library/importlib.metadata.rst:116
125+
#: ../../library/importlib.metadata.rst:118
122126
msgid "Distribution metadata"
123127
msgstr ""
124128

125-
#: ../../library/importlib.metadata.rst:118
129+
#: ../../library/importlib.metadata.rst:120
126130
msgid ""
127131
"Every distribution includes some metadata, which you can extract using the "
128132
"``metadata()`` function::"
129133
msgstr ""
130134

131-
#: ../../library/importlib.metadata.rst:123
135+
#: ../../library/importlib.metadata.rst:125
132136
msgid ""
133137
"The keys of the returned data structure [#f1]_ name the metadata keywords, "
134138
"and their values are returned unparsed from the distribution metadata::"
135139
msgstr ""
136140

137-
#: ../../library/importlib.metadata.rst:133
141+
#: ../../library/importlib.metadata.rst:135
138142
msgid "Distribution versions"
139143
msgstr ""
140144

141-
#: ../../library/importlib.metadata.rst:135
145+
#: ../../library/importlib.metadata.rst:137
142146
msgid ""
143147
"The ``version()`` function is the quickest way to get a distribution's "
144148
"version number, as a string::"
145149
msgstr ""
146150

147-
#: ../../library/importlib.metadata.rst:145
151+
#: ../../library/importlib.metadata.rst:147
148152
msgid "Distribution files"
149153
msgstr ""
150154

151-
#: ../../library/importlib.metadata.rst:147
155+
#: ../../library/importlib.metadata.rst:149
152156
msgid ""
153157
"You can also get the full set of files contained within a distribution. The"
154158
" ``files()`` function takes a distribution package name and returns all of "
@@ -158,11 +162,11 @@ msgid ""
158162
"For example::"
159163
msgstr ""
160164

161-
#: ../../library/importlib.metadata.rst:163
165+
#: ../../library/importlib.metadata.rst:165
162166
msgid "Once you have the file, you can also read its contents::"
163167
msgstr ""
164168

165-
#: ../../library/importlib.metadata.rst:174
169+
#: ../../library/importlib.metadata.rst:176
166170
msgid ""
167171
"In the case where the metadata file listing files (RECORD or SOURCES.txt) is"
168172
" missing, ``files()`` will return ``None``. The caller may wish to wrap "
@@ -172,51 +176,51 @@ msgid ""
172176
" known to have the metadata present."
173177
msgstr ""
174178

175-
#: ../../library/importlib.metadata.rst:185
179+
#: ../../library/importlib.metadata.rst:187
176180
msgid "Distribution requirements"
177181
msgstr ""
178182

179-
#: ../../library/importlib.metadata.rst:187
183+
#: ../../library/importlib.metadata.rst:189
180184
msgid ""
181185
"To get the full set of requirements for a distribution, use the "
182186
"``requires()`` function::"
183187
msgstr ""
184188

185-
#: ../../library/importlib.metadata.rst:195
189+
#: ../../library/importlib.metadata.rst:197
186190
msgid "Distributions"
187191
msgstr ""
188192

189-
#: ../../library/importlib.metadata.rst:197
193+
#: ../../library/importlib.metadata.rst:199
190194
msgid ""
191195
"While the above API is the most common and convenient usage, you can get all"
192196
" of that information from the ``Distribution`` class. A ``Distribution`` is"
193197
" an abstract object that represents the metadata for a Python package. You "
194198
"can get the ``Distribution`` instance::"
195199
msgstr ""
196200

197-
#: ../../library/importlib.metadata.rst:205
201+
#: ../../library/importlib.metadata.rst:207
198202
msgid ""
199203
"Thus, an alternative way to get the version number is through the "
200204
"``Distribution`` instance::"
201205
msgstr ""
202206

203-
#: ../../library/importlib.metadata.rst:211
207+
#: ../../library/importlib.metadata.rst:213
204208
msgid ""
205209
"There are all kinds of additional metadata available on the ``Distribution``"
206210
" instance::"
207211
msgstr ""
208212

209-
#: ../../library/importlib.metadata.rst:219
213+
#: ../../library/importlib.metadata.rst:221
210214
msgid ""
211215
"The full set of available metadata is not described here. See :pep:`566` "
212216
"for additional details."
213217
msgstr ""
214218

215-
#: ../../library/importlib.metadata.rst:224
219+
#: ../../library/importlib.metadata.rst:226
216220
msgid "Extending the search algorithm"
217221
msgstr ""
218222

219-
#: ../../library/importlib.metadata.rst:226
223+
#: ../../library/importlib.metadata.rst:228
220224
msgid ""
221225
"Because package metadata is not available through :data:`sys.path` searches,"
222226
" or package loaders directly, the metadata for a package is found through "
@@ -225,14 +229,14 @@ msgid ""
225229
"path finders <meta path finder>` on :data:`sys.meta_path`."
226230
msgstr ""
227231

228-
#: ../../library/importlib.metadata.rst:232
232+
#: ../../library/importlib.metadata.rst:234
229233
msgid ""
230234
"The default ``PathFinder`` for Python includes a hook that calls into "
231235
"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded "
232236
"from typical file-system-based paths."
233237
msgstr ""
234238

235-
#: ../../library/importlib.metadata.rst:236
239+
#: ../../library/importlib.metadata.rst:238
236240
msgid ""
237241
"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
238242
"interface expected of finders by Python's import system. "
@@ -242,14 +246,14 @@ msgid ""
242246
"base class, which defines this abstract method::"
243247
msgstr ""
244248

245-
#: ../../library/importlib.metadata.rst:250
249+
#: ../../library/importlib.metadata.rst:252
246250
msgid ""
247251
"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` "
248252
"properties indicating the path to search and name to match and may supply "
249253
"other relevant context."
250254
msgstr ""
251255

252-
#: ../../library/importlib.metadata.rst:254
256+
#: ../../library/importlib.metadata.rst:256
253257
msgid ""
254258
"What this means in practice is that to support finding distribution package "
255259
"metadata in locations other than the file system, subclass ``Distribution`` "
@@ -258,11 +262,11 @@ msgid ""
258262
"method."
259263
msgstr ""
260264

261-
#: ../../library/importlib.metadata.rst:267
265+
#: ../../library/importlib.metadata.rst:269
262266
msgid "Footnotes"
263267
msgstr "脚注"
264268

265-
#: ../../library/importlib.metadata.rst:268
269+
#: ../../library/importlib.metadata.rst:270
266270
msgid ""
267271
"Technically, the returned distribution metadata object is an "
268272
":class:`email.message.EmailMessage` instance, but this is an implementation "

0 commit comments

Comments
 (0)