Skip to content

Commit e4b92d4

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent a71be53 commit e4b92d4

File tree

4 files changed

+61
-14
lines changed

4 files changed

+61
-14
lines changed

library/marshal.po

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2018
8+
# Takanori Suzuki <takanori@takanory.net>, 2021
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:40+0000\n"
16-
"Last-Translator: tomo, 2018\n"
17+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
1718
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1819
"MIME-Version: 1.0\n"
1920
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,7 +96,7 @@ msgstr ""
9596
msgid ""
9697
"There are functions that read/write files as well as functions operating on "
9798
"bytes-like objects."
98-
msgstr ""
99+
msgstr "bytes-like オブジェクトを操作する関数と同様に、ファイルの読み書きを行う関数が提供されています。"
99100

100101
#: ../../library/marshal.rst:54
101102
msgid "The module defines these functions:"
@@ -106,6 +107,8 @@ msgid ""
106107
"Write the value on the open file. The value must be a supported type. The "
107108
"file must be a writeable :term:`binary file`."
108109
msgstr ""
110+
"開かれたファイルに値を書き込みます。値はサポートされている型でなくてはなりません。ファイルは書き込み可能な :term:`バイナリファイル "
111+
"<binary file>` である必要があります。"
109112

110113
#: ../../library/marshal.rst:62
111114
msgid ""
@@ -130,6 +133,10 @@ msgid ""
130133
" format), raise :exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`. The"
131134
" file must be a readable :term:`binary file`."
132135
msgstr ""
136+
"開かれたファイルから値を一つ読んで返します。 (異なるバージョンの Python の互換性のない marshal フォーマットだったなどの理由で) "
137+
"有効な値が読み出せなかった場合、 :exc:`EOFError`\\ 、 :exc:`ValueError`\\ 、または "
138+
":exc:`TypeError` を送出します。 file は読み込み可能な :term:`バイナリファイル <binary file>` "
139+
"でなければなりません."
133140

134141
#: ../../library/marshal.rst:79
135142
msgid ""
@@ -146,6 +153,9 @@ msgid ""
146153
"file)``. The value must be a supported type. Raise a :exc:`ValueError` "
147154
"exception if value has (or contains an object that has) an unsupported type."
148155
msgstr ""
156+
"``dump(value, file)`` "
157+
"でファイルに書き込まれるようなbytesオブジェクトを返します。値はサポートされている型でなければなりません。値がサポートされていない型のオブジェクト "
158+
"(またはサポートされていない型のオブジェクトを含むようなオブジェクト) の場合、 :exc:`ValueError` 例外が送出されます。"
149159

150160
#: ../../library/marshal.rst:89
151161
msgid ""
@@ -159,6 +169,8 @@ msgid ""
159169
"found, raise :exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`. Extra "
160170
"bytes in the input are ignored."
161171
msgstr ""
172+
":term:`bytes-like object` を値に変換します。有効な値が見つからなかった場合、 :exc:`EOFError`\\ 、 "
173+
":exc:`ValueError`\\ 、または :exc:`TypeError` が送出されます。入力中の余分な bytes は無視されます。"
162174

163175
#: ../../library/marshal.rst:100
164176
msgid "In addition, the following constants are defined:"

library/sqlite3.po

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2018
8+
# Takanori Suzuki <takanori@takanory.net>, 2021
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:27+0000\n"
16-
"Last-Translator: tomo, 2018\n"
17+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
1718
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1819
"MIME-Version: 1.0\n"
1920
"Content-Type: text/plain; charset=UTF-8\n"
@@ -321,6 +322,7 @@ msgid ""
321322
" can be found in the `SQLite URI documentation "
322323
"<https://www.sqlite.org/uri.html>`_."
323324
msgstr ""
325+
"認識されるオプションのリストを含むこの機能についての詳細については、`SQLite URI documentation `_ を参照してください。"
324326

325327
#: ../../library/sqlite3.rst:223
326328
msgid "Added the *uri* parameter."
@@ -388,6 +390,9 @@ msgid ""
388390
" mode or one of \"DEFERRED\", \"IMMEDIATE\" or \"EXCLUSIVE\". See section "
389391
":ref:`sqlite3-controlling-transactions` for a more detailed explanation."
390392
msgstr ""
393+
"現在のデフォルト分離レベルを取得または設定します。 :const:`None` で自動コミットモードまたは \"DEFERRED\", "
394+
"\"IMMEDIATE\", \"EXLUSIVE\" のどれかです。より詳しい説明は :ref:`sqlite3-controlling-"
395+
"transactions` 節を参照してください。"
391396

392397
#: ../../library/sqlite3.rst:283
393398
msgid ""
@@ -469,6 +474,8 @@ msgid ""
469474
"The function can return any of the types supported by SQLite: bytes, str, "
470475
"int, float and ``None``."
471476
msgstr ""
477+
"関数は SQLite でサポートされている任意の型を返すことができます。具体的には bytes, str, int, float および "
478+
"``None`` です。"
472479

473480
#: ../../library/sqlite3.rst:344 ../../library/sqlite3.rst:361
474481
#: ../../library/sqlite3.rst:475 ../../library/sqlite3.rst:578
@@ -492,6 +499,8 @@ msgid ""
492499
"The ``finalize`` method can return any of the types supported by SQLite: "
493500
"bytes, str, int, float and ``None``."
494501
msgstr ""
502+
"``finalize`` メソッドは SQLite でサポートされている任意の型を返すことができます。具体的には bytes, str, int, "
503+
"float および ``None`` です。"
495504

496505
#: ../../library/sqlite3.rst:368
497506
msgid ""
@@ -737,6 +746,8 @@ msgid ""
737746
"Use :meth:`executescript` if you want to execute multiple SQL statements "
738747
"with one call."
739748
msgstr ""
749+
":meth:`execute` は一つの SQL 文しか実行しません。二つ以上の文を実行しようとすると、 :exc:`.Warning` "
750+
"を送出します。複数の SQL 文を一つの呼び出しで実行したい場合は :meth:`executescript` を使ってください。"
740751

741752
#: ../../library/sqlite3.rst:559
742753
msgid ""
@@ -760,7 +771,7 @@ msgstr ""
760771

761772
#: ../../library/sqlite3.rst:576
762773
msgid "*sql_script* can be an instance of :class:`str`."
763-
msgstr ""
774+
msgstr "*sql_script* は :class:`str` のインスタンスです。"
764775

765776
#: ../../library/sqlite3.rst:585
766777
msgid ""
@@ -861,6 +872,10 @@ msgid ""
861872
" or when :meth:`executemany` is called, :attr:`lastrowid` is set to "
862873
":const:`None`."
863874
msgstr ""
875+
"この読み込み専用の属性は、最後に変更した row の rowid を提供します。この属性は、 :meth:`execute` メソッドを利用して "
876+
"``INSERT`` 文または ``REPLACE`` 文を実行したときのみ設定されます。 ``INSERT`` と ``REPLACE`` "
877+
"以外の操作や、 :meth:`executemany` メソッドを呼び出した場合は、 :attr:`lastrowid` は :const:`None`"
878+
" に設定されます。"
864879

865880
#: ../../library/sqlite3.rst:644
866881
msgid ""
@@ -870,7 +885,7 @@ msgstr ""
870885

871886
#: ../../library/sqlite3.rst:647
872887
msgid "Added support for the ``REPLACE`` statement."
873-
msgstr ""
888+
msgstr "``REPLACE`` 文のサポートが追加されました。"
874889

875890
#: ../../library/sqlite3.rst:652
876891
msgid ""
@@ -955,7 +970,7 @@ msgstr "例外"
955970

956971
#: ../../library/sqlite3.rst:748
957972
msgid "A subclass of :exc:`Exception`."
958-
msgstr ""
973+
msgstr ":exc:`Exception` のサブクラスです。"
959974

960975
#: ../../library/sqlite3.rst:752
961976
msgid ""

library/zipfile.po

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# tomo, 2018
88
# SHIMIZU Taku <shimizu.taku@gmail.com>, 2019
9+
# Takanori Suzuki <takanori@takanory.net>, 2021
910
#
1011
#, fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To: \n"
1516
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1617
"PO-Revision-Date: 2018-06-29 17:33+0000\n"
17-
"Last-Translator: SHIMIZU Taku <shimizu.taku@gmail.com>, 2019\n"
18+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
1819
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
@@ -242,7 +243,7 @@ msgstr ""
242243

243244
#: ../../library/zipfile.rst:187
244245
msgid "The *file* parameter accepts a :term:`path-like object`."
245-
msgstr ""
246+
msgstr "*file* 引数が :term:`path-like object` を受け入れるようになりました。"
246247

247248
#: ../../library/zipfile.rst:193
248249
msgid ""
@@ -641,7 +642,7 @@ msgstr "*filterfunc* パラメータ。"
641642

642643
#: ../../library/zipfile.rst:499
643644
msgid "The *pathname* parameter accepts a :term:`path-like object`."
644-
msgstr ""
645+
msgstr "*pathname* 引数が :term:`path-like object` を受け付けるようになりました。"
645646

646647
#: ../../library/zipfile.rst:506
647648
msgid "ZipInfo Objects"
@@ -682,15 +683,15 @@ msgstr ""
682683

683684
#: ../../library/zipfile.rst:528
684685
msgid "The *filename* parameter accepts a :term:`path-like object`."
685-
msgstr ""
686+
msgstr "*filename* 引数が :term:`path-like object` を受け入れるようになりました。"
686687

687688
#: ../../library/zipfile.rst:532
688689
msgid "Instances have the following methods and attributes:"
689-
msgstr ""
690+
msgstr "インスタンスは以下のメソッドと属性を持ちます:"
690691

691692
#: ../../library/zipfile.rst:536
692693
msgid "Return ``True`` if this archive member is a directory."
693-
msgstr ""
694+
msgstr "アーカイブのメンバーがディレクトリの場合に ``True``を返します。"
694695

695696
#: ../../library/zipfile.rst:538
696697
msgid "This uses the entry's name: directories should always end with ``/``."
@@ -780,6 +781,8 @@ msgid ""
780781
"on the internal structure of the data contained in this :class:`bytes` "
781782
"object."
782783
msgstr ""
784+
"拡張フィールドデータ。この :class:`bytes` オブジェクトに含まれているデータの内部構成については、`PKZIP Application "
785+
"Note`_ でコメントされています。"
783786

784787
#: ../../library/zipfile.rst:593
785788
msgid "System which created ZIP archive."

library/zlib.po

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# tomo, 2018
8+
# Takanori Suzuki <takanori@takanory.net>, 2021
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 18:48+0900\n"
1516
"PO-Revision-Date: 2018-06-29 17:24+0000\n"
16-
"Last-Translator: tomo, 2018\n"
17+
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
1718
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1819
"MIME-Version: 1.0\n"
1920
"Content-Type: text/plain; charset=UTF-8\n"
@@ -119,12 +120,17 @@ msgid ""
119120
"default compromise between speed and compression (currently equivalent to "
120121
"level 6)."
121122
msgstr ""
123+
"*level* は圧縮レベルです。``0`` から ``9`` 、または ``-1`` の整数を取り、``1`` (Z_BEST_SPEED) "
124+
"は最も高速で最小限の圧縮を行い、``9`` (Z_BEST_COMPRESSION) は最も低速で最大限の圧縮を行います。``0`` "
125+
"(Z_NO_COMPRESSION) は圧縮しません。デフォルトは ``-1`` です "
126+
"(Z_DEFAULT_COMPRESSION)。Z_DEFAULT_COMPRESSION は、速度と圧縮の間のデフォルトの妥協点 (現在、レベル 6 "
127+
"に対応します) を表します。"
122128

123129
#: ../../library/zlib.rst:76
124130
msgid ""
125131
"*method* is the compression algorithm. Currently, the only supported value "
126132
"is :const:`DEFLATED`."
127-
msgstr ""
133+
msgstr "*method* は圧縮アルゴリズムです。現在、 :const:`DEFLATED` のみサポートされています。"
128134

129135
#: ../../library/zlib.rst:79
130136
msgid ""
@@ -170,6 +176,9 @@ msgid ""
170176
":const:`Z_DEFAULT_STRATEGY`, :const:`Z_FILTERED`, :const:`Z_HUFFMAN_ONLY`, "
171177
":const:`Z_RLE` (zlib 1.2.0.1) and :const:`Z_FIXED` (zlib 1.2.2.2)."
172178
msgstr ""
179+
"*strategy* は圧縮アルゴリズムの調整に使用されます。指定可能な値は、 :const:`Z_DEFAULT_STRATEGY`, "
180+
":const:`Z_FILTERED`, :const:`Z_HUFFMAN_ONLY`, :const:`Z_RLE` (zlib 1.2.0.1) "
181+
"および :const:`Z_FIXED` (zlib 1.2.2.2) です。"
173182

174183
#: ../../library/zlib.rst:105
175184
msgid ""
@@ -272,6 +281,9 @@ msgid ""
272281
" you don't have to get this value exactly right; tuning it will only save a "
273282
"few calls to :c:func:`malloc`."
274283
msgstr ""
284+
"*bufsize* "
285+
"は展開されたデータを保持するためのバッファサイズの初期値です。バッファの空きは必要に応じて必要なだけ増加するので、必ずしも正確な値を指定する必要はありません。この値のチューニングでできることは、:c:func:`malloc`"
286+
" が呼ばれる回数を数回減らすことぐらいです。"
275287

276288
#: ../../library/zlib.rst:178
277289
msgid "*wbits* and *bufsize* can be used as keyword arguments."
@@ -408,6 +420,11 @@ msgid ""
408420
"*max_length* is zero then the whole input is decompressed, and "
409421
":attr:`unconsumed_tail` is empty."
410422
msgstr ""
423+
"オプションパラメータ *max_length* が非ゼロの場合、返される展開データの長さが *max_length* "
424+
"以下に制限されます。このことは入力した圧縮データの全てが処理されるとは限らないことを意味し、処理されなかったデータは "
425+
":attr:`unconsumed_tail` 属性に保存されます。展開処理を継続する場合、この保存されたバイト文字列を以降の "
426+
":meth:`decompress` 呼び出しに渡さなくてはなりません。 *max_length* が 0 の場合、全ての入力が展開され、 "
427+
":attr:`unconsumed_tail` 属性は空になります。"
411428

412429
#: ../../library/zlib.rst:280
413430
msgid "*max_length* can be used as a keyword argument."

0 commit comments

Comments
 (0)