Skip to content

Commit 50ea59a

Browse files
committed
Working on library.po/stdtypes.rst
1 parent de26fcb commit 50ea59a

File tree

5 files changed

+48
-26
lines changed

5 files changed

+48
-26
lines changed

c-api.po

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

16041604
#: c-api/buffer.rst:172
16051605
msgid "Flag"
1606-
msgstr ""
1606+
msgstr "Option"
16071607

16081608
#: c-api/buffer.rst:172
16091609
msgid "Description"

howto.po

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

68896889
#: howto/regex.rst:531
68906890
msgid "Flag"
6891-
msgstr ""
6891+
msgstr "Option"
68926892

68936893
#: howto/regex.rst:531
68946894
msgid "Meaning"

library.po

Lines changed: 44 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9508,7 +9508,7 @@ msgstr ""
95089508
#: library/cgi.rst:282 library/curses.rst:58 library/curses.panel.rst:17
95099509
#: library/stdtypes.rst:2892 library/xml.etree.elementtree.rst:436
95109510
msgid "Functions"
9511-
msgstr ""
9511+
msgstr "Fonctions"
95129512

95139513
#: library/cgi.rst:284
95149514
msgid ""
@@ -24649,7 +24649,7 @@ msgstr "Opération"
2464924649
#: library/stdtypes.rst:95 library/stdtypes.rst:299 library/stdtypes.rst:397
2465024650
#: library/stdtypes.rst:439 library/stdtypes.rst:728 library/stdtypes.rst:1595
2465124651
msgid "Result"
24652-
msgstr ""
24652+
msgstr "Résultat"
2465324653

2465424654
#: library/datetime.rst:221
2465524655
msgid "``t1 = t2 + t3``"
@@ -58745,7 +58745,7 @@ msgstr ""
5874558745
#: library/mailbox.rst:798 library/mailbox.rst:965 library/mailbox.rst:1335
5874658746
#: library/stdtypes.rst:1421
5874758747
msgid "Flag"
58748-
msgstr ""
58748+
msgstr "Option"
5874958749

5875058750
#: library/mailbox.rst:800 library/mailbox.rst:971 library/mailbox.rst:1341
5875158751
msgid "D"
@@ -91345,13 +91345,15 @@ msgstr ""
9134591345

9134691346
#: library/stdtypes.rst:8
9134791347
msgid "Built-in Types"
91348-
msgstr ""
91348+
msgstr "Types natifs"
9134991349

9135091350
#: library/stdtypes.rst:10
9135191351
msgid ""
9135291352
"The following sections describe the standard types that are built into the "
9135391353
"interpreter."
9135491354
msgstr ""
91355+
"Les sections suivantes décrivent les types standards qui sont intégrés dans "
91356+
"l'interpréteur."
9135591357

9135691358
#: library/stdtypes.rst:15
9135791359
msgid ""
@@ -91377,14 +91379,18 @@ msgstr ""
9137791379

9137891380
#: library/stdtypes.rst:37
9137991381
msgid "Truth Value Testing"
91380-
msgstr ""
91382+
msgstr "Valeurs booléennes"
9138191383

9138291384
#: library/stdtypes.rst:46
9138391385
msgid ""
9138491386
"Any object can be tested for truth value, for use in an :keyword:`if` or :"
9138591387
"keyword:`while` condition or as operand of the Boolean operations below. The "
9138691388
"following values are considered false:"
9138791389
msgstr ""
91390+
"Tout objet peut être testé pour la valeur de la vérité, pour une utilisation "
91391+
"dans une condition :keyword:`if` ou :keyword:`while` ou comme opérande des "
91392+
"opérations booléennes ci-dessous. Les valeurs suivantes sont considérées "
91393+
"comme fausses :"
9138891394

9138991395
#: library/stdtypes.rst:56
9139091396
msgid "``False``"
@@ -91396,11 +91402,11 @@ msgstr ""
9139691402

9139791403
#: library/stdtypes.rst:60
9139891404
msgid "any empty sequence, for example, ``''``, ``()``, ``[]``."
91399-
msgstr ""
91405+
msgstr "toute séquence vide, par exemple, ``''``, ``()``, ``[]``."
9140091406

9140191407
#: library/stdtypes.rst:62
9140291408
msgid "any empty mapping, for example, ``{}``."
91403-
msgstr ""
91409+
msgstr "toute dictionnaire vide, par exemple, ``{}``."
9140491410

9140591411
#: library/stdtypes.rst:64
9140691412
msgid ""
@@ -91414,6 +91420,8 @@ msgid ""
9141491420
"All other values are considered true --- so objects of many types are always "
9141591421
"true."
9141691422
msgstr ""
91423+
"Toutes les autres valeurs sont considérées comme vraies --- donc des objets "
91424+
"de beaucoup de types sont toujours vrais."
9141791425

9141891426
#: library/stdtypes.rst:79
9141991427
msgid ""
@@ -91422,60 +91430,72 @@ msgid ""
9142291430
"otherwise stated. (Important exception: the Boolean operations ``or`` and "
9142391431
"``and`` always return one of their operands.)"
9142491432
msgstr ""
91433+
"Les opérations et fonctions natives qui ont un résultat booléen donnent "
91434+
"toujours ``0`` ou ``False`` pour faux et ``1`` ou ``True`` pour vrai, sauf "
91435+
"indication contraire. (Exception importante : les opérations booléennes "
91436+
"``or`` et ``and`` retournent toujours l'une de leurs opérandes.)"
9142591437

9142691438
#: library/stdtypes.rst:88
9142791439
msgid "Boolean Operations --- :keyword:`and`, :keyword:`or`, :keyword:`not`"
9142891440
msgstr ""
91441+
"Opérations booléennes --- :keyword:`and`, :keyword:`or`, :keyword:`not`"
9142991442

9143091443
#: library/stdtypes.rst:92
9143191444
msgid "These are the Boolean operations, ordered by ascending priority:"
91432-
msgstr ""
91445+
msgstr "Ce sont les opérations booléennes, classés par priorité ascendante :"
9143391446

9143491447
#: library/stdtypes.rst:97
9143591448
msgid "``x or y``"
9143691449
msgstr "``x or y``"
9143791450

9143891451
#: library/stdtypes.rst:97
9143991452
msgid "if *x* is false, then *y*, else *x*"
91440-
msgstr ""
91453+
msgstr "si *x* est faux, alors *y*, sinon *x*"
9144191454

9144291455
#: library/stdtypes.rst:100
9144391456
msgid "``x and y``"
9144491457
msgstr "``x and y``"
9144591458

9144691459
#: library/stdtypes.rst:100
9144791460
msgid "if *x* is false, then *x*, else *y*"
91448-
msgstr ""
91461+
msgstr "si *x* est faux, alors *x*, sinon *y*"
9144991462

9145091463
#: library/stdtypes.rst:103
9145191464
msgid "``not x``"
9145291465
msgstr "``not x``"
9145391466

9145491467
#: library/stdtypes.rst:103
9145591468
msgid "if *x* is false, then ``True``, else ``False``"
91456-
msgstr ""
91469+
msgstr "si *x* est faux, alors ``True``, sinon ``False``"
9145791470

9145891471
#: library/stdtypes.rst:115
9145991472
msgid ""
9146091473
"This is a short-circuit operator, so it only evaluates the second argument "
9146191474
"if the first one is :const:`False`."
9146291475
msgstr ""
91476+
"Ceci est un opérateur court-circuit, il évalue seulement le deuxième "
91477+
"argument si le premier est :const:`False`."
9146391478

9146491479
#: library/stdtypes.rst:119
9146591480
msgid ""
9146691481
"This is a short-circuit operator, so it only evaluates the second argument "
9146791482
"if the first one is :const:`True`."
9146891483
msgstr ""
91484+
"Ceci est un opérateur court-circuit, il évalue seulement le deuxième "
91485+
"argument si le premier est :const:`True`."
9146991486

9147091487
#: library/stdtypes.rst:123
9147191488
msgid ""
9147291489
"``not`` has a lower priority than non-Boolean operators, so ``not a == b`` "
9147391490
"is interpreted as ``not (a == b)``, and ``a == not b`` is a syntax error."
9147491491
msgstr ""
91492+
"``not`` a une priorité inférieure à celle des opérateurs non-booléens, donc "
91493+
"``not a == b`` est interprété comme ``not (a == b)`` et ``a == not b`` est "
91494+
"une erreur de syntaxe."
9147591495

9147691496
#: library/stdtypes.rst:130
9147791497
msgid "Comparisons"
91478-
msgstr ""
91498+
msgstr "Comparaisons"
9147991499

9148091500
#: library/stdtypes.rst:144
9148191501
msgid ""
@@ -91488,71 +91508,71 @@ msgstr ""
9148891508

9148991509
#: library/stdtypes.rst:150
9149091510
msgid "This table summarizes the comparison operations:"
91491-
msgstr ""
91511+
msgstr "Ce tableau résume les opérations de comparaison :"
9149291512

9149391513
#: library/stdtypes.rst:155 library/struct.rst:110
9149491514
msgid "``<``"
9149591515
msgstr "``<``"
9149691516

9149791517
#: library/stdtypes.rst:155
9149891518
msgid "strictly less than"
91499-
msgstr ""
91519+
msgstr "strictement inférieur"
9150091520

9150191521
#: library/stdtypes.rst:157
9150291522
msgid "``<=``"
9150391523
msgstr "``<=``"
9150491524

9150591525
#: library/stdtypes.rst:157
9150691526
msgid "less than or equal"
91507-
msgstr ""
91527+
msgstr "inférieur ou égal"
9150891528

9150991529
#: library/stdtypes.rst:159 library/struct.rst:112
9151091530
msgid "``>``"
9151191531
msgstr "``>``"
9151291532

9151391533
#: library/stdtypes.rst:159
9151491534
msgid "strictly greater than"
91515-
msgstr ""
91535+
msgstr "strictement supérieur"
9151691536

9151791537
#: library/stdtypes.rst:161
9151891538
msgid "``>=``"
9151991539
msgstr "``>=``"
9152091540

9152191541
#: library/stdtypes.rst:161
9152291542
msgid "greater than or equal"
91523-
msgstr ""
91543+
msgstr "supérieur ou égal"
9152491544

9152591545
#: library/stdtypes.rst:163
9152691546
msgid "``==``"
9152791547
msgstr "``==``"
9152891548

9152991549
#: library/stdtypes.rst:163
9153091550
msgid "equal"
91531-
msgstr ""
91551+
msgstr "égal"
9153291552

9153391553
#: library/stdtypes.rst:165
9153491554
msgid "``!=``"
9153591555
msgstr "``!=``"
9153691556

9153791557
#: library/stdtypes.rst:165
9153891558
msgid "not equal"
91539-
msgstr ""
91559+
msgstr "différent"
9154091560

9154191561
#: library/stdtypes.rst:167
9154291562
msgid "``is``"
9154391563
msgstr "``is``"
9154491564

9154591565
#: library/stdtypes.rst:167
9154691566
msgid "object identity"
91547-
msgstr ""
91567+
msgstr "identité d'objet"
9154891568

9154991569
#: library/stdtypes.rst:169
9155091570
msgid "``is not``"
9155191571
msgstr "``is not``"
9155291572

9155391573
#: library/stdtypes.rst:169
9155491574
msgid "negated object identity"
91555-
msgstr ""
91575+
msgstr "contraire de l'identité d'objet"
9155691576

9155791577
#: library/stdtypes.rst:175
9155891578
msgid ""
@@ -91912,6 +91932,8 @@ msgstr ""
9191291932
#: library/stdtypes.rst:436
9191391933
msgid "This table lists the bitwise operations sorted in ascending priority:"
9191491934
msgstr ""
91935+
"Ce tableau répertorie les opérations binaires triées par priorité "
91936+
"ascendante :"
9191591937

9191691938
#: library/stdtypes.rst:441
9191791939
msgid "``x | y``"
@@ -94675,7 +94697,7 @@ msgstr ""
9467594697

9467694698
#: library/stdtypes.rst:2907
9467794699
msgid "Methods"
94678-
msgstr ""
94700+
msgstr "Méthodes"
9467994701

9468094702
#: library/stdtypes.rst:2911
9468194703
msgid ""

reference.po

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

45984598
#: reference/expressions.rst:1067
45994599
msgid "Comparisons"
4600-
msgstr ""
4600+
msgstr "Comparaisons"
46014601

46024602
#: reference/expressions.rst:1073
46034603
msgid ""

whatsnew.po

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

1002410024
#: whatsnew/2.5.rst:1807
1002510025
msgid "Result"
10026-
msgstr ""
10026+
msgstr "Résultat"
1002710027

1002810028
#: whatsnew/2.5.rst:1809
1002910029
msgid "``elem[n]``"

0 commit comments

Comments
 (0)