Skip to content

Translations for library/xmlrpc.client #2243

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

Merged
merged 10 commits into from
Dec 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
translate library/xmlrpc.client
  • Loading branch information
sofidenner committed Dec 10, 2022
commit fc8ecc0177b753b9490cca0bc2b91a3745e001a6
30 changes: 15 additions & 15 deletions library/xmlrpc.client.po
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
"PO-Revision-Date: 2021-08-03 11:13+0200\n"
"PO-Revision-Date: 2022-12-09 21:24-0300\n"
"Last-Translator: Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n"
"Language: es\n"
"Language-Team: python-doc-es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.10.3\n"
"X-Generator: Poedit 3.2.2\n"

#: ../Doc/library/xmlrpc.client.rst:2
msgid ":mod:`xmlrpc.client` --- XML-RPC client access"
Expand Down Expand Up @@ -62,15 +63,19 @@ msgstr ""
"Para HTTPS URI, :mod:`xmlrpc.client` ahora realiza todas las comprobaciones "
"necesarias de certificados y nombres de host de forma predeterminada."

#, fuzzy
msgid ":ref:`Availability <availability>`: not Emscripten, not WASI."
msgstr ""
msgstr ":ref:`Disponibilidad <availability>`: no Emscripten, no WASI."

#: ../Doc/library/cpython/Doc/includes/wasm-notavail.rst:5
msgid ""
"This module does not work or is not available on WebAssembly platforms "
"``wasm32-emscripten`` and ``wasm32-wasi``. See :ref:`wasm-availability` for "
"more information."
msgstr ""
"Este módulo no funciona o no está disponible en plataformas WebAssembly "
"``wasm32-emscripten`` y ``wasm32-wasi``. Vea :ref:`wasm-availability` para "
"más información."

#: ../Doc/library/xmlrpc.client.rst:41
msgid ""
Expand All @@ -93,7 +98,6 @@ msgstr ""
"UTF-8. El cuarto argumento opcional es un indicador de depuración."

#: ../Doc/library/xmlrpc.client.rst:49
#, fuzzy
msgid ""
"The following parameters govern the use of the returned proxy instance. If "
"*allow_none* is true, the Python constant ``None`` will be translated into "
Expand All @@ -120,11 +124,10 @@ msgstr ""
"com/xml-rpc/extensions.php <https://web.archive.org/web/20130120074804/"
"http://ontosys.com/xml-rpc/extensions.php>` _ para una descripción. La flag "
"*use_builtin_types* puede usarse para hacer que los valores de fecha/hora se "
"presenten como : clase: objetos `datetime.datetime` y datos binarios que se "
"presenten como objetos :class:`datetime.datetime` y los datos binarios "
"pueden ser presentados como objetos :class:`bytes`; esta flag es falsa por "
"defecto. Los objetos :class:`datetime.datetime`, :class:`bytes` y :class:"
"`bytearray` se pueden pasar a las llamadas. El parámetro *header* es una "
"`bytearray` se pueden pasar a las llamadas. El parámetro *headers* es una "
"secuencia opcional de encabezados HTTP para enviar con cada solicitud, "
"expresada como una secuencia de 2 tuplas que representan el nombre y el "
"valor del encabezado. (por ejemplo, `[('Header-Name', 'value')]`). La flag "
Expand Down Expand Up @@ -349,7 +352,6 @@ msgid "Added the *context* argument."
msgstr "Se agregó el argumento *context*."

#: ../Doc/library/xmlrpc.client.rst:154
#, fuzzy
msgid ""
"Added support of type tags with prefixes (e.g. ``ex:nil``). Added support of "
"unmarshalling additional types used by Apache XML-RPC implementation for "
Expand All @@ -359,12 +361,11 @@ msgid ""
msgstr ""
"Se agregó soporte para etiquetas de tipo con prefijos (por ejemplo. ``ex:"
"nil``). Se agregó soporte para desagrupar los tipos adicionales utilizados "
"por la implementación Apache XML-RPC para números:\n"
"``i1``, ``i2``, ``i8``, ``biginteger``, ``float`` y ``bigdecimal``. Consulte "
"http://ws.apache.org/xmlrpc/types.html para obtener una descripción."
"por la implementación Apache XML-RPC para números: ``i1``, ``i2``, ``i8``, "
"``biginteger``, ``float`` y ``bigdecimal``. Consulte http://ws.apache.org/"
"xmlrpc/types.html para obtener una descripción."

#: ../Doc/library/xmlrpc.client.rst:166
#, fuzzy
msgid "`XML-RPC HOWTO <https://www.tldp.org/HOWTO/XML-RPC-HOWTO/index.html>`_"
msgstr "`XML-RPC HOWTO <http://www.tldp.org/HOWTO/XML-RPC-HOWTO/index.html>`_"

Expand All @@ -379,7 +380,6 @@ msgstr ""
"cliente XML-RPC necesita saber."

#: ../Doc/library/xmlrpc.client.rst:169
#, fuzzy
msgid ""
"`XML-RPC Introspection <https://xmlrpc-c.sourceforge.net/introspection."
"html>`_"
Expand Down Expand Up @@ -460,8 +460,8 @@ msgstr ""
msgid ""
"Signatures themselves are restricted to the top level parameters expected by "
"a method. For instance if a method expects one array of structs as a "
"parameter, and it returns a string, its signature is simply \"string, array"
"\". If it expects three integers and returns a string, its signature is "
"parameter, and it returns a string, its signature is simply \"string, "
"array\". If it expects three integers and returns a string, its signature is "
"\"string, int, int, int\"."
msgstr ""
"Las propias firmas están restringidas a los parámetros de nivel superior "
Expand Down