Skip to content

Commit d3f13b1

Browse files
committed
Working on library.po/stdtypes.rst
1 parent 1cd7b57 commit d3f13b1

File tree

3 files changed

+27
-8
lines changed

3 files changed

+27
-8
lines changed

glossary.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ msgstr "MRO"
12331233

12341234
#: ../Doc/glossary.rst:533
12351235
msgid "See :term:`method resolution order`."
1236-
msgstr "Voir :term:`method resolution order`."
1236+
msgstr "Voir :term:`ordre de résolution des méthodes`."
12371237

12381238
#: ../Doc/glossary.rst:534
12391239
msgid "mutable"

library.po

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92900,13 +92900,18 @@ msgid ""
9290092900
"Further explanation is available in the FAQ entry :ref:`faq-multidimensional-"
9290192901
"list`."
9290292902
msgstr ""
92903+
"De plus amples explications sont disponibles dans la FAQ à la question :ref:"
92904+
"`faq-multidimensional-list`."
9290392905

9290492906
#: ../Doc/library/stdtypes.rst:819
9290592907
msgid ""
9290692908
"If *i* or *j* is negative, the index is relative to the end of the string: "
9290792909
"``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is "
9290892910
"still ``0``."
9290992911
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``."
9291092915

9291192916
#: ../Doc/library/stdtypes.rst:824
9291292917
msgid ""
@@ -92916,6 +92921,11 @@ msgid ""
9291692921
"*j* is omitted or ``None``, use ``len(s)``. If *i* is greater than or equal "
9291792922
"to *j*, the slice is empty."
9291892923
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."
9291992929

9292092930
#: ../Doc/library/stdtypes.rst:831
9292192931
msgid ""
@@ -92928,6 +92938,14 @@ msgid ""
9292892938
"*k*). Note, *k* cannot be zero. If *k* is ``None``, it is treated like "
9292992939
"``1``."
9293092940
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``."
9293192949

9293292950
#: ../Doc/library/stdtypes.rst:842
9293392951
msgid ""
@@ -93747,7 +93765,7 @@ msgstr ""
9374793765

9374893766
#: ../Doc/library/stdtypes.rst:1564
9374993767
msgid "Mutable Sequence Types"
93750-
msgstr ""
93768+
msgstr "Types de séquences mutables"
9375193769

9375293770
#: ../Doc/library/stdtypes.rst:1570
9375393771
msgid ""
@@ -93765,7 +93783,7 @@ msgstr "``s[i] = x``"
9376593783

9376693784
#: ../Doc/library/stdtypes.rst:1597
9376793785
msgid "item *i* of *s* is replaced by *x*"
93768-
msgstr ""
93786+
msgstr "element *i* de *s* est remplacé par *x*"
9376993787

9377093788
#: ../Doc/library/stdtypes.rst:1600
9377193789
msgid "``s[i:j] = t``"
@@ -93775,30 +93793,31 @@ msgstr "``s[i:j] = t``"
9377593793
msgid ""
9377693794
"slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*"
9377793795
msgstr ""
93796+
"tranche de *s* de *i* à *j* est remplacée par le contenu de l'itérable *t*"
9377893797

9377993798
#: ../Doc/library/stdtypes.rst:1604
9378093799
msgid "``del s[i:j]``"
9378193800
msgstr "``del s[i:j]``"
9378293801

9378393802
#: ../Doc/library/stdtypes.rst:1604
9378493803
msgid "same as ``s[i:j] = []``"
93785-
msgstr ""
93804+
msgstr "identique à ``s[i:j] = []``"
9378693805

9378793806
#: ../Doc/library/stdtypes.rst:1606
9378893807
msgid "``s[i:j:k] = t``"
9378993808
msgstr "``s[i:j:k] = t``"
9379093809

9379193810
#: ../Doc/library/stdtypes.rst:1606
9379293811
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*"
9379493813

9379593814
#: ../Doc/library/stdtypes.rst:1609
9379693815
msgid "``del s[i:j:k]``"
9379793816
msgstr "``del s[i:j:k]``"
9379893817

9379993818
#: ../Doc/library/stdtypes.rst:1609
9380093819
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"
9380293821

9380393822
#: ../Doc/library/stdtypes.rst:1612
9380493823
msgid "``s.append(x)``"
@@ -93822,7 +93841,7 @@ msgstr "``s *= n``"
9382293841

9382393842
#: ../Doc/library/stdtypes.rst:1618
9382493843
msgid "updates *s* with its contents repeated *n* times"
93825-
msgstr ""
93844+
msgstr "met à jour *s* avec son contenu répété *n* fois"
9382693845

9382793846
#: ../Doc/library/stdtypes.rst:1618
9382893847
msgid "\\(11)"

tutorial.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6684,7 +6684,7 @@ msgid ""
66846684
msgstr ""
66856685
"Un gain de temps important au démarrage pour les courts programmes utilisant "
66866686
"beaucoup de modules standards, si un fichier :file:`spam.pyc` existe dans le "
6687-
"dossier où :file:`spam.py` est trouvé, il est supposé contenir une version "
6687+
"dossier où :file:`spam.py`est trouvé, il est supposé contenir une version "
66886688
"compilée du module :mod:`spam`. La date de modification du fichier :file:"
66896689
"`spam.py` est utilisée pour créer le fichier :file:`spam.pyc`, et stockée "
66906690
"dans le fichier :file:`spam.pyc`, ainsi le fichier :file:`.pyc` est ignoré "

0 commit comments

Comments
 (0)