@@ -11,15 +11,16 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2021-03-19 11:16+0100\n "
14
- "PO-Revision-Date : 2020-10-17 19:44+0200 \n "
14
+ "PO-Revision-Date : 2021-08-18 09:42+0800 \n "
15
15
"Last-Translator : Francisco Jesús Sevilla García <fjsevilla.dev@gmail.com>\n "
16
16
"Language : es_ES\n "
17
17
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1)\n "
18
+ "Plural-Forms : nplurals=2; plural=(n != 1); \n "
19
19
"MIME-Version : 1.0\n "
20
20
"Content-Type : text/plain; charset=utf-8\n "
21
21
"Content-Transfer-Encoding : 8bit\n "
22
22
"Generated-By : Babel 2.8.0\n "
23
+ "X-Generator : Poedit 2.4.2\n "
23
24
24
25
#: ../Doc/library/math.rst:2
25
26
msgid ":mod:`math` --- Mathematical functions"
@@ -136,7 +137,7 @@ msgstr ""
136
137
137
138
#: ../Doc/library/math.rst:74
138
139
msgid "Accepting floats with integral values (like ``5.0``) is deprecated."
139
- msgstr ""
140
+ msgstr "Aceptar flotantes con valores integrales (como ``5.0``) está obsoleto. "
140
141
141
142
#: ../Doc/library/math.rst:80
142
143
msgid ""
@@ -234,15 +235,19 @@ msgid ""
234
235
"zero, then the returned value is ``0``. ``gcd()`` without arguments returns "
235
236
"``0``."
236
237
msgstr ""
238
+ "Retorna el máximo común divisor de los argumentos enteros. Si cualquiera de "
239
+ "los argumentos no es cero, entonces el valor retornado es el entero positivo "
240
+ "más grande que divide a todos los argumentos. Si todos los argumentos son "
241
+ "cero, entonces el valor retornado es ``0``. ``gcd()`` sin argumentos retorna "
242
+ "``0``."
237
243
238
244
#: ../Doc/library/math.rst:139
239
- #, fuzzy
240
245
msgid ""
241
246
"Added support for an arbitrary number of arguments. Formerly, only two "
242
247
"arguments were supported."
243
248
msgstr ""
244
- "Agregado soporte para puntos n-dimensionales. Anteriormente, solo se admitía "
245
- "el caso bidimensional ."
249
+ "Agregado soporte para un número arbitrario de argumentos. Anteriormente sólo "
250
+ "se soportaba dos argumentos ."
246
251
247
252
#: ../Doc/library/math.rst:146
248
253
msgid ""
@@ -360,6 +365,11 @@ msgid ""
360
365
"zero, then the returned value is ``0``. ``lcm()`` without arguments returns "
361
366
"``1``."
362
367
msgstr ""
368
+ "Retorna el mínimo común múltiplo de los argumentos enteros. Si todos los "
369
+ "argumentos no son cero, entonces el valor retornado es el entero positivo "
370
+ "más pequeño que es un múltiplo de todos los argumentos. Si cualquiera de los "
371
+ "argumentos es cero, entonces el valor retornado es ``0``. ``lcm()`` sin "
372
+ "argumentos retorna ``1``."
363
373
364
374
#: ../Doc/library/math.rst:222
365
375
msgid ""
@@ -380,34 +390,35 @@ msgstr ""
380
390
#: ../Doc/library/math.rst:234
381
391
msgid "Return the next floating-point value after *x* towards *y*."
382
392
msgstr ""
393
+ "Retorna el siguiente valor flotante después de *x* en la dirección de *y*."
383
394
384
395
#: ../Doc/library/math.rst:236
385
396
msgid "If *x* is equal to *y*, return *y*."
386
- msgstr ""
397
+ msgstr "Si *x* es igual a *y*, retorna *y*. "
387
398
388
399
#: ../Doc/library/math.rst:238
389
400
msgid "Examples:"
390
- msgstr ""
401
+ msgstr "Ejemplos: "
391
402
392
403
#: ../Doc/library/math.rst:240
393
404
msgid "``math.nextafter(x, math.inf)`` goes up: towards positive infinity."
394
- msgstr ""
405
+ msgstr "``math.nextafter(x, math.inf)`` va hacia el infinito positivo. "
395
406
396
407
#: ../Doc/library/math.rst:241
397
408
msgid "``math.nextafter(x, -math.inf)`` goes down: towards minus infinity."
398
- msgstr ""
409
+ msgstr "``math.nextafter(x, -math.inf)`` va hacia el infinito negativo. "
399
410
400
411
#: ../Doc/library/math.rst:242
401
412
msgid "``math.nextafter(x, 0.0)`` goes towards zero."
402
- msgstr ""
413
+ msgstr "``math.nextafter(x, 0.0)`` va hacia cero. "
403
414
404
415
#: ../Doc/library/math.rst:243
405
416
msgid "``math.nextafter(x, math.copysign(math.inf, x))`` goes away from zero."
406
- msgstr ""
417
+ msgstr "``math.nextafter(x, math.copysign(math.inf, x))`` se aleja de cero. "
407
418
408
419
#: ../Doc/library/math.rst:245
409
420
msgid "See also :func:`math.ulp`."
410
- msgstr ""
421
+ msgstr "Ver también :func:`math.ulp`. "
411
422
412
423
#: ../Doc/library/math.rst:251
413
424
msgid ""
@@ -502,50 +513,61 @@ msgstr ""
502
513
503
514
#: ../Doc/library/math.rst:307
504
515
msgid "Return the value of the least significant bit of the float *x*:"
505
- msgstr ""
516
+ msgstr "Retorna el valor del bit menos significativo del flotante *x*: "
506
517
507
518
#: ../Doc/library/math.rst:309
508
519
msgid "If *x* is a NaN (not a number), return *x*."
509
- msgstr ""
520
+ msgstr "Si *x* es un NaN (*not a number*), retorna *x*. "
510
521
511
522
#: ../Doc/library/math.rst:310
512
523
msgid "If *x* is negative, return ``ulp(-x)``."
513
- msgstr ""
524
+ msgstr "Si *x* es negativo, retorna ``ulp(-x)``. "
514
525
515
526
#: ../Doc/library/math.rst:311
516
527
msgid "If *x* is a positive infinity, return *x*."
517
- msgstr ""
528
+ msgstr "Si *x* es un infinito positivo, retorna *x*. "
518
529
519
530
#: ../Doc/library/math.rst:312
520
531
msgid ""
521
532
"If *x* is equal to zero, return the smallest positive *denormalized* "
522
533
"representable float (smaller than the minimum positive *normalized* float, :"
523
534
"data:`sys.float_info.min <sys.float_info>`)."
524
535
msgstr ""
536
+ "Si *x* es igual a cero, retorna el flotante representable *desnormalizado* "
537
+ "positivo más pequeño (menor que el flotante *normalizado* positivo mínimo, :"
538
+ "data:`sys.float_info.min <sys.float_info>`)."
525
539
526
540
#: ../Doc/library/math.rst:315
527
541
msgid ""
528
542
"If *x* is equal to the largest positive representable float, return the "
529
543
"value of the least significant bit of *x*, such that the first float smaller "
530
544
"than *x* is ``x - ulp(x)``."
531
545
msgstr ""
546
+ "Si *x* es igual al flotante representable positivo más pequeño, retorna el "
547
+ "bit menos significativo de *x*, de tal manera que el primer flotante menor "
548
+ "que *x* es ``x - ulp(x)``."
532
549
533
550
#: ../Doc/library/math.rst:318
534
551
msgid ""
535
552
"Otherwise (*x* is a positive finite number), return the value of the least "
536
553
"significant bit of *x*, such that the first float bigger than *x* is ``x + "
537
554
"ulp(x)``."
538
555
msgstr ""
556
+ "De lo contrario (*x* es un número finito positivo), retorna el valor del bit "
557
+ "menos significativo de *x* , de tal forma que el primer flotante mayor a *x* "
558
+ "es ``x + ulp(x)``."
539
559
540
560
#: ../Doc/library/math.rst:322
541
561
msgid "ULP stands for \" Unit in the Last Place\" ."
542
- msgstr ""
562
+ msgstr "ULP significa *Unit in the Last Place* (unidad en el último lugar). "
543
563
544
564
#: ../Doc/library/math.rst:324
545
565
msgid ""
546
566
"See also :func:`math.nextafter` and :data:`sys.float_info.epsilon <sys."
547
567
"float_info>`."
548
568
msgstr ""
569
+ "Ver también :func:`math.nextafter` y :data:`sys.float_info.epsilon <sys."
570
+ "float_info>`."
549
571
550
572
#: ../Doc/library/math.rst:330
551
573
msgid ""
@@ -680,25 +702,28 @@ msgid "Trigonometric functions"
680
702
msgstr "Funciones trigonométricas"
681
703
682
704
#: ../Doc/library/math.rst:426
683
- #, fuzzy
684
705
msgid ""
685
706
"Return the arc cosine of *x*, in radians. The result is between ``0`` and "
686
707
"``pi``."
687
- msgstr "Retorna el arcocoseno de *x*, en radianes."
708
+ msgstr ""
709
+ "Retorna el arcocoseno de *x*, en radianes. El resultado está entre ``0`` y "
710
+ "``pi``."
688
711
689
712
#: ../Doc/library/math.rst:432
690
- #, fuzzy
691
713
msgid ""
692
714
"Return the arc sine of *x*, in radians. The result is between ``-pi/2`` and "
693
715
"``pi/2``."
694
- msgstr "Retorna el arcoseno de *x*, en radianes."
716
+ msgstr ""
717
+ "Retorna el arcoseno de *x*, en radianes. El resultado está entre ``-pi/2`` y "
718
+ "``pi/2``."
695
719
696
720
#: ../Doc/library/math.rst:438
697
- #, fuzzy
698
721
msgid ""
699
722
"Return the arc tangent of *x*, in radians. The result is between ``-pi/2`` "
700
723
"and ``pi/2``."
701
- msgstr "Retorna la arcotangente de *x*, en radianes."
724
+ msgstr ""
725
+ "Retorna la arcotangente de *x*, en radianes. El resultado está entre ``-"
726
+ "pi/2`` y ``pi/2``."
702
727
703
728
#: ../Doc/library/math.rst:444
704
729
msgid ""
0 commit comments