@@ -6,14 +6,14 @@ msgstr ""
6
6
"Project-Id-Version : Python 3.6\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
8
"POT-Creation-Date : 2018-06-28 15:29+0200\n "
9
- "PO-Revision-Date : 2018-05-08 12:34+0200 \n "
9
+ "PO-Revision-Date : 2018-07-17 18:30+0100 \n "
10
10
"
Last-Translator :
Julien Palard <[email protected] >\n "
11
11
"
Language-Team :
FRENCH <[email protected] >\n "
12
12
"Language : fr\n "
13
13
"MIME-Version : 1.0\n "
14
14
"Content-Type : text/plain; charset=UTF-8\n "
15
15
"Content-Transfer-Encoding : 8bit\n "
16
- "X-Generator : Poedit 2.0 .4\n "
16
+ "X-Generator : Poedit 1.5 .4\n "
17
17
18
18
#: ../Doc/library/math.rst:2
19
19
msgid ":mod:`math` --- Mathematical functions"
@@ -297,6 +297,12 @@ msgid ""
297
297
"*even* integer is used for ``n``. The remainder ``r = remainder(x, y)`` "
298
298
"thus always satisfies ``abs(r) <= 0.5 * abs(y)``."
299
299
msgstr ""
300
+ "Renvoie le reste selon la norme IEEE 754 de *x* par rapport à *y*. Pour *x* "
301
+ "fini et *y* fini non nul, il s'agit de la différence ``x - n*y``, où ``n`` "
302
+ "est l'entier le plus proche de la valeur exacte du quotient ``x / y``. Si "
303
+ "``x / y`` est exactement à mi-chemin de deux entiers consécutifs, le plus "
304
+ "proche entier *pair* est utilisé pour ``n``. Ainsi, le reste ``r = "
305
+ "remainder(x, y)`` vérifie toujours ``abs(r) <= 0.5 * abs(y)``."
300
306
301
307
#: ../Doc/library/math.rst:190
302
308
msgid ""
@@ -305,12 +311,20 @@ msgid ""
305
311
"x)`` raise :exc:`ValueError` for any non-NaN *x*. If the result of the "
306
312
"remainder operation is zero, that zero will have the same sign as *x*."
307
313
msgstr ""
314
+ "Les cas spéciaux suivent la norme IEEE 754 : en particulier, ``remainder(x, "
315
+ "math.inf)`` vaut *x* pour tout *x* fini, et ``remainder(x, 0)`` et "
316
+ "``remainder(math.inf, x)`` lèvent :exc:`ValueError` pour tout *x* non-NaN. "
317
+ "Si le résultat de l'opération *remainder* est zéro, alors ce zéro aura le "
318
+ "même signe que *x*."
308
319
309
320
#: ../Doc/library/math.rst:196
310
321
msgid ""
311
322
"On platforms using IEEE 754 binary floating-point, the result of this "
312
323
"operation is always exactly representable: no rounding error is introduced."
313
324
msgstr ""
325
+ "Sur les plateformes utilisant la norme IEEE 754 pour les nombres à virgule "
326
+ "flottante en binaire, le résultat de cette opération est toujours exactement "
327
+ "représentable : aucune erreur d'arrondi n'est introduite."
314
328
315
329
#: ../Doc/library/math.rst:204
316
330
msgid ""
@@ -360,20 +374,23 @@ msgid ""
360
374
"natural logarithms. This is usually more accurate than ``math.e ** x`` or "
361
375
"``pow(math.e, x)``."
362
376
msgstr ""
377
+ "Renvoie *e* élevé à la puissance *x*, où *e* = 2.718281... est la base des "
378
+ "logarithmes naturels. Cela est en général plus précis que ``math.e ** x`` ou "
379
+ "``pow(math.e, x)``."
363
380
364
381
#: ../Doc/library/math.rst:233
365
- #, fuzzy
366
382
msgid ""
367
383
"Return *e* raised to the power *x*, minus 1. Here *e* is the base of "
368
384
"natural logarithms. For small floats *x*, the subtraction in ``exp(x) - 1`` "
369
385
"can result in a `significant loss of precision <https://en.wikipedia.org/"
370
386
"wiki/Loss_of_significance>`_\\ ; the :func:`expm1` function provides a way to "
371
387
"compute this quantity to full precision::"
372
388
msgstr ""
373
- "Renvoie ``e**x - 1``. Pour de petits flottants, la soustraction ``exp(x) - "
374
- "1`` peut résulter en une `perte significative de précision <https://en."
375
- "wikipedia.org/wiki/Loss_of_significance>`_\\ ; la fonction :func:`expm1` "
376
- "fournit un moyen de calculer cette quantité en précision complète : ::"
389
+ "Renvoie ``e**x - 1`` où *e* est la base des logarithmes naturels. Pour de "
390
+ "petits flottants *x*, la soustraction dans ``exp(x) - 1`` peut conduire à "
391
+ "une `perte significative de précision <https://en.wikipedia.org/wiki/"
392
+ "Loss_of_significance>`_\\ ; la fonction :func:`expm1` fournit un moyen de "
393
+ "calculer cette valeur en précision maximale: ::"
377
394
378
395
#: ../Doc/library/math.rst:250
379
396
msgid "With one argument, return the natural logarithm of *x* (to base *e*)."
@@ -608,32 +625,31 @@ msgid "Constants"
608
625
msgstr "Constantes"
609
626
610
627
#: ../Doc/library/math.rst:450
611
- #, fuzzy
612
628
msgid "The mathematical constant *π* = 3.141592..., to available precision."
613
- msgstr "La constante mathématique π = 3.141592..., à la précision disponile."
629
+ msgstr ""
630
+ "La constante mathématique *π* = 3.141592..., à la précision disponible."
614
631
615
632
#: ../Doc/library/math.rst:455
616
- #, fuzzy
617
633
msgid "The mathematical constant *e* = 2.718281..., to available precision."
618
- msgstr "La constante mathématique e = 2.718281..., à la précision disponible."
634
+ msgstr ""
635
+ "La constante mathématique *e* = 2.718281..., à la précision disponible."
619
636
620
637
#: ../Doc/library/math.rst:460
621
- #, fuzzy
622
638
msgid ""
623
639
"The mathematical constant *τ* = 6.283185..., to available precision. Tau is "
624
640
"a circle constant equal to 2\\ *π*, the ratio of a circle's circumference to "
625
641
"its radius. To learn more about Tau, check out Vi Hart's video `Pi is "
626
642
"(still) Wrong <https://www.youtube.com/watch?v=jG7vhMMXagQ>`_, and start "
627
643
"celebrating `Tau day <https://tauday.com/>`_ by eating twice as much pie!"
628
644
msgstr ""
629
- "La constante mathématique τ = 6.283185..., à la précision disponible. Tau "
630
- "est une constante du cercle égale à 2π , le ratio entre la circonférence d'un "
631
- "cercle et son rayon. Pour en apprendre plus sur Tau, regardez la vidéo de Vi "
632
- "Hart, `Pi is (still) Wrong <https://www.youtube.com/watch?v=jG7vhMMXagQ>`_, "
633
- "et proffitez -en (ou pas) pour céléberer (ou pas) le `Jour de Tau <http:// "
634
- "tauday.com/>`_ en mangeant (ou pas) deux fois plus camembert. (Y'a un jeu de "
635
- "mot, en anglais, avec le *Tau day*, c'est *eating twice as much pie!* "
636
- "(\" deux fois plus de π\" ?)."
645
+ "La constante mathématique *τ* = 6.283185..., à la précision disponible. Tau "
646
+ "est une constante du cercle égale à 2 \\ *π* , le rapport de la circonférence "
647
+ "d'un cercle à son rayon. Pour en apprendre plus sur Tau, regardez la vidéo "
648
+ "de Vi Hart, `Pi is (still) Wrong <https://www.youtube.com/watch?"
649
+ "v=jG7vhMMXagQ>`_, et profitez -en (ou pas) pour célébrer (ou pas) le `Jour de "
650
+ "Tau <https:// tauday.com/>`_ en mangeant (ou pas) deux fois plus de "
651
+ "camembert. (Y'a un jeu de mot, en anglais, avec le *Tau day*, c'est *eating "
652
+ "twice as much pie!* (\" deux fois plus de π\" ?)."
637
653
638
654
#: ../Doc/library/math.rst:471
639
655
msgid ""
0 commit comments