Skip to content

Commit 88f63a7

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 80e3917 commit 88f63a7

File tree

8 files changed

+7012
-6934
lines changed

8 files changed

+7012
-6934
lines changed

library/asyncio-eventloop.po

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ msgid ""
1919
msgstr ""
2020
"Project-Id-Version: Python 3.9\n"
2121
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
22+
"POT-Creation-Date: 2021-05-20 06:27+0000\n"
2323
"PO-Revision-Date: 2017-02-16 17:48+0000\n"
2424
"Last-Translator: Naoki Nakamura <agent@sohzoh.com>, 2020\n"
2525
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -602,8 +602,8 @@ msgstr ""
602602
#: ../../library/asyncio-eventloop.rst:442
603603
msgid ""
604604
"*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind"
605-
" the socket to locally. The *local_host* and *local_port* are looked up "
606-
"using ``getaddrinfo()``, similarly to *host* and *port*."
605+
" the socket locally. The *local_host* and *local_port* are looked up using "
606+
"``getaddrinfo()``, similarly to *host* and *port*."
607607
msgstr ""
608608

609609
#: ../../library/asyncio-eventloop.rst:446
@@ -711,12 +711,9 @@ msgstr ""
711711
#: ../../library/asyncio-eventloop.rst:520
712712
msgid ""
713713
"*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind"
714-
" the socket to locally. The *local_host* and *local_port* are looked up "
715-
"using :meth:`getaddrinfo`."
714+
" the socket locally. The *local_host* and *local_port* are looked up using "
715+
":meth:`getaddrinfo`."
716716
msgstr ""
717-
"*local_addr* が指定される場合、``(local_host, local_port)`` "
718-
"のタプルで、ソケットをローカルで束縛するために使用されます。*local_host* と *local_port* は "
719-
":meth:`getaddrinfo` を使用して検索されます。"
720717

721718
#: ../../library/asyncio-eventloop.rst:524
722719
msgid ""

library/importlib.metadata.po

Lines changed: 39 additions & 39 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-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 ""
2525
msgid "Using :mod:`!importlib.metadata`"
2626
msgstr ""
2727

28-
#: ../../library/importlib.metadata.rst:10
28+
#: ../../library/importlib.metadata.rst:13
2929
msgid ""
3030
"This functionality is provisional and may deviate from the usual version "
3131
"semantics of the standard library."
3232
msgstr ""
3333

34-
#: ../../library/importlib.metadata.rst:13
34+
#: ../../library/importlib.metadata.rst:16
3535
msgid ""
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."
4343
msgstr ""
4444

45-
#: ../../library/importlib.metadata.rst:22
45+
#: ../../library/importlib.metadata.rst:25
4646
msgid ""
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."
5454
msgstr ""
5555

56-
#: ../../library/importlib.metadata.rst:33
56+
#: ../../library/importlib.metadata.rst:36
5757
msgid "Overview"
5858
msgstr "概要"
5959

60-
#: ../../library/importlib.metadata.rst:35
60+
#: ../../library/importlib.metadata.rst:38
6161
msgid ""
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:"
6565
msgstr ""
6666

67-
#: ../../library/importlib.metadata.rst:45
67+
#: ../../library/importlib.metadata.rst:48
6868
msgid "You can get the version string for ``wheel`` by running the following:"
6969
msgstr ""
7070

71-
#: ../../library/importlib.metadata.rst:54
71+
#: ../../library/importlib.metadata.rst:57
7272
msgid ""
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."
7676
msgstr ""
7777

78-
#: ../../library/importlib.metadata.rst:58
78+
#: ../../library/importlib.metadata.rst:61
7979
msgid "You can get the :ref:`metadata for a distribution <metadata>`::"
8080
msgstr ""
8181

82-
#: ../../library/importlib.metadata.rst:63
82+
#: ../../library/importlib.metadata.rst:66
8383
msgid ""
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`."
8787
msgstr ""
8888

89-
#: ../../library/importlib.metadata.rst:69
89+
#: ../../library/importlib.metadata.rst:72
9090
msgid "Functional API"
9191
msgstr "機能 API"
9292

93-
#: ../../library/importlib.metadata.rst:71
93+
#: ../../library/importlib.metadata.rst:74
9494
msgid "This package provides the following functionality via its public API."
9595
msgstr ""
9696

97-
#: ../../library/importlib.metadata.rst:77
97+
#: ../../library/importlib.metadata.rst:80
9898
msgid "Entry points"
9999
msgstr ""
100100

101-
#: ../../library/importlib.metadata.rst:79
101+
#: ../../library/importlib.metadata.rst:82
102102
msgid ""
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::"
109109
msgstr ""
110110

111-
#: ../../library/importlib.metadata.rst:103
111+
#: ../../library/importlib.metadata.rst:106
112112
msgid ""
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."
119119
msgstr ""
120120

121-
#: ../../library/importlib.metadata.rst:113
121+
#: ../../library/importlib.metadata.rst:116
122122
msgid "Distribution metadata"
123123
msgstr ""
124124

125-
#: ../../library/importlib.metadata.rst:115
125+
#: ../../library/importlib.metadata.rst:118
126126
msgid ""
127127
"Every distribution includes some metadata, which you can extract using the "
128128
"``metadata()`` function::"
129129
msgstr ""
130130

131-
#: ../../library/importlib.metadata.rst:120
131+
#: ../../library/importlib.metadata.rst:123
132132
msgid ""
133133
"The keys of the returned data structure [#f1]_ name the metadata keywords, "
134134
"and their values are returned unparsed from the distribution metadata::"
135135
msgstr ""
136136

137-
#: ../../library/importlib.metadata.rst:130
137+
#: ../../library/importlib.metadata.rst:133
138138
msgid "Distribution versions"
139139
msgstr ""
140140

141-
#: ../../library/importlib.metadata.rst:132
141+
#: ../../library/importlib.metadata.rst:135
142142
msgid ""
143143
"The ``version()`` function is the quickest way to get a distribution's "
144144
"version number, as a string::"
145145
msgstr ""
146146

147-
#: ../../library/importlib.metadata.rst:142
147+
#: ../../library/importlib.metadata.rst:145
148148
msgid "Distribution files"
149149
msgstr ""
150150

151-
#: ../../library/importlib.metadata.rst:144
151+
#: ../../library/importlib.metadata.rst:147
152152
msgid ""
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::"
159159
msgstr ""
160160

161-
#: ../../library/importlib.metadata.rst:160
161+
#: ../../library/importlib.metadata.rst:163
162162
msgid "Once you have the file, you can also read its contents::"
163163
msgstr ""
164164

165-
#: ../../library/importlib.metadata.rst:171
165+
#: ../../library/importlib.metadata.rst:174
166166
msgid ""
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."
173173
msgstr ""
174174

175-
#: ../../library/importlib.metadata.rst:182
175+
#: ../../library/importlib.metadata.rst:185
176176
msgid "Distribution requirements"
177177
msgstr ""
178178

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

185-
#: ../../library/importlib.metadata.rst:192
185+
#: ../../library/importlib.metadata.rst:195
186186
msgid "Distributions"
187187
msgstr ""
188188

189-
#: ../../library/importlib.metadata.rst:194
189+
#: ../../library/importlib.metadata.rst:197
190190
msgid ""
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::"
195195
msgstr ""
196196

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

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

209-
#: ../../library/importlib.metadata.rst:216
209+
#: ../../library/importlib.metadata.rst:219
210210
msgid ""
211211
"The full set of available metadata is not described here. See :pep:`566` "
212212
"for additional details."
213213
msgstr ""
214214

215-
#: ../../library/importlib.metadata.rst:221
215+
#: ../../library/importlib.metadata.rst:224
216216
msgid "Extending the search algorithm"
217217
msgstr ""
218218

219-
#: ../../library/importlib.metadata.rst:223
219+
#: ../../library/importlib.metadata.rst:226
220220
msgid ""
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`."
226226
msgstr ""
227227

228-
#: ../../library/importlib.metadata.rst:229
228+
#: ../../library/importlib.metadata.rst:232
229229
msgid ""
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."
233233
msgstr ""
234234

235-
#: ../../library/importlib.metadata.rst:233
235+
#: ../../library/importlib.metadata.rst:236
236236
msgid ""
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::"
243243
msgstr ""
244244

245-
#: ../../library/importlib.metadata.rst:247
245+
#: ../../library/importlib.metadata.rst:250
246246
msgid ""
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."
250250
msgstr ""
251251

252-
#: ../../library/importlib.metadata.rst:251
252+
#: ../../library/importlib.metadata.rst:254
253253
msgid ""
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."
259259
msgstr ""
260260

261-
#: ../../library/importlib.metadata.rst:264
261+
#: ../../library/importlib.metadata.rst:267
262262
msgid "Footnotes"
263263
msgstr "脚注"
264264

265-
#: ../../library/importlib.metadata.rst:265
265+
#: ../../library/importlib.metadata.rst:268
266266
msgid ""
267267
"Technically, the returned distribution metadata object is an "
268268
":class:`email.message.EmailMessage` instance, but this is an implementation "

library/io.po

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# yudetamago <yudetamago.orz@gmail.com>, 2018
1414
# Osamu NAKAMURA, 2019
1515
# tomo, 2020
16+
# Takanori Suzuki <takanori@takanory.net>, 2021
1617
#
1718
#, fuzzy
1819
msgid ""
@@ -21,7 +22,7 @@ msgstr ""
2122
"Report-Msgid-Bugs-To: \n"
2223
"POT-Creation-Date: 2021-04-02 05:56+0000\n"
2324
"PO-Revision-Date: 2017-02-16 23:15+0000\n"
24-
"Last-Translator: tomo, 2020\n"
25+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
2526
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2627
"MIME-Version: 1.0\n"
2728
"Content-Type: text/plain; charset=UTF-8\n"
@@ -665,7 +666,7 @@ msgstr ""
665666
msgid ""
666667
"Base class for raw binary streams. It inherits :class:`IOBase`. There is "
667668
"no public constructor."
668-
msgstr ""
669+
msgstr "生のバイナリストリームへの基底クラスです。 :class:`IOBase` を継承しています。パブリックコンストラクタはありません。"
669670

670671
#: ../../library/io.rst:388
671672
msgid ""
@@ -1577,6 +1578,8 @@ msgid ""
15771578
":class:`StringIO` provides this method in addition to those from "
15781579
":class:`TextIOBase` and :class:`IOBase`:"
15791580
msgstr ""
1581+
":class:`TextIOBase` と :class:`IOBase` から継承したメソッドに加えて :class:`StringIO` "
1582+
"は以下のメソッドを提供しています:"
15801583

15811584
#: ../../library/io.rst:979
15821585
msgid ""
@@ -1707,3 +1710,6 @@ msgid ""
17071710
"includes standard streams and therefore affects the built-in :func:`print()`"
17081711
" function as well."
17091712
msgstr ""
1713+
":func:`open()` 関数は :class:`TextIOWrapper` "
1714+
"内部のバッファ付きオブジェクトをラップするため、テキストファイルにも暗黙に拡張されます。これは、標準ストリームを含むので、組み込みの "
1715+
":func:`print()` 関数にも同様に影響します。"

0 commit comments

Comments
 (0)