Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7fd931e

Browse files
author
Claudia
committed
started removal of fuzzies
1 parent 2e3cc6b commit 7fd931e

File tree

1 file changed

+3
-28
lines changed

1 file changed

+3
-28
lines changed

whatsnew/2.5.po

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
14-
"PO-Revision-Date: 2021-08-08 10:31+0100\n"
14+
"PO-Revision-Date: 2021-09-26 10:19+0100\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -88,7 +88,6 @@ msgstr ""
8888
"ellas es una modificación amplia de la semántica de Python."
8989

9090
#: ../Doc/whatsnew/2.5.rst:34
91-
#, fuzzy
9291
msgid ""
9392
"As well as the language and library additions, other improvements and "
9493
"bugfixes were made throughout the source tree. A search through the SVN "
@@ -102,7 +101,6 @@ msgstr ""
102101
"que ambas cifras estén subestimadas)"
103102

104103
#: ../Doc/whatsnew/2.5.rst:39
105-
#, fuzzy
106104
msgid ""
107105
"This article doesn't try to be a complete specification of the new features; "
108106
"instead changes are briefly introduced using helpful examples. For full "
@@ -119,7 +117,6 @@ msgstr ""
119117
"consulta el PEP de una nueva característica en particular."
120118

121119
#: ../Doc/whatsnew/2.5.rst:45
122-
#, fuzzy
123120
msgid ""
124121
"Comments, suggestions, and error reports for this document are welcome; "
125122
"please e-mail them to the author or open a bug in the Python bug tracker."
@@ -129,12 +126,10 @@ msgstr ""
129126
"abra un error en el rastreador de errores de Python."
130127

131128
#: ../Doc/whatsnew/2.5.rst:54
132-
#, fuzzy
133129
msgid "PEP 308: Conditional Expressions"
134130
msgstr "PEP 308: Expresiones condicionales"
135131

136132
#: ../Doc/whatsnew/2.5.rst:56
137-
#, fuzzy
138133
msgid ""
139134
"For a long time, people have been requesting a way to write conditional "
140135
"expressions, which are expressions that return value A or value B depending "
@@ -149,7 +144,6 @@ msgstr ""
149144
"que tiene el mismo efecto que la siguiente::"
150145

151146
#: ../Doc/whatsnew/2.5.rst:66
152-
#, fuzzy
153147
msgid ""
154148
"There have been endless tedious discussions of syntax on both python-dev and "
155149
"comp.lang.python. A vote was even held that found the majority of voters "
@@ -165,12 +159,10 @@ msgstr ""
165159
"false_v``, ``if cond then true_v else false_v``, y otras 16 variaciones."
166160

167161
#: ../Doc/whatsnew/2.5.rst:72
168-
#, fuzzy
169162
msgid "Guido van Rossum eventually chose a surprising syntax::"
170163
msgstr "Guido van Rossum eligió finalmente una sintaxis sorprendente::"
171164

172165
#: ../Doc/whatsnew/2.5.rst:76
173-
#, fuzzy
174166
msgid ""
175167
"Evaluation is still lazy as in existing Boolean expressions, so the order of "
176168
"evaluation jumps around a bit. The *condition* expression in the middle is "
@@ -185,7 +177,6 @@ msgstr ""
185177
"*valor_falso* sólo se evalúa cuando la condición es falsa."
186178

187179
#: ../Doc/whatsnew/2.5.rst:82
188-
#, fuzzy
189180
msgid ""
190181
"This syntax may seem strange and backwards; why does the condition go in the "
191182
"*middle* of the expression, and not in the front as in C's ``c ? x : y``? "
@@ -206,7 +197,6 @@ msgstr ""
206197
"La sintaxis condicional hace que este patrón sea un poco más obvio::"
207198

208199
#: ../Doc/whatsnew/2.5.rst:92
209-
#, fuzzy
210200
msgid ""
211201
"I read the above statement as meaning \"here *contents* is usually assigned "
212202
"a value of ``doc+'\\n'``; sometimes *doc* is empty, in which special case "
@@ -219,7 +209,6 @@ msgstr ""
219209
"condicionales muy a menudo donde no hay un caso común y no común claro."
220210

221211
#: ../Doc/whatsnew/2.5.rst:97
222-
#, fuzzy
223212
msgid ""
224213
"There was some discussion of whether the language should require surrounding "
225214
"conditional expressions with parentheses. The decision was made to *not* "
@@ -233,7 +222,6 @@ msgstr ""
233222
"declaraciones::"
234223

235224
#: ../Doc/whatsnew/2.5.rst:108
236-
#, fuzzy
237225
msgid ""
238226
"In the first version, I think a reader's eye might group the statement into "
239227
"'level = 1', 'if logging', 'else 0', and think that the condition decides "
@@ -248,7 +236,6 @@ msgstr ""
248236
"siempre y que se está eligiendo entre dos valores."
249237

250238
#: ../Doc/whatsnew/2.5.rst:114
251-
#, fuzzy
252239
msgid ""
253240
"Another reason for including the brackets: a few odd combinations of list "
254241
"comprehensions and lambdas could look like incorrect conditional "
@@ -261,12 +248,10 @@ msgstr ""
261248
"alrededor de sus expresiones condicionales, no se encontrará con este caso."
262249

263250
#: ../Doc/whatsnew/2.5.rst:123
264-
#, fuzzy
265251
msgid ":pep:`308` - Conditional Expressions"
266252
msgstr ":pep:`308` - Expresiones condicionales"
267253

268254
#: ../Doc/whatsnew/2.5.rst:123
269-
#, fuzzy
270255
msgid ""
271256
"PEP written by Guido van Rossum and Raymond D. Hettinger; implemented by "
272257
"Thomas Wouters."
@@ -275,12 +260,10 @@ msgstr ""
275260
"Thomas Wouters."
276261

277262
#: ../Doc/whatsnew/2.5.rst:132
278-
#, fuzzy
279263
msgid "PEP 309: Partial Function Application"
280-
msgstr "PEP 309: Aplicación de funciones parciales"
264+
msgstr "PEP 309: Aplicación parcial de funciones"
281265

282266
#: ../Doc/whatsnew/2.5.rst:134
283-
#, fuzzy
284267
msgid ""
285268
"The :mod:`functools` module is intended to contain tools for functional-"
286269
"style programming."
@@ -289,7 +272,6 @@ msgstr ""
289272
"programación de estilo funcional."
290273

291274
#: ../Doc/whatsnew/2.5.rst:137
292-
#, fuzzy
293275
msgid ""
294276
"One useful tool in this module is the :func:`partial` function. For programs "
295277
"written in a functional style, you'll sometimes want to construct variants "
@@ -306,7 +288,6 @@ msgstr ""
306288
"llama \"aplicación parcial de funciones\"."
307289

308290
#: ../Doc/whatsnew/2.5.rst:144
309-
#, fuzzy
310291
msgid ""
311292
":func:`partial` takes the arguments ``(function, arg1, arg2, ... "
312293
"kwarg1=value1, kwarg2=value2)``. The resulting object is callable, so you "
@@ -317,12 +298,10 @@ msgstr ""
317298
"que puedes llamarlo para invocar la *función* con los argumentos rellenados."
318299

319300
#: ../Doc/whatsnew/2.5.rst:148
320-
#, fuzzy
321301
msgid "Here's a small but realistic example::"
322302
msgstr "He aquí un pequeño pero realista ejemplo::"
323303

324304
#: ../Doc/whatsnew/2.5.rst:160
325-
#, fuzzy
326305
msgid ""
327306
"Here's another example, from a program that uses PyGTK. Here a context-"
328307
"sensitive pop-up menu is being constructed dynamically. The callback "
@@ -336,7 +315,6 @@ msgstr ""
336315
"argumento ::"
337316

338317
#: ../Doc/whatsnew/2.5.rst:173
339-
#, fuzzy
340318
msgid ""
341319
"Another function in the :mod:`functools` module is the "
342320
"``update_wrapper(wrapper, wrapped)`` function that helps you write well-"
@@ -352,7 +330,6 @@ msgstr ""
352330
"escribir::"
353331

354332
#: ../Doc/whatsnew/2.5.rst:186
355-
#, fuzzy
356333
msgid ""
357334
":func:`wraps` is a decorator that can be used inside your own decorators to "
358335
"copy the wrapped function's information. An alternate version of the "
@@ -363,12 +340,10 @@ msgstr ""
363340
"alternativa del ejemplo anterior sería::"
364341

365342
#: ../Doc/whatsnew/2.5.rst:201
366-
#, fuzzy
367343
msgid ":pep:`309` - Partial Function Application"
368-
msgstr ":pep:`309` - Aplicación de funciones parciales"
344+
msgstr ":pep:`309` - Aplicación parcial de funciones"
369345

370346
#: ../Doc/whatsnew/2.5.rst:201
371-
#, fuzzy
372347
msgid ""
373348
"PEP proposed and written by Peter Harris; implemented by Hye-Shik Chang and "
374349
"Nick Coghlan, with adaptations by Raymond Hettinger."

0 commit comments

Comments
 (0)