-
Notifications
You must be signed in to change notification settings - Fork 396
Traducido archivo library/http.client.po #533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wohoo, super buena traducción @mayuti, te cambié unos "devuelve" por "retorna" y encontré solo un espacio extra en un True
, el resto de maravilla. Si aplicas estos cambios (hay que pasar powrap de seguro), yo creo que estariamos listos para hacer el merge.
library/http.client.po
Outdated
|
||
#: ../Doc/library/http.client.rst:116 | ||
msgid "" | ||
"Class whose instances are returned upon successful connection. Not " | ||
"instantiated directly by user." | ||
msgstr "" | ||
"Clase cuyas instancias se devuelven tras una conexión exitosa. No son " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Clase cuyas instancias se devuelven tras una conexión exitosa. No son " | |
"Clase cuyas instancias se retornan tras una conexión exitosa. No son " |
library/http.client.po
Outdated
@@ -170,6 +226,11 @@ msgid "" | |||
"msg` and :attr:`http.server.BaseHTTPRequestHandler.headers`). After " | |||
"returning, the file pointer *fp* is ready to read the HTTP body." | |||
msgstr "" | |||
"Esta función devuelve una instancia de :class:`http.client.HTTPMessage` que " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Esta función devuelve una instancia de :class:`http.client.HTTPMessage` que " | |
"Esta función retorna una instancia de :class:`http.client.HTTPMessage` que " |
library/http.client.po
Outdated
"datos devueltos por el método ``read()`` se codificarán como ISO-8859-1, de " | ||
"lo contrario, los datos devueltos por ``read()`` se envía como está. Si " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"datos devueltos por el método ``read()`` se codificarán como ISO-8859-1, de " | |
"lo contrario, los datos devueltos por ``read()`` se envía como está. Si " | |
"datos retornados por el método ``read()`` se codificarán como ISO-8859-1, de " | |
"lo contrario, los datos retornados por ``read()`` se envía como está. Si " |
library/http.client.po
Outdated
|
||
#: ../Doc/library/http.client.rst:311 | ||
msgid "" | ||
"Should be called after a request is sent to get the response from the " | ||
"server. Returns an :class:`HTTPResponse` instance." | ||
msgstr "" | ||
"Debe llamarse después de enviar una solicitud para obtener la respuesta del " | ||
"servidor. Devuelve una instancia de :class:`HTTPResponse`." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"servidor. Devuelve una instancia de :class:`HTTPResponse`." | |
"servidor. Retorna una instancia de :class:`HTTPResponse`." |
library/http.client.po
Outdated
|
||
#: ../Doc/library/http.client.rst:453 | ||
msgid "Reads and returns the response body, or up to the next *amt* bytes." | ||
msgstr "" | ||
"Lee y devuelve el cuerpo de respuesta, o hasta los siguientes bytes *amt*." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Lee y devuelve el cuerpo de respuesta, o hasta los siguientes bytes *amt*." | |
"Lee y retorna el cuerpo de respuesta, o hasta los siguientes bytes *amt*." |
library/http.client.po
Outdated
|
||
#: ../Doc/library/http.client.rst:475 | ||
msgid "Return the ``fileno`` of the underlying socket." | ||
msgstr "" | ||
msgstr "Devuelve el ``fileno`` del socket implícito." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
msgstr "Devuelve el ``fileno`` del socket implícito." | |
msgstr "Retorna el ``fileno`` del socket implícito." |
|
||
#: ../Doc/library/http.client.rst:489 | ||
msgid "Status code returned by server." | ||
msgstr "" | ||
msgstr "Código del estado devuelto por el servidor." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
msgstr "Código del estado devuelto por el servidor." | |
msgstr "Código del estado retornado por el servidor." |
|
||
#: ../Doc/library/http.client.rst:493 | ||
msgid "Reason phrase returned by server." | ||
msgstr "" | ||
msgstr "Una frase de la razón es devuelta por el servidor." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
msgstr "Una frase de la razón es devuelta por el servidor." | |
msgstr "Una frase de la razón es retornada por el servidor." |
library/http.client.po
Outdated
|
||
#: ../Doc/library/http.client.rst:502 | ||
msgid "Is ``True`` if the stream is closed." | ||
msgstr "" | ||
msgstr "Es `` True`` si la transmisión está cerrada." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
msgstr "Es `` True`` si la transmisión está cerrada." | |
msgstr "Es ``True`` si la transmisión está cerrada." |
library/http.client.po
Outdated
|
||
#: ../Doc/library/http.client.rst:532 | ||
msgid "" | ||
"Here is an example session that uses the ``HEAD`` method. Note that the " | ||
"``HEAD`` method never returns any data. ::" | ||
msgstr "" | ||
"Aquí hay una sesión de ejemplo que usa el método ``HEAD``. Tenga en cuenta " | ||
"que el método ``HEAD`` nunca devuelve ningún dato. ::" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"que el método ``HEAD`` nunca devuelve ningún dato. ::" | |
"que el método ``HEAD`` nunca retorna ningún dato. ::" |
Muchas gracias @mayuti ! 🎉 🎉 🎉 |
Closes #504