@@ -244,6 +244,8 @@ msgstr ""
244
244
"sobrescribe todas las asignaciones anteriores a esas variables, incluidas "
245
245
"las realizadas en la suite del bucle ``for``::"
246
246
247
+ # No se pueden traducir los commentarios hasta que pospell tenga la habilidad
248
+ # de entender líneas de código.
247
249
#: ../Doc/reference/compound_stmts.rst:183
248
250
msgid ""
249
251
"for i in range(10):\n"
@@ -254,9 +256,9 @@ msgid ""
254
256
msgstr ""
255
257
"for i in range(10):\n"
256
258
" print(i)\n"
257
- " i = 5 # esto no afectará los bucles ` for` \n"
258
- " # porque i se sobrescribirá con el próximo \n"
259
- " # índice en el rango "
259
+ " i = 5 # this will not affect the for-loop \n"
260
+ " # because i will be overwritten with the next \n"
261
+ " # index in the range "
260
262
261
263
#: ../Doc/reference/compound_stmts.rst:193
262
264
msgid ""
@@ -604,7 +606,7 @@ msgid ""
604
606
"same :keyword:`try`. :keyword:`break`, :keyword:`continue` and :keyword:"
605
607
"`return` cannot appear in an :keyword:`!except*` clause."
606
608
msgstr ""
607
- "No se puede mesclar :keyword:`except` and :keyword:`!except*`en el mismo :"
609
+ "No se puede mesclar :keyword:`except` y :keyword:`!except*`en el mismo :"
608
610
"keyword:`try`. :keyword:`break`, :keyword:`continue` y :keyword:`return` no "
609
611
"puede aparecer en una cláusula :keyword:`!except*`."
610
612
@@ -777,7 +779,7 @@ msgstr ""
777
779
#: ../Doc/reference/compound_stmts.rst:495
778
780
msgid "The context manager's :meth:`~object.__exit__` is loaded for later use."
779
781
msgstr ""
780
- "El administrador de contexto :meth:`__exit__` se carga para su uso posterior."
782
+ "El administrador de contexto :meth:`~object. __exit__` se carga para su uso posterior."
781
783
782
784
#: ../Doc/reference/compound_stmts.rst:497
783
785
msgid "The context manager's :meth:`~object.__enter__` method is invoked."
@@ -788,7 +790,7 @@ msgid ""
788
790
"If a target was included in the :keyword:`with` statement, the return value "
789
791
"from :meth:`~object.__enter__` is assigned to it."
790
792
msgstr ""
791
- "Si se incluyó el destino en la delcaración :keyword:`with`, se le asigna el "
793
+ "Si se incluyó el destino en la declaración :keyword:`with`, se le asigna el "
792
794
"valor de retorno de :meth:`__enter__`."
793
795
794
796
#: ../Doc/reference/compound_stmts.rst:504
@@ -2964,7 +2966,7 @@ msgid ""
2964
2966
"Generic functions, classes, and type aliases have a :attr:`~definition."
2965
2967
"__type_params__` attribute listing their type parameters."
2966
2968
msgstr ""
2967
- "Funciones genéricas, clases y aliases de tipo tienen un atributo :attr:`! "
2969
+ "Funciones genéricas, clases y aliases de tipo tienen un atributo :: attr:`~definition. "
2968
2970
"__type_params__` que lista sus parámetros de tipo."
2969
2971
2970
2972
#: ../Doc/reference/compound_stmts.rst:1679
@@ -3190,6 +3192,8 @@ msgstr ""
3190
3192
"Excepto para la :ref:`lazy-evaluation <lazy-evaluation>` del :class:`~typing."
3191
3193
"TypeVar` vinculada, esto es equivalente a::"
3192
3194
3195
+ # No se pueden traducir los commentarios hasta que pospell tenga la habilidad
3196
+ # de entender líneas de código.
3193
3197
#: ../Doc/reference/compound_stmts.rst:1772
3194
3198
msgid ""
3195
3199
"DEFAULT_OF_arg = some_default\n"
@@ -3217,7 +3221,7 @@ msgstr ""
3217
3221
"\n"
3218
3222
" annotation-def BOUND_OF_T():\n"
3219
3223
" return int\n"
3220
- " # En realidad , BOUND_OF_T() se evaluá solamente a pedido .\n"
3224
+ " # In reality , BOUND_OF_T() is evaluated only on demand .\n"
3221
3225
" T = typing.TypeVar(\" T\" , bound=BOUND_OF_T())\n"
3222
3226
"\n"
3223
3227
" Ts = typing.TypeVarTuple(\" Ts\" )\n"
@@ -3345,6 +3349,8 @@ msgstr ""
3345
3349
"Excepto para la :ref:`evaluación perezosa <lazy-evaluation>` del valor, esto "
3346
3350
"es equivalente a::"
3347
3351
3352
+ # No se pueden traducir los commentarios hasta que pospell tenga la habilidad
3353
+ # de entender líneas de código.
3348
3354
#: ../Doc/reference/compound_stmts.rst:1848
3349
3355
msgid ""
3350
3356
"annotation-def TYPE_PARAMS_OF_ListOrSet():\n"
@@ -3362,7 +3368,7 @@ msgstr ""
3362
3368
"\n"
3363
3369
" annotation-def VALUE_OF_ListOrSet():\n"
3364
3370
" return list[T] | set[T]\n"
3365
- " # En realidad, el valor se evaluá perezosamente \n"
3371
+ " # In reality, the value is lazily evaluated \n"
3366
3372
" return typing.TypeAliasType(\" ListOrSet\" , VALUE_OF_ListOrSet(), "
3367
3373
"type_params=(T,))\n"
3368
3374
"ListOrSet = TYPE_PARAMS_OF_ListOrSet()"
0 commit comments