Working on library.po/stdtypes.rst

This commit is contained in:
Julien Palard 2016-03-08 22:42:29 +01:00
parent b64a172cf2
commit e75bd84d22
2 changed files with 55 additions and 21 deletions

View File

@ -66230,7 +66230,7 @@ msgstr ""
#: ../../src/Doc/library/logging.config.rst:439
#: ../../src/Doc/library/stdtypes.rst:2430
msgid "and::"
msgstr "et ::"
msgstr "et  : ::"
#: ../../src/Doc/library/logging.config.rst:446
msgid ""
@ -105331,6 +105331,14 @@ msgid ""
"with a zero real part) which you can add to an integer or float to get a "
"complex number with real and imaginary parts."
msgstr ""
"Les nombres sont créés par des littéraux numériques ou sont le résultat de "
"fonctions natives ou d'opérateurs. Les entiers littéraux basiques (y compris "
"leur forme hexadécimale, octale et binaire) donnent des entiers. Les nombres "
"littéraux contenant un point décimal ou un exposant donnent des nombres à "
"virgule flottante. Suffixer ``'j'`` ou ``'J'`` à un nombre littéral donne un "
"nombre imaginaire (un nombre complexe avec une partie réelle nulle) que vous "
"pouvez ajouter à un nombre entier ou un à virgule flottante pour obtenir un "
"nombre complexe avec une partie réelle et une partie imaginaire."
#: ../../src/Doc/library/stdtypes.rst:264
msgid ""
@ -105362,7 +105370,7 @@ msgstr ""
#: ../../src/Doc/library/stdtypes.rst:276
msgid "Full documentation"
msgstr ""
msgstr "Documentation complète"
#: ../../src/Doc/library/stdtypes.rst:278
msgid "``x + y``"
@ -105370,7 +105378,7 @@ msgstr "``x + y``"
#: ../../src/Doc/library/stdtypes.rst:278
msgid "sum of *x* and *y*"
msgstr ""
msgstr "somme de *x* et *y*"
#: ../../src/Doc/library/stdtypes.rst:280
msgid "``x - y``"
@ -105378,7 +105386,7 @@ msgstr "``x - y``"
#: ../../src/Doc/library/stdtypes.rst:280
msgid "difference of *x* and *y*"
msgstr ""
msgstr "différence de *x* et *y*"
#: ../../src/Doc/library/stdtypes.rst:282
msgid "``x * y``"
@ -105386,7 +105394,7 @@ msgstr "``x * y``"
#: ../../src/Doc/library/stdtypes.rst:282
msgid "product of *x* and *y*"
msgstr ""
msgstr "produit de *x* et *y*"
#: ../../src/Doc/library/stdtypes.rst:284
msgid "``x / y``"
@ -105394,7 +105402,7 @@ msgstr "``x / y``"
#: ../../src/Doc/library/stdtypes.rst:284
msgid "quotient of *x* and *y*"
msgstr ""
msgstr "quotient de *x* et *y*"
#: ../../src/Doc/library/stdtypes.rst:286
msgid "``x // y``"
@ -105402,7 +105410,7 @@ msgstr "``x // y``"
#: ../../src/Doc/library/stdtypes.rst:286
msgid "floored quotient of *x* and *y*"
msgstr ""
msgstr "quotient entier de *x* et *y*"
#: ../../src/Doc/library/stdtypes.rst:289
msgid "``x % y``"
@ -105410,7 +105418,7 @@ msgstr "``x % y``"
#: ../../src/Doc/library/stdtypes.rst:289
msgid "remainder of ``x / y``"
msgstr ""
msgstr "reste de ``x / y``"
#: ../../src/Doc/library/stdtypes.rst:291
msgid "``-x``"
@ -105418,7 +105426,7 @@ msgstr "``-x``"
#: ../../src/Doc/library/stdtypes.rst:291
msgid "*x* negated"
msgstr ""
msgstr "négatif de *x*"
#: ../../src/Doc/library/stdtypes.rst:293
msgid "``+x``"
@ -105426,7 +105434,7 @@ msgstr "``+x``"
#: ../../src/Doc/library/stdtypes.rst:293
msgid "*x* unchanged"
msgstr ""
msgstr "*x* inchangé"
#: ../../src/Doc/library/stdtypes.rst:295
msgid "``abs(x)``"
@ -105434,7 +105442,7 @@ msgstr "``abs(x)``"
#: ../../src/Doc/library/stdtypes.rst:295
msgid "absolute value or magnitude of *x*"
msgstr ""
msgstr "valeur absolue de *x*"
#: ../../src/Doc/library/stdtypes.rst:298
msgid "``int(x)``"
@ -105442,7 +105450,7 @@ msgstr "``int(x)``"
#: ../../src/Doc/library/stdtypes.rst:298
msgid "*x* converted to integer"
msgstr ""
msgstr "*x* converti en nombre entier"
#: ../../src/Doc/library/stdtypes.rst:298
msgid "\\(3)\\(6)"
@ -105454,7 +105462,7 @@ msgstr "``float(x)``"
#: ../../src/Doc/library/stdtypes.rst:300
msgid "*x* converted to floating point"
msgstr ""
msgstr "*x* converti en nombre à virgule flottante"
#: ../../src/Doc/library/stdtypes.rst:300
msgid "\\(4)\\(6)"
@ -105469,6 +105477,8 @@ msgid ""
"a complex number with real part *re*, imaginary part *im*. *im* defaults to "
"zero."
msgstr ""
"un nombre complexe avec *re* pour partie réelle et *im* pour partie "
"imaginaire. *im* vaut zéro par défaut."
#: ../../src/Doc/library/stdtypes.rst:306
msgid "``c.conjugate()``"
@ -105476,7 +105486,7 @@ msgstr "``c.conjugate()``"
#: ../../src/Doc/library/stdtypes.rst:306
msgid "conjugate of the complex number *c*"
msgstr ""
msgstr "conjugué du nombre complexe *c*"
#: ../../src/Doc/library/stdtypes.rst:309
msgid "``divmod(x, y)``"
@ -105484,7 +105494,7 @@ msgstr "``divmod(x, y)``"
#: ../../src/Doc/library/stdtypes.rst:309
msgid "the pair ``(x // y, x % y)``"
msgstr ""
msgstr "la paire ``(x // y, x % y)``"
#: ../../src/Doc/library/stdtypes.rst:311
msgid "``pow(x, y)``"
@ -105493,7 +105503,7 @@ msgstr "``pow(x, y)``"
#: ../../src/Doc/library/stdtypes.rst:311
#: ../../src/Doc/library/stdtypes.rst:313
msgid "*x* to the power *y*"
msgstr ""
msgstr "*x* à la puissance *y*"
#: ../../src/Doc/library/stdtypes.rst:313
msgid "``x ** y``"
@ -105506,12 +105516,19 @@ msgid ""
"always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is "
"``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``."
msgstr ""
"Également appelé division entière. La valeur résultante est un nombre "
"entier, bien que le type du résultat ne soit nécessairement *int*. Le "
"résultat est toujours arrondi vers moins l'infini : ``1//2`` vaut ``0``, "
"``(-1)//2`` vaut ``-1``, ``1//(-2)`` vaut ``-1``, et ``(-1)//(-2)`` vaut ``"
"0``."
#: ../../src/Doc/library/stdtypes.rst:329
msgid ""
"Not for complex numbers. Instead convert to floats using :func:`abs` if "
"appropriate."
msgstr ""
"Pas pour les nombres complexes. Convertissez-les plutôt en nombres flottants "
"à l'aide de :func:`abs` si c'est approprié."
#: ../../src/Doc/library/stdtypes.rst:341
msgid ""
@ -105519,36 +105536,49 @@ msgid ""
"functions :func:`math.floor` and :func:`math.ceil` for well-defined "
"conversions."
msgstr ""
"La conversion de virgule flottante en entier peut arrondir ou tronquer comme "
"en C; voir les fonctions :func:`math.floor` et :func:`math.ceil` pour les "
"conversions bien définies."
#: ../../src/Doc/library/stdtypes.rst:346
msgid ""
"float also accepts the strings \"nan\" and \"inf\" with an optional prefix "
"\"+\" or \"-\" for Not a Number (NaN) and positive or negative infinity."
msgstr ""
"float accepte aussi les chauves \"nan\" et \"inf\" avec un préfixe optionnel "
"\"+\" ou \"-\" pour Not a Number (NaN) et l'infini positif ou négatif."
#: ../../src/Doc/library/stdtypes.rst:350
msgid ""
"Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for "
"programming languages."
msgstr ""
"Python définit ``pow(0, 0)`` et ``0 ** 0`` valant ``1``, puisque c'est "
"courant pour les langages de programmation."
#: ../../src/Doc/library/stdtypes.rst:354
msgid ""
"The numeric literals accepted include the digits ``0`` to ``9`` or any "
"Unicode equivalent (code points with the ``Nd`` property)."
msgstr ""
"Les littéraux numériques acceptés comprennent les chiffres ``0`` à ``9`` ou "
"tout équivalent Unicode (caractères avec la propriété ``Nd``)."
#: ../../src/Doc/library/stdtypes.rst:357
msgid ""
"See http://www.unicode.org/Public/8.0.0/ucd/extracted/DerivedNumericType.txt "
"for a complete list of code points with the ``Nd`` property."
msgstr ""
"Voir http://www.unicode.org/Public/8.0.0/ucd/extracted/DerivedNumericType."
"txt pour une liste complète des caractères avec la propriété ``Nd``."
#: ../../src/Doc/library/stdtypes.rst:361
msgid ""
"All :class:`numbers.Real` types (:class:`int` and :class:`float`) also "
"include the following operations:"
msgstr ""
"Tous types :class:`numbers.Real` (:class:`int` et :class:`float`) "
"comprennent également les opérations suivantes :"
#: ../../src/Doc/library/stdtypes.rst:367
msgid "``math.trunc(x)``"
@ -105556,7 +105586,7 @@ msgstr "``math.trunc(x)``"
#: ../../src/Doc/library/stdtypes.rst:367
msgid "*x* truncated to Integral"
msgstr ""
msgstr "*x* tronqué à l'entier vers zéro"
#: ../../src/Doc/library/stdtypes.rst:369
msgid "``round(x[, n])``"
@ -105567,6 +105597,8 @@ msgid ""
"*x* rounded to n digits, rounding half to even. If n is omitted, it defaults "
"to 0."
msgstr ""
"*x* arrondi à n chiffres, arrondissant la moitié au pair. Si n est omis, la "
"valeur par défaut à 0."
#: ../../src/Doc/library/stdtypes.rst:373
msgid "``math.floor(x)``"
@ -105574,7 +105606,7 @@ msgstr "``math.floor(x)``"
#: ../../src/Doc/library/stdtypes.rst:373
msgid "the greatest integral float <= *x*"
msgstr ""
msgstr "le plus grand entier <= *x*"
#: ../../src/Doc/library/stdtypes.rst:375
msgid "``math.ceil(x)``"
@ -105582,17 +105614,19 @@ msgstr "``math.ceil(x)``"
#: ../../src/Doc/library/stdtypes.rst:375
msgid "the least integral float >= *x*"
msgstr ""
msgstr "le plus petit entier >= *x*"
#: ../../src/Doc/library/stdtypes.rst:378
msgid ""
"For additional numeric operations see the :mod:`math` and :mod:`cmath` "
"modules."
msgstr ""
"Pour d'autres opérations numériques voir les modules :mod:`math` et :mod:"
"`cmath`."
#: ../../src/Doc/library/stdtypes.rst:387
msgid "Bitwise Operations on Integer Types"
msgstr ""
msgstr "Opérations sur les bits des nombres entiers"
#: ../../src/Doc/library/stdtypes.rst:399
msgid ""

View File

@ -29669,7 +29669,7 @@ msgstr ""
#: ../../src/Doc/whatsnew/3.5.rst:483
msgid "and::"
msgstr "et ::"
msgstr "et  : ::"
#: ../../src/Doc/whatsnew/3.5.rst:492
msgid ""