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

Skip to content

Commit 9b4a99f

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent f3e21cc commit 9b4a99f

File tree

3 files changed

+6853
-6832
lines changed

3 files changed

+6853
-6832
lines changed

howto/logging.po

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Mukai Shohei <[email protected]>, 2018
1313
# 秘湯 <[email protected]>, 2020
1414
# tomo, 2020
15-
# mollinaca, 2020
15+
# mollinaca, 2021
1616
#
1717
#, fuzzy
1818
msgid ""
@@ -21,7 +21,7 @@ msgstr ""
2121
"Report-Msgid-Bugs-To: \n"
2222
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2323
"PO-Revision-Date: 2017-02-16 17:45+0000\n"
24-
"Last-Translator: mollinaca, 2020\n"
24+
"Last-Translator: mollinaca, 2021\n"
2525
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2626
"MIME-Version: 1.0\n"
2727
"Content-Type: text/plain; charset=UTF-8\n"
@@ -355,7 +355,7 @@ msgstr "プログラムが複数のモジュールでできているなら、そ
355355

356356
#: ../../howto/logging.rst:224
357357
msgid "If you run *myapp.py*, you should see this in *myapp.log*:"
358-
msgstr "*myapp.py* を実行すれば、*myapp.log*でログが確認できます:"
358+
msgstr "*myapp.py* を実行すれば、 *myapp.log* でログが確認できます:"
359359

360360
#: ../../howto/logging.rst:232
361361
msgid ""
@@ -449,7 +449,8 @@ msgid ""
449449
":rfc:`3339`. If you need more control over the formatting of the date/time, "
450450
"provide a *datefmt* argument to ``basicConfig``, as in this example::"
451451
msgstr ""
452-
"デフォルトの日付と時間のフォーマットは、ISO8601の規格で表示されます(上記の表示結果)。日付と時間のフォーマットを変更した場合は、以下の例の様に、``basicConfig``関数の*datefmt*引数に指定する必要があります:"
452+
"デフォルトの日付と時間のフォーマットは、ISO8601の規格で表示されます(上記の表示結果)。日付と時間のフォーマットを変更した場合は、以下の例の様に、"
453+
" ``basicConfig`` 関数の *datefmt* 引数に指定する必要があります:"
453454

454455
#: ../../howto/logging.rst:316
455456
msgid "which would display something like this:"

library/importlib.metadata.po

Lines changed: 23 additions & 17 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: 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::"
163163
msgstr ""
@@ -168,6 +168,12 @@ msgstr ""
168168

169169
#: ../../library/importlib.metadata.rst:176
170170
msgid ""
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."
177183
msgstr ""
178184

179-
#: ../../library/importlib.metadata.rst:187
185+
#: ../../library/importlib.metadata.rst:193
180186
msgid "Distribution requirements"
181187
msgstr ""
182188

183-
#: ../../library/importlib.metadata.rst:189
189+
#: ../../library/importlib.metadata.rst:195
184190
msgid ""
185191
"To get the full set of requirements for a distribution, use the "
186192
"``requires()`` function::"
187193
msgstr ""
188194

189-
#: ../../library/importlib.metadata.rst:197
195+
#: ../../library/importlib.metadata.rst:203
190196
msgid "Distributions"
191197
msgstr ""
192198

193-
#: ../../library/importlib.metadata.rst:199
199+
#: ../../library/importlib.metadata.rst:205
194200
msgid ""
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::"
199205
msgstr ""
200206

201-
#: ../../library/importlib.metadata.rst:207
207+
#: ../../library/importlib.metadata.rst:213
202208
msgid ""
203209
"Thus, an alternative way to get the version number is through the "
204210
"``Distribution`` instance::"
205211
msgstr ""
206212

207-
#: ../../library/importlib.metadata.rst:213
213+
#: ../../library/importlib.metadata.rst:219
208214
msgid ""
209215
"There are all kinds of additional metadata available on the ``Distribution``"
210216
" instance::"
211217
msgstr ""
212218

213-
#: ../../library/importlib.metadata.rst:221
219+
#: ../../library/importlib.metadata.rst:227
214220
msgid ""
215221
"The full set of available metadata is not described here. See :pep:`566` "
216222
"for additional details."
217223
msgstr ""
218224

219-
#: ../../library/importlib.metadata.rst:226
225+
#: ../../library/importlib.metadata.rst:232
220226
msgid "Extending the search algorithm"
221227
msgstr ""
222228

223-
#: ../../library/importlib.metadata.rst:228
229+
#: ../../library/importlib.metadata.rst:234
224230
msgid ""
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`."
230236
msgstr ""
231237

232-
#: ../../library/importlib.metadata.rst:234
238+
#: ../../library/importlib.metadata.rst:240
233239
msgid ""
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."
237243
msgstr ""
238244

239-
#: ../../library/importlib.metadata.rst:238
245+
#: ../../library/importlib.metadata.rst:244
240246
msgid ""
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::"
247253
msgstr ""
248254

249-
#: ../../library/importlib.metadata.rst:252
255+
#: ../../library/importlib.metadata.rst:258
250256
msgid ""
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."
254260
msgstr ""
255261

256-
#: ../../library/importlib.metadata.rst:256
262+
#: ../../library/importlib.metadata.rst:262
257263
msgid ""
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."
263269
msgstr ""
264270

265-
#: ../../library/importlib.metadata.rst:269
271+
#: ../../library/importlib.metadata.rst:275
266272
msgid "Footnotes"
267273
msgstr "脚注"
268274

269-
#: ../../library/importlib.metadata.rst:270
275+
#: ../../library/importlib.metadata.rst:276
270276
msgid ""
271277
"Technically, the returned distribution metadata object is an "
272278
":class:`email.message.EmailMessage` instance, but this is an implementation "

0 commit comments

Comments
 (0)