Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6e706b0

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 57c4410 commit 6e706b0

File tree

2 files changed

+5922
-5901
lines changed

2 files changed

+5922
-5901
lines changed

library/importlib.metadata.po

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.8\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2021-04-15 17:05+0000\n"
14+
"POT-Creation-Date: 2021-04-23 17:10+0000\n"
1515
"PO-Revision-Date: 2020-05-30 12:04+0000\n"
1616
"Last-Translator: tomo, 2020\n"
1717
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -25,17 +25,17 @@ msgstr ""
2525
msgid "Using :mod:`!importlib.metadata`"
2626
msgstr ""
2727

28-
#: ../../library/importlib.metadata.rst:10
28+
#: ../../library/importlib.metadata.rst:12
2929
msgid "**Source code:** :source:`Lib/importlib/metadata.py`"
3030
msgstr ""
3131

32-
#: ../../library/importlib.metadata.rst:13
32+
#: ../../library/importlib.metadata.rst:15
3333
msgid ""
3434
"This functionality is provisional and may deviate from the usual version "
3535
"semantics of the standard library."
3636
msgstr ""
3737

38-
#: ../../library/importlib.metadata.rst:16
38+
#: ../../library/importlib.metadata.rst:18
3939
msgid ""
4040
"``importlib.metadata`` is a library that provides for access to installed "
4141
"package metadata. Built in part on Python's import system, this library "
@@ -46,7 +46,7 @@ msgid ""
4646
"efficient ``pkg_resources`` package."
4747
msgstr ""
4848

49-
#: ../../library/importlib.metadata.rst:25
49+
#: ../../library/importlib.metadata.rst:27
5050
msgid ""
5151
"By \"installed package\" we generally mean a third-party package installed "
5252
"into Python's ``site-packages`` directory via tools such as `pip "
@@ -57,60 +57,60 @@ msgid ""
5757
" Through an extension mechanism, the metadata can live almost anywhere."
5858
msgstr ""
5959

60-
#: ../../library/importlib.metadata.rst:36
60+
#: ../../library/importlib.metadata.rst:38
6161
msgid "Overview"
6262
msgstr "概要"
6363

64-
#: ../../library/importlib.metadata.rst:38
64+
#: ../../library/importlib.metadata.rst:40
6565
msgid ""
6666
"Let's say you wanted to get the version string for a package you've "
6767
"installed using ``pip``. We start by creating a virtual environment and "
6868
"installing something into it:"
6969
msgstr ""
7070

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

75-
#: ../../library/importlib.metadata.rst:57
75+
#: ../../library/importlib.metadata.rst:59
7676
msgid ""
7777
"You can also get the set of entry points keyed by group, such as "
7878
"``console_scripts``, ``distutils.commands`` and others. Each group contains"
7979
" a sequence of :ref:`EntryPoint <entry-points>` objects."
8080
msgstr ""
8181

82-
#: ../../library/importlib.metadata.rst:61
82+
#: ../../library/importlib.metadata.rst:63
8383
msgid "You can get the :ref:`metadata for a distribution <metadata>`::"
8484
msgstr ""
8585

86-
#: ../../library/importlib.metadata.rst:66
86+
#: ../../library/importlib.metadata.rst:68
8787
msgid ""
8888
"You can also get a :ref:`distribution's version number <version>`, list its "
8989
":ref:`constituent files <files>`, and get a list of the distribution's "
9090
":ref:`requirements`."
9191
msgstr ""
9292

93-
#: ../../library/importlib.metadata.rst:72
93+
#: ../../library/importlib.metadata.rst:74
9494
msgid "Functional API"
9595
msgstr "機能 API"
9696

97-
#: ../../library/importlib.metadata.rst:74
97+
#: ../../library/importlib.metadata.rst:76
9898
msgid "This package provides the following functionality via its public API."
9999
msgstr ""
100100

101-
#: ../../library/importlib.metadata.rst:80
101+
#: ../../library/importlib.metadata.rst:82
102102
msgid "Entry points"
103103
msgstr ""
104104

105-
#: ../../library/importlib.metadata.rst:82
105+
#: ../../library/importlib.metadata.rst:84
106106
msgid ""
107107
"The ``entry_points()`` function returns a dictionary of all entry points, "
108108
"keyed by group. Entry points are represented by ``EntryPoint`` instances; "
109109
"each ``EntryPoint`` has a ``.name``, ``.group``, and ``.value`` attributes "
110110
"and a ``.load()`` method to resolve the value."
111111
msgstr ""
112112

113-
#: ../../library/importlib.metadata.rst:98
113+
#: ../../library/importlib.metadata.rst:100
114114
msgid ""
115115
"The ``group`` and ``name`` are arbitrary values defined by the package "
116116
"author and usually a client will wish to resolve all entry points for a "
@@ -120,37 +120,37 @@ msgid ""
120120
"their definition, and usage."
121121
msgstr ""
122122

123-
#: ../../library/importlib.metadata.rst:108
123+
#: ../../library/importlib.metadata.rst:110
124124
msgid "Distribution metadata"
125125
msgstr ""
126126

127-
#: ../../library/importlib.metadata.rst:110
127+
#: ../../library/importlib.metadata.rst:112
128128
msgid ""
129129
"Every distribution includes some metadata, which you can extract using the "
130130
"``metadata()`` function::"
131131
msgstr ""
132132

133-
#: ../../library/importlib.metadata.rst:115
133+
#: ../../library/importlib.metadata.rst:117
134134
msgid ""
135135
"The keys of the returned data structure [#f1]_ name the metadata keywords, "
136136
"and their values are returned unparsed from the distribution metadata::"
137137
msgstr ""
138138

139-
#: ../../library/importlib.metadata.rst:125
139+
#: ../../library/importlib.metadata.rst:127
140140
msgid "Distribution versions"
141141
msgstr ""
142142

143-
#: ../../library/importlib.metadata.rst:127
143+
#: ../../library/importlib.metadata.rst:129
144144
msgid ""
145145
"The ``version()`` function is the quickest way to get a distribution's "
146146
"version number, as a string::"
147147
msgstr ""
148148

149-
#: ../../library/importlib.metadata.rst:137
149+
#: ../../library/importlib.metadata.rst:139
150150
msgid "Distribution files"
151151
msgstr ""
152152

153-
#: ../../library/importlib.metadata.rst:139
153+
#: ../../library/importlib.metadata.rst:141
154154
msgid ""
155155
"You can also get the full set of files contained within a distribution. The"
156156
" ``files()`` function takes a distribution package name and returns all of "
@@ -160,11 +160,11 @@ msgid ""
160160
"For example::"
161161
msgstr ""
162162

163-
#: ../../library/importlib.metadata.rst:155
163+
#: ../../library/importlib.metadata.rst:157
164164
msgid "Once you have the file, you can also read its contents::"
165165
msgstr ""
166166

167-
#: ../../library/importlib.metadata.rst:166
167+
#: ../../library/importlib.metadata.rst:168
168168
msgid ""
169169
"In the case where the metadata file listing files (RECORD or SOURCES.txt) is"
170170
" missing, ``files()`` will return ``None``. The caller may wish to wrap "
@@ -174,51 +174,51 @@ msgid ""
174174
" known to have the metadata present."
175175
msgstr ""
176176

177-
#: ../../library/importlib.metadata.rst:177
177+
#: ../../library/importlib.metadata.rst:179
178178
msgid "Distribution requirements"
179179
msgstr ""
180180

181-
#: ../../library/importlib.metadata.rst:179
181+
#: ../../library/importlib.metadata.rst:181
182182
msgid ""
183183
"To get the full set of requirements for a distribution, use the "
184184
"``requires()`` function::"
185185
msgstr ""
186186

187-
#: ../../library/importlib.metadata.rst:187
187+
#: ../../library/importlib.metadata.rst:189
188188
msgid "Distributions"
189189
msgstr ""
190190

191-
#: ../../library/importlib.metadata.rst:189
191+
#: ../../library/importlib.metadata.rst:191
192192
msgid ""
193193
"While the above API is the most common and convenient usage, you can get all"
194194
" of that information from the ``Distribution`` class. A ``Distribution`` is"
195195
" an abstract object that represents the metadata for a Python package. You "
196196
"can get the ``Distribution`` instance::"
197197
msgstr ""
198198

199-
#: ../../library/importlib.metadata.rst:197
199+
#: ../../library/importlib.metadata.rst:199
200200
msgid ""
201201
"Thus, an alternative way to get the version number is through the "
202202
"``Distribution`` instance::"
203203
msgstr ""
204204

205-
#: ../../library/importlib.metadata.rst:203
205+
#: ../../library/importlib.metadata.rst:205
206206
msgid ""
207207
"There are all kinds of additional metadata available on the ``Distribution``"
208208
" instance::"
209209
msgstr ""
210210

211-
#: ../../library/importlib.metadata.rst:211
211+
#: ../../library/importlib.metadata.rst:213
212212
msgid ""
213213
"The full set of available metadata is not described here. See :pep:`566` "
214214
"for additional details."
215215
msgstr ""
216216

217-
#: ../../library/importlib.metadata.rst:216
217+
#: ../../library/importlib.metadata.rst:218
218218
msgid "Extending the search algorithm"
219219
msgstr ""
220220

221-
#: ../../library/importlib.metadata.rst:218
221+
#: ../../library/importlib.metadata.rst:220
222222
msgid ""
223223
"Because package metadata is not available through :data:`sys.path` searches,"
224224
" or package loaders directly, the metadata for a package is found through "
@@ -227,14 +227,14 @@ msgid ""
227227
"path finders <meta path finder>` on :data:`sys.meta_path`."
228228
msgstr ""
229229

230-
#: ../../library/importlib.metadata.rst:224
230+
#: ../../library/importlib.metadata.rst:226
231231
msgid ""
232232
"The default ``PathFinder`` for Python includes a hook that calls into "
233233
"``importlib.metadata.MetadataPathFinder`` for finding distributions loaded "
234234
"from typical file-system-based paths."
235235
msgstr ""
236236

237-
#: ../../library/importlib.metadata.rst:228
237+
#: ../../library/importlib.metadata.rst:230
238238
msgid ""
239239
"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the "
240240
"interface expected of finders by Python's import system. "
@@ -244,14 +244,14 @@ msgid ""
244244
"base class, which defines this abstract method::"
245245
msgstr ""
246246

247-
#: ../../library/importlib.metadata.rst:242
247+
#: ../../library/importlib.metadata.rst:244
248248
msgid ""
249249
"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` "
250250
"properties indicating the path to search and names to match and may supply "
251251
"other relevant context."
252252
msgstr ""
253253

254-
#: ../../library/importlib.metadata.rst:246
254+
#: ../../library/importlib.metadata.rst:248
255255
msgid ""
256256
"What this means in practice is that to support finding distribution package "
257257
"metadata in locations other than the file system, subclass ``Distribution`` "
@@ -260,11 +260,11 @@ msgid ""
260260
"method."
261261
msgstr ""
262262

263-
#: ../../library/importlib.metadata.rst:259
263+
#: ../../library/importlib.metadata.rst:261
264264
msgid "Footnotes"
265265
msgstr "脚注"
266266

267-
#: ../../library/importlib.metadata.rst:260
267+
#: ../../library/importlib.metadata.rst:262
268268
msgid ""
269269
"Technically, the returned distribution metadata object is an "
270270
":class:`email.message.EmailMessage` instance, but this is an implementation "

0 commit comments

Comments
 (0)