@@ -92900,13 +92900,18 @@ msgid ""
92900
92900
"Further explanation is available in the FAQ entry :ref:`faq-multidimensional-"
92901
92901
"list`."
92902
92902
msgstr ""
92903
+ "De plus amples explications sont disponibles dans la FAQ à la question :ref:"
92904
+ "`faq-multidimensional-list`."
92903
92905
92904
92906
#: ../Doc/library/stdtypes.rst:819
92905
92907
msgid ""
92906
92908
"If *i* or *j* is negative, the index is relative to the end of the string: "
92907
92909
"``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is "
92908
92910
"still ``0``."
92909
92911
msgstr ""
92912
+ "Si *i* ou *j* est négatifs, l'indice est relatif à la fin de la chaîne : "
92913
+ "``len(s) + i`` ou ``len(s) + j`` est substitué. Mais notez que ``-0`` est "
92914
+ "toujours ``0``."
92910
92915
92911
92916
#: ../Doc/library/stdtypes.rst:824
92912
92917
msgid ""
@@ -92916,6 +92921,11 @@ msgid ""
92916
92921
"*j* is omitted or ``None``, use ``len(s)``. If *i* is greater than or equal "
92917
92922
"to *j*, the slice is empty."
92918
92923
msgstr ""
92924
+ "La tranche de *s* de *i* à *j* est définie comme la séquence d'éléments "
92925
+ "d'indice *k* tels que ``i <= k < j``. Si *i* ou *j* est supérieur à "
92926
+ "``len(s)``, ``len(s)`` est utilisé. Si *i* est omis ou ``None``, ``0` est "
92927
+ "utilisé`. Si *j* est omis ou ``None``, ``len(s)`` est utilisé. Si *i* est "
92928
+ "supérieure ou égale à *j*, la tranche est vide."
92919
92929
92920
92930
#: ../Doc/library/stdtypes.rst:831
92921
92931
msgid ""
@@ -92928,6 +92938,14 @@ msgid ""
92928
92938
"*k*). Note, *k* cannot be zero. If *k* is ``None``, it is treated like "
92929
92939
"``1``."
92930
92940
msgstr ""
92941
+ "La tranche de *s* de *i* à *j* avec un pas de *k* est définie comme la "
92942
+ "séquenced'éléments d'indice ``x = i + n*k`` tels que ``0 <= n < (j-i)/k``. "
92943
+ "En d'autres termes, les indices sont ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` et "
92944
+ "ainsi de suite, en arrêtant lorsque *j* est atteint (mais jamais inclus). Si "
92945
+ "*i* ou *j* est supérieur à ``len(s)``, ``len(s)`` est utilisé. Si *i* ou *j* "
92946
+ "sont omis ou ``None``, ils deviennent des valeurs \"extrêmes\" (où l'ordre "
92947
+ "dépend du signe de *k*). Remarquez, *k* ne peut pas valoir zéro. Si *k* est "
92948
+ "``None``, il est traité comme ``1``."
92931
92949
92932
92950
#: ../Doc/library/stdtypes.rst:842
92933
92951
msgid ""
@@ -93747,7 +93765,7 @@ msgstr ""
93747
93765
93748
93766
#: ../Doc/library/stdtypes.rst:1564
93749
93767
msgid "Mutable Sequence Types"
93750
- msgstr ""
93768
+ msgstr "Types de séquences mutables "
93751
93769
93752
93770
#: ../Doc/library/stdtypes.rst:1570
93753
93771
msgid ""
@@ -93765,7 +93783,7 @@ msgstr "``s[i] = x``"
93765
93783
93766
93784
#: ../Doc/library/stdtypes.rst:1597
93767
93785
msgid "item *i* of *s* is replaced by *x*"
93768
- msgstr ""
93786
+ msgstr "element *i* de *s* est remplacé par *x* "
93769
93787
93770
93788
#: ../Doc/library/stdtypes.rst:1600
93771
93789
msgid "``s[i:j] = t``"
@@ -93775,30 +93793,31 @@ msgstr "``s[i:j] = t``"
93775
93793
msgid ""
93776
93794
"slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*"
93777
93795
msgstr ""
93796
+ "tranche de *s* de *i* à *j* est remplacée par le contenu de l'itérable *t*"
93778
93797
93779
93798
#: ../Doc/library/stdtypes.rst:1604
93780
93799
msgid "``del s[i:j]``"
93781
93800
msgstr "``del s[i:j]``"
93782
93801
93783
93802
#: ../Doc/library/stdtypes.rst:1604
93784
93803
msgid "same as ``s[i:j] = []``"
93785
- msgstr ""
93804
+ msgstr "identique à ``s[i:j] = []`` "
93786
93805
93787
93806
#: ../Doc/library/stdtypes.rst:1606
93788
93807
msgid "``s[i:j:k] = t``"
93789
93808
msgstr "``s[i:j:k] = t``"
93790
93809
93791
93810
#: ../Doc/library/stdtypes.rst:1606
93792
93811
msgid "the elements of ``s[i:j:k]`` are replaced by those of *t*"
93793
- msgstr ""
93812
+ msgstr "les éléments de ``s[i:j:k]`` sont remplacés par ceux de *t* "
93794
93813
93795
93814
#: ../Doc/library/stdtypes.rst:1609
93796
93815
msgid "``del s[i:j:k]``"
93797
93816
msgstr "``del s[i:j:k]``"
93798
93817
93799
93818
#: ../Doc/library/stdtypes.rst:1609
93800
93819
msgid "removes the elements of ``s[i:j:k]`` from the list"
93801
- msgstr ""
93820
+ msgstr "supprime les éléments de ``s[i:j:k]`` de la liste "
93802
93821
93803
93822
#: ../Doc/library/stdtypes.rst:1612
93804
93823
msgid "``s.append(x)``"
@@ -93822,7 +93841,7 @@ msgstr "``s *= n``"
93822
93841
93823
93842
#: ../Doc/library/stdtypes.rst:1618
93824
93843
msgid "updates *s* with its contents repeated *n* times"
93825
- msgstr ""
93844
+ msgstr "met à jour *s* avec son contenu répété *n* fois "
93826
93845
93827
93846
#: ../Doc/library/stdtypes.rst:1618
93828
93847
msgid "\\(11)"
0 commit comments