Skip to content

Commit 188c294

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent c7b9b35 commit 188c294

File tree

1 file changed

+20
-18
lines changed

1 file changed

+20
-18
lines changed

library/tkinter.po

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ msgid ""
99
msgstr ""
1010
"Project-Id-Version: Python 2.7\n"
1111
"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"
1414
"Last-Translator: cocoatomo\n"
1515
"Language-Team: Japanese (http://www.transifex.com/python-doc/python-27/language/ja/)\n"
1616
"MIME-Version: 1.0\n"
@@ -1250,25 +1250,27 @@ msgstr "画像"
12501250

12511251
#: ../../library/tkinter.rst:804
12521252
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 ""
12561256

12571257
#: ../../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 ""
12601260

12611261
#: ../../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 ""
12641266

1265-
#: ../../library/tkinter.rst:811
1267+
#: ../../library/tkinter.rst:812
12661268
msgid ""
12671269
"Either type of image is created through either the ``file`` or the ``data`` "
12681270
"option (other options are available as well)."
12691271
msgstr "画像のどちらの型でも ``file`` または ``data`` オプションを使って作られます (その上、他のオプションも利用できます)。"
12701272

1271-
#: ../../library/tkinter.rst:814
1273+
#: ../../library/tkinter.rst:815
12721274
msgid ""
12731275
"The image object can then be used wherever an ``image`` option is supported "
12741276
"by some widget (e.g. labels, buttons, menus). In these cases, Tk will not "
@@ -1277,22 +1279,22 @@ msgid ""
12771279
" empty box wherever the image was used."
12781280
msgstr "``image`` オプションがウィジェットにサポートされるところならどこでも、画像オブジェクトを使うことができます (例えば、ラベル、ボタン、メニュー)。これらの場合では、Tk は画像への参照を保持しないでしょう。画像オブジェクトへの最後の Python の参照が削除されたときに、画像データも削除されます。そして、どこで画像が使われていようとも、Tk は空の箱を表示します。"
12791281

1280-
#: ../../library/tkinter.rst:824
1282+
#: ../../library/tkinter.rst:825
12811283
msgid "File Handlers"
12821284
msgstr "ファイルハンドラ"
12831285

1284-
#: ../../library/tkinter.rst:826
1286+
#: ../../library/tkinter.rst:827
12851287
msgid ""
12861288
"Tk allows you to register and unregister a callback function which will be "
12871289
"called from the Tk mainloop when I/O is possible on a file descriptor. Only "
12881290
"one handler may be registered per file descriptor. Example code::"
12891291
msgstr "Tk を使うとコールバック関数の登録や解除ができ、ファイルディスクリプタに対する入出力が可能なときに、Tk のメインループからその関数が呼ばれます。\nファイルディスクリプタ1つにつき、1つだけハンドラは登録されます。コード例です::"
12901292

1291-
#: ../../library/tkinter.rst:837
1293+
#: ../../library/tkinter.rst:838
12921294
msgid "This feature is not available on Windows."
12931295
msgstr "これらの機能は Windows では利用できません。"
12941296

1295-
#: ../../library/tkinter.rst:839
1297+
#: ../../library/tkinter.rst:840
12961298
msgid ""
12971299
"Since you don't know how many bytes are available for reading, you may not "
12981300
"want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase` "
@@ -1303,7 +1305,7 @@ msgid ""
13031305
"``os.read(file.fileno(), maxbytecount)``."
13041306
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)`` を使ってください。"
13051307

1306-
#: ../../library/tkinter.rst:850
1308+
#: ../../library/tkinter.rst:851
13071309
msgid ""
13081310
"Registers the file handler callback function *func*. The *file* argument may"
13091311
" either be an object with a :meth:`~io.IOBase.fileno` method (such as a file"
@@ -1312,10 +1314,10 @@ msgid ""
13121314
"called as follows::"
13131315
msgstr "ファイルハンドラであるコールバック関数 *func* を登録します。 *file* 引数は、 (ファイルやソケットオブジェクトのような) :meth:`~io.IOBase.fileno` メソッドを持つオブジェクトか、整数のファイルディスクリプタとなります。 *mask* 引数は、以下にある3つの定数の組み合わせの OR を取ったものです。コールバックは次のように呼ばれます::"
13141316

1315-
#: ../../library/tkinter.rst:861
1317+
#: ../../library/tkinter.rst:862
13161318
msgid "Unregisters a file handler."
13171319
msgstr "ファイルハンドラの登録を解除します。"
13181320

1319-
#: ../../library/tkinter.rst:868
1321+
#: ../../library/tkinter.rst:869
13201322
msgid "Constants used in the *mask* arguments."
13211323
msgstr "*mask* 引数で使う定数です。"

0 commit comments

Comments
 (0)