@@ -11,7 +11,7 @@ msgstr ""
1111"Project-Id-Version : Python 3.8\n "
1212"Report-Msgid-Bugs-To : \n "
1313"POT-Creation-Date : 2020-05-05 12:54+0200\n "
14- "PO-Revision-Date : 2020-06-06 18:24 -0300\n "
14+ "PO-Revision-Date : 2020-06-06 18:45 -0300\n "
1515"Language-Team : python-doc-es\n "
1616"MIME-Version : 1.0\n "
1717"Content-Type : text/plain; charset=UTF-8\n "
@@ -1785,27 +1785,39 @@ msgid ""
17851785"object is deleted, the image data is deleted as well, and Tk will display an "
17861786"empty box wherever the image was used."
17871787msgstr ""
1788+ "El objeto imagen se puede usar siempre que algún widget admita una opción de "
1789+ "``image`` (por ejemplo, etiquetas, botones, menús). En estos casos, Tk no "
1790+ "mantendrá una referencia a la imagen. Cuando se elimina la última referencia "
1791+ "de Python al objeto de imagen, los datos de la imagen también se eliminan, y "
1792+ "Tk mostrará un cuadro vacío donde se utilizó la imagen."
17881793
17891794#: ../Doc/library/tkinter.rst:813
17901795msgid ""
17911796"The `Pillow <http://python-pillow.org/>`_ package adds support for formats "
17921797"such as BMP, JPEG, TIFF, and WebP, among others."
17931798msgstr ""
1799+ "El paquete `Pillow <http://python-pillow.org/>`_ añade soporte para los "
1800+ "formatos del tipo BMP, JPEG, TIFF, y WebP, entre otros."
17941801
17951802#: ../Doc/library/tkinter.rst:819
17961803msgid "File Handlers"
1797- msgstr ""
1804+ msgstr "Gestor de archivos "
17981805
17991806#: ../Doc/library/tkinter.rst:821
1807+ #, fuzzy
18001808msgid ""
18011809"Tk allows you to register and unregister a callback function which will be "
18021810"called from the Tk mainloop when I/O is possible on a file descriptor. Only "
18031811"one handler may be registered per file descriptor. Example code::"
18041812msgstr ""
1813+ "Tk permite que los descriptores de archivo registren y anulen el registro de "
1814+ "las funciones *callbacks* que se llaman desde el bucle principal de Tk "
1815+ "cuando sea posible la E/S. Solo se puede registrar un controlador por "
1816+ "descriptor de archivo. Código de ejemplo:"
18051817
18061818#: ../Doc/library/tkinter.rst:832
18071819msgid "This feature is not available on Windows."
1808- msgstr ""
1820+ msgstr "Esta función no está disponible en Windows. "
18091821
18101822#: ../Doc/library/tkinter.rst:834
18111823msgid ""
@@ -1817,6 +1829,13 @@ msgid ""
18171829"work fine; for other files, use raw reads or ``os.read(file.fileno(), "
18181830"maxbytecount)``."
18191831msgstr ""
1832+ "Dado que no se sabe cuántos bytes están disponibles para su lectura, no use "
1833+ "métodos de :class:`~io.BufferedIOBase` o :class:`~io.TextIOBase` :meth:`~io."
1834+ "BufferedIOBase.read` o :meth:`~io.IOBase.readline`, ya que estos requieren "
1835+ "leer un número predefinido de bytes. Para *sockets*, los métodos :meth:"
1836+ "`~socket.socket.recv` o :meth:`~socket.socket.recvfrom` trabajan bien; para "
1837+ "otros archivos, use lectura sin formato o ``os.read(file.fileno(), "
1838+ "maxbytecount)``."
18201839
18211840#: ../Doc/library/tkinter.rst:845
18221841msgid ""
@@ -1826,11 +1845,16 @@ msgid ""
18261845"ORed combination of any of the three constants below. The callback is called "
18271846"as follows::"
18281847msgstr ""
1848+ "Registra la función *callback* gestor de archivos *func*. El argumento "
1849+ "*file* puede ser un objeto con un método :meth:`~ io.IOBase.fileno` (como un "
1850+ "archivo u objeto de socket), o un descriptor de archivo entero. El argumento "
1851+ "*mask* es una combinación ORed de cualquiera de las tres constantes que "
1852+ "siguen. La retrollamada se llama de la siguiente manera::"
18291853
18301854#: ../Doc/library/tkinter.rst:856
18311855msgid "Unregisters a file handler."
1832- msgstr ""
1856+ msgstr "Anula el registro de un gestor de archivos. "
18331857
18341858#: ../Doc/library/tkinter.rst:863
18351859msgid "Constants used in the *mask* arguments."
1836- msgstr ""
1860+ msgstr "Constantes utilizadas en los argumentos *mask*. "
0 commit comments