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

Skip to content

Commit 49a1caf

Browse files
Louis-Gabriel-TMJulienPalard
authored andcommitted
Fini math.po (#231)
* Fini math.po * Ajout de l'espace manquant entre 'ValueError' et 'pour' * Rectification de la précédente traduction
1 parent fe98051 commit 49a1caf

File tree

1 file changed

+36
-20
lines changed

1 file changed

+36
-20
lines changed

library/math.po

Lines changed: 36 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ msgstr ""
66
"Project-Id-Version: Python 3.6\n"
77
"Report-Msgid-Bugs-To: \n"
88
"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"
1010
"Last-Translator: Julien Palard <[email protected]>\n"
1111
"Language-Team: FRENCH <[email protected]>\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"
1414
"Content-Type: text/plain; charset=UTF-8\n"
1515
"Content-Transfer-Encoding: 8bit\n"
16-
"X-Generator: Poedit 2.0.4\n"
16+
"X-Generator: Poedit 1.5.4\n"
1717

1818
#: ../Doc/library/math.rst:2
1919
msgid ":mod:`math` --- Mathematical functions"
@@ -297,6 +297,12 @@ msgid ""
297297
"*even* integer is used for ``n``. The remainder ``r = remainder(x, y)`` "
298298
"thus always satisfies ``abs(r) <= 0.5 * abs(y)``."
299299
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)``."
300306

301307
#: ../Doc/library/math.rst:190
302308
msgid ""
@@ -305,12 +311,20 @@ msgid ""
305311
"x)`` raise :exc:`ValueError` for any non-NaN *x*. If the result of the "
306312
"remainder operation is zero, that zero will have the same sign as *x*."
307313
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*."
308319

309320
#: ../Doc/library/math.rst:196
310321
msgid ""
311322
"On platforms using IEEE 754 binary floating-point, the result of this "
312323
"operation is always exactly representable: no rounding error is introduced."
313324
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."
314328

315329
#: ../Doc/library/math.rst:204
316330
msgid ""
@@ -360,20 +374,23 @@ msgid ""
360374
"natural logarithms. This is usually more accurate than ``math.e ** x`` or "
361375
"``pow(math.e, x)``."
362376
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)``."
363380

364381
#: ../Doc/library/math.rst:233
365-
#, fuzzy
366382
msgid ""
367383
"Return *e* raised to the power *x*, minus 1. Here *e* is the base of "
368384
"natural logarithms. For small floats *x*, the subtraction in ``exp(x) - 1`` "
369385
"can result in a `significant loss of precision <https://en.wikipedia.org/"
370386
"wiki/Loss_of_significance>`_\\; the :func:`expm1` function provides a way to "
371387
"compute this quantity to full precision::"
372388
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: ::"
377394

378395
#: ../Doc/library/math.rst:250
379396
msgid "With one argument, return the natural logarithm of *x* (to base *e*)."
@@ -608,32 +625,31 @@ msgid "Constants"
608625
msgstr "Constantes"
609626

610627
#: ../Doc/library/math.rst:450
611-
#, fuzzy
612628
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."
614631

615632
#: ../Doc/library/math.rst:455
616-
#, fuzzy
617633
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."
619636

620637
#: ../Doc/library/math.rst:460
621-
#, fuzzy
622638
msgid ""
623639
"The mathematical constant *τ* = 6.283185..., to available precision. Tau is "
624640
"a circle constant equal to 2\\ *π*, the ratio of a circle's circumference to "
625641
"its radius. To learn more about Tau, check out Vi Hart's video `Pi is "
626642
"(still) Wrong <https://www.youtube.com/watch?v=jG7vhMMXagQ>`_, and start "
627643
"celebrating `Tau day <https://tauday.com/>`_ by eating twice as much pie!"
628644
msgstr ""
629-
"La constante mathématique τ = 6.283185..., à la précision disponible. Tau "
630-
"est une constante du cercle égale à , 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 π\" ?)."
637653

638654
#: ../Doc/library/math.rst:471
639655
msgid ""

0 commit comments

Comments
 (0)