Skip to content

Commit 5e62854

Browse files
committed
Upgrade docs to Python 3.10
Add new un-translated files coming from Python 3.10
1 parent 11516f9 commit 5e62854

File tree

272 files changed

+44768
-28636
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+44768
-28636
lines changed

bugs.po

+8-7
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,16 @@ msgid ""
1010
msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
13-
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
13+
"POT-Creation-Date: 2021-10-16 21:42+0200\n"
1414
"PO-Revision-Date: 2020-06-28 01:03+0200\n"
1515
"Last-Translator: \n"
1616
"Language: es\n"
1717
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=utf-8\n"
2121
"Content-Transfer-Encoding: 8bit\n"
22-
"Generated-By: Babel 2.8.0\n"
23-
"X-Generator: Poedit 2.3.1\n"
22+
"Generated-By: Babel 2.9.1\n"
2423

2524
#: ../Doc/bugs.rst:5
2625
msgid "Dealing with Bugs"
@@ -118,9 +117,10 @@ msgid "Using the Python issue tracker"
118117
msgstr "Utilizar el issue tracker de Python"
119118

120119
#: ../Doc/bugs.rst:43
120+
#, fuzzy
121121
msgid ""
122122
"Bug reports for Python itself should be submitted via the Python Bug Tracker "
123-
"(https://bugs.python.org/). The bug tracker offers a Web form which allows "
123+
"(https://bugs.python.org/). The bug tracker offers a web form which allows "
124124
"pertinent information to be entered and submitted to the developers."
125125
msgstr ""
126126
"Los informes de errores para Python deben enviarse mediante el Python Bug "
@@ -221,9 +221,10 @@ msgstr ""
221221
"tipo de información es útil y por qué lo es."
222222

223223
#: ../Doc/bugs.rst:84
224+
#, fuzzy
224225
msgid ""
225-
"`Bug Report Writing Guidelines <https://developer.mozilla.org/en-US/docs/"
226-
"Mozilla/QA/Bug_writing_guidelines>`_"
226+
"`Bug Writing Guidelines <https://bugzilla.mozilla.org/page.cgi?id=bug-"
227+
"writing.html>`_"
227228
msgstr ""
228229
"`Guía para describir un error <https://developer.mozilla.org/es/docs/QA/"
229230
"Bug_writing_guidelines>`_"

c-api/apiabiversion.po

+135-60
Original file line numberDiff line numberDiff line change
@@ -1,124 +1,199 @@
11
# Copyright (C) 2001-2020, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
33
# Maintained by the python-doc-es workteam.
4-
# [email protected] / https://mail.python.org/mailman3/lists/docs-es.python.org/
5-
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
4+
5+
# https://mail.python.org/mailman3/lists/docs-es.python.org/
6+
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to get
7+
# the list of volunteers
68
#
79
msgid ""
810
msgstr ""
911
"Project-Id-Version: Python 3.8\n"
1012
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2019-05-06 11:59-0400\n"
13+
"POT-Creation-Date: 2021-10-16 21:42+0200\n"
1214
"PO-Revision-Date: 2020-05-08 01:45+0200\n"
15+
"Last-Translator: \n"
16+
"Language: es\n"
1317
"Language-Team: python-doc-es\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
1419
"MIME-Version: 1.0\n"
15-
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Type: text/plain; charset=utf-8\n"
1621
"Content-Transfer-Encoding: 8bit\n"
17-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
18-
"Last-Translator: \n"
19-
"Language: es\n"
20-
"X-Generator: Poedit 2.3\n"
22+
"Generated-By: Babel 2.9.1\n"
2123

2224
#: ../Doc/c-api/apiabiversion.rst:7
2325
msgid "API and ABI Versioning"
2426
msgstr "Versiones de API y ABI"
2527

2628
#: ../Doc/c-api/apiabiversion.rst:9
2729
msgid ""
28-
"``PY_VERSION_HEX`` is the Python version number encoded in a single integer."
30+
"CPython exposes its version number in the following macros. Note that these "
31+
"correspond to the version code is **built** with, not necessarily the "
32+
"version used at **run time**."
33+
msgstr ""
34+
35+
#: ../Doc/c-api/apiabiversion.rst:13
36+
msgid ""
37+
"See :ref:`stable` for a discussion of API and ABI stability across versions."
38+
msgstr ""
39+
40+
#: ../Doc/c-api/apiabiversion.rst:17
41+
#, fuzzy
42+
msgid "The ``3`` in ``3.4.1a2``."
43+
msgstr "``PY_MAJOR_VERSION`` (el ``3`` en ``3.4.1a2``)"
44+
45+
#: ../Doc/c-api/apiabiversion.rst:21
46+
#, fuzzy
47+
msgid "The ``4`` in ``3.4.1a2``."
48+
msgstr "``PY_MINOR_VERSION`` (el ``4`` en ``3.4.1a2``)"
49+
50+
#: ../Doc/c-api/apiabiversion.rst:25
51+
#, fuzzy
52+
msgid "The ``1`` in ``3.4.1a2``."
53+
msgstr "``PY_MICRO_VERSION`` (el ``1`` en ``3.4.1a2``)"
54+
55+
#: ../Doc/c-api/apiabiversion.rst:29
56+
#, fuzzy
57+
msgid ""
58+
"The ``a`` in ``3.4.1a2``. This can be ``0xA`` for alpha, ``0xB`` for beta, "
59+
"``0xC`` for release candidate or ``0xF`` for final."
60+
msgstr ""
61+
"``PY_RELEASE_LEVEL`` (``0xA`` para alfa, ``0xB`` para beta, ``0xC`` para el "
62+
"candidato de lanzamiento y ``0xF`` para final), en este caso es alfa."
63+
64+
#: ../Doc/c-api/apiabiversion.rst:35
65+
#, fuzzy
66+
msgid "The ``2`` in ``3.4.1a2``. Zero for final releases."
67+
msgstr ""
68+
"``PY_RELEASE_SERIAL`` (el ``2`` en ``3.4.1a2``, cero para lanzamientos "
69+
"finales)"
70+
71+
#: ../Doc/c-api/apiabiversion.rst:39
72+
#, fuzzy
73+
msgid "The Python version number encoded in a single integer."
2974
msgstr ""
3075
"``PY_VERSION_HEX`` es el número de versión de Python codificado en un solo "
3176
"entero."
3277

33-
#: ../Doc/c-api/apiabiversion.rst:11
78+
#: ../Doc/c-api/apiabiversion.rst:41
79+
#, fuzzy
3480
msgid ""
35-
"For example if the ``PY_VERSION_HEX`` is set to ``0x030401a2``, the "
36-
"underlying version information can be found by treating it as a 32 bit "
81+
"The underlying version information can be found by treating it as a 32 bit "
3782
"number in the following manner:"
3883
msgstr ""
3984
"Por ejemplo, si ``PY_VERSION_HEX`` se establece en ``0x030401a2``, la "
4085
"información de la versión subyacente se puede encontrar tratándola como un "
4186
"número de 32 bits de la siguiente manera:"
4287

43-
#: ../Doc/c-api/apiabiversion.rst:16
88+
#: ../Doc/c-api/apiabiversion.rst:45
4489
msgid "Bytes"
4590
msgstr "Bytes"
4691

47-
#: ../Doc/c-api/apiabiversion.rst:16
92+
#: ../Doc/c-api/apiabiversion.rst:45
4893
msgid "Bits (big endian order)"
4994
msgstr "Bits (orden *big-endian*)"
5095

51-
#: ../Doc/c-api/apiabiversion.rst:16
96+
#: ../Doc/c-api/apiabiversion.rst:45
5297
msgid "Meaning"
5398
msgstr "Significado"
5499

55-
#: ../Doc/c-api/apiabiversion.rst:18
56-
msgid "``1``"
57-
msgstr "``1``"
100+
#: ../Doc/c-api/apiabiversion.rst:45
101+
msgid "Value for ``3.4.1a2``"
102+
msgstr ""
58103

59-
#: ../Doc/c-api/apiabiversion.rst:18
60-
msgid "``1-8``"
104+
#: ../Doc/c-api/apiabiversion.rst:47
105+
msgid "1"
106+
msgstr ""
107+
108+
#: ../Doc/c-api/apiabiversion.rst:47
109+
#, fuzzy
110+
msgid "1-8"
61111
msgstr "``1-8``"
62112

63-
#: ../Doc/c-api/apiabiversion.rst:18
64-
msgid "``PY_MAJOR_VERSION`` (the ``3`` in ``3.4.1a2``)"
65-
msgstr "``PY_MAJOR_VERSION`` (el ``3`` en ``3.4.1a2``)"
113+
#: ../Doc/c-api/apiabiversion.rst:47
114+
msgid "``PY_MAJOR_VERSION``"
115+
msgstr ""
66116

67-
#: ../Doc/c-api/apiabiversion.rst:21
68-
msgid "``2``"
69-
msgstr "``2``"
117+
#: ../Doc/c-api/apiabiversion.rst:47
118+
#, fuzzy
119+
msgid "``0x03``"
120+
msgstr "``3``"
70121

71-
#: ../Doc/c-api/apiabiversion.rst:21
72-
msgid "``9-16``"
122+
#: ../Doc/c-api/apiabiversion.rst:49
123+
msgid "2"
124+
msgstr ""
125+
126+
#: ../Doc/c-api/apiabiversion.rst:49
127+
#, fuzzy
128+
msgid "9-16"
73129
msgstr "``9-16``"
74130

75-
#: ../Doc/c-api/apiabiversion.rst:21
76-
msgid "``PY_MINOR_VERSION`` (the ``4`` in ``3.4.1a2``)"
77-
msgstr "``PY_MINOR_VERSION`` (el ``4`` en ``3.4.1a2``)"
131+
#: ../Doc/c-api/apiabiversion.rst:49
132+
msgid "``PY_MINOR_VERSION``"
133+
msgstr ""
78134

79-
#: ../Doc/c-api/apiabiversion.rst:24
80-
msgid "``3``"
81-
msgstr "``3``"
135+
#: ../Doc/c-api/apiabiversion.rst:49
136+
#, fuzzy
137+
msgid "``0x04``"
138+
msgstr "``4``"
82139

83-
#: ../Doc/c-api/apiabiversion.rst:24
84-
msgid "``17-24``"
140+
#: ../Doc/c-api/apiabiversion.rst:51
141+
msgid "3"
142+
msgstr ""
143+
144+
#: ../Doc/c-api/apiabiversion.rst:51
145+
#, fuzzy
146+
msgid "17-24"
85147
msgstr "``17-24``"
86148

87-
#: ../Doc/c-api/apiabiversion.rst:24
88-
msgid "``PY_MICRO_VERSION`` (the ``1`` in ``3.4.1a2``)"
89-
msgstr "``PY_MICRO_VERSION`` (el ``1`` en ``3.4.1a2``)"
149+
#: ../Doc/c-api/apiabiversion.rst:51
150+
msgid "``PY_MICRO_VERSION``"
151+
msgstr ""
90152

91-
#: ../Doc/c-api/apiabiversion.rst:27
92-
msgid "``4``"
93-
msgstr "``4``"
153+
#: ../Doc/c-api/apiabiversion.rst:51
154+
#, fuzzy
155+
msgid "``0x01``"
156+
msgstr "``1``"
157+
158+
#: ../Doc/c-api/apiabiversion.rst:53
159+
msgid "4"
160+
msgstr ""
94161

95-
#: ../Doc/c-api/apiabiversion.rst:27
96-
msgid "``25-28``"
162+
#: ../Doc/c-api/apiabiversion.rst:53
163+
#, fuzzy
164+
msgid "25-28"
97165
msgstr "``25-28``"
98166

99-
#: ../Doc/c-api/apiabiversion.rst:27
100-
msgid ""
101-
"``PY_RELEASE_LEVEL`` (``0xA`` for alpha, ``0xB`` for beta, ``0xC`` for "
102-
"release candidate and ``0xF`` for final), in this case it is alpha."
167+
#: ../Doc/c-api/apiabiversion.rst:53
168+
msgid "``PY_RELEASE_LEVEL``"
103169
msgstr ""
104-
"``PY_RELEASE_LEVEL`` (``0xA`` para alfa, ``0xB`` para beta, ``0xC`` para el "
105-
"candidato de lanzamiento y ``0xF`` para final), en este caso es alfa."
106170

107-
#: ../Doc/c-api/apiabiversion.rst:32
108-
msgid "``29-32``"
171+
#: ../Doc/c-api/apiabiversion.rst:53
172+
#, fuzzy
173+
msgid "``0xA``"
174+
msgstr "``4``"
175+
176+
#: ../Doc/c-api/apiabiversion.rst:55
177+
#, fuzzy
178+
msgid "29-32"
109179
msgstr "``29-32``"
110180

111-
#: ../Doc/c-api/apiabiversion.rst:32
112-
msgid ""
113-
"``PY_RELEASE_SERIAL`` (the ``2`` in ``3.4.1a2``, zero for final releases)"
181+
#: ../Doc/c-api/apiabiversion.rst:55
182+
msgid "``PY_RELEASE_SERIAL``"
114183
msgstr ""
115-
"``PY_RELEASE_SERIAL`` (el ``2`` en ``3.4.1a2``, cero para lanzamientos "
116-
"finales)"
117184

118-
#: ../Doc/c-api/apiabiversion.rst:36
119-
msgid "Thus ``3.4.1a2`` is hexversion ``0x030401a2``."
185+
#: ../Doc/c-api/apiabiversion.rst:55
186+
#, fuzzy
187+
msgid "``0x2``"
188+
msgstr "``2``"
189+
190+
#: ../Doc/c-api/apiabiversion.rst:58
191+
#, fuzzy
192+
msgid ""
193+
"Thus ``3.4.1a2`` is hexversion ``0x030401a2`` and ``3.10.0`` is hexversion "
194+
"``0x030a00f0``."
120195
msgstr "Así ``3.4.1a2`` es la hexadecimal ``0x030401a2``."
121196

122-
#: ../Doc/c-api/apiabiversion.rst:38
197+
#: ../Doc/c-api/apiabiversion.rst:62
123198
msgid "All the given macros are defined in :source:`Include/patchlevel.h`."
124199
msgstr "Todas las macros dadas se definen en :source:`Include/patchlevel.h`."

0 commit comments

Comments
 (0)