9
9
msgstr ""
10
10
"Project-Id-Version : Python 2.7\n "
11
11
"Report-Msgid-Bugs-To : \n "
12
- "POT-Creation-Date : 2018-04-21 13:05 +0900\n "
13
- "PO-Revision-Date : 2018-04-21 04:16 +0000\n "
12
+ "POT-Creation-Date : 2018-04-22 13:06 +0900\n "
13
+ "PO-Revision-Date : 2018-04-22 04:17 +0000\n "
14
14
"Last-Translator : cocoatomo\n "
15
15
"Language-Team : Japanese (http://www.transifex.com/python-doc/python-27/language/ja/)\n "
16
16
"MIME-Version : 1.0\n "
@@ -1279,22 +1279,28 @@ msgid ""
1279
1279
" empty box wherever the image was used."
1280
1280
msgstr "``image`` オプションがウィジェットにサポートされるところならどこでも、画像オブジェクトを使うことができます (例えば、ラベル、ボタン、メニュー)。これらの場合では、Tk は画像への参照を保持しないでしょう。画像オブジェクトへの最後の Python の参照が削除されたときに、画像データも削除されます。そして、どこで画像が使われていようとも、Tk は空の箱を表示します。"
1281
1281
1282
- #: ../../library/tkinter.rst:825
1282
+ #: ../../library/tkinter.rst:823
1283
+ msgid ""
1284
+ "The `Pillow <http://python-pillow.org/>`_ package adds support for formats "
1285
+ "such as BMP, JPEG, TIFF, and WebP, among others."
1286
+ msgstr ""
1287
+
1288
+ #: ../../library/tkinter.rst:829
1283
1289
msgid "File Handlers"
1284
1290
msgstr "ファイルハンドラ"
1285
1291
1286
- #: ../../library/tkinter.rst:827
1292
+ #: ../../library/tkinter.rst:831
1287
1293
msgid ""
1288
1294
"Tk allows you to register and unregister a callback function which will be "
1289
1295
"called from the Tk mainloop when I/O is possible on a file descriptor. Only "
1290
1296
"one handler may be registered per file descriptor. Example code::"
1291
1297
msgstr "Tk を使うとコールバック関数の登録や解除ができ、ファイルディスクリプタに対する入出力が可能なときに、Tk のメインループからその関数が呼ばれます。\nファイルディスクリプタ1つにつき、1つだけハンドラは登録されます。コード例です::"
1292
1298
1293
- #: ../../library/tkinter.rst:838
1299
+ #: ../../library/tkinter.rst:842
1294
1300
msgid "This feature is not available on Windows."
1295
1301
msgstr "これらの機能は Windows では利用できません。"
1296
1302
1297
- #: ../../library/tkinter.rst:840
1303
+ #: ../../library/tkinter.rst:844
1298
1304
msgid ""
1299
1305
"Since you don't know how many bytes are available for reading, you may not "
1300
1306
"want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase` "
@@ -1305,7 +1311,7 @@ msgid ""
1305
1311
"``os.read(file.fileno(), maxbytecount)``."
1306
1312
msgstr "読み込みに使えるバイト数は分からないので、 :class:`~io.BufferedIOBase` クラスや :class:`~io.TextIOBase` クラスの :meth:`~io.BufferedIOBase.read` メソッドおよび :meth:`~io.IOBase.readline` メソッドを使おうとしないでください。これらは読み込みの際に、あらかじめ決められたバイト数を要求するのです。ソケットには、 :meth:`~socket.socket.recv` や :meth:`~socket.socket.recvfrom` メソッドを使うといいです。その他のファイルには、 raw 読み込みか ``os.read(file.fileno(), maxbytecount)`` を使ってください。"
1307
1313
1308
- #: ../../library/tkinter.rst:851
1314
+ #: ../../library/tkinter.rst:855
1309
1315
msgid ""
1310
1316
"Registers the file handler callback function *func*. The *file* argument may"
1311
1317
" either be an object with a :meth:`~io.IOBase.fileno` method (such as a file"
@@ -1314,10 +1320,10 @@ msgid ""
1314
1320
"called as follows::"
1315
1321
msgstr "ファイルハンドラであるコールバック関数 *func* を登録します。 *file* 引数は、 (ファイルやソケットオブジェクトのような) :meth:`~io.IOBase.fileno` メソッドを持つオブジェクトか、整数のファイルディスクリプタとなります。 *mask* 引数は、以下にある3つの定数の組み合わせの OR を取ったものです。コールバックは次のように呼ばれます::"
1316
1322
1317
- #: ../../library/tkinter.rst:862
1323
+ #: ../../library/tkinter.rst:866
1318
1324
msgid "Unregisters a file handler."
1319
1325
msgstr "ファイルハンドラの登録を解除します。"
1320
1326
1321
- #: ../../library/tkinter.rst:869
1327
+ #: ../../library/tkinter.rst:873
1322
1328
msgid "Constants used in the *mask* arguments."
1323
1329
msgstr "*mask* 引数で使う定数です。"
0 commit comments