Skip to content

Commit c18bb2c

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

1 file changed

Lines changed: 19 additions & 17 deletions

File tree

library/tkinter.po

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-05 15:01+0000\n"
11+
"POT-Creation-Date: 2018-04-18 13:04+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1533,25 +1533,27 @@ msgstr "画像"
15331533

15341534
#: ../../library/tkinter.rst:786
15351535
msgid ""
1536-
"Bitmap/Pixelmap images can be created through the subclasses of "
1537-
":class:`tkinter.Image`:"
1538-
msgstr "Bitmap/Pixelmap 画像を :class:`tkinter.Image` のサブクラスを使って作ることができます:"
1536+
"Images of different formats can be created through the corresponding "
1537+
"subclass of :class:`tkinter.Image`:"
1538+
msgstr ""
15391539

15401540
#: ../../library/tkinter.rst:789
1541-
msgid ":class:`BitmapImage` can be used for X11 bitmap data."
1542-
msgstr ":class:`BitmapImage` は X11 ビットマップデータに対して使えます。"
1541+
msgid ":class:`BitmapImage` for images in XBM format."
1542+
msgstr ""
15431543

15441544
#: ../../library/tkinter.rst:791
1545-
msgid ":class:`PhotoImage` can be used for GIF and PPM/PGM color bitmaps."
1546-
msgstr ":class:`PhotoImage` は GIF と PPM/PGM カラービットマップに対して使えます。"
1545+
msgid ""
1546+
":class:`PhotoImage` for images in PGM, PPM, GIF and PNG formats. The latter "
1547+
"is supported starting with Tk 8.6."
1548+
msgstr ""
15471549

1548-
#: ../../library/tkinter.rst:793
1550+
#: ../../library/tkinter.rst:794
15491551
msgid ""
15501552
"Either type of image is created through either the ``file`` or the ``data`` "
15511553
"option (other options are available as well)."
15521554
msgstr "画像のどちらの型でも ``file`` または ``data`` オプションを使って作られます (その上、他のオプションも利用できます)。"
15531555

1554-
#: ../../library/tkinter.rst:796
1556+
#: ../../library/tkinter.rst:797
15551557
msgid ""
15561558
"The image object can then be used wherever an ``image`` option is supported "
15571559
"by some widget (e.g. labels, buttons, menus). In these cases, Tk will not "
@@ -1563,11 +1565,11 @@ msgstr ""
15631565
"(例えば、ラベル、ボタン、メニュー)。これらの場合では、Tk は画像への参照を保持しないでしょう。画像オブジェクトへの最後の Python "
15641566
"の参照が削除されたときに、画像データも削除されます。そして、どこで画像が使われていようとも、Tk は空の箱を表示します。"
15651567

1566-
#: ../../library/tkinter.rst:806
1568+
#: ../../library/tkinter.rst:807
15671569
msgid "File Handlers"
15681570
msgstr "ファイルハンドラ"
15691571

1570-
#: ../../library/tkinter.rst:808
1572+
#: ../../library/tkinter.rst:809
15711573
msgid ""
15721574
"Tk allows you to register and unregister a callback function which will be "
15731575
"called from the Tk mainloop when I/O is possible on a file descriptor. Only "
@@ -1576,11 +1578,11 @@ msgstr ""
15761578
"Tk を使うとコールバック関数の登録や解除ができ、ファイルディスクリプタに対する入出力が可能なときに、Tk のメインループからその関数が呼ばれます。\n"
15771579
"ファイルディスクリプタ1つにつき、1つだけハンドラは登録されます。コード例です::"
15781580

1579-
#: ../../library/tkinter.rst:819
1581+
#: ../../library/tkinter.rst:820
15801582
msgid "This feature is not available on Windows."
15811583
msgstr "これらの機能は Windows では利用できません。"
15821584

1583-
#: ../../library/tkinter.rst:821
1585+
#: ../../library/tkinter.rst:822
15841586
msgid ""
15851587
"Since you don't know how many bytes are available for reading, you may not "
15861588
"want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase` "
@@ -1598,7 +1600,7 @@ msgstr ""
15981600
"メソッドを使うといいです。その他のファイルには、 raw 読み込みか ``os.read(file.fileno(), maxbytecount)`` "
15991601
"を使ってください。"
16001602

1601-
#: ../../library/tkinter.rst:832
1603+
#: ../../library/tkinter.rst:833
16021604
msgid ""
16031605
"Registers the file handler callback function *func*. The *file* argument may"
16041606
" either be an object with a :meth:`~io.IOBase.fileno` method (such as a file"
@@ -1610,10 +1612,10 @@ msgstr ""
16101612
":meth:`~io.IOBase.fileno` メソッドを持つオブジェクトか、整数のファイルディスクリプタとなります。 *mask* "
16111613
"引数は、以下にある3つの定数の組み合わせの OR を取ったものです。コールバックは次のように呼ばれます::"
16121614

1613-
#: ../../library/tkinter.rst:843
1615+
#: ../../library/tkinter.rst:844
16141616
msgid "Unregisters a file handler."
16151617
msgstr "ファイルハンドラの登録を解除します。"
16161618

1617-
#: ../../library/tkinter.rst:850
1619+
#: ../../library/tkinter.rst:851
16181620
msgid "Constants used in the *mask* arguments."
16191621
msgstr "*mask* 引数で使う定数です。"

0 commit comments

Comments
 (0)