Skip to content

Commit ad92f5d

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 940487d commit ad92f5d

File tree

2 files changed

+6209
-6188
lines changed

2 files changed

+6209
-6188
lines changed

library/importlib.metadata.po

Lines changed: 31 additions & 29 deletions
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: 2020-05-31 09:25+0000\n"
14+
"POT-Creation-Date: 2020-06-06 03:16+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"
@@ -103,50 +103,52 @@ msgid ""
103103
"The ``entry_points()`` function returns a dictionary of all entry points, "
104104
"keyed by group. Entry points are represented by ``EntryPoint`` instances; "
105105
"each ``EntryPoint`` has a ``.name``, ``.group``, and ``.value`` attributes "
106-
"and a ``.load()`` method to resolve the value."
106+
"and a ``.load()`` method to resolve the value. There are also ``.module``, "
107+
"``.attr``, and ``.extras`` attributes for getting the components of the "
108+
"``.value`` attribute::"
107109
msgstr ""
108110

109-
#: ../../library/importlib.metadata.rst:93
111+
#: ../../library/importlib.metadata.rst:101
110112
msgid ""
111113
"The ``group`` and ``name`` are arbitrary values defined by the package "
112114
"author and usually a client will wish to resolve all entry points for a "
113115
"particular group. Read `the setuptools docs "
114116
"<https://setuptools.readthedocs.io/en/latest/setuptools.html#dynamic-"
115-
"discovery-of-services-and-plugins>`_ for more information on entrypoints, "
117+
"discovery-of-services-and-plugins>`_ for more information on entry points, "
116118
"their definition, and usage."
117119
msgstr ""
118120

119-
#: ../../library/importlib.metadata.rst:103
121+
#: ../../library/importlib.metadata.rst:111
120122
msgid "Distribution metadata"
121123
msgstr ""
122124

123-
#: ../../library/importlib.metadata.rst:105
125+
#: ../../library/importlib.metadata.rst:113
124126
msgid ""
125127
"Every distribution includes some metadata, which you can extract using the "
126128
"``metadata()`` function::"
127129
msgstr ""
128130

129-
#: ../../library/importlib.metadata.rst:110
131+
#: ../../library/importlib.metadata.rst:118
130132
msgid ""
131133
"The keys of the returned data structure [#f1]_ name the metadata keywords, "
132134
"and their values are returned unparsed from the distribution metadata::"
133135
msgstr ""
134136

135-
#: ../../library/importlib.metadata.rst:120
137+
#: ../../library/importlib.metadata.rst:128
136138
msgid "Distribution versions"
137139
msgstr ""
138140

139-
#: ../../library/importlib.metadata.rst:122
141+
#: ../../library/importlib.metadata.rst:130
140142
msgid ""
141143
"The ``version()`` function is the quickest way to get a distribution's "
142144
"version number, as a string::"
143145
msgstr ""
144146

145-
#: ../../library/importlib.metadata.rst:132
147+
#: ../../library/importlib.metadata.rst:140
146148
msgid "Distribution files"
147149
msgstr ""
148150

149-
#: ../../library/importlib.metadata.rst:134
151+
#: ../../library/importlib.metadata.rst:142
150152
msgid ""
151153
"You can also get the full set of files contained within a distribution. The"
152154
" ``files()`` function takes a distribution package name and returns all of "
@@ -156,11 +158,11 @@ msgid ""
156158
"For example::"
157159
msgstr ""
158160

159-
#: ../../library/importlib.metadata.rst:150
161+
#: ../../library/importlib.metadata.rst:158
160162
msgid "Once you have the file, you can also read its contents::"
161163
msgstr ""
162164

163-
#: ../../library/importlib.metadata.rst:161
165+
#: ../../library/importlib.metadata.rst:169
164166
msgid ""
165167
"In the case where the metadata file listing files (RECORD or SOURCES.txt) is"
166168
" missing, ``files()`` will return ``None``. The caller may wish to wrap "
@@ -170,51 +172,51 @@ msgid ""
170172
" known to have the metadata present."
171173
msgstr ""
172174

173-
#: ../../library/importlib.metadata.rst:172
175+
#: ../../library/importlib.metadata.rst:180
174176
msgid "Distribution requirements"
175177
msgstr ""
176178

177-
#: ../../library/importlib.metadata.rst:174
179+
#: ../../library/importlib.metadata.rst:182
178180
msgid ""
179181
"To get the full set of requirements for a distribution, use the "
180182
"``requires()`` function::"
181183
msgstr ""
182184

183-
#: ../../library/importlib.metadata.rst:182
185+
#: ../../library/importlib.metadata.rst:190
184186
msgid "Distributions"
185187
msgstr ""
186188

187-
#: ../../library/importlib.metadata.rst:184
189+
#: ../../library/importlib.metadata.rst:192
188190
msgid ""
189191
"While the above API is the most common and convenient usage, you can get all"
190192
" of that information from the ``Distribution`` class. A ``Distribution`` is"
191193
" an abstract object that represents the metadata for a Python package. You "
192194
"can get the ``Distribution`` instance::"
193195
msgstr ""
194196

195-
#: ../../library/importlib.metadata.rst:192
197+
#: ../../library/importlib.metadata.rst:200
196198
msgid ""
197199
"Thus, an alternative way to get the version number is through the "
198200
"``Distribution`` instance::"
199201
msgstr ""
200202

201-
#: ../../library/importlib.metadata.rst:198
203+
#: ../../library/importlib.metadata.rst:206
202204
msgid ""
203205
"There are all kinds of additional metadata available on the ``Distribution``"
204206
" instance::"
205207
msgstr ""
206208

207-
#: ../../library/importlib.metadata.rst:206
209+
#: ../../library/importlib.metadata.rst:214
208210
msgid ""
209211
"The full set of available metadata is not described here. See :pep:`566` "
210212
"for additional details."
211213
msgstr ""
212214

213-
#: ../../library/importlib.metadata.rst:211
215+
#: ../../library/importlib.metadata.rst:219
214216
msgid "Extending the search algorithm"
215217
msgstr ""
216218

217-
#: ../../library/importlib.metadata.rst:213
219+
#: ../../library/importlib.metadata.rst:221
218220
msgid ""
219221
"Because package metadata is not available through :data:`sys.path` searches,"
220222
" or package loaders directly, the metadata for a package is found through "
@@ -223,14 +225,14 @@ msgid ""
223225
"path finders <meta path finder>` on :data:`sys.meta_path`."
224226
msgstr ""
225227

226-
#: ../../library/importlib.metadata.rst:219
228+
#: ../../library/importlib.metadata.rst:227
227229
msgid ""
228230
"The default ``PathFinder`` for Python includes a hook that calls into "
229231
"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded "
230232
"from typical file-system-based paths."
231233
msgstr ""
232234

233-
#: ../../library/importlib.metadata.rst:223
235+
#: ../../library/importlib.metadata.rst:231
234236
msgid ""
235237
"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
236238
"interface expected of finders by Python's import system. "
@@ -240,14 +242,14 @@ msgid ""
240242
"base class, which defines this abstract method::"
241243
msgstr ""
242244

243-
#: ../../library/importlib.metadata.rst:237
245+
#: ../../library/importlib.metadata.rst:245
244246
msgid ""
245247
"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` "
246-
"properties indicating the path to search and names to match and may supply "
248+
"properties indicating the path to search and name to match and may supply "
247249
"other relevant context."
248250
msgstr ""
249251

250-
#: ../../library/importlib.metadata.rst:241
252+
#: ../../library/importlib.metadata.rst:249
251253
msgid ""
252254
"What this means in practice is that to support finding distribution package "
253255
"metadata in locations other than the file system, subclass ``Distribution`` "
@@ -256,11 +258,11 @@ msgid ""
256258
"method."
257259
msgstr ""
258260

259-
#: ../../library/importlib.metadata.rst:254
261+
#: ../../library/importlib.metadata.rst:262
260262
msgid "Footnotes"
261263
msgstr "脚注"
262264

263-
#: ../../library/importlib.metadata.rst:255
265+
#: ../../library/importlib.metadata.rst:263
264266
msgid ""
265267
"Technically, the returned distribution metadata object is an "
266268
":class:`email.message.EmailMessage` instance, but this is an implementation "

0 commit comments

Comments
 (0)