9
9
msgstr ""
10
10
"Project-Id-Version : Python 2.7\n "
11
11
"Report-Msgid-Bugs-To : \n "
12
- "POT-Creation-Date : 2018-01 -21 01:52 +0900\n "
13
- "PO-Revision-Date : 2018-01-20 17:26 +0000\n "
12
+ "POT-Creation-Date : 2018-04 -21 13:05 +0900\n "
13
+ "PO-Revision-Date : 2018-04-21 04:16 +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 "
@@ -1250,25 +1250,27 @@ msgstr "画像"
1250
1250
1251
1251
#: ../../library/tkinter.rst:804
1252
1252
msgid ""
1253
- "Bitmap/Pixelmap images can be created through the subclasses of "
1254
- ":class:`Tkinter.Image`:"
1255
- msgstr "Bitmap/Pixelmap 画像を :class:`Tkinter.Image` のサブクラスを使って作ることができます: "
1253
+ "Images of different formats can be created through the corresponding "
1254
+ "subclass of :class:`Tkinter.Image`:"
1255
+ msgstr ""
1256
1256
1257
1257
#: ../../library/tkinter.rst:807
1258
- msgid ":class:`BitmapImage` can be used for X11 bitmap data ."
1259
- msgstr ":class:`BitmapImage` は X11 ビットマップデータに対して使えます。 "
1258
+ msgid ":class:`BitmapImage` for images in XBM format ."
1259
+ msgstr ""
1260
1260
1261
1261
#: ../../library/tkinter.rst:809
1262
- msgid ":class:`PhotoImage` can be used for GIF and PPM/PGM color bitmaps."
1263
- msgstr ":class:`PhotoImage` は GIF と PPM/PGM カラービットマップに対して使えます。"
1262
+ msgid ""
1263
+ ":class:`PhotoImage` for images in PGM, PPM, GIF and PNG formats. The latter "
1264
+ "is supported starting with Tk 8.6."
1265
+ msgstr ""
1264
1266
1265
- #: ../../library/tkinter.rst:811
1267
+ #: ../../library/tkinter.rst:812
1266
1268
msgid ""
1267
1269
"Either type of image is created through either the ``file`` or the ``data`` "
1268
1270
"option (other options are available as well)."
1269
1271
msgstr "画像のどちらの型でも ``file`` または ``data`` オプションを使って作られます (その上、他のオプションも利用できます)。"
1270
1272
1271
- #: ../../library/tkinter.rst:814
1273
+ #: ../../library/tkinter.rst:815
1272
1274
msgid ""
1273
1275
"The image object can then be used wherever an ``image`` option is supported "
1274
1276
"by some widget (e.g. labels, buttons, menus). In these cases, Tk will not "
@@ -1277,22 +1279,22 @@ msgid ""
1277
1279
" empty box wherever the image was used."
1278
1280
msgstr "``image`` オプションがウィジェットにサポートされるところならどこでも、画像オブジェクトを使うことができます (例えば、ラベル、ボタン、メニュー)。これらの場合では、Tk は画像への参照を保持しないでしょう。画像オブジェクトへの最後の Python の参照が削除されたときに、画像データも削除されます。そして、どこで画像が使われていようとも、Tk は空の箱を表示します。"
1279
1281
1280
- #: ../../library/tkinter.rst:824
1282
+ #: ../../library/tkinter.rst:825
1281
1283
msgid "File Handlers"
1282
1284
msgstr "ファイルハンドラ"
1283
1285
1284
- #: ../../library/tkinter.rst:826
1286
+ #: ../../library/tkinter.rst:827
1285
1287
msgid ""
1286
1288
"Tk allows you to register and unregister a callback function which will be "
1287
1289
"called from the Tk mainloop when I/O is possible on a file descriptor. Only "
1288
1290
"one handler may be registered per file descriptor. Example code::"
1289
1291
msgstr "Tk を使うとコールバック関数の登録や解除ができ、ファイルディスクリプタに対する入出力が可能なときに、Tk のメインループからその関数が呼ばれます。\nファイルディスクリプタ1つにつき、1つだけハンドラは登録されます。コード例です::"
1290
1292
1291
- #: ../../library/tkinter.rst:837
1293
+ #: ../../library/tkinter.rst:838
1292
1294
msgid "This feature is not available on Windows."
1293
1295
msgstr "これらの機能は Windows では利用できません。"
1294
1296
1295
- #: ../../library/tkinter.rst:839
1297
+ #: ../../library/tkinter.rst:840
1296
1298
msgid ""
1297
1299
"Since you don't know how many bytes are available for reading, you may not "
1298
1300
"want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase` "
@@ -1303,7 +1305,7 @@ msgid ""
1303
1305
"``os.read(file.fileno(), maxbytecount)``."
1304
1306
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)`` を使ってください。"
1305
1307
1306
- #: ../../library/tkinter.rst:850
1308
+ #: ../../library/tkinter.rst:851
1307
1309
msgid ""
1308
1310
"Registers the file handler callback function *func*. The *file* argument may"
1309
1311
" either be an object with a :meth:`~io.IOBase.fileno` method (such as a file"
@@ -1312,10 +1314,10 @@ msgid ""
1312
1314
"called as follows::"
1313
1315
msgstr "ファイルハンドラであるコールバック関数 *func* を登録します。 *file* 引数は、 (ファイルやソケットオブジェクトのような) :meth:`~io.IOBase.fileno` メソッドを持つオブジェクトか、整数のファイルディスクリプタとなります。 *mask* 引数は、以下にある3つの定数の組み合わせの OR を取ったものです。コールバックは次のように呼ばれます::"
1314
1316
1315
- #: ../../library/tkinter.rst:861
1317
+ #: ../../library/tkinter.rst:862
1316
1318
msgid "Unregisters a file handler."
1317
1319
msgstr "ファイルハンドラの登録を解除します。"
1318
1320
1319
- #: ../../library/tkinter.rst:868
1321
+ #: ../../library/tkinter.rst:869
1320
1322
msgid "Constants used in the *mask* arguments."
1321
1323
msgstr "*mask* 引数で使う定数です。"
0 commit comments