1
1
# Copyright (C) 2001-2020, Python Software Foundation
2
2
# This file is distributed under the same license as the Python package.
3
- # Maintained by the python-doc-es workteam.
3
+ # Maintained by the python-doc-es workteam.
4
4
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
5
5
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
6
6
#
7
- #, fuzzy
8
7
msgid ""
9
8
msgstr ""
10
9
"Project-Id-Version : Python 3.8\n "
11
10
"Report-Msgid-Bugs-To : \n "
12
11
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
13
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
12
+ "PO-Revision-Date : 2020-08-24 20:44-0500\n "
15
13
"Language-Team : python-doc-es\n "
16
14
"MIME-Version : 1.0\n "
17
15
"Content-Type : text/plain; charset=UTF-8\n "
18
16
"Content-Transfer-Encoding : 8bit\n "
17
+ "Last-Translator : Gustavo Huarcaya <diavolo@gahd.net>\n "
18
+ "Language : es\n "
19
+ "X-Generator : Poedit 1.8.12\n "
20
+ "X-Poedit-SourceCharset : UTF-8\n "
19
21
20
22
#: ../Doc/library/__future__.rst:2
21
23
msgid ":mod:`__future__` --- Future statement definitions"
22
- msgstr ""
24
+ msgstr ":mod:`__future__` --- Definiciones de declaraciones futuras "
23
25
24
26
#: ../Doc/library/__future__.rst:7
25
27
msgid "**Source code:** :source:`Lib/__future__.py`"
26
- msgstr ""
28
+ msgstr "**Código fuente:** :source:`Lib/__future__.py` "
27
29
28
30
#: ../Doc/library/__future__.rst:11
29
31
msgid ":mod:`__future__` is a real module, and serves three purposes:"
30
- msgstr ""
32
+ msgstr ":mod:`__future__` es un módulo real y tiene tres propósitos: "
31
33
32
34
#: ../Doc/library/__future__.rst:13
33
35
msgid ""
34
36
"To avoid confusing existing tools that analyze import statements and expect "
35
37
"to find the modules they're importing."
36
38
msgstr ""
39
+ "Para evitar confundir las herramientas existentes que analizan las "
40
+ "declaraciones de importación y esperan encontrar los módulos que están "
41
+ "importando."
37
42
38
43
#: ../Doc/library/__future__.rst:16
39
44
msgid ""
40
45
"To ensure that :ref:`future statements <future>` run under releases prior to "
41
46
"2.1 at least yield runtime exceptions (the import of :mod:`__future__` will "
42
47
"fail, because there was no module of that name prior to 2.1)."
43
48
msgstr ""
49
+ "Para garantizar que las :ref:`declaraciones futuras <future>` se ejecuten en "
50
+ "versiones anteriores a 2.1 al menos produzcan excepciones en tiempo de "
51
+ "ejecución (la importación de :mod:`__future__` fallará, porque no había "
52
+ "ningún módulo con ese nombre antes de 2.1)."
44
53
45
54
#: ../Doc/library/__future__.rst:20
46
55
msgid ""
@@ -49,29 +58,40 @@ msgid ""
49
58
"and can be inspected programmatically via importing :mod:`__future__` and "
50
59
"examining its contents."
51
60
msgstr ""
61
+ "Documentar cuándo se introdujeron cambios incompatibles y cuándo serán --- o "
62
+ "fueron --- obligatorios. Esta es una forma de documentación ejecutable y se "
63
+ "puede inspeccionar mediante programación importando :mod:`__future__` y "
64
+ "examinando su contenido."
52
65
53
66
#: ../Doc/library/__future__.rst:25
54
67
msgid "Each statement in :file:`__future__.py` is of the form::"
55
- msgstr ""
68
+ msgstr "Cada declaración en :file:`__future__.py` tiene la forma:: "
56
69
57
70
#: ../Doc/library/__future__.rst:31
58
71
msgid ""
59
72
"where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both "
60
73
"are 5-tuples of the same form as :data:`sys.version_info`::"
61
74
msgstr ""
75
+ "donde, normalmente, *OptionalRelease* es menor que *MandatoryRelease* y "
76
+ "ambos son 5-tuplas de la misma forma que :data:`sys.version_info`::"
62
77
63
78
#: ../Doc/library/__future__.rst:41
64
79
msgid ""
65
80
"*OptionalRelease* records the first release in which the feature was "
66
81
"accepted."
67
82
msgstr ""
83
+ "*OptionalRelease* registra la primera versión en la que se aceptó la "
84
+ "característica."
68
85
69
86
#: ../Doc/library/__future__.rst:43
70
87
msgid ""
71
88
"In the case of a *MandatoryRelease* that has not yet occurred, "
72
89
"*MandatoryRelease* predicts the release in which the feature will become "
73
90
"part of the language."
74
91
msgstr ""
92
+ "En el caso de un *MandatoryRelease* que aún no se ha producido, "
93
+ "*MandatoryRelease* predice el lanzamiento en el que la característica pasará "
94
+ "a formar parte del lenguaje."
75
95
76
96
#: ../Doc/library/__future__.rst:47
77
97
msgid ""
@@ -80,18 +100,26 @@ msgid ""
80
100
"statement to use the feature in question, but may continue to use such "
81
101
"imports."
82
102
msgstr ""
103
+ "De otro modo, *MandatoryRelease* registra cuándo la característica se "
104
+ "convirtió en parte del lenguaje; en versiones en o después de este, los "
105
+ "módulos ya no necesitan una declaración futura para usar la característica "
106
+ "en cuestión, pero pueden continuar usando dichas importaciones."
83
107
84
108
#: ../Doc/library/__future__.rst:51
85
109
msgid ""
86
110
"*MandatoryRelease* may also be ``None``, meaning that a planned feature got "
87
111
"dropped."
88
112
msgstr ""
113
+ "*MandatoryRelease* también puede ser ``None``, lo que significa que se "
114
+ "eliminó una característica planificada."
89
115
90
116
#: ../Doc/library/__future__.rst:54
91
117
msgid ""
92
118
"Instances of class :class:`_Feature` have two corresponding methods, :meth:"
93
119
"`getOptionalRelease` and :meth:`getMandatoryRelease`."
94
120
msgstr ""
121
+ "Las instancias de la clase :class:`_Feature` tienen dos métodos "
122
+ "correspondientes, :meth:`getOptionalRelease` y :meth:`getMandatoryRelease`."
95
123
96
124
#: ../Doc/library/__future__.rst:57
97
125
msgid ""
@@ -100,159 +128,166 @@ msgid ""
100
128
"dynamically compiled code. This flag is stored in the :attr:`compiler_flag` "
101
129
"attribute on :class:`_Feature` instances."
102
130
msgstr ""
131
+ "*CompilerFlag* es el indicador (campo de bits) que debe pasarse en el cuarto "
132
+ "argumento a la función incorporada :func:`compile` para habilitar la "
133
+ "característica en código compilado dinámicamente. Esta bandera se almacena "
134
+ "en el atributo :attr:`compiler_flag` en las instancias :class:`_Feature`."
103
135
104
136
#: ../Doc/library/__future__.rst:62
105
137
msgid ""
106
138
"No feature description will ever be deleted from :mod:`__future__`. Since "
107
139
"its introduction in Python 2.1 the following features have found their way "
108
140
"into the language using this mechanism:"
109
141
msgstr ""
142
+ "Ninguna descripción de característica se eliminará de :mod:`__future__`. "
143
+ "Desde su introducción en Python 2.1, las siguientes características han "
144
+ "encontrado su camino en el lenguaje usando este mecanismo:"
110
145
111
146
#: ../Doc/library/__future__.rst:67
112
147
msgid "feature"
113
- msgstr ""
148
+ msgstr "característica "
114
149
115
150
#: ../Doc/library/__future__.rst:67
116
151
msgid "optional in"
117
- msgstr ""
152
+ msgstr "opcional en "
118
153
119
154
#: ../Doc/library/__future__.rst:67
120
155
msgid "mandatory in"
121
- msgstr ""
156
+ msgstr "obligatorio en "
122
157
123
158
#: ../Doc/library/__future__.rst:67
124
159
msgid "effect"
125
- msgstr ""
160
+ msgstr "efecto "
126
161
127
162
#: ../Doc/library/__future__.rst:69
128
163
msgid "nested_scopes"
129
- msgstr ""
164
+ msgstr "nested_scopes "
130
165
131
166
#: ../Doc/library/__future__.rst:69
132
167
msgid "2.1.0b1"
133
- msgstr ""
168
+ msgstr "2.1.0b1 "
134
169
135
170
#: ../Doc/library/__future__.rst:69
136
171
msgid "2.2"
137
- msgstr ""
172
+ msgstr "2.2 "
138
173
139
174
#: ../Doc/library/__future__.rst:69
140
175
msgid ":pep:`227`: *Statically Nested Scopes*"
141
- msgstr ""
176
+ msgstr ":pep:`227`: *Ámbitos anidados estáticamente* "
142
177
143
178
#: ../Doc/library/__future__.rst:72
144
179
msgid "generators"
145
- msgstr ""
180
+ msgstr "generadores "
146
181
147
182
#: ../Doc/library/__future__.rst:72
148
183
msgid "2.2.0a1"
149
- msgstr ""
184
+ msgstr "2.2.0a1 "
150
185
151
186
#: ../Doc/library/__future__.rst:72
152
187
msgid "2.3"
153
- msgstr ""
188
+ msgstr "2.3 "
154
189
155
190
#: ../Doc/library/__future__.rst:72
156
191
msgid ":pep:`255`: *Simple Generators*"
157
- msgstr ""
192
+ msgstr ":pep:`255`: *Generadores simples* "
158
193
159
194
#: ../Doc/library/__future__.rst:75
160
195
msgid "division"
161
- msgstr ""
196
+ msgstr "división "
162
197
163
198
#: ../Doc/library/__future__.rst:75
164
199
msgid "2.2.0a2"
165
- msgstr ""
200
+ msgstr "2.2.0a2 "
166
201
167
202
#: ../Doc/library/__future__.rst:75 ../Doc/library/__future__.rst:78
168
203
#: ../Doc/library/__future__.rst:84 ../Doc/library/__future__.rst:87
169
204
msgid "3.0"
170
- msgstr ""
205
+ msgstr "3.0 "
171
206
172
207
#: ../Doc/library/__future__.rst:75
173
208
msgid ":pep:`238`: *Changing the Division Operator*"
174
- msgstr ""
209
+ msgstr ":pep:`238`: *Cambio de operador de división* "
175
210
176
211
#: ../Doc/library/__future__.rst:78
177
212
msgid "absolute_import"
178
- msgstr ""
213
+ msgstr "absolute_import "
179
214
180
215
#: ../Doc/library/__future__.rst:78 ../Doc/library/__future__.rst:81
181
216
msgid "2.5.0a1"
182
- msgstr ""
217
+ msgstr "2.5.0a1 "
183
218
184
219
#: ../Doc/library/__future__.rst:78
185
220
msgid ":pep:`328`: *Imports: Multi-Line and Absolute/Relative*"
186
- msgstr ""
221
+ msgstr ":pep:`328`: *Importaciones: Multilínea y Absoluto/Relativo* "
187
222
188
223
#: ../Doc/library/__future__.rst:81
189
224
msgid "with_statement"
190
- msgstr ""
225
+ msgstr "with_statement "
191
226
192
227
#: ../Doc/library/__future__.rst:81
193
228
msgid "2.6"
194
- msgstr ""
229
+ msgstr "2.6 "
195
230
196
231
#: ../Doc/library/__future__.rst:81
197
232
msgid ":pep:`343`: *The \" with\" Statement*"
198
- msgstr ""
233
+ msgstr ":pep:`343`: *La declaración \" with \" * "
199
234
200
235
#: ../Doc/library/__future__.rst:84
201
236
msgid "print_function"
202
- msgstr ""
237
+ msgstr "print_function "
203
238
204
239
#: ../Doc/library/__future__.rst:84 ../Doc/library/__future__.rst:87
205
240
msgid "2.6.0a2"
206
- msgstr ""
241
+ msgstr "2.6.0a2 "
207
242
208
243
#: ../Doc/library/__future__.rst:84
209
244
msgid ":pep:`3105`: *Make print a function*"
210
- msgstr ""
245
+ msgstr ":pep:`3105`: *Hacer de *print* una función* "
211
246
212
247
#: ../Doc/library/__future__.rst:87
213
248
msgid "unicode_literals"
214
- msgstr ""
249
+ msgstr "unicode_literals "
215
250
216
251
#: ../Doc/library/__future__.rst:87
217
252
msgid ":pep:`3112`: *Bytes literals in Python 3000*"
218
- msgstr ""
253
+ msgstr ":pep:`3112`: *Bytes literales en Python 3000* "
219
254
220
255
#: ../Doc/library/__future__.rst:90
221
256
msgid "generator_stop"
222
- msgstr ""
257
+ msgstr "generator_stop "
223
258
224
259
#: ../Doc/library/__future__.rst:90
225
260
msgid "3.5.0b1"
226
- msgstr ""
261
+ msgstr "3.5.0b1 "
227
262
228
263
#: ../Doc/library/__future__.rst:90
229
264
msgid "3.7"
230
- msgstr ""
265
+ msgstr "3.7 "
231
266
232
267
#: ../Doc/library/__future__.rst:90
233
268
msgid ":pep:`479`: *StopIteration handling inside generators*"
234
- msgstr ""
269
+ msgstr ":pep:`479`: *Manejo de StopIteration dentro de generadores* "
235
270
236
271
#: ../Doc/library/__future__.rst:93
237
272
msgid "annotations"
238
- msgstr ""
273
+ msgstr "anotaciones "
239
274
240
275
#: ../Doc/library/__future__.rst:93
241
276
msgid "3.7.0b1"
242
- msgstr ""
277
+ msgstr "3.7.0b1 "
243
278
244
279
#: ../Doc/library/__future__.rst:93
245
280
msgid "4.0"
246
- msgstr ""
281
+ msgstr "4.0 "
247
282
248
283
#: ../Doc/library/__future__.rst:93
249
284
msgid ":pep:`563`: *Postponed evaluation of annotations*"
250
- msgstr ""
285
+ msgstr ":pep:`563`: *Evaluación pospuesta de anotaciones* "
251
286
252
287
#: ../Doc/library/__future__.rst:102
253
288
msgid ":ref:`future`"
254
- msgstr ""
289
+ msgstr ":ref:`future` "
255
290
256
291
#: ../Doc/library/__future__.rst:103
257
292
msgid "How the compiler treats future imports."
258
- msgstr ""
293
+ msgstr "Cómo trata el compilador las importaciones futuras. "
0 commit comments