From 1175370b17578564e06ee730f9d093fd5d893780 Mon Sep 17 00:00:00 2001 From: zed <37245459+eviau@users.noreply.github.com> Date: Wed, 30 Sep 2020 05:45:19 -0400 Subject: [PATCH] translated 'math.nextafter(x,y) (#1380) --- library/math.po | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/library/math.po b/library/math.po index 8c2dbea0..6dd64f2a 100644 --- a/library/math.po +++ b/library/math.po @@ -372,37 +372,41 @@ msgstr "" "le signe de *x* et sont flottants." #: library/math.rst:234 -#, fuzzy msgid "Return the next floating-point value after *x* towards *y*." -msgstr "Renvoie la tangente de *x* radians." +msgstr "" +"Renvoie la valeur flottante consécutive à *x*, dans la direction de *y*." #: library/math.rst:236 msgid "If *x* is equal to *y*, return *y*." -msgstr "" +msgstr "Si *x* est égal à *y*, renvoie *y*." #: library/math.rst:238 msgid "Examples:" -msgstr "" +msgstr "Exemples :" #: library/math.rst:240 msgid "``math.nextafter(x, math.inf)`` goes up: towards positive infinity." msgstr "" +"``math.nextafter(x, math.inf)`` augmente de valeur : vers l'infini positif." #: library/math.rst:241 msgid "``math.nextafter(x, -math.inf)`` goes down: towards minus infinity." msgstr "" +"``math.nextafter(x, -math.inf)`` baisse de valeur : vers l'infini négatif." #: library/math.rst:242 msgid "``math.nextafter(x, 0.0)`` goes towards zero." -msgstr "" +msgstr "``math.nextafter(x, 0.0)`` augmente ou baisse de valeur, vers zéro." #: library/math.rst:243 msgid "``math.nextafter(x, math.copysign(math.inf, x))`` goes away from zero." msgstr "" +"``math.nextafter(x, math.copysign(math.inf, x))`` augmente ou baisse de " +"valeur, en s'éloignant de zéro." #: library/math.rst:245 msgid "See also :func:`math.ulp`." -msgstr "" +msgstr "Voir aussi : :func:`math.ulp`." #: library/math.rst:251 msgid ""