Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbc2f1d2

Browse files
authored
Traduce library/urllib.request.po (#1361)
1 parent48b99b3 commitbc2f1d2

File tree

2 files changed

+29
-19
lines changed

2 files changed

+29
-19
lines changed

‎dictionaries/library_urllib.request.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@ manejadoras
3838
permanently
3939
redirect
4040
addinfourl
41+
is

‎library/urllib.request.po

Lines changed: 28 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@
66
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to
77
# get the list of volunteers
88
#
9-
#,fuzzy
109
msgid ""
1110
msgstr ""
1211
"Project-Id-Version:Python 3.8\n"
1312
"Report-Msgid-Bugs-To:\n"
1413
"POT-Creation-Date:2021-03-19 11:16+0100\n"
15-
"PO-Revision-Date:2021-01-02 15:40+0100\n"
16-
"Last-Translator:Álvaro Mondéjar Rubio <mondejar1994@gmail.com>\n"
14+
"PO-Revision-Date:2021-08-26 23:42+0800\n"
15+
"Last-Translator:Rodrigo Tobar <rtobarc@gmail.com>\n"
1716
"Language:es\n"
1817
"Language-Team:python-doc-es\n"
19-
"Plural-Forms:nplurals=2; plural=(n != 1)\n"
18+
"Plural-Forms:nplurals=2; plural=(n != 1);\n"
2019
"MIME-Version:1.0\n"
21-
"Content-Type:text/plain; charset=utf-8\n"
20+
"Content-Type:text/plain; charset=UTF-8\n"
2221
"Content-Transfer-Encoding:8bit\n"
2322
"Generated-By:Babel 2.8.0\n"
23+
"X-Generator:Poedit 2.4.2\n"
2424

2525
#:../Doc/library/urllib.request.rst:2
2626
msgid":mod:`urllib.request` --- Extensible library for opening URLs"
@@ -125,6 +125,10 @@ msgid ""
125125
"manager` and has the properties *url*, *headers*, and *status*. See :class:"
126126
"`urllib.response.addinfourl` for more detail on these properties."
127127
msgstr""
128+
"Esta función siempre retorna un objeto que puede actuar como un :term:"
129+
"`gestor de contexto <context manager>`, y tiene las propiedades *url*, "
130+
"*headers* y *status*. Véase :class:`urllib.response.addinfourl` para más "
131+
"detalles sobre estas propiedades."
128132

129133
#:../Doc/library/urllib.request.rst:61
130134
msgid""
@@ -389,13 +393,12 @@ msgstr ""
389393
"*data* debe ser un objeto que especifique datos adicionales a enviar al "
390394
"servidor o ``None`` si no se necesitan tales datos. Actualmente las "
391395
"peticiones HTTP son las únicas que usan *data*. Los tipos de objetos "
392-
"soportados incluyen bytes, objectos como archivos e iterables de objetos "
393-
"como bytes. Si no se ha provisto el campo de encabezado ``Content-Length`` "
394-
"ni ``Transfer-Encoding``, :class:`HTTPHandler` establecerá estos encabezados "
395-
"de acuerdo al tipo de *data*. ``Content-Length`` será usado para enviar "
396-
"objetos de bytes, mientras ``Transfer-Encoding: chunked`` como se especifica "
397-
"en :rfc:`7230`, Sección 3.3.1 será usado para enviar archivos y otros "
398-
"iterables."
396+
"soportados incluyen bytes, objetos como archivos e iterables de objetos como "
397+
"bytes. Si no se ha provisto el campo de encabezado ``Content-Length`` ni "
398+
"``Transfer-Encoding``, :class:`HTTPHandler` establecerá estos encabezados de "
399+
"acuerdo al tipo de *data*. ``Content-Length`` será usado para enviar objetos "
400+
"de bytes, mientras ``Transfer-Encoding: chunked`` como se especifica en :rfc:"
401+
"`7230`, Sección 3.3.1 será usado para enviar archivos y otros iterables."
399402

400403
#:../Doc/library/urllib.request.rst:201
401404
msgid""
@@ -2440,38 +2443,44 @@ msgid ""
24402443
"request` module. The typical response object is a :class:`urllib.response."
24412444
"addinfourl` instance:"
24422445
msgstr""
2446+
"El módulo :mod:`urllib.response` define funciones y clases que definen una "
2447+
"interfaz mínima *file-like*, incluyendo ``read()`` y ``readline()``. Las "
2448+
"funciones definidas en este módulo son usadas internamente por el módulo :"
2449+
"mod:`urllib.request`. El objeto de respuesta típico es una instancia de :"
2450+
"class:`urllib.response.addinfourl`:"
24432451

24442452
#:../Doc/library/urllib.request.rst:1588
2445-
#,fuzzy
24462453
msgid""
24472454
"URL of the resource retrieved, commonly used to determine if a redirect was "
24482455
"followed."
24492456
msgstr""
2450-
":meth:`~urllib.response.addinfourl.geturl` --- retorna la URL del recurso "
2451-
"obtenido, comúnmente usado para determinar si se ha seguidouna redirección"
2457+
":URL del recurso obtenido, comúnmente usado para determinar si se ha seguido "
2458+
"una redirección."
24522459

24532460
#:../Doc/library/urllib.request.rst:1592
24542461
msgid""
24552462
"Returns the headers of the response in the form of an :class:`~email.message."
24562463
"EmailMessage` instance."
24572464
msgstr""
2465+
"Retorna las cabeceras de la respuesta en la forma de una instancia de :class:"
2466+
"`~email.message.EmailMessage`."
24582467

24592468
#:../Doc/library/urllib.request.rst:1598
24602469
msgid"Status code returned by server."
2461-
msgstr""
2470+
msgstr"Código de estado retornado por el servidor."
24622471

24632472
#:../Doc/library/urllib.request.rst:1602
24642473
msgid"Deprecated in favor of :attr:`~addinfourl.url`."
2465-
msgstr""
2474+
msgstr"Obsoleto en favor de :attr:`~addinfourl.url`."
24662475

24672476
#:../Doc/library/urllib.request.rst:1607
24682477
msgid"Deprecated in favor of :attr:`~addinfourl.headers`."
2469-
msgstr""
2478+
msgstr"Obsoleto en favor de :attr:`~addinfourl.headers`."
24702479

24712480
#:../Doc/library/urllib.request.rst:1612
24722481
#:../Doc/library/urllib.request.rst:1617
24732482
msgid"Deprecated in favor of :attr:`~addinfourl.status`."
2474-
msgstr""
2483+
msgstr"Obsoleto en favor de :attr:`~addinfourl.status`."
24752484

24762485
#~ msgid ""
24772486
#~ "This function always returns an object which can work as a :term:`context "

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp