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

Skip to content

Commit e75bd84

Browse files
committed
Working on library.po/stdtypes.rst
1 parent b64a172 commit e75bd84

File tree

2 files changed

+55
-21
lines changed

2 files changed

+55
-21
lines changed

library.po

Lines changed: 54 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -66230,7 +66230,7 @@ msgstr ""
6623066230
#: ../../src/Doc/library/logging.config.rst:439
6623166231
#: ../../src/Doc/library/stdtypes.rst:2430
6623266232
msgid "and::"
66233-
msgstr "et ::"
66233+
msgstr "et  : ::"
6623466234

6623566235
#: ../../src/Doc/library/logging.config.rst:446
6623666236
msgid ""
@@ -105331,6 +105331,14 @@ msgid ""
105331105331
"with a zero real part) which you can add to an integer or float to get a "
105332105332
"complex number with real and imaginary parts."
105333105333
msgstr ""
105334+
"Les nombres sont créés par des littéraux numériques ou sont le résultat de "
105335+
"fonctions natives ou d'opérateurs. Les entiers littéraux basiques (y compris "
105336+
"leur forme hexadécimale, octale et binaire) donnent des entiers. Les nombres "
105337+
"littéraux contenant un point décimal ou un exposant donnent des nombres à "
105338+
"virgule flottante. Suffixer ``'j'`` ou ``'J'`` à un nombre littéral donne un "
105339+
"nombre imaginaire (un nombre complexe avec une partie réelle nulle) que vous "
105340+
"pouvez ajouter à un nombre entier ou un à virgule flottante pour obtenir un "
105341+
"nombre complexe avec une partie réelle et une partie imaginaire."
105334105342

105335105343
#: ../../src/Doc/library/stdtypes.rst:264
105336105344
msgid ""
@@ -105362,87 +105370,87 @@ msgstr ""
105362105370

105363105371
#: ../../src/Doc/library/stdtypes.rst:276
105364105372
msgid "Full documentation"
105365-
msgstr ""
105373+
msgstr "Documentation complète"
105366105374

105367105375
#: ../../src/Doc/library/stdtypes.rst:278
105368105376
msgid "``x + y``"
105369105377
msgstr "``x + y``"
105370105378

105371105379
#: ../../src/Doc/library/stdtypes.rst:278
105372105380
msgid "sum of *x* and *y*"
105373-
msgstr ""
105381+
msgstr "somme de *x* et *y*"
105374105382

105375105383
#: ../../src/Doc/library/stdtypes.rst:280
105376105384
msgid "``x - y``"
105377105385
msgstr "``x - y``"
105378105386

105379105387
#: ../../src/Doc/library/stdtypes.rst:280
105380105388
msgid "difference of *x* and *y*"
105381-
msgstr ""
105389+
msgstr "différence de *x* et *y*"
105382105390

105383105391
#: ../../src/Doc/library/stdtypes.rst:282
105384105392
msgid "``x * y``"
105385105393
msgstr "``x * y``"
105386105394

105387105395
#: ../../src/Doc/library/stdtypes.rst:282
105388105396
msgid "product of *x* and *y*"
105389-
msgstr ""
105397+
msgstr "produit de *x* et *y*"
105390105398

105391105399
#: ../../src/Doc/library/stdtypes.rst:284
105392105400
msgid "``x / y``"
105393105401
msgstr "``x / y``"
105394105402

105395105403
#: ../../src/Doc/library/stdtypes.rst:284
105396105404
msgid "quotient of *x* and *y*"
105397-
msgstr ""
105405+
msgstr "quotient de *x* et *y*"
105398105406

105399105407
#: ../../src/Doc/library/stdtypes.rst:286
105400105408
msgid "``x // y``"
105401105409
msgstr "``x // y``"
105402105410

105403105411
#: ../../src/Doc/library/stdtypes.rst:286
105404105412
msgid "floored quotient of *x* and *y*"
105405-
msgstr ""
105413+
msgstr "quotient entier de *x* et *y*"
105406105414

105407105415
#: ../../src/Doc/library/stdtypes.rst:289
105408105416
msgid "``x % y``"
105409105417
msgstr "``x % y``"
105410105418

105411105419
#: ../../src/Doc/library/stdtypes.rst:289
105412105420
msgid "remainder of ``x / y``"
105413-
msgstr ""
105421+
msgstr "reste de ``x / y``"
105414105422

105415105423
#: ../../src/Doc/library/stdtypes.rst:291
105416105424
msgid "``-x``"
105417105425
msgstr "``-x``"
105418105426

105419105427
#: ../../src/Doc/library/stdtypes.rst:291
105420105428
msgid "*x* negated"
105421-
msgstr ""
105429+
msgstr "négatif de *x*"
105422105430

105423105431
#: ../../src/Doc/library/stdtypes.rst:293
105424105432
msgid "``+x``"
105425105433
msgstr "``+x``"
105426105434

105427105435
#: ../../src/Doc/library/stdtypes.rst:293
105428105436
msgid "*x* unchanged"
105429-
msgstr ""
105437+
msgstr "*x* inchangé"
105430105438

105431105439
#: ../../src/Doc/library/stdtypes.rst:295
105432105440
msgid "``abs(x)``"
105433105441
msgstr "``abs(x)``"
105434105442

105435105443
#: ../../src/Doc/library/stdtypes.rst:295
105436105444
msgid "absolute value or magnitude of *x*"
105437-
msgstr ""
105445+
msgstr "valeur absolue de *x*"
105438105446

105439105447
#: ../../src/Doc/library/stdtypes.rst:298
105440105448
msgid "``int(x)``"
105441105449
msgstr "``int(x)``"
105442105450

105443105451
#: ../../src/Doc/library/stdtypes.rst:298
105444105452
msgid "*x* converted to integer"
105445-
msgstr ""
105453+
msgstr "*x* converti en nombre entier"
105446105454

105447105455
#: ../../src/Doc/library/stdtypes.rst:298
105448105456
msgid "\\(3)\\(6)"
@@ -105454,7 +105462,7 @@ msgstr "``float(x)``"
105454105462

105455105463
#: ../../src/Doc/library/stdtypes.rst:300
105456105464
msgid "*x* converted to floating point"
105457-
msgstr ""
105465+
msgstr "*x* converti en nombre à virgule flottante"
105458105466

105459105467
#: ../../src/Doc/library/stdtypes.rst:300
105460105468
msgid "\\(4)\\(6)"
@@ -105469,22 +105477,24 @@ msgid ""
105469105477
"a complex number with real part *re*, imaginary part *im*. *im* defaults to "
105470105478
"zero."
105471105479
msgstr ""
105480+
"un nombre complexe avec *re* pour partie réelle et *im* pour partie "
105481+
"imaginaire. *im* vaut zéro par défaut."
105472105482

105473105483
#: ../../src/Doc/library/stdtypes.rst:306
105474105484
msgid "``c.conjugate()``"
105475105485
msgstr "``c.conjugate()``"
105476105486

105477105487
#: ../../src/Doc/library/stdtypes.rst:306
105478105488
msgid "conjugate of the complex number *c*"
105479-
msgstr ""
105489+
msgstr "conjugué du nombre complexe *c*"
105480105490

105481105491
#: ../../src/Doc/library/stdtypes.rst:309
105482105492
msgid "``divmod(x, y)``"
105483105493
msgstr "``divmod(x, y)``"
105484105494

105485105495
#: ../../src/Doc/library/stdtypes.rst:309
105486105496
msgid "the pair ``(x // y, x % y)``"
105487-
msgstr ""
105497+
msgstr "la paire ``(x // y, x % y)``"
105488105498

105489105499
#: ../../src/Doc/library/stdtypes.rst:311
105490105500
msgid "``pow(x, y)``"
@@ -105493,7 +105503,7 @@ msgstr "``pow(x, y)``"
105493105503
#: ../../src/Doc/library/stdtypes.rst:311
105494105504
#: ../../src/Doc/library/stdtypes.rst:313
105495105505
msgid "*x* to the power *y*"
105496-
msgstr ""
105506+
msgstr "*x* à la puissance *y*"
105497105507

105498105508
#: ../../src/Doc/library/stdtypes.rst:313
105499105509
msgid "``x ** y``"
@@ -105506,57 +105516,77 @@ msgid ""
105506105516
"always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is "
105507105517
"``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``."
105508105518
msgstr ""
105519+
"Également appelé division entière. La valeur résultante est un nombre "
105520+
"entier, bien que le type du résultat ne soit nécessairement *int*. Le "
105521+
"résultat est toujours arrondi vers moins l'infini : ``1//2`` vaut ``0``, "
105522+
"``(-1)//2`` vaut ``-1``, ``1//(-2)`` vaut ``-1``, et ``(-1)//(-2)`` vaut ``"
105523+
"0``."
105509105524

105510105525
#: ../../src/Doc/library/stdtypes.rst:329
105511105526
msgid ""
105512105527
"Not for complex numbers. Instead convert to floats using :func:`abs` if "
105513105528
"appropriate."
105514105529
msgstr ""
105530+
"Pas pour les nombres complexes. Convertissez-les plutôt en nombres flottants "
105531+
"à l'aide de :func:`abs` si c'est approprié."
105515105532

105516105533
#: ../../src/Doc/library/stdtypes.rst:341
105517105534
msgid ""
105518105535
"Conversion from floating point to integer may round or truncate as in C; see "
105519105536
"functions :func:`math.floor` and :func:`math.ceil` for well-defined "
105520105537
"conversions."
105521105538
msgstr ""
105539+
"La conversion de virgule flottante en entier peut arrondir ou tronquer comme "
105540+
"en C; voir les fonctions :func:`math.floor` et :func:`math.ceil` pour les "
105541+
"conversions bien définies."
105522105542

105523105543
#: ../../src/Doc/library/stdtypes.rst:346
105524105544
msgid ""
105525105545
"float also accepts the strings \"nan\" and \"inf\" with an optional prefix "
105526105546
"\"+\" or \"-\" for Not a Number (NaN) and positive or negative infinity."
105527105547
msgstr ""
105548+
"float accepte aussi les chauves \"nan\" et \"inf\" avec un préfixe optionnel "
105549+
"\"+\" ou \"-\" pour Not a Number (NaN) et l'infini positif ou négatif."
105528105550

105529105551
#: ../../src/Doc/library/stdtypes.rst:350
105530105552
msgid ""
105531105553
"Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for "
105532105554
"programming languages."
105533105555
msgstr ""
105556+
"Python définit ``pow(0, 0)`` et ``0 ** 0`` valant ``1``, ​puisque c'est "
105557+
"courant pour les langages de programmation."
105534105558

105535105559
#: ../../src/Doc/library/stdtypes.rst:354
105536105560
msgid ""
105537105561
"The numeric literals accepted include the digits ``0`` to ``9`` or any "
105538105562
"Unicode equivalent (code points with the ``Nd`` property)."
105539105563
msgstr ""
105564+
"Les littéraux numériques acceptés comprennent les chiffres ``0`` à ``9`` ou "
105565+
"tout équivalent Unicode (caractères avec la propriété ``Nd``)."
105540105566

105541105567
#: ../../src/Doc/library/stdtypes.rst:357
105542105568
msgid ""
105543105569
"See http://www.unicode.org/Public/8.0.0/ucd/extracted/DerivedNumericType.txt "
105544105570
"for a complete list of code points with the ``Nd`` property."
105545105571
msgstr ""
105572+
"Voir http://www.unicode.org/Public/8.0.0/ucd/extracted/DerivedNumericType."
105573+
"txt pour une liste complète des caractères avec la propriété ``Nd``."
105546105574

105547105575
#: ../../src/Doc/library/stdtypes.rst:361
105548105576
msgid ""
105549105577
"All :class:`numbers.Real` types (:class:`int` and :class:`float`) also "
105550105578
"include the following operations:"
105551105579
msgstr ""
105580+
"Tous types :class:`numbers.Real` (:class:`int` et :class:`float`) "
105581+
"comprennent également les opérations suivantes :"
105552105582

105553105583
#: ../../src/Doc/library/stdtypes.rst:367
105554105584
msgid "``math.trunc(x)``"
105555105585
msgstr "``math.trunc(x)``"
105556105586

105557105587
#: ../../src/Doc/library/stdtypes.rst:367
105558105588
msgid "*x* truncated to Integral"
105559-
msgstr ""
105589+
msgstr "*x* tronqué à l'entier vers zéro"
105560105590

105561105591
#: ../../src/Doc/library/stdtypes.rst:369
105562105592
msgid "``round(x[, n])``"
@@ -105567,32 +105597,36 @@ msgid ""
105567105597
"*x* rounded to n digits, rounding half to even. If n is omitted, it defaults "
105568105598
"to 0."
105569105599
msgstr ""
105600+
"*x* arrondi à n chiffres, arrondissant la moitié au pair. Si n est omis, la "
105601+
"valeur par défaut à 0."
105570105602

105571105603
#: ../../src/Doc/library/stdtypes.rst:373
105572105604
msgid "``math.floor(x)``"
105573105605
msgstr "``math.floor(x)``"
105574105606

105575105607
#: ../../src/Doc/library/stdtypes.rst:373
105576105608
msgid "the greatest integral float <= *x*"
105577-
msgstr ""
105609+
msgstr "le plus grand entier <= *x*"
105578105610

105579105611
#: ../../src/Doc/library/stdtypes.rst:375
105580105612
msgid "``math.ceil(x)``"
105581105613
msgstr "``math.ceil(x)``"
105582105614

105583105615
#: ../../src/Doc/library/stdtypes.rst:375
105584105616
msgid "the least integral float >= *x*"
105585-
msgstr ""
105617+
msgstr "le plus petit entier >= *x*"
105586105618

105587105619
#: ../../src/Doc/library/stdtypes.rst:378
105588105620
msgid ""
105589105621
"For additional numeric operations see the :mod:`math` and :mod:`cmath` "
105590105622
"modules."
105591105623
msgstr ""
105624+
"Pour d'autres opérations numériques voir les modules :mod:`math` et :mod:"
105625+
"`cmath`."
105592105626

105593105627
#: ../../src/Doc/library/stdtypes.rst:387
105594105628
msgid "Bitwise Operations on Integer Types"
105595-
msgstr ""
105629+
msgstr "Opérations sur les bits des nombres entiers"
105596105630

105597105631
#: ../../src/Doc/library/stdtypes.rst:399
105598105632
msgid ""

whatsnew.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29669,7 +29669,7 @@ msgstr ""
2966929669

2967029670
#: ../../src/Doc/whatsnew/3.5.rst:483
2967129671
msgid "and::"
29672-
msgstr "et ::"
29672+
msgstr "et  : ::"
2967329673

2967429674
#: ../../src/Doc/whatsnew/3.5.rst:492
2967529675
msgid ""

0 commit comments

Comments
 (0)