@@ -11,7 +11,7 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"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 "
15
15
"Language-Team : python-doc-es\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
@@ -1785,27 +1785,39 @@ msgid ""
1785
1785
"object is deleted, the image data is deleted as well, and Tk will display an "
1786
1786
"empty box wherever the image was used."
1787
1787
msgstr ""
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."
1788
1793
1789
1794
#: ../Doc/library/tkinter.rst:813
1790
1795
msgid ""
1791
1796
"The `Pillow <http://python-pillow.org/>`_ package adds support for formats "
1792
1797
"such as BMP, JPEG, TIFF, and WebP, among others."
1793
1798
msgstr ""
1799
+ "El paquete `Pillow <http://python-pillow.org/>`_ añade soporte para los "
1800
+ "formatos del tipo BMP, JPEG, TIFF, y WebP, entre otros."
1794
1801
1795
1802
#: ../Doc/library/tkinter.rst:819
1796
1803
msgid "File Handlers"
1797
- msgstr ""
1804
+ msgstr "Gestor de archivos "
1798
1805
1799
1806
#: ../Doc/library/tkinter.rst:821
1807
+ #, fuzzy
1800
1808
msgid ""
1801
1809
"Tk allows you to register and unregister a callback function which will be "
1802
1810
"called from the Tk mainloop when I/O is possible on a file descriptor. Only "
1803
1811
"one handler may be registered per file descriptor. Example code::"
1804
1812
msgstr ""
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:"
1805
1817
1806
1818
#: ../Doc/library/tkinter.rst:832
1807
1819
msgid "This feature is not available on Windows."
1808
- msgstr ""
1820
+ msgstr "Esta función no está disponible en Windows. "
1809
1821
1810
1822
#: ../Doc/library/tkinter.rst:834
1811
1823
msgid ""
@@ -1817,6 +1829,13 @@ msgid ""
1817
1829
"work fine; for other files, use raw reads or ``os.read(file.fileno(), "
1818
1830
"maxbytecount)``."
1819
1831
msgstr ""
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)``."
1820
1839
1821
1840
#: ../Doc/library/tkinter.rst:845
1822
1841
msgid ""
@@ -1826,11 +1845,16 @@ msgid ""
1826
1845
"ORed combination of any of the three constants below. The callback is called "
1827
1846
"as follows::"
1828
1847
msgstr ""
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::"
1829
1853
1830
1854
#: ../Doc/library/tkinter.rst:856
1831
1855
msgid "Unregisters a file handler."
1832
- msgstr ""
1856
+ msgstr "Anula el registro de un gestor de archivos. "
1833
1857
1834
1858
#: ../Doc/library/tkinter.rst:863
1835
1859
msgid "Constants used in the *mask* arguments."
1836
- msgstr ""
1860
+ msgstr "Constantes utilizadas en los argumentos *mask*. "
0 commit comments